/* =========================================
   Design Tokens & Variables
   ========================================= */
:root {
    /* Colors */
    --clr-bg-primary: #ffffff;
    --clr-bg-secondary: #fff5f8; /* Very soft hot pink tint */
    --clr-text-main: #1a1a1a;
    --clr-text-muted: #6c757d;
    --clr-accent: #ff2a7a; /* Vibrant Hot Pink */
    --clr-border: #f0e6e7;
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
}

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

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 100px; /* Pill shape */
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--clr-text-main);
    color: var(--clr-bg-primary);
}

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

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

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

.btn-pill {
    background-color: #17181c; /* Very dark blue/black like clay */
    color: #fff;
    border-radius: 40px;
    padding: 0.8rem 2rem;
    font-weight: 500;
    font-size: 1.05rem;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-pill:hover {
    background-color: var(--clr-accent);
    transform: translateY(-2px);
}

.btn-premium {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #17181c, #2a2d34);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.05);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

.btn-premium:hover {
    background: linear-gradient(135deg, var(--clr-accent), #ff1263);
    box-shadow: 0 10px 30px rgba(255, 42, 122, 0.4);
    transform: translateY(-3px) scale(1.02);
    border-color: transparent;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

#navBookBtn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 998;
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    #navBookBtn {
        bottom: 1.5rem;
        left: 1.5rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--clr-text-main);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--clr-accent);
}

/* =========================================
   Mega Menu & Hamburger
   ========================================= */
.mega-menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 35px;
    height: 35px;
    z-index: 10000;
    position: relative;
    padding: 0;
}

.mega-menu-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--clr-text-main);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.mega-menu-btn:hover .bar {
    background-color: var(--clr-accent);
}

.mega-menu-btn.open .bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
    background-color: var(--clr-accent);
}

.mega-menu-btn.open .bar:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
    background-color: var(--clr-accent);
}

.mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
}

.mega-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mega-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--clr-accent);
    font-size: 4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mega-close-btn:hover {
    color: var(--clr-text-main);
    transform: scale(1.1);
}

