/* =========================================
   VARIABLES & THEME CONFIGURATION
   ========================================= */
:root {
    /* Colors */
    --clr-primary: #111827; /* Rich dark / almost black */
    --clr-primary-light: #374151;
    --clr-accent: #374151; /* Dark gray to match logo */
    --clr-accent-hover: #111827;
    --clr-bg-main: #FAFAFA;
    --clr-bg-light: #F3F4F6;
    --clr-text-main: #4C4C4C;
    --clr-text-dark: #1F2937;
    --clr-obsidian: #0b111a;
    --clr-white: #FFFFFF;
    
    /* WhatsApp Green */
    --clr-whatsapp: #25D366;
    --clr-whatsapp-hover: #128C7E;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions & Shadows (Emil Kowalski Physics & Blur Shadows) */
    --trans-fast: 0.15s cubic-bezier(0.32, 0.72, 0, 1);
    --trans-normal: 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    --trans-slow: 0.8s cubic-bezier(0.32, 0.72, 0, 1);
    --spring-bounce: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.03), 0 0 0 1px rgba(0,0,0,0.02);
    --shadow-lg: 0 12px 28px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.02);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.12), 0 12px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.02);
}

/* =========================================
   TESTIMONIALS SECTION (PREMIUM GRID)
   ========================================= */
.testimonials-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.testimonial-video-card {
    background: var(--clr-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--trans-medium);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    min-width: 0; /* Prevents overflow in grid */
}

.testimonial-video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 1rem;
    text-align: center;
}

.testimonial-content h4 {
    font-size: 1.1rem;
    color: var(--clr-primary);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.testimonial-content p {
    font-size: 0.8rem;
    color: var(--clr-text-main);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 900px) {
    .testimonials-row {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 600px) {
    .testimonials-row {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================
   RESET & FOUNDATION
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-text-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans-fast);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--clr-bg-light);
}

.bg-dark {
    background-color: var(--clr-primary);
}

.text-white {
    color: var(--clr-white) !important;
}

.center {
    text-align: center;
}

.mt-12 {
    margin-top: 3rem;
}

/* =========================================
   BUTTONS & CTA
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--trans-normal);
    border: 2px solid transparent;
    will-change: transform;
}

.btn:active {
    transform: scale(0.96) translateY(0) !important;
}

.btn i {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-white);
    box-shadow: 0 4px 14px 0 rgba(2, 132, 199, 0.39);
}

.btn-primary:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.23);
}

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

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

.btn-whatsapp {
    background-color: var(--clr-whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background-color: var(--clr-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

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

.full-width {
    width: 100%;
}

.text-link {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
}

.text-link:hover {
    color: rgba(255,255,255,0.75);
    text-decoration: underline;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--trans-normal);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-container {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--clr-primary);
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: var(--trans-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.875rem !important;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--clr-primary);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--clr-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .nav-links, .nav-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

/* Video Background */
.hero-video-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.7) 0%,
        rgba(15, 23, 42, 0.4) 50%,
        rgba(15, 23, 42, 0.65) 100%
    );
    z-index: 1;
}

/* Hero Content Over Video */
.hero-overlay-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-video-section .hero-container {
    grid-template-columns: 1fr;
    max-width: 800px;
    text-align: center;
}

.hero-video-section .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-video-section .badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--clr-white);
    backdrop-filter: blur(4px);
}

.hero-video-section .hero-title {
    color: var(--clr-white);
}

.hero-video-section .hero-title .highlight {
    color: #34d399;
}

.hero-video-section .hero-title .highlight::after {
    background-color: rgba(52, 211, 153, 0.15);
}

.hero-video-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    max-width: 100%;
}

.hero-video-section .hero-actions {
    justify-content: center;
}

.hero-video-section .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--clr-white);
}

.hero-video-section .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-video-section .trust-indicators {
    border-top-color: rgba(255, 255, 255, 0.2);
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-video-section .trust-item {
    color: var(--clr-white);
}

.hero-video-section .trust-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: #93c5fd;
}

.hero-bg-accent {
    display: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(2, 132, 199, 0.1);
    color: var(--clr-accent);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--clr-primary);
}

