﻿:root {
    /* Color Palette */
    --primary: #e72c52;
    --primary-dark: #c41e40;
    --secondary: #2ca9b6;
    --secondary-dark: #1e8a95;
    --dark: #171e37;
    --dark-light: #2a3455;
    --light: #ffffff;
    --gray: #f4f6f8;
    --text-main: #333333;
    --text-light: #666666;

    /* Typography */
    --font-main: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-s: 1rem;
    --spacing-m: 2rem;
    --spacing-l: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-s: 8px;
    --radius-m: 16px;
    --radius-l: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-s: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-m: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-l: 0 20px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.4;
    background-color: var(--light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-s);
}

.container-service {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 var(--spacing-s);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-m);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
}

.btn-white {
    background-color: var(--light);
    color: var(--primary);
    border: 2px solid var(--light);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--light);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.btn-outline-white:hover {
    background-color: var(--light);
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header */
#main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-s);
    padding: 1.25rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
}

.logo-placeholder i {
    color: var(--secondary);
    font-size: 2rem;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary);
}

.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light);
    min-width: 200px;
    box-shadow: var(--shadow-m);
    border-radius: var(--radius-s);
    padding: 1.25rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light);
    min-width: 200px;
    box-shadow: var(--shadow-m);
    border-radius: var(--radius-s);
    padding: 1.25rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 0.5rem 1.5rem;
}

.submenu li a:hover {
    background-color: var(--gray);
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: var(--spacing-l) 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-l);
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-content .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(231, 44, 82, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-trust {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-trust p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(45deg, var(--dark), var(--dark-light));
    border-radius: var(--radius-l);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.hero-img-placeholder {
    box-shadow: var(--shadow-l);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-img-placeholder:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-img-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

/* Features Section */
.features {
    padding: var(--spacing-l) 0;
    background-color: var(--light);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--light);
    padding: 2rem;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-m);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(44, 169, 182, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary);
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Services Section */
.services {
    padding: var(--spacing-xl) 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light);
    border-radius: var(--radius-m);
    overflow: hidden;
    box-shadow: var(--shadow-s);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-l);
    transform: translateY(-5px);
}

.service-image {
    height: 500px;
    background-color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}


.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.service-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    gap: 0.8rem;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-xl) 0;
    background-color: var(--light);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.testimonial-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray);
    border-radius: var(--radius-l);
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 2rem;
}

