/* ============================================
   SHREE MATA — Form&Fun Aesthetic
   ============================================ */

:root {
    --bg: #FAFAF7; /* Soft ivory/cream background */
    --text: #2c1a1a; /* Deep maroon/brown text */
    --text-dim: #8b7979;
    --accent: #6B1313; /* Devotional Maroon */
    --gold: #D4AF37; /* Devotional Gold */
    --border: rgba(107, 19, 19, 0.15);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

/* Failsafe: Only hide system cursor if JS successfully enables the custom cursor */
body.custom-cursor-active * {
    cursor: none !important;
}

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.76, 0, 0.24, 1), 
                height 0.3s cubic-bezier(0.76, 0, 0.24, 1), 
                background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* mix-blend-mode: difference; Removed for light theme so blue stays blue */
}

.cursor-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    opacity: 0;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

/* Cursor States */
.cursor.hover-state {
    width: 60px;
    height: 60px;
    background-color: var(--text);
    mix-blend-mode: normal;
}

.cursor.view-state, .cursor.drag-state {
    width: 100px;
    height: 100px;
    background-color: var(--accent);
    mix-blend-mode: normal;
}

.cursor.view-state .cursor-text, 
.cursor.drag-state .cursor-text {
    opacity: 1;
}


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2vh 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.15); /* Much more transparent for clear glass look */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05); /* subtle separation line */
}

.nav-logo {
    width: auto;
    height: 60px;
    display: flex;
    align-items: center;
}

.mata-logo {
    font-family: 'Outfit', sans-serif; /* Matched to the sleek hero title */
    font-weight: 400; /* Lighter, more elegant weight */
    letter-spacing: 2px; /* Open tracking for aesthetic look */
    text-transform: uppercase;
    color: var(--accent);
    white-space: nowrap;
}

/* Navbar specific logo style */
.nav-logo .mata-logo {
    font-size: 1.5vw;
}

/* ============================================
   INTRO OVERLAY (GSAP FLIP)
   ============================================ */
#intro-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(244, 241, 235, 0.5); /* Transparent/Frosted glass loading screen */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-logo-container {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Intro specific logo style */
.intro-logo-container .mata-logo {
    font-size: 3vw; /* Chota karo (smaller text as requested) */
    color: var(--text); /* Darker solid color looks premium on transparent bg */
}

.nav-links {
    display: flex;
    gap: 3vw;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 1vw;
    font-weight: 500;
    text-transform: uppercase;
}


/* ============================================
   STICKY HERO SECTION
   ============================================ */
.sticky-hero-section {
    height: 200vh; /* Scroll room */
    position: relative;
    background: var(--bg);
}

.sticky-hero-container {
    position: sticky;
    top: 0;
    height: 100dvh; /* dvh fixes mobile browser URL bar jumpiness */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8vh 4vw 0; /* Just enough padding to clear the higher nav */
}

/* Aurora Glassmorphism Tech Grid */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Changed from 100dvh to 100% to cover the full sticky section if it grows */
    z-index: 0;
    background-color: var(--bg);
    overflow: hidden;
}

/* Floating Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3; /* Reduced opacity to make colors lighter and more subtle */
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: #6b1313; /* Maroon */
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: #d4af37; /* Gold */
    animation-delay: -5s;
    animation-direction: alternate-reverse;
}

.blob-3 {
    top: 40%;
    left: 40%;
    width: 40vw;
    height: 40vw;
    background: #d39898; /* Soft dusty rose for blending */
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10vw, -10vh) scale(1.1); }
    66% { transform: translate(-10vw, 15vh) scale(0.9); }
    100% { transform: translate(5vw, 5vh) scale(1.2); }
}

/* Glassmorphism Grid Overlay */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#a0a0a0 1px, transparent 1px);
    background-size: 30px 30px;
    backdrop-filter: blur(20px); /* Creates the frosted glass effect over the blobs */
    -webkit-backdrop-filter: blur(20px);
    z-index: 1;
}

/* Mouse Spotlight */
.hero-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(107, 19, 19, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%); /* Start centered on the mouse when updated by JS */
    pointer-events: none; /* Let mouse pass through to text */
    z-index: 2; /* Spotlight goes over the grid */
}