.hero-title .highlight {
    color: #34d399;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(52, 211, 153, 0.15);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-main);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--clr-bg-light);
    color: var(--clr-accent);
}

.hero-image-wrapper {
    position: relative;
}

.image-backdrop {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 100%;
    height: 100%;
    background-color: var(--clr-primary);
    border-radius: 2rem;
    z-index: -1;
    transform: rotate(3deg);
}

.hero-image {
    width: 100%;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--clr-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(2, 132, 199, 0.1);
    color: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    font-family: var(--font-heading);
    color: var(--clr-primary);
    font-size: 1.1rem;
}

.card-text span {
    font-size: 0.875rem;
    color: var(--clr-text-main);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 2.5rem auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .trust-indicators {
        align-items: center;
    }
    .floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 90%;
        animation: none;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.section-header {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--clr-text-main);
}

.services-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(180deg, var(--clr-white) 0%, rgba(249, 250, 251, 0.8) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02), 0 0 0 1px rgba(0,0,0,0.03);
    transition: var(--trans-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(2, 132, 199, 0.2);
}

.service-card:active {
    transform: scale(0.98);
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(2, 132, 199, 0.08);
    color: var(--clr-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-wrapper i {
    width: 24px;
    height: 24px;
}

.service-badge {
    background-color: var(--clr-bg-main);
    color: var(--clr-text-main);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card-body {
    flex-grow: 1;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--clr-text-dark);
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--clr-text-main);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-action {
    margin-top: auto;
}

.btn-card-action {
    background-color: transparent;
    color: var(--clr-primary);
    border: 1px solid rgba(0,0,0,0.1);
    justify-content: space-between;
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
}

.btn-card-action:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--trans-fast);
}

.btn-card-action:hover .btn-arrow {
    transform: translateX(4px);
}


/* =========================================
   BENEFITS / WHY CHOOSE US SECTION
   ========================================= */
.benefits {
    background-color: #ffffff !important;
    color: var(--clr-text-dark);
}

.benefits-video-container, .benefits-grid-video {
    display: flex;
    flex-direction: row; /* Force side-by-side */
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-video-card {
    background: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.05); /* Very subtle border */
    border-radius: 20px;
    overflow: hidden;
    transition: var(--trans-normal);
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16; /* Portrait ratio for smartphone videos */
    background: #000;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.7);
    pointer-events: none;
    transition: var(--trans-fast);
}

.benefit-video-card:hover .video-overlay {
    opacity: 0;
}

.benefit-video-content {
    padding: 1.5rem 2rem;
    flex: 1;
}