.author-img {
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.author-info h4 {
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gray);
    background: var(--light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

/* CTA Help */
.cta-help {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Footer */
#main-footer {
    background-color: var(--dark);
    color: var(--light);
    padding-top: var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h6 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.subscribe-form {
    display: flex;
    margin-top: 1rem;
}

.subscribe-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: var(--radius-s) 0 0 var(--radius-s);
    outline: none;
}

.subscribe-form button {
    padding: 0 1rem;
    background-color: var(--primary);
    border: none;
    color: var(--light);
    border-radius: 0 var(--radius-s) var(--radius-s) 0;
    cursor: pointer;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        margin: 0 auto 2rem;
    }

    .hero-trust {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-nav {
        display: none;
        /* Mobile menu logic needed */
    }

    .mobile-toggle {
        width: 60px;
        height: 60px;
        background-color: var(--secondary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin: 0 auto 1rem;
    }

    .author-info h4 {
        color: var(--dark);
        margin-bottom: 0.2rem;
    }

    .author-info span {
        font-size: 0.8rem;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .slider-controls {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .slider-controls button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--gray);
        background: var(--light);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .slider-controls button:hover {
        background: var(--primary);
        color: var(--light);
        border-color: var(--primary);
    }

    /* CTA Help */
    .cta-help {
        padding: var(--spacing-xl) 0;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: var(--light);
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    /* Footer */
    #main-footer {
        background-color: var(--dark);
        color: var(--light);
        padding-top: var(--spacing-xl);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-col h6 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .footer-col h6::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background-color: var(--secondary);
    }

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
    }

    .footer-links a:hover {
        color: var(--secondary);
        padding-left: 5px;
    }

    .subscribe-form {
        display: flex;
        margin-top: 1rem;
    }

    .subscribe-form input {
        flex: 1;
        padding: 0.8rem;
        border: none;
        border-radius: var(--radius-s) 0 0 var(--radius-s);
        outline: none;
    }

    .subscribe-form button {
        padding: 0 1rem;
        background-color: var(--primary);
        border: none;
        color: var(--light);
        border-radius: 0 var(--radius-s) var(--radius-s) 0;
        cursor: pointer;
    }

    .social-icons {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        background-color: var(--secondary);
        transform: translateY(-3px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem 0;
        text-align: center;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.5);
    }

    /* Responsive */
    @media (max-width: 991px) {
        .hero-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-content p {
            margin: 0 auto 2rem;
        }

        .hero-trust {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .main-nav {
            display: none;
            /* Mobile menu logic needed */
        }

        .mobile-toggle {
            display: block;
        }

        .header-actions .btn {
            display: none;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .grid-2 {
            grid-template-columns: 1fr;
        }
    }
}

/* New Styles for Additional Pages */
.hero-small {
    padding: var(--spacing-l) 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--light);
    text-align: center;
}

.hero-small h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}


/* Contact Form */
.contact-form {
    margin-top: 2rem;
    background: var(--light);
    padding: 2rem;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-s);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-s);
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

/* Sidebar Layout */
.sidebar-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-l);
}

.sidebar-box {
    background: var(--gray);
    padding: 1.5rem;
    border-radius: var(--radius-m);
    margin-bottom: 2rem;
}

.sidebar-box h4 {
    margin-bottom: 1rem;
    color: var(--dark);
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    display: block;
    padding: 0.5rem;
    background: var(--light);
    border-radius: var(--radius-s);
    color: var(--text-main);
    transition: all 0.3s ease;
}

.sidebar-menu a:hover {
    background: var(--secondary);
    color: var(--light);
    padding-left: 1rem;
}