.mega-menu-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.mega-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mega-link {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    color: var(--clr-text-main);
    letter-spacing: -0.02em;
    position: relative;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.mega-menu-overlay.open .mega-link {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger animations */
.mega-menu-overlay.open .mega-link:nth-child(1) { transition-delay: 0.1s; }
.mega-menu-overlay.open .mega-link:nth-child(2) { transition-delay: 0.15s; }
.mega-menu-overlay.open .mega-link:nth-child(3) { transition-delay: 0.2s; }
.mega-menu-overlay.open .mega-link:nth-child(4) { transition-delay: 0.25s; }

.mega-link span {
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    vertical-align: super;
    margin-right: 1.5rem;
    color: var(--clr-accent);
    transition: color 0.3s ease;
}

.mega-link:hover {
    color: var(--clr-accent);
}
.mega-link:hover span {
    color: var(--clr-accent);
}

.mega-menu-info {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.mega-menu-overlay.open .mega-menu-info {
    transform: translateY(0);
    opacity: 1;
}

.mega-menu-info h3 {
    color: var(--clr-text-main);
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.mega-email {
    color: var(--clr-accent);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.mega-socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mega-socials a {
    color: var(--clr-text-muted);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mega-socials a:hover {
    color: var(--clr-text-main);
}

@media (max-width: 992px) {
    .hide-on-mobile {
        display: none !important;
    }
    .mega-menu-content {
        flex-direction: column;
        gap: 3rem;
        padding-top: 4rem;
    }
    .mega-menu-info {
        max-width: 100%;
        margin-top: 2rem;
    }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--clr-bg-primary); /* Base white */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Bright pink radial gradients in corners */
    background: 
        radial-gradient(circle at top right, rgba(255, 42, 122, 0.6) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(255, 42, 122, 0.4) 0%, transparent 50%);
    z-index: 1;
    /* This makes the gradients fade out smoothly at the bottom so there is no hard line */
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    padding-top: 80px;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255, 42, 122, 0.2);
    border-radius: 40px;
    color: var(--clr-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    background-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 3rem); /* Shrunk down for a cleaner look */
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #17181c;
}

.hero h1 span {
    color: var(--clr-accent);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--clr-accent);
    border-radius: 4px;
    opacity: 0.2;
}

.hero p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 400px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    z-index: 2;
}

/* Exact Banner Image */
.hero-exact-image {
    width: 100%;
    max-width: 500px;
    height: 550px;
    background-image: url('hero_women.png');
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-exact-image:hover {
    transform: scale(1.02);
    box-shadow: 0 32px 64px rgba(255, 42, 122, 0.15);
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        padding-top: 140px; /* Give more padding from the top of the screen */
    }
    .hero-content {
        margin-top: 3rem;
        margin-bottom: 0;
    }
    .hero-image-wrapper {
        margin-left: 0;
        margin-top: 10rem; /* Push image slightly further down */
        transform: none !important; /* Forces the image to stand still and ignore Javascript parallax */
    }
    .hero-exact-image {
        height: 350px; /* Smaller image on mobile */
        filter: none !important; /* Disable SVG distortion filter on mobile */
        transform: none !important; /* Disable parallax and hover movements */
        transition: none !important; /* Disable animations */
        box-shadow: none !important; /* Remove shadow if it looks weird */
    }

    /* Animated text effect for the Hero H1 and Portfolio H2 */
    .hero h1, .portfolio-title-col h2 {
        background: linear-gradient(
            to right,
            #17181c 20%,
            var(--clr-accent) 50%,
            #17181c 80%
        );
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: text-wave-mobile 4s linear infinite;
    }

    .hero h1 span, .portfolio-title-col h2 span {
        -webkit-text-fill-color: transparent; /* Ensures span matches the wave */
    }
    
    .hero h1 span::after, .portfolio-title-col h2 span::after {
        display: none; /* Hide the underline so it doesn't break the wave effect */
    }

    @keyframes text-wave-mobile {
        0% { background-position: -200% center; }
        100% { background-position: 200% center; }
    }
}

/* =========================================
   Clients Grid Section
   ========================================= */
.clients-grid {
    background-color: var(--clr-bg-primary); /* White */
    padding: 6rem 0 4rem 0;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4rem 2rem;
    align-items: center;
    justify-items: center;
    margin-bottom: 4rem;
}

.client-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #a0a6b1; /* Light grayish blue */
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-logo:nth-child(2) { text-transform: none; font-weight: 400; font-size: 2rem; letter-spacing: -1px; } /* Uber */
.client-logo:nth-child(3) { text-transform: lowercase; font-weight: 600; letter-spacing: -0.5px; } /* credit karma */
.client-logo:nth-child(4) { text-transform: lowercase; font-weight: 600; font-size: 1.4rem; } /* coinbase */
.client-logo:nth-child(5) { text-transform: lowercase; font-weight: 500; font-size: 1.6rem; letter-spacing: -1px; } /* vmware */
.client-logo:nth-child(6) { text-transform: none; font-family: 'Georgia', cursive, serif; font-size: 2rem; font-style: italic; letter-spacing: -1px; } /* Coca-cola */
.client-logo:nth-child(8) { text-transform: none; font-weight: 500; font-size: 1.8rem; letter-spacing: -1px; } /* Google */
.client-logo:nth-child(9) { text-transform: lowercase; font-weight: 800; letter-spacing: -0.5px; } /* slack */
.client-logo:nth-child(10) { font-family: 'Times New Roman', serif; font-size: 1.8rem; letter-spacing: 2px; } /* SONY */

.client-logo:hover {
    opacity: 1;
    color: var(--clr-text-main);
}

.clients-link {
    text-align: center;
}

.clients-link a {
    color: var(--clr-text-main);
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.clients-link a:hover {
    color: var(--clr-accent);
}

@media (max-width: 992px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 1rem;
    }
}

@media (max-width: 576px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   Portfolio / Featured Work Section
   ========================================= */
.portfolio {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    background-color: transparent; /* Melts with hero */
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.portfolio-title-col {
    max-width: 600px;
}

.portfolio-title-col h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem); /* Shrunk down to match Hero H1 exactly */
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-top: 1rem;
}

.portfolio-title-col h2 span {
    color: var(--clr-accent);
}

.portfolio-desc-col {
    max-width: 300px;
    padding-top: 4rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--clr-accent);
    border-radius: 50%;
}

.portfolio-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .portfolio {
        height: 300vh; /* Create vertical scroll room */
        padding: 0;
        margin-top: 8rem; /* Creates massive breathing room between Hero and Portfolio */
    }
    .portfolio-sticky {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center; /* Center vertically */
    }
    .portfolio-sticky .container {
        width: 100%;
    }
    .portfolio-grid-new {
        display: flex;
        flex-wrap: nowrap;
        gap: 1.5rem;
        width: max-content; /* Allow it to grow horizontally beyond viewport */
        padding-left: 1rem;
        padding-right: 1rem;
        will-change: transform;
    }
    .portfolio-card {
        width: 85vw; /* Each card takes up 85% of the screen width */
        flex-shrink: 0;
    }
    .portfolio-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-bottom: 2rem;
    }
    .portfolio-desc-col {
        padding-top: 2rem;
    }
    .portfolio-footer {
        display: none; /* Hide button on mobile or move it out of track */
    }
}