.benefit-video-content h3 {
    font-size: 1.25rem;
    color: var(--clr-text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.benefit-video-content p {
    font-size: 0.9rem;
    color: var(--clr-text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--clr-text-dark);
}

.benefit-list li i {
    width: 18px;
    height: 18px;
    color: #10b981; /* Success Green for checks */
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .benefits-video-container, .benefits-grid-video {
        flex-direction: row; /* Still row for tablets */
        align-items: flex-start;
        gap: 1rem;
    }
    .benefit-video-card {
        width: 100%;
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .benefits-video-container, .benefits-grid-video {
        flex-direction: column; /* Stack on mobile for usability */
        align-items: center;
    }
}

.btn-secondary {
    background-color: var(--clr-white);
    color: var(--clr-primary);
}

.btn-secondary:hover {
    background-color: var(--clr-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.mt-12 { margin-top: 3rem; }
.mb-10 { margin-bottom: 2.5rem; }

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    align-items: start; /* Don't force equal height cards to avoid white space */
}

.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    background-color: var(--clr-white);
    box-shadow: var(--shadow-md);
    transition: var(--trans-normal);
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.ba-image-container {
    position: relative;
    width: 100%;
    background-color: transparent;
    overflow: hidden;
}

.ba-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Show full image without cropping */
}

.ba-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--clr-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    width: 24px;
    height: 24px;
}

.method-details h3 {
    color: var(--clr-white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.method-details p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem 1.25rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    align-items: center;
}

.hours-grid .day {
    font-weight: 600;
    color: var(--clr-white);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.hours-grid .time {
    font-variant-numeric: tabular-nums;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 350px;
    }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: #0b111a;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    opacity: 1;
}

.footer-links h3 {
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--clr-accent);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    transition: var(--trans-fast);
}

.social-links a:hover {
    background-color: var(--clr-accent);
    transform: translateY(-3px);
}

/* =========================================
   BOOKING FUNNEL (HEALTHATOM STYLE)
   ========================================= */
.booking-funnel {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2000;
    display: none;
    align-items: flex-end; /* Slide from bottom */
    justify-content: center;
    opacity: 0;
    transition: opacity var(--trans-normal);
}

.booking-funnel.active {
    display: flex;
    opacity: 1;
}

.funnel-backdrop {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.funnel-container {
    position: relative;
    background-color: var(--clr-bg-light);
    width: 100%;
    height: 90vh; /* Drawer style */
    max-width: 1200px;
    z-index: 1;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform var(--spring-bounce);
    will-change: transform;
}

.booking-funnel.active .funnel-container {
    transform: translateY(0);
}

/* Sidebar */
.funnel-sidebar {
    width: 250px;
    background-color: var(--clr-primary); /* Healthatom Red, customized logic */
    color: var(--clr-white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.sidebar-logo-img {
    width: 100%;
    max-width: 140px;
    margin-bottom: 2rem;
    border-radius: 0;
    filter: brightness(0) invert(1);
}

.sidebar-info h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: #ffffff; }
.sidebar-info p { font-size: 0.95rem; opacity: 0.9; }

.funnel-close-btn {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 36px; height: 36px;
    border-radius: 4px;
    cursor: pointer;
    display: none; /* Mobile only usually, or keep here */
}

/* Body */
.funnel-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--clr-bg-light);
    overflow-y: auto;
}

.funnel-header {
    background-color: var(--clr-white);
    padding: 1.5rem 3rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.back-btn {
    background: var(--clr-bg-light);
    border: none;
    width: 40px; height: 40px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    margin-right: 2rem;
    color: var(--clr-text-main);
    transition: var(--trans-fast);
}
.back-btn:hover:not(:disabled) { background: #e2e8f0; }
.back-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Progress Tracker */
.progress-tracker {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    position: relative;
}

.step.active {
    color: var(--clr-primary);
}

.step.completed {
    color: var(--clr-primary);
}

.step-circle {
    width: 24px; height: 24px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    color: white;
    transition: all 0.3s;
}

.step.active .step-circle { background-color: var(--clr-primary); }
.step.completed .step-circle { background-color: var(--clr-primary); }

.step span {
    font-size: 0.8rem;
    font-weight: 500;
}

.step-line {
    flex: 1;
    height: 2px;
    background-color: #e5e7eb;
    margin: 0 10px;
    transform: translateY(-10px);
}

.step-line.filled {
    background-color: var(--clr-primary);
}

/* Content Views */
.funnel-content {
    padding: 3rem;
    flex: 1;
    background-color: #fcfcfc;
}

.step-view {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step-view.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.view-title {
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Form Styles */
.patient-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
    font-size: 0.9rem;
    color: var(--clr-text-main);
    font-weight: 500;
}

.form-group input {
    padding: 0.8rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--clr-primary);
}

.phone-input-group {
    display: flex;
}

.country-code {
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    border-right: none;
    padding: 0.8rem 1rem;
    border-radius: 6px 0 0 6px;
    color: var(--clr-text-main);
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
}

.phone-input-group input {
    flex: 1;
    border-radius: 0 6px 6px 0;
}

/* Service Boxes */
.service-selection-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-box-btn {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.25rem;
    text-align: left;
    cursor: pointer;
    transition: var(--trans-fast);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-box-btn:hover {
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.service-box-btn h4 {
    color: #1f2937;
    font-size: 1.05rem;
}
.service-box-btn span {
    color: #6b7280;
    font-size: 0.85rem;
}

/* Availability Calendar Grid */
.availability-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
}

.professional-card-large {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
}

.prof-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: #64748b;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 700;
    margin-bottom: 1.5rem;
}

.prof-details h4 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.prof-details p { color: #64748b; margin-bottom: 1.5rem; }

.prof-location {
    display: flex; flex-direction: column; gap: 0.25rem;
    margin-bottom: 1.5rem; font-size: 0.9rem;
}
.prof-duration p {
    font-size: 0.9rem;
}

.calendar-section {
    display: flex;
    flex-direction: column;
}

.week-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.days-container {
    display: flex;
    gap: 1rem;
    flex: 1;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.funnel-continue-cta {
    width: 100%;
    max-width: 320px;
    display: block; /* Will be toggled by JS block/none */
    margin-top: 2rem;
    text-align: center;
    box-sizing: border-box;
}

.days-container::-webkit-scrollbar { height: 4px; }
.days-container::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

.day-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px; height: 75px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
}

.day-btn.active {
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(186, 12, 47, 0.3);
}

.day-btn span { font-size: 0.75rem; text-transform: uppercase; margin-bottom: 0.25rem; }
.day-btn strong { font-size: 1.25rem; font-weight: 700; }

.day-btn.active span, .day-btn.active strong { color: white; }

.day-btn.disabled,
.day-btn:disabled {
    background: #f8fafc;
    color: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.55;
    border-style: dashed;
}
.day-btn.disabled span, .day-btn.disabled strong,
.day-btn:disabled span, .day-btn:disabled strong { color: #cbd5e1; }

.filter-btn { transition: all 0.2s; }
.filter-btn:hover:not(.active) { background: #e2e8f0; }

.nav-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.selected-date-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--clr-primary);
}

.time-filters {
    display: flex; gap: 0.5rem; margin-bottom: 1.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

.filter-btn.active {
    background: var(--clr-primary);
    color: white;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.time-btn {
    padding: 0.75rem 1.5rem;
    background: #fee2e2;
    color: var(--clr-primary);
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.time-btn.selected {
    background: var(--clr-primary);
    color: white;
    box-shadow: 0 4px 10px rgba(186, 12, 47, 0.3);
}

.time-btn:not(.selected):hover {
    background: #fecaca;
}

/* Success View */
.success-alert {
    text-align: center;
    margin-bottom: 2rem;
}
.success-icon-large {
    width: 80px; height: 80px;
    color: #10b981;
    margin-bottom: 1rem;
}
.success-text h2 { color: #10b981; margin-bottom: 0.5rem; }

.appointment-summary {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}
.summary-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 1rem;
    margin-top: 1.5rem;
}
.summary-list li {
    display: flex; justify-content: space-between;
    border-bottom: 1px dashed #e5e7eb;
    padding-bottom: 0.5rem;
}

/* Footer */
.funnel-footer {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    background-color: var(--clr-white);
    color: #9ca3af;
}

@media (max-width: 900px) {
    .funnel-container {
        flex-direction: column;
        height: 100vh;
        width: 100%;
        border-radius: 0;
    }
    .funnel-sidebar {
        width: 100%;
        flex-direction: row;
        align-items: center;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    .sidebar-icon {
        width: 50px; height: 50px;
        margin-bottom: 0;
    }
    .funnel-close-btn { display: flex; right: 1rem; left: auto;}
    .funnel-header { padding: 1rem 1.5rem; }
    .back-btn { margin-right: 1rem; }
    .progress-tracker span { display: none; }
    .funnel-content { padding: 1.5rem; }
    .availability-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .patient-form { grid-template-columns: 1fr; }
}

/* =========================================
   ANIMATIONS / REVEALS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   FLOATING WHATSAPP BUTTON
   ========================================= */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.4);
    z-index: 1500;
    transition: var(--trans-normal);
}

.floating-wa svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    stroke: currentColor;
}

.floating-wa:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
    color: var(--clr-white);
}

@media (max-width: 768px) {
    .floating-wa {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
    .floating-wa svg {
        width: 28px;
        height: 28px;
    }
}

.funnel-continue-btn {
    width: 100%;
    max-width: 320px;
    margin: 2rem auto 0 auto;
    display: block;
}
.full-width {
    width: 100%;
}

/* Treatment Grid Section */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.treatment-card {
    background: var(--clr-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--trans-medium);
    position: relative;
    display: flex;
    flex-direction: column;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.treatment-img {
    aspect-ratio: 1/1; /* Ensure uniform size for all treatment images */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.treatment-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.5rem 0.8rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-obsidian);
    box-shadow: var(--shadow-sm);
    z-index: 5;
    border: 1px solid rgba(0,0,0,0.05);
}

.treatment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.treatment-card:hover .treatment-img img {
    transform: scale(1.1);
}

.treatment-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.treatment-info h3 {
    font-size: 1.25rem;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.treatment-info p {
    font-size: 0.95rem;
    color: var(--clr-text-main);
    opacity: 0.8;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .treatment-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}
/* =========================================
   BENEFITS GRID (ALOTORNOLAZGO)
   ========================================= */
.benefits {
    background-color: var(--clr-obsidian);
    color: var(--clr-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: var(--clr-white);
    color: var(--clr-text-dark);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: var(--trans-normal);
    border: 1px solid rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.benefit-img-wrapper {
    background-color: #f1f5f9;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.benefit-content h4 {
    font-size: 1.15rem;
    color: var(--clr-obsidian);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--clr-text-main);
    line-height: 1.5;
    margin-bottom: auto;
}

.benefit-highlight {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #10b981;
}

/* =========================================
   TEAM SECTION STYLES
   ========================================= */
.profile-card-modern {
    background: #fff;
    border-radius: 40px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.03);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.profile-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
}

.profile-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.profile-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--clr-obsidian);
}

.profile-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--clr-text-main);
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-obsidian);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .profile-image img {
        max-width: 300px;
        margin: 0 auto;
    }
    .profile-tags {
        justify-content: center;
    }
}

/* =========================================
   MOBILE OPTIMIZATIONS (≤768px)
   ========================================= */
@media (max-width: 768px) {
    /* Container: tighter padding so content breathes */
    .container {
        padding: 0 1rem;
    }

    /* Section padding: reduce vertical whitespace */
    .section-padding {
        padding: 3.5rem 0;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 2.5rem;
    }
    .section-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    .section-subtitle {
        font-size: 1rem;
    }

    /* Navbar */
    .nav-container {
        height: 60px;
    }
    .logo img {
        height: 64px;
        width: auto;
        max-width: 180px;
    }

    /* Hero section: video background needs taller min-height on phones */
    .hero-video-bg {
        aspect-ratio: auto;
        min-height: 560px;
    }
    .hero-video-section .hero-container {
        padding-top: 0;
    }
    .hero-overlay-content {
        padding: 80px 1rem 2rem 1rem;
    }
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-video-section .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    /* Buttons */
    .btn-large {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    /* Services / treatment grid: 1 column on small phones */
    .services-list-container,
    .treatment-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .service-card {
        padding: 1.75rem 1.5rem;
    }

    /* Benefits video cards: full width when stacked */
    .benefits-grid-video {
        gap: 1.5rem !important;
    }
    .benefit-video-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Profile/team card */
    .profile-card-modern {
        padding: 1.75rem 1.25rem;
        border-radius: 24px;
    }
    .profile-info h3 {
        font-size: 1.5rem;
    }
    .profile-bio {
        font-size: 1rem;
    }

    /* Contact section */
    .contact-container {
        gap: 2rem;
    }
    .contact-method {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .map-container {
        height: 280px !important;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    .footer-top {
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    .footer-brand {
        max-width: 100%;
    }
    .footer-logo {
        height: 70px;
        margin-bottom: 1.25rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    /* Booking funnel: avoid horizontal overflow on small screens */
    .funnel-content {
        padding: 1.25rem 1rem;
    }
    .funnel-header {
        padding: 0.85rem 1rem;
    }
    .view-title {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }
    .calendar-days-row {
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    .day-btn {
        flex-shrink: 0;
    }
    .time-btn {
        font-size: 0.9rem;
    }

    /* Floating WhatsApp clears safe area on phones with home bar */
    .floating-wa {
        bottom: max(1.25rem, env(safe-area-inset-bottom));
    }

    /* Testimonial videos */
    .testimonials-row {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    /* Mobile menu links: bigger tap targets */
    .mobile-menu a {
        padding: 0.5rem 0;
        font-size: 1rem;
    }
}

/* Extra-small phones (≤420px): tighten further */
@media (max-width: 420px) {
    .hero-title {
        font-size: 1.65rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }
    .hero-video-bg {
        min-height: 600px;
    }
    .container {
        padding: 0 0.875rem;
    }
}