/* ============================================
   HERO DESKTOP SPLIT LAYOUT
   ============================================ */
.hero-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    width: 100%;
    max-width: 1600px;
    align-items: center;
    z-index: 2;
    padding: 0 4vw;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-overline {
    font-family: var(--font-body);
    font-size: 0.9vw;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 2vh; /* Condensed */
    font-weight: 600;
}

.hero-title-grid {
    font-family: 'Outfit', sans-serif;
    font-size: 11vw; /* Restored to massive size */
    line-height: 0.82; /* Slightly tighter line height to save a bit of vertical space */
    margin: 0;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    letter-spacing: -2px;
}

.solid-text {
    color: var(--text);
    font-weight: 700;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--text);
    font-weight: 700;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 1.1vw;
    font-weight: 500; /* Made text a bit bolder for better readability */
    color: var(--text-dim);
    margin-top: 2vh; /* Condensed */
    line-height: 1.6;
    max-width: 600px;
}

.reveal-text span {
    transition: color 0.1s ease;
}

.reveal-text span.active {
    color: var(--text); /* Changes to solid text color on scroll */
}

.hero-actions {
    display: flex;
    gap: 1.5vw;
    margin-top: 3vh; /* Condensed */
}

.btn-primary, .btn-outline {
    font-family: var(--font-body);
    padding: 1.2vw 2.5vw;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9vw;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
    border: 1px solid var(--text);
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--text);
}

/* ============================================
   TRUST BADGE
   ============================================ */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 1.5vw;
    margin-top: 3vh; /* Below the buttons */
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -1vw; /* Negative margin for overlapping like Audi logo */
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-rating {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-rating .stars {
    color: var(--gold);
    font-size: 1.2vw;
    letter-spacing: 2px;
}

.trust-rating .rating-text {
    font-family: var(--font-body);
    font-size: 0.8vw;
    font-weight: 600;
    color: var(--text-dim);
    margin-top: 0.3vh;
}

.hero-content-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    border-left: 1px solid var(--border);
    padding-left: 4vw;
}

.hero-stats-container {
    display: flex;
    flex-direction: column;
    gap: 8vh;
    align-items: flex-end;
}


.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3.5vw;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 0.7vw;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}


/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2vh 0;
    overflow: hidden;
    background: var(--bg);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: 200%;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: 4vw;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text);
    padding-right: 4vw;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ============================================
   SERVICES (HOVER REVEAL STYLE)
   ============================================ */
.services {
    padding: 10vh 4vw;
    border-bottom: 1px solid var(--border);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10vh;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 6vw;
    line-height: 1;
    text-transform: uppercase;
}

.header-count {
    font-size: 1.5vw;
    color: var(--text-dim);
}

.service-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4vh 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: padding 0.3s ease;
}

.service-info {
    z-index: 2;
    pointer-events: none;
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 3vw;
    font-weight: 500;
}

.service-item p {
    font-size: 1.2vw;
    color: var(--text-dim);
    margin-top: 1vh;
}