.portfolio-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.portfolio-card:hover .card-arrow {
    transform: translateX(8px);
}

.card-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.card-arrow {
    color: var(--clr-accent);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* =========================================
   Fluid Divider
   ========================================= */
.fluid-divider {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    pointer-events: none;
    margin: 1rem 0;
    z-index: 10;
}

.fluid-blob {
    position: absolute;
    top: 50%;
    left: -800px;
    width: 800px;
    height: 15px;
    background: linear-gradient(90deg, 
        rgba(216, 180, 226, 0) 0%, 
        rgba(216, 180, 226, 1) 40%, 
        var(--clr-accent) 60%, 
        rgba(216, 180, 226, 0) 100%);
    filter: blur(10px);
    border-radius: 100px;
    animation: moveSliert 3.5s infinite linear;
    opacity: 0.85;
}

@keyframes moveSliert {
    0% {
        left: -800px;
        transform: translateY(60px) rotate(15deg) scaleX(1);
    }
    25% {
        transform: translateY(-50px) rotate(-10deg) scaleX(1.1);
    }
    50% {
        transform: translateY(40px) rotate(20deg) scaleX(0.9);
    }
    75% {
        transform: translateY(-40px) rotate(-15deg) scaleX(1.1);
    }
    100% {
        left: 100%;
        transform: translateY(60px) rotate(10deg) scaleX(1);
    }
}

/* =========================================
   Case Studies (Staggered Layout)
   ========================================= */
.case-studies {
    padding: 6rem 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 450px));
    justify-content: center;
    gap: 3rem;
    padding-top: 4rem; /* Buffer for stagger */
}

.case-card {
    background: transparent;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger every even card */
.case-card:nth-child(even) {
    margin-top: -120px;
}

.case-card:hover {
    transform: translateY(-12px);
}

.case-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px; /* Slight rounding */
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-image {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.case-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--clr-text-main);
    letter-spacing: -0.5px;
}

.case-text p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
}

@media (max-width: 992px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        padding-top: 0;
    }
    .case-card:nth-child(even) {
        margin-top: 0;
    }
}

.portfolio-footer {
    text-align: center;
}

.btn-outline-pink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 42, 122, 0.3);
    color: var(--clr-accent);
    border-radius: 40px;
    padding: 0.8rem 2.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background-color: rgba(255, 42, 122, 0.05);
    border-color: var(--clr-accent);
}

/* =========================================
   About / Philosophy Section
   ========================================= */
.about {
    background-color: var(--clr-bg-primary); /* Pure white background */
    padding: 8rem 0;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6rem;
}

.about-text {
    flex: 1;
    max-width: 500px;
    position: sticky;
    top: 150px;
}

.about-text .section-title {
    font-size: clamp(3rem, 4vw, 4.5rem);
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--clr-text-muted);
}

.about-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 2rem;
}

.stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 42, 122, 0.2);
    transition: all 0.3s ease;
}

.stat-row:first-child {
    border-top: 1px solid rgba(255, 42, 122, 0.2);
}

.stat-row:hover {
    padding-left: 20px;
    padding-right: 20px;
    background-color: rgba(255, 42, 122, 0.03);
}

.stat-num {
    font-size: clamp(4rem, 6vw, 6.5rem);
    font-weight: 600;
    letter-spacing: -3px;
    color: var(--clr-accent);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clr-text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 4rem;
    }
    
    .about-text {
        position: static;
        max-width: 100%;
    }
}

/* =========================================
   Marquee / Announcement Bar
   ========================================= */
.marquee-section {
    width: 100%;
    background-color: var(--clr-bg-primary); /* White */
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 42, 122, 0.1);
    border-bottom: 1px solid rgba(255, 42, 122, 0.1);
}

.marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-content span {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 700;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--clr-accent);
    padding: 0 1rem;
    letter-spacing: 2px;
}

.marquee-content span i {
    color: var(--clr-accent);
    font-style: normal;
    -webkit-text-stroke: 0;
}

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

/* =========================================
   Services Section (White / Hot Pink)
   ========================================= */
.services {
    background-color: var(--clr-bg-primary); /* White */
    padding: 8rem 0;
}

.services-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8rem;
}

.services-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 42, 122, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item:first-child {
    border-top: 1px solid rgba(255, 42, 122, 0.2);
}

.service-item h3 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    letter-spacing: -1px;
    color: var(--clr-accent);
}