/* Accordion */
.accordion-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 0.5rem;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1rem;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.accordion-header:hover {
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

.accordion-content p {
    padding-bottom: 1rem;
    color: var(--text-light);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Adjust as needed */
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .sidebar-layout {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Hero */
.hero-contact {
    padding: clamp(3.13rem, calc(4.44vw + 1.71rem), 7.92rem) 0;
    background: linear-gradient(rgba(231, 44, 82, 0.65), rgba(231, 44, 82, 0.65)),
        url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?w=1200') center center / cover fixed;
    color: var(--light);
    text-align: center;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title-shadow {
    color: #ffffff;
    text-align: center;
    text-shadow: 0 4px 16px rgba(33, 33, 33, 0.6);
    font-size: 2.5rem;
    margin: 0;
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.contact-form-col h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-form-col p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-logo-col {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    width: 100%;
    background-color: #f5f8fa;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
}

.logo-placeholder-large i {
    font-size: 6rem;
    color: var(--secondary);
}

.logo-placeholder-large span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

@media (max-width: 478px) {
    .hero-contact {
        min-height: 280px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   EXACT CONTACT PAGE STYLES - REFERENCE DESIGN
   ============================================ */

/* Hero Section - Exact Specifications */

.hero-contact-exact {
    padding: clamp(3.13rem, calc(4.44vw + 1.71rem), 7.92rem) 0;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.hero-contact-exact-base {
    padding: clamp(3.13rem, calc(4.44vw + 1.71rem), 7.92rem) 0;
    background: linear-gradient(rgba(44, 169, 182, 0.65), rgba(44, 169, 182, 0.65)),
        url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?w=1200') center center / cover fixed;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.hero-contact-exact-service {
    padding: clamp(3.13rem, calc(4.44vw + 1.71rem), 7.92rem) 0;
    background: linear-gradient(rgba(44, 169, 182, 0.65), rgba(44, 169, 182, 0.65)),
        url('images/Traslado-en-Camilla-Medica.webp') center center / cover fixed;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.hero-title-exact {
    color: #ffffff;
    text-align: center;
    text-shadow: 0 4px 16px rgba(33, 33, 33, 0.6);
    font-size: clamp(2.88rem, calc(2.13vw + 2.2rem), 5.19rem);
    line-height: 1.2;
    margin: 0;
}

.hero-title-exact-book {
    color: #7cbac6;
    text-align: center;
    font-size: clamp(2.88rem, calc(2.13vw + 2.2rem), 5.19rem);
    line-height: 1.2;
    margin: 0;
    padding-bottom: 70px;
}

@media (max-width: 478px) {
    .hero-contact-exact {
        min-height: 280px;
    }
}

/* Contact Form Section - Exact Specifications */
.contact-section-exact {
    padding: clamp(3.13rem, calc(4.44vw + 1.71rem), 7.92rem) 0;
    background-color: #ffffff;
}

.contact-grid-exact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 478px) {
    .contact-grid-exact {
        grid-template-columns: 1fr;
    }
}

/* Form Column */
.contact-form-column {
    display: flex;
    flex-direction: column;
    gap: clamp(1.02rem, calc(0.35vw + 0.91rem), 1.4rem);
}

.contact-form-column h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--dark);
}

.contact-form-column p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #788094;
}

/* Form Container - Exact Specifications */
.contact-form-exact {
    margin-top: 2rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Form Groups - Exact Specifications */
.form-group-exact {
    margin-bottom: 1.5rem;
}

.form-group-exact label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group-exact input,
.form-group-exact textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group-exact textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group-exact input:focus,
.form-group-exact textarea:focus {
    border-color: var(--primary);
}

/* Submit Button - Exact Specifications */
.btn-lg-exact {
    width: 100%;
    padding: 1rem 2rem;
    font-size: clamp(1.6rem, calc(0.09vw + 1.57rem), 1.7rem);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Image Column - Exact Specifications */
.contact-image-column {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Container - For contact form */
.logo-container-exact {
    margin-top: 240px;
    width: 100%;
    background-color: #f5f8fa;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 544px;
}

.logo-display-exact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
}

.logo-display-exact i {
    font-size: 6rem;
    color: var(--secondary);
}

.logo-display-exact span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

/* CTA Section - Exact Specifications */
.cta-help-exact {
    padding: clamp(3.13rem, calc(4.44vw + 1.71rem), 7.92rem) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content-exact {
    display: flex;
    flex-direction: column;
    gap: clamp(1.28rem, calc(0.65vw + 1.07rem), 1.98rem);
    align-items: center;
}

.cta-content-exact h2 {
    font-size: clamp(2.56rem, calc(2.47vw + 1.09rem), 4.15rem);
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content-exact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ffffff;
}

/* CTA Buttons - Exact Specifications */
.cta-buttons-exact {
    display: grid;
    grid-template-columns: 0.2fr 0.2fr;
    gap: clamp(2rem, calc(1.81vw + 1.42rem), 3.96rem);
    margin-top: 8px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 478px) {
    .cta-buttons-exact {
        grid-template-columns: 1fr;
    }
}

.btn-cta-primary {
    background: var(--primary);
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-secondary {
    background: #ffffff;
    color: var(--primary);
    border: 2px solid #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-cta-secondary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Services Intro Section */
.services-intro {
    text-align: center;
    max-width: 1000px;
    margin: 2rem auto 4rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 700;
}

.services-intro .highlight-blue {
    color: var(--secondary);
}

.services-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-intro h2 {
        font-size: 2rem;
    }
}

/* ============================================
   EXACT ABOUT PAGE STYLES - REFERENCE DESIGN
   ============================================ */

/* About Page Hero - Exact Specifications */
.hero-about-exact {
    height: 480px;
    padding: clamp(3.13rem, calc(4.44vw + 1.71rem), 7.92rem) 0;
    background: linear-gradient(rgba(231, 44, 82, 0.65), rgba(231, 44, 82, 0.65)),
        url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?w=1200') center center / cover fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.hero-about-exact::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.hero-subtitle-exact {
    color: #ffffff;
    margin-top: 1rem;
}

@media (max-width: 478px) {
    .hero-about-exact {
        height: 280px;
    }

    .hero-subtitle-exact {
        text-align: center;
    }
}

/* Section Padding Exact */
.section-padding-exact {
    padding: clamp(3.13rem, calc(4.44vw + 1.71rem), 7.92rem) 0;
}

/* About Content Grid - Exact 1.18fr 1fr */
.about-grid-exact {
    display: grid;
    grid-template-columns: 1.18fr 1fr;
    gap: clamp(2.5rem, calc(2.87vw + 1.58rem), 5.6rem);
    align-items: center;
}

@media (max-width: 478px) {
    .about-grid-exact {
        grid-template-columns: 1fr;
    }
}

/* About Content Column */
.about-content-col {
    display: flex;
    flex-direction: column;
    gap: clamp(1.02rem, calc(0.35vw + 0.91rem), 1.4rem);
}

.about-content-col h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-decoration {
    text-decoration: underline;
    text-decoration-color: var(--secondary);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.about-text-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #788094;
}

/* About Image Column */
.about-image-col {
    width: 100%;
}

@media (max-width: 478px) {
    .about-image-col {
        order: -1;
    }
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Values Section Background */
.values-section-bg {
    background-color: #ffffff;
}

/* Values Grid - Exact 1fr 2fr */
.values-grid-exact {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(2rem, calc(1.81vw + 1.42rem), 3.96rem);
}

@media (max-width: 478px) {
    .values-grid-exact {
        grid-template-columns: 1fr;
    }
}

/* Values Image Column */
.values-image-col {
    width: 100%;
}

.values-side-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 478px) {
    .values-image-col {
        order: 1;
    }
}

/* Values Content Column */
.values-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-vision-container {
    display: flex;
    flex-direction: column;
}

.mission-box,
.vision-box {
    display: flex;
    flex-direction: column;
}

/* Value Icon Box Inline (for Mission/Vision) */
.value-icon-box-inline {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 8px;
}

.value-icon-box-inline .icon {
    margin-right: 16px;
    align-self: flex-start;
    color: var(--secondary);
}

.value-icon-box-inline .icon i {
    font-size: 34px;
}

.value-icon-box-inline .content h3 {
    margin: 0;
    font-size: 1.5rem;
}

.mission-box p,
.vision-box p {
    line-height: 1.6;
    color: #788094;
}

/* Divider Horizontal */
.divider-horizontal {
    border-top: 1px solid rgba(158, 158, 158, 0.25);
    margin: 2rem 0;
}

/* Values Intro Container */
.values-intro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.values-intro-container h2 {
    font-size: clamp(2.56rem, calc(1.47vw + 2.09rem), 4.15rem);
    margin-bottom: 1rem;
}

.values-intro-container>p {
    max-width: 800px;
    margin-bottom: 2rem;
    color: #788094;
    line-height: 1.6;
}

/* Values Cards Container */
.values-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, calc(1.81vw + 1.42rem), 3.96rem);
    margin-top: 40px;
    align-items: center;
    justify-content: center;
    align-content: center;
}

@media (max-width: 767px) {
    .values-cards-container {
        align-items: flex-start;
    }
}

/* Individual Value Card - Exact 30% Width */
.value-card-exact {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    width: 30%;
    padding: clamp(1.28rem, calc(0.65vw + 1.07rem), 1.98rem);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 478px) {
    .value-card-exact {
        width: 100%;
    }
}

/* Value Card Icon Box */
.value-icon-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    align-self: center;
}

.value-icon-box i {
    font-size: 50px;
    width: 50px;
    height: 50px;
    color: var(--secondary);
}

/* Value Card Content */
.value-card-content {
    text-align: center;
}

.value-card-content h3 {
    font-size: calc(var(--text-s)*1.2);
    margin-bottom: 8px;
}

.value-card-content p {
    line-height: 1.6;
    margin-top: 8px;
    margin-bottom: 8px;
    color: #788094;
}

/* ============================================
   EXACT SERVICE PAGE STYLES - REFERENCE DESIGN
   ============================================ */

/* Service Page Hero - Exact Specifications */
.hero-service-exact {
    height: 480px;
    padding: clamp(3.13rem, calc(4.44vw + 1.71rem), 7.92rem) 0;
    background: linear-gradient(rgba(231, 44, 82, 0.65), rgba(231, 44, 82, 0.65)),
        url('https://images.unsplash.com/photo-1581594549595-35f6edc7b762?w=1200') center 20px / cover fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.hero-subtitle-service {
    color: #ffffff;
    margin-top: 1rem;
}

@media (max-width: 478px) {
    .hero-service-exact {
        height: 320px;
    }

    .hero-subtitle-service {
        text-align: center;
    }
}

/* Service Layout - 2 Columns */
.service-layout-exact {
    display: flex;
    flex-direction: row;
    gap: clamp(2.5rem, calc(2.87vw + 1.58rem), 5.6rem);
    align-items: flex-start;
}

@media (max-width: 478px) {
    .service-layout-exact {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/* Content Column (Left) - 70% */
.service-content-col {
    display: flex;
    flex-direction: column;
    width: 70%;
    padding-right: 80px;
    gap: clamp(0.64rem, calc(0.23vw + 0.57rem), 0.88rem);
}

@media (max-width: 767px) {
    .service-content-col {
        width: 100%;
    }
}

@media (max-width: 478px) {
    .service-content-col {
        width: 100%;
        padding-right: 0;
    }
}

.service-text p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #788094;
}

/* Sidebar Column (Right) - 30% */
.service-sidebar-col {
    display: flex;
    flex-direction: column;
    width: 30%;
    text-align: center;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    align-self: stretch !important;
    width: 100%;
}

@media (max-width: 767px) {
    .service-sidebar-col {
        width: 100%;
        position: static;
    }
}

@media (max-width: 478px) {
    .service-sidebar-col {
        width: 100%;
        position: static;
    }
}

/* Sticky CTA Box */
.sticky-cta-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    background-color: #ffffff;
    position: sticky;
    top: 170px;
    z-index: 1;
    padding: clamp(1.28rem, calc(0.65vw + 1.07rem), 1.98rem);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    gap: clamp(0.64rem, calc(0.23vw + 0.57rem), 0.88rem);
}

@media (max-width: 767px) {
    .sticky-cta-box {
        position: static;
    }
}

@media (max-width: 478px) {
    .sticky-cta-box {
        position: static;
    }
}

.sticky-cta-box h4 {
    margin: 0;
    font-size: var(--text-m);
}

.sticky-cta-box p {
    margin: 0;
}

/* Highlight Boxes */
.highlight-box-warning {
    margin-top: 16px;
    background-color: rgba(255, 193, 7, 0.07);
    padding: clamp(1.28rem, calc(0.65vw + 1.07rem), 1.98rem);
    border-radius: 12px;
}

.highlight-box-warning ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.highlight-box-warning ul li p {
    margin: 0.5rem 0;
}

.highlight-box-success {
    margin-top: 20px;
    background-color: rgba(139, 195, 74, 0.1);
    padding: clamp(1.28rem, calc(0.65vw + 1.07rem), 1.98rem);
    border-radius: 12px;
}

.highlight-box-success ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.highlight-box-success ul li p {
    margin: 0.5rem 0;
}

/* --- CONTENEDOR DEL CARRUSEL --- */
.service-carousel {
    width: 100%;
    max-width: 900px;
    /* Ajusta el tamaño máximo del cuadrado */
    margin: 0 auto;
    /* Centrar */
}

/* --- FORMATO CUADRADO PARA LAS IMÁGENES --- */
.service-carousel .swiper-slide {
    width: 100% !important;
    aspect-ratio: 1 / 1;
    /* Lo hace cuadrado */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- IMAGEN CUADRADA --- */
.service-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Recorta la imagen en cuadrado sin deformarla */
    border-radius: 12px;
    /* Opcional, para que se vea más bonito */
}

/* --- FLECHAS DEL CARRUSEL --- */
.swipper-service-wheelchair .swiper-button-prev,
.swipper-service-wheelchair .swiper-button-next {
    color: #333;
}

/* Forzar que cada slide sea PERFECTAMENTE cuadrado */
.swipper-service-wheelchair .swiper-wrapper {
    height: auto !important;
}

.swipper-service-wheelchair .swiper-slide {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    /* fuerza formato cuadrado */
    max-height: none !important;
}

/* Asegurar que la imagen respete el cuadrado */
.swipper-service-wheelchair .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Image Carousel */
.service-carousel {
    margin-top: 8px;
}

.service-carousel .swiper-slide {
    height: 200px;
}

.service-carousel .swiper-slide img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-carousel .swiper-button-prev,
.service-carousel .swiper-button-next {
    background-color: var(--secondary);
    opacity: 0.7;
    color: #ffffff;
    font-size: 24px;
    border-radius: 100px;
    height: 40px;
    width: 40px;
}

.service-carousel .swiper-button-prev:after,
.service-carousel .swiper-button-next:after {
    font-size: 20px;
}

.service-carousel .swiper-button-prev {
    left: 50px;
}

.service-carousel .swiper-button-next {
    right: 50px;
}

/* Testimonials Section */
.testimonials-section-exact {
    margin-top: 30px;
    background-color: rgba(231, 44, 82, 0.07);
    padding: 3rem clamp(3.13rem, calc(4.44vw + 1.71rem), 7.92rem);
    border-radius: 12px;
}

.testimonials-rating {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 24px;
}

@media (max-width: 478px) {
    .testimonials-rating i {
        font-size: 24px;
    }
}

.testimonials-carousel .swiper-slide {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 16px;
}

.testimonials-carousel {
    margin-top: 25px;
    padding-bottom: 50px;
}

.testimonials-carousel blockquote {
    margin: 0 0 1.5rem 0;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    font-size: 48px;
    color: var(--secondary);
}

.author-name {
    font-weight: 600;
}

.testimonials-carousel .swiper-pagination-bullet-active {
    background-color: var(--secondary);
}

.testimonials-carousel .swiper-pagination {
    bottom: 5px;
}

/* FAQ Accordion */
.faq-accordion {
    margin-top: 16px;
}

.faq-accordion .accordion-item {
    margin-bottom: 0;
}

.faq-accordion .accordion-title-wrapper {
    padding: 16px;
    background-color: #ffffff;
    margin-top: 16px;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-accordion .accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-accordion .accordion-title h3 {
    margin: 0;
    font-size: calc(var(--text-m)*1.1);
}

.faq-accordion .accordion-title i {
    font-size: var(--text-m);
    transition: transform 0.3s ease;
    color: #666;
}

.faq-accordion .brx-open .accordion-title-wrapper {
    background-color: var(--secondary);
}

.faq-accordion .brx-open .accordion-title h3,
.faq-accordion .brx-open .accordion-title i {
    color: #ffffff;
}

.faq-accordion .brx-open .accordion-title i {
    transform: rotate(180deg);
}

.faq-accordion .accordion-content-wrapper {
    padding: 16px;
    display: none;
}

.faq-accordion .accordion-content-wrapper p,
.faq-accordion .accordion-content-wrapper ol,
.faq-accordion .accordion-content-wrapper ul {
    margin: 0;
    line-height: 1.6;
}

/* Sidebar Services Menu */
.sidebar-services-menu {
    margin-top: 8px;
}

.sidebar-services-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-services-menu ul li {
    margin: 0;
}

.sidebar-services-menu ul li a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-services-menu ul li a:hover,
.sidebar-services-menu ul li a.active {
    color: var(--secondary);
}

.swipper-service-wheelchair {
    margin: unset
}

/* WhatsApp Floating Bubble */
.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    /* Slide up animation on page load */
    animation: slideUpBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-bubble i {
    color: #ffffff;
    font-size: 32px;
}

@media (max-width: 768px) {
    .whatsapp-bubble {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-bubble i {
        font-size: 28px;
    }
}

@keyframes slideUpBounce {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    60% {
        transform: translateY(-10px);
        opacity: 1;
    }

    80% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-bubble i {
    color: #ffffff;
    font-size: 32px;
}

@media (max-width: 768px) {
    .whatsapp-bubble {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-bubble i {
        font-size: 28px;
    }
}

@keyframes slideUpBounce {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    60% {
        transform: translateY(-10px);
        opacity: 1;
    }

    80% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Services Split Layout Section */
.services-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

@media (max-width: 991px) {
    .services-split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Services List Column */
.services-list-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Value Card List Item */
.value-card-list-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-card-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Value Icon Box Small */
.value-icon-box-small {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    width: 50px;
    height: 50px;
    background-color: rgba(44, 169, 182, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.value-icon-box-small i {
    font-size: 24px;
    color: var(--secondary);
}

/* Services Image Column */
.services-image-column {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #f5f8fa;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-image-placeholder .placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #788094;
}

.services-image-placeholder .placeholder-content i {
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
}

/* Complaints Book Page Styles */
/* .hero-contact-exact {
    padding: 6rem 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.hero-title-exact {
    color: var(--dark);
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
} */

.book-form-exact {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    max-width: 900px;
    margin: 0 auto;
}

.form-group-exact {
    margin-bottom: 1.5rem;
}

.form-group-exact label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group-exact input,
.form-group-exact select,
.form-group-exact textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-s);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-exact input:focus,
.form-group-exact select:focus,
.form-group-exact textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(44, 169, 182, 0.1);
}

.btn-lg-exact {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .hero-contact-exact {
        padding: 4rem 0;
    }

    .hero-title-exact {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-form-exact {
        padding: 1.5rem;
        max-width: 95%;
    }
}

/* Terms & Conditions Page */
.terms-section {
    background-color: var(--gray);
    padding: 4rem 0;
}

.terms-content {
    background: var(--light);
    padding: 3rem;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-m);
}

.terms-content h1 {
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.5rem;
}

.terms-content h2 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--gray);
    padding-bottom: 0.5rem;
}

.terms-content h3 {
    color: var(--secondary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.terms-content p {
    margin-bottom: 1rem;
    color: var(--text-main);
    line-height: 1.6;
}

.terms-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.terms-content strong {
    color: var(--dark);
    font-weight: 600;
}

/* Service Card Image Fix - Prevents images from overflowing */
.service-image {
    overflow: hidden !important;
}

.service-image .img-placeholder {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-image .img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Action Button (FAB) Container */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Base style for all bubbles */
.fab-container a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 0;
    right: 0;
}

/* Main WhatsApp bubble */
.whatsapp-bubble {
    background-color: #25D366;
    font-size: 32px;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Only WhatsApp bubble has all transition for scale */
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Social media bubbles (initially hidden) */
.social-bubble {
    font-size: 24px;
    opacity: 0;
    transform: translateY(0);
    /* Initial state */
    z-index: 9;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Specific colors for social bubbles */
.youtube-bubble {
    background-color: #FF0000;
}

.facebook-bubble {
    background-color: #1877F2;
}

.instagram-bubble {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Show and animate social bubbles when container is active */
.fab-container.fab-container-active .social-bubble {
    opacity: 1;
}

.fab-container.fab-container-active .instagram-bubble {
    transform: translateY(-70px);
    transition-delay: 0.05s;
}

.fab-container.fab-container-active .facebook-bubble {
    transform: translateY(-140px);
    transition-delay: 0.1s;
}

.fab-container.fab-container-active .youtube-bubble {
    transform: translateY(-210px);
    transition-delay: 0.15s;
}

.slide-in-item {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-item.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* TikTok Bubble Styling */
.tiktok-bubble {
    background-color: #000000;
    /* Black color for TikTok */
}

/* FAB Container Active States */
.fab-container.fab-container-active .facebook-bubble {
    transform: translateY(-70px);
    transition-delay: 0.05s;
}

.fab-container.fab-container-active .instagram-bubble {
    transform: translateY(-140px);
    transition-delay: 0.1s;
}

.fab-container.fab-container-active .youtube-bubble {
    transform: translateY(-210px);
    transition-delay: 0.15s;
}

.fab-container.fab-container-active .tiktok-bubble {
    transform: translateY(-280px);
    transition-delay: 0.2s;
}

/* Service Carousel Image Styling */
.service-carousel .swiper-slide img {
    object-fit: contain;
}

/* Image Styling for Cards */
.service-card img,
.wcu-card img,
.value-card-list-item img,
.testimonial-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    box-sizing: border-box;
}

/* Flexbox Centering for Card Elements */
.service-card .service-image,
.wcu-card .wcu-icon-wrapper,
.value-card-list-item .value-icon-box-small,
.testimonial-author .author-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   EXTRACTED INLINE STYLES FROM TEMPLATES
   ======================================== */

/* From services.html - Value card animations */
.value-icon-box-small {
    transition: transform 0.2s ease-out;
    /* Smooth transition for non-animated state */
}

.value-card-list-item:hover .value-icon-box-small {
    animation: checkBounce 0.4s ease-out;
    /* Apply bounce animation on hover */
}

@keyframes checkBounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.why-choose-us-section .wcu-card ul li {
    list-style-type: none;
    /* Remove default bullet points */
    position: relative;
    padding-left: 25px;
    /* Increased space for the custom bullet */
    margin-bottom: 8px;
    /* Increased space between list items */
}

.why-choose-us-section .wcu-card ul li::before {
    content: '—';
    /* Custom dash bullet */
    color: var(--primary, #e72c52);
    /* Use a brand color for the dash */
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* From services.html - Grid layout for last row */
.wcu-grid-last-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* From about.html - Header alignment */
.about-content-col .wcu-header h2::after {
    margin-left: 0;
}

.about-content-col .wcu-header h2 {
    font-size: 2.5rem;
}

/* From about.html - Objetivos section media query */
@media (min-width: 769px) {
    #objetivos-section .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
    }
}

/* From service-personalizado.html - Main image hover effect */
.service-main-image {
    overflow: hidden;
    border-radius: 15px;
    height: auto;
    /* Allow the container to adjust its height to the image */
}

.service-main-image img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    /* Make the image fill the container's height */
    object-fit: cover;
    /* Fill the container, cropping as needed */
    border-radius: var(--radius-l);
}

.service-main-image:hover img {
    transform: scale(1.05);
}

/* From service-traslado-acompanamiento.html - Carousel image styling */
.service-carousel .swiper-slide img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
}

/* From service-traslado-acompanamiento.html - Alternative main image styling */
/* Note: This overrides some properties from service-personalizado.html */
.service-main-image {
    display: flex;
    /* Use flexbox to center the image if it's smaller than the container */
    justify-content: center;
    align-items: center;
}

.service-main-image img {
    height: auto;
    /* Allow height to adjust naturally */
    /* object-fit: contain; Removed to allow image to fill the container naturally */
}