/* Image reveal on hover - JS tracking */
.service-media {
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(0) rotate(-10deg);
    width: 400px;
    height: 300px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.service-item:hover .service-media {
    opacity: 1;
    transform: scale(1) rotate(0deg) !important; /* Rotation and scale transition, position handled by JS */
}

.service-item:hover {
    padding-left: 2vw;
    padding-right: 2vw;
    background: #e8e8e8; /* Light hover background */
}


/* ============================================
   IMAGE BREAK
   ============================================ */
.image-break {
    width: 100%;
    height: 80vh;
    padding: 4vw;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
}


/* ============================================
   MOBILE-ONLY ELEMENTS
   ============================================ */
.card-text-stack {
    display: none; /* Hidden on PC, enabled in mobile media query */
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 10vh 4vw;
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 5vw;
    line-height: 1;
}

.stats-list {
    display: flex;
    flex-direction: column;
}

.stat-row {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr;
    padding: 3vh 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.stat-row:first-child {
    border-top: 1px solid var(--border);
}

.stat-num {
    font-family: var(--font-body);
    color: var(--text-dim);
}

.stat-name {
    font-family: var(--font-body);
    font-size: 1.2vw;
    text-transform: uppercase;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 2.5vw;
    text-align: right;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 10vh 4vw 4vw;
    background: var(--accent); /* Massive pop of color at the end */
    color: #ffffff;
}

.footer-cta h2 {
    font-family: var(--font-heading);
    font-size: 10vw;
    line-height: 0.85;
    margin-bottom: 6vh;
}

.giant-link {
    font-family: var(--font-heading);
    font-size: 4vw;
    border-bottom: 2px solid #ffffff;
    display: inline-block;
    padding-bottom: 1vh;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 15vh;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 4vh;
}

.footer-socials {
    display: flex;
    gap: 2vw;
}

.footer-brand, .footer-socials a {
    font-family: var(--font-body);
    font-size: 1vw;
    text-transform: uppercase;
}


/* ============================================
   HAMBURGER BUTTON (Hidden on desktop)
   ============================================ */
.hamburger {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 22px;
    position: relative;
    z-index: 1001;
    padding: 0;
}

.ham-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text);
    position: absolute;
    left: 0;
    transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    border-radius: 2px;
}
.ham-line-1 { top: 0; }
.ham-line-2 { top: 50%; transform: translateY(-50%); }
.ham-line-3 { bottom: 0; }

/* X transform when menu is open */
.hamburger.active .ham-line-1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.hamburger.active .ham-line-2 {
    opacity: 0;
    transform: translateX(10px);
}
.hamburger.active .ham-line-3 {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}
/* When menu is open, lines turn white */
.hamburger.active .ham-line {
    background-color: #fff;
}

/* ============================================
   FULLSCREEN MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--accent);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    clip-path: circle(0% at calc(100% - 40px) 30px);
    transition: clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
    clip-path: circle(150% at calc(100% - 40px) 30px);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vh;
}

.mobile-menu-link {
    font-family: var(--font-heading);
    font-size: 12vw;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu-overlay.active .mobile-menu-link:nth-child(1) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(2) { transition-delay: 0.35s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(3) { transition-delay: 0.5s; }

.mobile-menu-link:hover,
.mobile-menu-link:active {
    color: var(--gold);
}

.mobile-menu-footer {
    position: absolute;
    bottom: 6vh;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-body);
    font-size: 3vw;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    z-index: 99; /* Below nav, above content */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

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

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================
   MOBILE RESPONSIVENESS
   ============================================ */