.service-item .arrow {
    font-size: 1.8rem;
    font-weight: 300;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-item:hover {
    padding-left: 20px;
    padding-right: 20px;
    background-color: rgba(255, 42, 122, 0.03);
}

.service-item:hover .arrow {
    opacity: 1;
    transform: translateY(5px);
}

.services-text {
    flex: 1;
    max-width: 500px;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    line-height: 1.3;
    font-weight: 500;
    color: var(--clr-accent);
    position: sticky;
    top: 150px;
}

@media (max-width: 992px) {
    .services-container {
        flex-direction: column-reverse;
        gap: 4rem;
    }
    
    .services-text {
        position: static;
        max-width: 100%;
    }
}


/* =========================================
   Packages Section
   ========================================= */
.packages-section {
    background-color: var(--clr-bg-primary);
}

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

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

.pricing-card {
    background: var(--clr-bg-primary);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pricing-card.featured {
    background: var(--clr-text-main);
    color: var(--clr-bg-primary);
    transform: scale(1.05);
    border-color: var(--clr-text-main);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured p {
    color: #a0a0a0;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-accent);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--clr-border);
}

.pricing-card.featured .card-header {
    border-bottom-color: rgba(255,255,255,0.1);
}

.package-name {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    display: block;
    margin-bottom: 1rem;
}

.pricing-card.featured .package-name {
    color: var(--clr-accent);
}

.package-price {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.package-desc {
    font-size: 0.95rem;
}

.package-features {
    list-style: none;
    margin-bottom: 3rem;
}

.package-features li {
    padding: 0.8rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.package-features li::before {
    content: '✓';
    margin-right: 10px;
    font-weight: bold;
    color: var(--clr-text-main);
}

.pricing-card.featured .package-features li::before {
    color: var(--clr-bg-primary);
}

.card-btn {
    width: 100%;
    text-align: center;
}

.pricing-card.featured .card-btn {
    background: var(--clr-bg-primary);
    color: var(--clr-text-main);
    border: none;
}

.pricing-card.featured .card-btn:hover {
    background: var(--clr-accent);
    color: #fff;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* =========================================
   High-Converting Footer
   ========================================= */
.footer {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    padding: 10rem 0 3rem 0;
}

.footer-cta {
    text-align: center;
    margin-bottom: 8rem;
}

.footer-cta .huge-text {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 3rem;
    font-weight: 700;
}

.footer-cta .accent-text {
    color: var(--clr-accent);
}

.cta-button.big-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--clr-accent);
    color: #fff;
    padding: 1.5rem 3.5rem;
    border-radius: 100px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-button.big-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.4);
    background: #ff529a;
    color: #fff;
}

.cta-button.big-btn span {
    transition: transform 0.3s ease;
}

.cta-button.big-btn:hover span {
    transform: translateX(8px);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-brand span {
    color: var(--clr-accent);
}

.footer-brand p {
    color: var(--clr-text-muted);
}

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

.social-links a {
    color: var(--clr-text);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--clr-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--clr-text-muted);
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--clr-accent);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* =========================================
   Animations & Reveal Classes
   ========================================= */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }
.delay-6 { transition-delay: 0.9s; }

/* =========================================
   Premium Chatbot Widget
   ========================================= */
.chatbot-widget {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-fab {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--clr-accent);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(255, 42, 122, 0.4);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.chat-fab:hover {
    transform: scale(1.1);
    background: #ff1263;
}

.chat-window {
    width: 360px;
    max-height: 550px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-window.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.chat-header {
    padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.8);
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent), #ff7eb3);
    position: relative;
}

.chat-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background-color: #00e676; /* online dot */
    border: 2px solid white;
    border-radius: 50%;
}

.chat-header h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.chat-header p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--clr-accent);
}

.chat-close-btn {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.chat-close-btn:hover {
    color: var(--clr-text-main);
}

.chat-body {
    padding: 1.5rem;
    flex: 1;
    min-height: 280px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 85%;
    padding: 0.9rem 1.2rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.4;
    animation: slideUpFade 0.3s ease forwards;
}

.bot-message {
    background: #f4f5f7;
    color: var(--clr-text-main);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.user-message {
    background: var(--clr-accent);
    color: white;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.chat-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
}

.chat-footer input {
    flex: 1;
    border: none;
    background: #f4f5f7;
    padding: 1rem 1.2rem;
    border-radius: 100px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.chat-footer input:focus {
    box-shadow: inset 0 0 0 2px rgba(255, 42, 122, 0.2);
}

.chat-send-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--clr-accent);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.chat-send-btn:hover {
    background: #f4f5f7;
    transform: scale(1.05);
}

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

/* Custom Slide In Right Animation */
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   Custom Hot Pink Cursor
   ========================================= */
body, a, button, input, textarea, span, p, h1, h2, h3 {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    top: -100px;
    left: -100px;
    width: 20px;
    height: 20px;
    background-color: var(--clr-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    will-change: left, top, width, height;
}

.custom-cursor.hovering {
    width: 60px;
    height: 60px;
    opacity: 0.5;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor {
        display: none;
    }
}