@media (max-width: 768px) {
    .cursor { display: none !important; }
    * { cursor: auto !important; }
    .nav { padding: 2vw 4vw; }
    .nav-logo .mata-logo { font-size: 5vw; }
    
    /* Hide desktop nav links, show hamburger */
    .nav-links { display: none !important; }
    .hamburger { display: block; }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4vh;
        margin-top: 0;
        padding: 0; /* Remove desktop side padding on mobile */
    }

    .hero-overline {
        font-size: 2.8vw;
        letter-spacing: 1px;
        margin-bottom: 1vh;
        line-height: 1.4;
        color: var(--gold);
        opacity: 0.8;
        white-space: nowrap; /* Force single line */
    }

    .hero-title-grid { 
        font-size: 14vw;
        letter-spacing: -1px; 
        line-height: 1; 
        padding: 0;
        text-align: left;
    }

    .outline-text {
        -webkit-text-stroke: 1.5px var(--text);
    }
    
    .hero-desc { 
        font-size: 4vw; 
        max-width: 100%; 
        color: var(--text-dim);
        text-align: left;
        margin-top: 2vh;
    }

    .hero-actions {
        flex-direction: column;
        gap: 3vw;
        margin-top: 4vh;
    }

    .trust-badge {
        margin-top: 4vh;
        gap: 3vw;
        justify-content: center;
        width: 100%;
    }
    
    .trust-avatars img {
        width: 10vw;
        height: 10vw;
        margin-left: -4vw;
        border-width: 3px;
    }
    
    .trust-rating .stars {
        font-size: 4vw;
    }
    
    .trust-rating .rating-text {
        font-size: 2.8vw;
    }

    .btn-primary, .btn-outline {
        font-size: 3.5vw;
        padding: 4vw;
        width: 100%;
    }

    .hero-content-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        border-top: 1px solid var(--border);
        padding-top: 4vh;
        margin-top: 2vh;
    }

    .hero-stats-container {
        display: flex;
        flex-direction: row;
        justify-content: space-around; /* Distribute evenly */
        width: 100%;
    }

    .hero-stat {
        align-items: center;
        text-align: center;
        width: 30%; /* Equal width for the 3 stats */
        gap: 0.5vh;
    }

    .stat-value { font-size: 6.5vw; line-height: 1; }
    .stat-label { font-size: 1.8vw; letter-spacing: 0.5px; margin-top: 0; line-height: 1.2; }

    .sticky-hero-container {
        padding: 14vh 5vw 4vh; /* Extra top padding to clear the navbar */
        gap: 3vh; 
        justify-content: flex-start; 
        align-items: flex-start; 
        height: auto; 
        min-height: 100dvh;
    }
    .section-header h2 { 
        font-size: 15vw; 
        background: linear-gradient(
            90deg, 
            var(--text) 0%, 
            var(--text) 35%, 
            #d4af37 50%, 
            var(--text) 65%, 
            var(--text) 100%
        );
        background-size: 200% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: textShine 4s ease-in-out infinite;
    }
    
    @keyframes textShine {
        0% { background-position: 200% center; }
        100% { background-position: -200% center; }
    }
    
    .header-count { font-size: 4vw; }
    
    .services {
        overflow: hidden; /* Prevent horizontal scrolling when cards swipe */
    }
    
    .service-list {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        align-items: start;
        overflow: visible; 
        padding-bottom: 20vh; /* Space to hold the text stack */
    }

    .service-item { 
        grid-column: 1;
        grid-row: 1;
        flex-direction: column; 
        align-items: flex-start; 
        gap: 2vh; 
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 6vw;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        transform-origin: center center;

    }
    
    .service-info {
        pointer-events: auto;
    }
    
    .service-item h3 { font-size: 8vw; }
    .service-item p { font-size: 4.5vw; }
    
    /* Remove image break on mobile */
    .image-break { display: none; }
    
    /* Make the images part of the card on mobile */
    .service-media { 
        position: relative; 
        left: 0; 
        top: 0; 
        transform: none !important; 
        width: 100%; 
        height: 200px; 
        opacity: 1; 
        margin-top: 2vh;
        border-radius: 12px;
        z-index: 1;
    }
    
    .about-grid { grid-template-columns: 1fr; }
    .about-text h2 { font-size: 10vw; }
    .stat-name { font-size: 4vw; }
    .stat-val { font-size: 8vw; }
    
    .footer-cta h2 { font-size: 14vw; }
    .giant-link { font-size: 6vw; }

    /* Make Aurora blobs much larger on mobile so they fill the screen */
    .blob-1 {
        width: 120vw;
        height: 120vw;
    }
    .blob-2 {
        width: 100vw;
        height: 100vw;
    }
    .blob-3 {
        width: 80vw;
        height: 80vw;
    }
    
    .footer-bottom { flex-direction: column; gap: 4vh; }
    .footer-brand, .footer-socials a { font-size: 3.5vw; }

    /* Cursive Text Stack below the cards */
    .card-text-stack {
        grid-column: 1;
        grid-row: 1;
        align-self: end;
        height: 10vh;
        margin-bottom: -12vh; /* 10vh height + 2vh gap to push it entirely below the card */
        position: relative;
        width: 90%;
        justify-self: center;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    
    .cursive-text {
        position: absolute;
        width: 100%;
        font-family: 'Dancing Script', cursive;
        font-size: 8vw;
        color: var(--accent); /* Devotional Maroon */
        opacity: 0; /* Default to hidden */
        font-weight: 700;
        line-height: 1.2;
        transform-origin: center center;
    }
    .cursive-text:first-child {
        opacity: 1; /* Only the first one shows initially */
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}
