:root {
    /* Natural Vibrancy Color Palette */
    /* Primary - Dark Green */
    --color-dark-green: #1A3A2E;
    --color-dark-green-light: #2E5047;
    --color-dark-green-dark: #0F2419;
    
    /* Lime - Bright Green */
    --color-lime: #D4F75A;
    --color-lime-light: #E3FB8F;
    --color-lime-dark: #B8E03C;
    
    /* Orange/Red - Coral */
    --color-coral: #EA5B3A;
    --color-coral-light: #FF7A5C;
    --color-coral-dark: #D44425;
    
    /* Light Blue - Cyan */
    --color-cyan: #95DDEB;
    --color-cyan-light: #E8F7FB;
    --color-cyan-dark: #B5D9E5;
    
    /* Yellow - Bright */
    --color-yellow: #F0E157;
    --color-yellow-light: #F9EC7F;
    --color-yellow-dark: #E0CF3A;
    
    /* Neutrals */
    --color-white: #FFFFFF;
    --color-off-white: #F8F8F8;
    --color-light-gray: #E5E5E5;
    --color-gray: #999999;
    --color-dark-gray: #4A4A4A;
    --color-black: #1A1A1A;
    
    /* Extended Gray Scale */
    --color-gray-50: #FAFAFA;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #EEEEEE;
    --color-gray-300: #E0E0E0;
    --color-gray-400: #D6D6D6;
    --color-gray-500: #BDBDBD;
    --color-gray-600: #9E9E9E;
    
    /* Page Backgrounds */
    --color-page-bg: #e8e8ed;
    --color-page-bg-light: #f0f0f5;
    --color-page-bg-lighter: #f5f5f7;

    /* Functional Mapping */
    --primary-color: var(--color-dark-green);
    --secondary-color: var(--color-white);
    --accent-green: var(--color-lime);
    --accent-coral: var(--color-coral);
    --accent-cyan: var(--color-cyan);
    --accent-yellow: var(--color-yellow);
    
    /* Typography & Spacing */
    --font-heading: 'Big Shoulders Text', sans-serif;
    --font-body: 'Inter', sans-serif;
    --spacing-unit: 1rem;
    --container-width: 1200px;
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Section slide-in from bottom on scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    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-section.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

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

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background-color: var(--color-page-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.dark-bg,
.bg-dark {
    background-color: var(--color-page-bg-light);
    color: var(--secondary-color);
}

/* Global Utility Classes */
.global-padding {
    padding-left: 6.5%;
    padding-right: 6.5%;
}

@media (max-width: 1440px) {
    .global-padding {
        padding-left: 4%;
        padding-right: 4%;
    }
}

@media (max-width: 768px) {
    .global-padding {
        padding-left: 2%;
        padding-right: 2%;
    }
}
.global-margin {
    margin-left: 2rem;
    margin-right: 2rem;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

.section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

/* Button Component Styles */
/* Button Animation Styles - Based on Uiverse.io by OliverZeros */
.site-btn {
    all: unset;
    position: relative;
    display: inline-flex;
    height: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding-left: 2rem;
    padding-right: 2rem;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 640;
    color: #fafaf6;
    letter-spacing: -0.06em;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
    box-sizing: border-box;
    min-width: fit-content;
    max-width: 100%;
    overflow: hidden;
}

.button-item {
    background-color: transparent;
    color: #1d1d1f;
}

.button-item .button-bg {
    border-color: rgba(255, 208, 116);
    background-color: rgba(255, 208, 116);
}

.button-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
}

.button-inner-static,
.button-inner-hover {
    pointer-events: none;
    display: inline-block;
    color: inherit;
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
    width: auto;
}

.button-inner-static {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition:
        transform 1.4s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.3s linear;
}

.button-inner-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(70%);
    color: inherit;
    transition:
        transform 1.4s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.button-bg {
    overflow: hidden;
    border-radius: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.button-bg,
.button-bg-layer,
.button-bg-layers {
    display: block;
}

.button-bg-layers {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -60%;
    aspect-ratio: 1 / 1;
    width: max(200%, 10rem);
}

.button-bg-layer {
    border-radius: 9999px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
}

.button-bg-layer.-purple {
    background-color: rgba(163, 116, 255);
}

.button-bg-layer.-turquoise {
    background-color: rgba(23, 241, 209);
}

.button-bg-layer.-yellow {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 208, 116, var(--tw-bg-opacity));
}

.site-btn:hover .button-inner-static {
    opacity: 0;
    transform: translateY(-70%);
    transition:
        transform 1.4s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.3s linear;
}

.site-btn:hover .button-inner-hover {
    opacity: 1;
    transform: translateY(0);
}

.site-btn:hover .button-bg-layer {
    transition:
        transform 1.3s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.3s linear;
}

.site-btn:hover .button-bg-layer-1 {
    transform: scale(1);
}

.site-btn:hover .button-bg-layer-2 {
    transition-delay: 0.1s;
    transform: scale(1);
}

.site-btn:hover .button-bg-layer-3 {
    transition-delay: 0.2s;
    transform: scale(1);
}

/* Sizes */
.btn-sm {
    height: 2.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 0.9rem;
}

.btn-md {
    height: 3.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1rem;
}

.btn-lg {
    height: 4rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    font-size: 1.1rem;
}

/* Theme: Light (For Light Backgrounds) */
.btn-light {
    color: var(--primary-color);
}

.btn-light .button-bg {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

/* Theme: Dark (For Dark Backgrounds - Reverse) */
.btn-dark {
    color: var(--secondary-color);
}

.btn-dark .button-bg {
    border-color: var(--accent-green);
    background-color: var(--accent-green);
}

/* COLOR VARIATIONS
   ============================================ */

/* Primary - Dark Green */
.btn-primary {
    color: var(--secondary-color);
}

.btn-primary .button-bg {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

/* Lime - Bright Green */
.btn-lime {
    color: var(--primary-color);
}

.btn-lime .button-bg {
    border-color: var(--accent-green);
    background-color: var(--accent-green);
}

/* Coral - Orange/Red */
.btn-coral {
    color: var(--secondary-color);
}

.btn-coral .button-bg {
    border-color: var(--accent-coral);
    background-color: var(--accent-coral);
}

/* Cyan - Light Blue */
.btn-cyan {
    color: var(--primary-color);
}

.btn-cyan .button-bg {
    border-color: var(--accent-cyan);
    background-color: var(--accent-cyan);
}

/* Yellow - Bright Yellow */
.btn-yellow {
    color: var(--primary-color);
}

.btn-yellow .button-bg {
    border-color: var(--accent-yellow);
    background-color: var(--accent-yellow);
}

/* White - For Dark Backgrounds */
.btn-white {
    color: var(--primary-color);
}

.btn-white .button-bg {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}

/* Black - Primary Dark Button */
.btn-black {
    color: var(--secondary-color);
}

.btn-black .button-bg {
    border-color: var(--color-black);
    background-color: var(--color-black);
}

.btn-black:hover {
    color: var(--color-black);
}

/* Secondary/Ghost Button for Light Backgrounds */
.btn-secondary {
    color: var(--primary-color);
}

.btn-secondary .button-bg {
    border-color: transparent;
    background-color: rgba(0,0,0,0.05);
}

.btn-secondary:hover .button-bg {
    background-color: rgba(0,0,0,0.1);
}

/* OUTLINE VARIATIONS
   ============================================ */

/* Outline Primary */
.btn-outline-primary {
    color: var(--primary-color);
}

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

/* Outline Lime */
.btn-outline-lime {
    color: var(--accent-green);
}

.btn-outline-lime .button-bg {
    border-color: var(--accent-green);
    background-color: transparent;
}

/* Outline Coral */
.btn-outline-coral {
    color: var(--accent-coral);
}

.btn-outline-coral .button-bg {
    border-color: var(--accent-coral);
    background-color: transparent;
}

/* Outline White - For Dark Backgrounds */
.btn-outline-white {
    color: var(--secondary-color);
}

.btn-outline-white .button-bg {
    border-color: var(--secondary-color);
    background-color: transparent;
}

/* GHOST VARIATIONS (No Border, Subtle Background on Hover)
   ============================================ */

.btn-ghost-primary {
    color: var(--primary-color);
}

.btn-ghost-primary .button-bg {
    border-color: transparent;
    background-color: transparent;
}

.btn-ghost-lime {
    color: var(--accent-green);
}

.btn-ghost-lime .button-bg {
    border-color: transparent;
    background-color: transparent;
}

.btn-ghost-white {
    color: var(--secondary-color);
}

.btn-ghost-white .button-bg {
    border-color: transparent;
    background-color: transparent;
}

/* Anchor tag buttons should be inline-flex */
a.site-btn {
    display: inline-flex;
    text-decoration: none;
}

/* Specific overrides for Hero Button positioning */
site-button[href="#"] .site-btn.btn-lg {
    margin-left: 5%;
    margin-bottom: 6rem;
}

/* Header / Hero */
.hero {
    position: relative;
    padding-top: 1rem;
    overflow: hidden; /* Ensure logo doesn't overflow */
    isolation: isolate; /* Create stacking context for negative z-index children */
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    width: 100%; /* Full width */
}

.logo-small {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.2;
}

.logo-small img {
    /* Removed border-radius: 50% as it might cut off the logo if it's not square */
    display: block;
}

.nav-logo {
    width: 120px; /* Bigger logo in nav */
    height: auto;
}

.footer-logo {
    width: 180px; /* Bigger logo in footer */
    height: auto;
}

.menu-btn {
    background: var(--accent-green);
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 7rem;
    color: var(--primary-color);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    padding: 4rem 3rem;
    margin-left: auto;
    margin-right: auto;
}

.giant-text {
    font-size: 5rem;
    line-height: 1.15;
    letter-spacing: -2px;
    font-weight: 700;
    color: #000000;
    -webkit-text-stroke: 0;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    max-width: 100%;
    font-family: var(--font-heading);
    text-transform: none;
}

/* Hide mobile line breaks on desktop */
.mobile-break {
    display: none;
}

.giant-text .coral-highlight {
    color: var(--accent-cyan);
}

.giant-text .text-cyan {
    color: var(--accent-cyan);
}

.giant-text .text-coral {
    color: var(--accent-coral);
}

/* Partner Logo in Hero Title */
.giant-text .partner {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin: 0 0.5rem;
}

.giant-text .partner img {
    width: 8rem;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #6e6e73;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

/* Hero CTA Wrapper */
.hero-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Hero USP Badge / Rating */
.hero-usp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--primary-color);
    border-radius: 50px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    margin-bottom: 2.5rem;
    width: auto;
    max-width: fit-content;
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-usp.fade-out {
    opacity: 0;
}

.hero-usp .usp-icon {
    font-size: 0.85rem;
    line-height: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -1px;
}

.hero-usp .usp-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-color);
    display: block;
}

.hero-usp .usp-text {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    color: var(--primary-color);
    white-space: nowrap;
}

/* Removed old button classes as they are replaced by .site-btn component */
/* .hero-cta-btn, .nav-cta, .submit-btn, .footer-cta-btn styles removed */

/* Hero Services Marquee */
.hero-services-marquee {
    width: calc(100% + 6rem);
    margin-left: -3rem;
    margin-right: -3rem;
    overflow: hidden;
    padding: 2rem 0;
    margin-top: 2rem;
    margin-bottom: -4rem;
    border-radius: 0 0 32px 32px;
}

.services-marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: marqueeScroll 30s linear infinite;
    width: fit-content;
}

.services-marquee-track:hover {
    animation-play-state: paused;
}

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

.service-marquee-card {
    flex-shrink: 0;
    width: 340px;
    height: 320px;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 32px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: top;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-marquee-card:hover {
    transform: translateY(-8px);
}

.service-card-visual {
    flex: 1;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.service-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
}

.service-card-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-body);
    text-align: center;
    margin: 0;
    text-transform: none;
}

/* About Team Gallery */
.about-team-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    width: 100%;
    height: 500px;
}

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Column 1: Single tall image - full height */
.gallery-item-1 {
    grid-row: 1 / 3;
    height: 100%;
    min-height: 100%;
}

/* Column 2: Two images stacked - equal height */
.gallery-item-2 {
    grid-row: 1 / 2;
    height: 100%;
}

.gallery-item-3 {
    grid-row: 2 / 3;
    height: 100%;
}

/* Column 3: Single tall image - full height */
.gallery-item-5 {
    grid-row: 1 / 3;
    height: 100%;
    min-height: 100%;
}

/* Hide item 4 for 3-column layout */
.gallery-item-4 {
    display: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Video Play Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(26, 58, 46, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--secondary-color);
    border: none;
    z-index: 1;
}

/* Animated gradient border wrapper */
.video-play-btn::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(90deg, 
        var(--accent-green), 
        var(--accent-cyan), 
        var(--accent-coral), 
        var(--accent-yellow), 
        var(--accent-green)
    );
    background-size: 400% 400%;
    border-radius: 31px;
    z-index: -1;
    animation: gradientRotate 4s linear infinite;
}

/* Inner background to create border effect */
.video-play-btn::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(26, 58, 46, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 29px;
    z-index: -1;
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.video-play-btn:hover {
    color: var(--accent-green);
}

.video-play-btn:hover::after {
    background: rgba(26, 58, 46, 0.95);
}

.video-play-btn .play-icon {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.video-play-btn:hover .play-icon {
    color: var(--accent-green);
}

.video-play-btn .play-text {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--secondary-color);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.video-play-btn:hover .play-text {
    color: var(--accent-green);
}

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

.hero-overlay-text {
    position: absolute;
    bottom: 2rem;
    left: 5%;
    color: var(--secondary-color);
    text-align: left;
    z-index: 2;
}

.location {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 2.5rem;
    line-height: 1.1;
}

/* About Section */
.about {
    padding-top: 6rem; 
    padding-bottom: 6rem;
}

.about-header {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 8rem;
    align-items: flex-start;
    margin-bottom: 6rem;

}

.about-main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #000000;
    text-transform: none;
}

.diamond-emoji {
    font-size: 3rem;
    display: inline-block;
    vertical-align: middle;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

.about .container {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    padding: 4rem 3rem;
    margin: 0 auto;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: stretch;
}

/* Purple Stats Card */
.stats-card-purple {
    background: var(--accent-coral);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
    height: 100%;
}

.stat-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 2.5rem;
}

.stat-block:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-block:last-child {
    padding-bottom: 0;
}

.stat-large {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Client Cards Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.client-card {
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.08);
}

.client-card:hover {
    transform: translateY(-4px);
    background: white;
}

.client-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.client-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.client-tag {
    background: white;
    padding: 0.375rem 0.875rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666666;
    border: 1px solid rgba(0,0,0,0.08);
}

.client-info {
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* Decorative Arrow */
.about-arrow {
    position: absolute;
    top: 3rem;
    right: 25%;
    opacity: 0.3;
    pointer-events: none;
}

/* Legacy stat styles (keeping for other pages) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.04);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.stat-icon.bg-cyan-soft { background-color: #E8F7FB; }
.stat-icon.bg-lime-soft { background-color: #F4FDE0; }
.stat-icon.bg-coral-soft { background-color: #FFF1EE; }
.stat-icon.bg-yellow-soft { background-color: #FEF9E7; }

.stat-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.stat-number {
    font-size: 2.5rem;
}

.stat-text {
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--color-dark-gray);
}

/* Project Showcase - Masonry Grid */
.our-projects {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

/* Projects Header */
.projects-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: flex-start;
    margin-bottom: 4rem;
    padding: 0;
}

.projects-main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: white;
    text-transform: none;
}

.projects-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.project-showcase {
    padding: 4rem;
    background: var(--color-black);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    overflow: visible;
}

.project-showcase .container {
    clip-path: circle(150% at 50% 50%);
    transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.project-showcase:not(.mask-reveal) .container {
    clip-path: circle(5% at 50% 0%);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.masonry-item {
    background-color: transparent;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.masonry-full {
    grid-column: span 2;
    min-height: auto;
}

.masonry-half {
    grid-column: span 1;
    min-height: auto;
}

.project-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    color: var(--secondary-color);
}

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

.project-header .project-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 130%;
    text-transform: none;
}

.project-content-masonry {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.project-image {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    position: relative;
    cursor: pointer;
    display: block;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-image:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.project-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.project-image:hover img {
    transform: scale(1.08);
}

.masonry-full .project-image img {
    height: 650px;
}

.masonry-half .project-image img {
    height: 450px;
}

.project-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.25rem;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.project-details .project-title {
    font-size: 2rem;
    line-height: 1.2;
    color: var(--secondary-color);
    text-transform: none;
}

.masonry-full .project-details .project-title {
    font-size:3rem;
    text-transform: none;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0;
}

.project-meta li {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--secondary-color);
}

.project-meta li svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.5;
    opacity: 0.8;
}

.project-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: var(--secondary-color);
}

.project-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    pointer-events: none;
}

.project-image:hover .project-cta {
    opacity: 1;
    pointer-events: auto;
}

.project-cta .view-all {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--secondary-color);
    border-radius: 100px;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--secondary-color);
    background-color: rgba(26, 58, 46, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.project-image:hover .project-cta .view-all {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Projects Section Separator and CTA */
.projects-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 2rem 0 3rem 0;
}

.projects-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
}

/* Placeholder Card Styles */
.placeholder-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 450px;
}

.placeholder-content {
    text-align: center;
    max-width: 400px;
    padding: 3rem 2rem;
}

.placeholder-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.placeholder-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.project-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 1rem;
}

.view-all {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--accent-green);
}

/* Services Section V2 */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.service-card {
    position: relative;
    height: 550px;
    border-radius: 32px;
    overflow: hidden;
    background-color: var(--color-off-white);
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.04);
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-6px);
}

.card-initial {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.card-title {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    text-transform: none;
    font-weight: 600;
}

.card-image {
    flex: 1;
    width: 100%;
    height: 100% !important;
    overflow: hidden !important;
    border-radius: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.card-hover-content {
    position: absolute;
    inset: 0;
    padding: 2rem;
    background-color: var(--card-color, var(--color-lime));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--primary-color);
    max-width: 90%;
}

/* Hover States */
.service-card:hover {
    transform: translateY(0px);
}

.service-card:hover .card-initial {
    opacity: 0;
}

.service-card:hover .card-hover-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive for Services V2 */
@media (max-width: 1024px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .services-grid-new {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        height: 500px;
    }
    
    .card-title {
        font-size: 2rem;
    }
}

/* Base Styles Adjustments */
.services {
    padding-top: 0;
    padding-bottom: 0;
}

/* Services Header */
.services-header-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: flex-start;
    margin-bottom: 6rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .services-header-new {
        margin-bottom: 3rem;
    }
}

.services-main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #000000;
    text-transform: none;
}

.lightning-emoji {
    font-size: 3rem;
    display: inline-block;
    vertical-align: middle;
}

.services-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* Services Container */
.services-container {
    margin: 0 auto;
}

/* Services Grid */
.services-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Service Step Card */
.service-step-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 32px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.08);
}

.service-step-card:hover {
    transform: translateY(0px);
}

.step-visual {
    background: white;
    border-radius: 20px;
    padding: 0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.step-mockup {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    width: 100%;
    max-width: 260px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E9ECEF;
}

.mockup-icon {
    color: #6366F1;
    font-size: 1.25rem;
}

.mockup-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-label {
    font-size: 0.75rem;
    color: #6C757D;
    font-weight: 500;
}

.mockup-avatar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #F8F9FA;
    padding: 0.625rem 0.875rem;
    border-radius: 12px;
}

.mockup-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
}

.mockup-avatar span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000;
}

.mockup-team {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #F8F9FA;
    padding: 0.625rem 0.875rem;
    border-radius: 12px;
}

.mockup-team img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
}

.mockup-team img:first-of-type {
    margin-left: 0;
}

.mockup-team span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #495057;
    margin-left: 0.25rem;
}

.mockup-input-line {
    height: 12px;
    background: #E9ECEF;
    border-radius: 6px;
    width: 100%;
}

.mockup-input-line.short {
    width: 60%;
}

.mockup-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #6366F1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.check-icon.purple {
    background: #6366F1;
}

.check-line {
    height: 10px;
    background: #E9ECEF;
    border-radius: 5px;
    flex: 1;
}

.check-line.light {
    opacity: 0.4;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6C757D;
    margin: 0;
}

/* Services Benefits */
.services-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E9ECEF;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
}

.benefit-icon {
    color: #6366F1;
    font-size: 1.25rem;
}

/* Talent Reveal Section */
.talent-reveal {
    height: 300vh; /* Scroll length */
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.talent-sticky-container {
    position: sticky;
    top: 2rem;
    height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #D6CCF7;
    border-radius: 32px;
    margin: 0 auto;
}

.talent-heading {
    font-size: 5.5rem;
    line-height: 1.1;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-align: center;
}

.talent-heading .text-white {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.avatar-reveal-trigger {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    position: relative;
    height: 1em;
}

.avatar-stack {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 8px;
    border-radius: 100px;
    height: 80px;
    width: 80px; /* Controlled by JS */
    overflow: hidden;
    transition: width 0.1s ease-out, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    flex-direction: row;
    position: relative;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.avatar-stack:hover {
    background-color: var(--accent-green);
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(0,0,0,0.2);
}

.contact-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    white-space: nowrap;
    transition: opacity 0.3s ease;
    z-index: 20;
    letter-spacing: 1px;
}

.avatar-stack:hover img, 
.avatar-stack:hover .avatar-last-wrapper {
    opacity: 0.1 !important;
}

.avatar-stack:hover .contact-label {
    opacity: 1;
}

.avatar-stack img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 0;
    position: relative;
    flex-shrink: 0;
}

.avatar-stack img:nth-child(1) { z-index: 10; }
.avatar-stack img:nth-child(2) { z-index: 9; }
.avatar-stack img:nth-child(3) { z-index: 8; }
.avatar-stack img:nth-child(4) { z-index: 7; }
.avatar-stack img:nth-child(5) { z-index: 6; }
.avatar-stack img:nth-child(6) { z-index: 5; }
.avatar-stack img:nth-child(7) { z-index: 4; }

.avatar-stack img:not(:first-child) {
    margin-left: -64px;
    opacity: 0;
    transform: scale(0.5);
}

.avatar-stack img:first-child {
    opacity: 1;
    transform: scale(1);
    margin-left: 0;
}

.avatar-last-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: -64px;
    z-index: 1;
}

.avatar-last-wrapper img {
    margin-left: 0 !important;
    opacity: 1 !important;
    transform: scale(1) !important;
    border: 4px solid #fff;
}

.avatar-count {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    z-index: 2;
}

@media (max-width: 1024px) {
    .talent-heading {
        font-size: 4rem;
    }
    .avatar-stack {
        height: 60px;
    }
    .avatar-stack img, .avatar-count {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .talent-heading {
        font-size: 2.5rem;
    }
}

.industry-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.testimonials .container {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    padding: 4rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .testimonials .container {
        padding: 1rem;
    }
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .section-header {
        display: block;
        margin-bottom: 1rem;
    }
}
.nav-arrows .arrow-btn {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 0.75rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.nav-arrows .arrow-btn:hover {
    background: var(--accent-coral);
    color: #fff;
}

.nav-arrows .arrow-btn svg {
    width: 20px;
    height: 20px;
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.card {
    flex: 0 0 45%; /* Show partial of next card */
    min-width: 45%;
    margin-right: 2%;
    box-sizing: border-box;
    padding: 2rem;
    position: relative;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: white;
    border: 1px solid rgba(0,0,0,0.12);
}

.card:hover {
    transform: translateY(0px);
}

.pink-card { background: white; color: #000000; border: 1px solid rgba(0,0,0,0.08); }
.green-card { background: white; color: #000000; border: 1px solid rgba(0,0,0,0.08); }

.video-card {
    padding: 0 !important;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 25% !important;
    min-width: 20% !important;
    aspect-ratio: 4 / 5; /* Slightly less tall vertical ratio to reduce height */
    position: relative;
    border-radius: 32px;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
    border-radius: 32px;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.play-btn-circle {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.video-card:hover .play-btn-circle {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.play-btn-circle svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.yellow-card { background: white; color: #000000; border: 1px solid rgba(0,0,0,0.08); }
.lime-card { background: white; color: #000000; border: 1px solid rgba(0,0,0,0.08); }

/* Responsive for slider */
@media (max-width: 768px) {
    .card {
        flex: 0 0 95%;
        min-width: 95%;
        margin-right: 5%;
    }
}

.quote {
    font-size: 1rem;
    font-family: var(--font-body);
    line-height: 1.7;
    color: #4B5563;
    flex: 1;
    margin: 0;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.author-info .name {
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    color: #111827;
}

.author-info .role {
    font-size: 0.875rem;
    margin: 0;
    color: #6B7280;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #10B981;
    font-size: 1.25rem;
    line-height: 1;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns per row */
    gap: 16px;
    margin-top: 2rem;
    width: 100%;
}

.client-logos img {
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 80px; /* Fixed height forconsistency */
    width: 100%; /* Fill the grid cell */
    object-fit: contain;
}

.client-logos img:hover {
    transform: translateY(0px);
}

/* News Section */
.news {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    text-transform: none;
    color: var(--color-black);
}

/* ─── Blog Section ─── */

.blog-section {
    padding-top: 4rem;
    padding-bottom: 5rem;
}

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

/* ─── Blog Card ─── */

.blog-card {
    background: #ffffff;
    border: 8px solid #ffffff;
    border-radius: 24px;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(0);
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-off-white);
    border-radius: 16px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 16px;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
    border-radius: 16px;
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-coral);
    border: 1.5px solid var(--accent-coral);
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.75rem;
    width: fit-content;
    letter-spacing: 0.02em;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1.3;
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.25rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.blog-card-meta-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.blog-card-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.blog-card-date {
    font-size: 0.75rem;
    color: #999;
}

/* Responsive */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .blog-card-title {
        font-size: 1.05rem;
    }
}

/* Legacy news-item styles kept for backwards compatibility */
.news-item {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-item:hover {
    transform: translateY(-4px);
}

.news-item img {
    border-radius: 24px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.news-item:hover img {
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.news-item h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.news-item p {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
    padding: 2rem 0;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    border: 2px solid var(--color-light-gray);
    border-radius: 16px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pagination-btn:hover:not(:disabled) {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--color-white);
    border-color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-page {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 2px solid var(--color-light-gray);
    border-radius: 12px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pagination-page:hover {
    background: var(--color-off-white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.pagination-page.active {
    background: var(--primary-color);
    color: var(--color-white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(26, 58, 46, 0.2);
}

.pagination-ellipsis {
    color: var(--color-gray);
    font-weight: 600;
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .blog-pagination {
        gap: 0.5rem;
    }

    .pagination-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .pagination-page {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .pagination-pages {
        gap: 0.25rem;
    }
}

/* Contact Section */
.contact {
    padding-top: 0;
    padding-bottom: 0;
}

.contact .container {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    padding: 4rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact .container {
        padding: 2rem;
        border-radius: 24px;
    }
}
.contact-heading {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: none;
    color: #000000;
}

.contact-sub {
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    width: 100%;
    max-width: 100%;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-gray);
}

.form-group input, .form-group textarea, .form-group select {
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
    background: var(--color-off-white);
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--accent-cyan);
    background: white;
    box-shadow: 0 4px 16px rgba(149, 221, 235, 0.15);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 2.5rem;
    cursor: pointer;
    width: 100%;
}

.form-group select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-group select option[disabled] {
    color: #999;
}

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

.full-width {
    width: 100%;
    margin-bottom: 2rem;
}

/* .submit-btn removed */

/* Footer */
.footer {
    padding: 6rem 0 0;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 350px;
}

.footer-brand-col .footer-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 2rem 0;
    color: #ccc;
}

/* .footer-cta-btn removed */

.footer-links-col h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 600;
}

.footer-links-col ul li {
    margin-bottom: 1rem;
}

.footer-links-col ul li a {
    color: #aaa;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--accent-green);
}

/* Giant Text Adjustment */
.giant-text-footer {
    font-size: 22vw;
    line-height: 0.8;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    opacity: 0.05; /* More subtle */
    width: 100%;
    display: block;
    position: absolute;
    bottom: 5rem; /* Moved up slightly */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-family: var(--font-heading);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

.company-deck {
    display: flex;
    align-items: center;
}

.deck-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.deck-btn .icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-green);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.deck-btn .text {
    display: flex;
    flex-direction: column;
}

.deck-btn .label {
    font-weight: 600;
    font-size: 1rem;
}

.deck-btn .sub {
    font-size: 0.8rem;
    color: #aaa;
}

.copyright {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.socials-footer {
    display: flex;
    gap: 1rem;
}

.socials-footer a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.socials-footer a:hover {
    background: var(--accent-green);
    color: var(--primary-color);
}

/* Footer CTA Section */
.footer-cta-section {
    position: relative;
    overflow: visible;
}
.footer-wrapper {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 6rem 2rem 2rem 2rem;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
@media (max-width: 768px) {
    .footer-wrapper {
        padding: 3rem 1rem 1rem 1rem;
        border-radius: 24px;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
}
/* Floating Project Cards */
.footer-cta-card {
    position: absolute;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: rotate(-5deg);
    z-index: 1;
}

.footer-cta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-card-left {
    width: 280px;
    height: 320px;
    top: 4rem;
    left: 5%;
    background: linear-gradient(135deg, #FFB8C6 0%, #FFA0B4 100%);
}

.footer-card-center {
    width: 320px;
    height: 280px;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
    background: linear-gradient(135deg, #A8A0FF 0%, #8B7FE8 100%);
}

.footer-card-right {
    width: 300px;
    height: 340px;
    top: 4.5rem;
    right: 5%;
    transform: rotate(5deg);
    background: linear-gradient(135deg, #FFE17A 0%, #FFD54F 100%);
}

.footer-cta-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-cta-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: #000000;
    text-transform: none;
}

.footer-cta-heading .diamond-emoji {
    font-size: 3rem;
    display: inline-block;
    vertical-align: middle;
}

.footer-cta-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #666666;
    margin: 0 0 3rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer CTA Responsive */
@media (max-width: 1024px) {
    .footer-card-left {
        width: 220px;
        height: 260px;
        left: 2%;
    }

    .footer-card-center {
        width: 260px;
        height: 220px;
    }

    .footer-card-right {
        width: 240px;
        height: 280px;
        right: 2%;
    }

    .footer-cta-container {
        padding-top: 12rem;
    }
}

@media (max-width: 768px) {
    .footer-cta-section {
        padding: 0;
    }

    .footer-cta-card {
        display: none;
    }

    .footer-cta-container {
        padding-top: 0;
    }

    .footer-cta-heading {
        font-size: 2.2rem;
    }

    .footer-cta-heading .diamond-emoji {
        font-size: 2rem;
    }

    .footer-cta-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .footer-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .footer-cta-buttons site-button {
        width: 100%;
    }
}

/* New Footer Design */
.footer-new {
    background: var(--color-black);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.footer-giant-image {
    width: 100%;
    max-width: 100%;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-giant-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}


/* Team Badges */
.footer-badge {
    position: absolute;
    background: white;
    color: #000;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.badge-top-left {
    top: 8rem;
    left: 8%;
}

.badge-bottom-right {
    bottom: 22rem;
    right: 10%;
}

/* Webflow Badge */
.webflow-badge {
    position: absolute;
    top: 3rem;
    right: 3rem;
    background: white;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Giant Brand Text */
.footer-giant-text {
    font-size: clamp(4rem, 15vw, 14rem);
    font-weight: 900;
    text-align: center;
    color: white;
    line-height: 1;
    margin: 6rem 0;
    text-transform: lowercase;
    font-family: var(--font-heading);
    letter-spacing: -0.05em;
    width: 100%;
    overflow: visible;
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.2fr 0.8fr;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-col h4 {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

/* Footer dropdown toggle - desktop: show as normal */
.footer-col-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-align: left;
}

.footer-col-toggle h4 {
    margin-bottom: 0;
}

.footer-col-chevron {
    display: none;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.footer-col-toggle + .footer-col-list {
    margin-top: 1.5rem;
}

/* Social Column */
.footer-col-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 2rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: white;
}

.footer-clutch-badge {
    margin-bottom: 1rem;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.footer-clutch-badge iframe {
    position: absolute;
    width: 360px;
    height: 360px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.333);
    border: none;
}

.footer-bottom {
    margin-top: 3rem;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin: 0;
}

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

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}

.footer-social-icons a:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

.footer-social-icons a:hover {
    color: white;
}

.footer-social-icons svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.footer-social-icon-dribbble svg {
    width: 28px;
    height: 28px;
}

.footer-social-icons a:hover svg {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social-icons {
        align-self: flex-end;
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-new {
        padding: 2rem 1.25rem 1.25rem 1.25rem;
        border-radius: 20px;
    }

    .footer-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .badge-top-left {
        top: 5rem;
        left: 5%;
    }

    .badge-bottom-right {
        bottom: 18rem;
        right: 5%;
    }

    .webflow-badge {
        top: 2rem;
        right: 1.5rem;
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }

    .footer-giant-text {
        font-size: clamp(3rem, 15vw, 10rem);
        margin: 4rem 0;
        width: 100%;
    }

    .footer-giant-image {
        margin: 4rem 0;
    }
    @media (max-width: 768px) {
        .footer-giant-image {
            margin: 1.5rem 0 2.5rem 0rem;
        }
    }

    .footer-giant-image img {
        max-width: 100%;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-top: 2rem;
    }

    /* Mobile footer dropdowns */
    .footer-col-dropdown .footer-col-chevron {
        display: block;
        color: rgba(255, 255, 255, 0.7);
    }

    .footer-col-dropdown .footer-col-list {
        display: none;
        margin-top: 0;
        padding-top: 1rem;
    }

    .footer-col-dropdown.footer-col-open .footer-col-list {
        display: flex;
    }

    .footer-col-dropdown.footer-col-open .footer-col-chevron {
        transform: rotate(180deg);
    }

    .footer-col-social {
        align-items: flex-start;
    }

    .footer-clutch-badge {
        margin-bottom: 1rem;
    }

}

/* Legacy Footer Media Queries */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand-col {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand-col {
        grid-column: span 1;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .company-deck {
        margin-bottom: 1rem;
    }
}

/* Project Details Page - Hero image in white container */
.project-hero-image {
    width: 100%;
    margin-bottom: 6rem;
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.10);
}

.project-hero-image img {
    width: 100%;
    height: 700px;
    display: block;
    object-fit: cover;
    border-radius: 32px;
    overflow: hidden;
    border: 8px solid #ffffff;
    box-sizing: border-box;
}

.project-details-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.project-sidebar {
    position: sticky;
    top: 4.5rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid rgba(0,0,0,0.10);
}

.sidebar-block {
    margin-bottom: 0rem;
}

.sidebar-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
    display: block;
}

.sidebar-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-body);
}

.service-tag {
    display: inline-block;
    background: #fff;
    border: 1px solid #eee;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    margin-right: 0.3rem;
    color: var(--color-dark-gray);
}

.project-main-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-family: var(--font-heading);
    text-transform: none;
    font-weight: 700;
}

.project-main-content h2 {
    font-size: 2.5rem;
    margin-top: .5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    text-transform: none;
    font-weight: 700;
}

.project-main-content h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.project-main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-dark-gray);
}

.project-main-content img {
    border-radius: 32px;
    margin: 2rem 0;
    width: 100%;
}

/* Borders for project media */
.project-main-content img,
.project-main-content video,
.project-details video {
    box-sizing: border-box;
}

/* Override project-main-content img for testimonial avatar - prevent stretch */
.project-testimonial-card .project-testimonial-avatar {
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    border: none !important;
}

/* Project Testimonial Card */
.project-testimonial-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.project-testimonial-quote {
    margin: 0 0 1.5rem 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-dark-gray);
    font-weight: 400;
}

.project-testimonial-quote-mark {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--color-gray-400);
    font-family: Georgia, serif;
    margin-right: 0.15em;
    vertical-align: -0.35em;
}

.project-testimonial-divider {
    border: none;
    border-top: 1px solid var(--color-gray-200);
    margin: 0 0 1.5rem 0;
}

.project-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-width: 0;
}

.project-testimonial-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    aspect-ratio: 1;
}

.project-testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1;
}

.project-testimonial-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
}

.project-testimonial-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-gray-600);
}

@media (max-width: 768px) {
    .project-testimonial-card {
        padding: 1.75rem;
        margin: 2rem 0;
    }

    .project-testimonial-quote {
        font-size: 1rem;
    }
}

/* Projects Listing Page */
.projects-hero {
    padding-top: 10rem;
    padding-bottom: 3rem;
}

.projects-hero-inner {
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projects-hero-title {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.projects-hero-subtitle {
    max-width: 640px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666666;
    margin: 0 auto;
}

.projects-page {
    padding-bottom: 5rem;
}

.projects-filters {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

.projects-filter-btn {
    border: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
    color: #4b5563;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.projects-filter-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(0,0,0,0.18);
}

.projects-filter-btn.active {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

.projects-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    padding: 1.75rem 1.75rem 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
    border-color: rgba(0,0,0,0.08);
}

.project-card-media {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.project-card-media img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.project-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.project-card-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.project-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.project-card-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

@media (max-width: 900px) {
    .projects-hero {
        padding-top: 6rem;
    }

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

@media (max-width: 640px) {
    .projects-hero {
        padding-top: 5rem;
        padding-bottom: 2rem;
    }

    .project-card {
        padding: 1.5rem 1.25rem 1.25rem;
        border-radius: 24px;
    }

    .project-card-media img {
        height: 220px;
    }
}

.project-main-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.project-main-content li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--color-dark-gray);
}

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

.share-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.share-icon:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

@media (max-width: 900px) {
    .project-hero-image {
        margin-bottom: 2rem;
        border-radius: 24px;
        padding: 1rem;
    }

    .project-hero-image img {
        border-radius: 16px;
    }

    .project-details-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-sidebar {
        position: relative;
        top: 0;
    }
}

/* Blog Details Page */
.blog-details-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 5rem;
    padding: 2rem 0;
    align-items: start;
}

.blog-sidebar {
    position: sticky;
    top: 7rem;
}

.sidebar-sticky-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-social-share-card {
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.share-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.social-icons-row {
    display: flex;
    gap: 0.75rem;
}

.social-icon-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.social-icon-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social-icon-link.fb { background: #1877F2; }
.social-icon-link.tw { background: #000000; }
.social-icon-link.li { background: #0A66C2; }

/* Sidebar CTA Banner - Simplified Cyan Design */
.sidebar-cta-banner {
    background: var(--color-white);
    border-radius: 24px;
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
}

.cta-banner-content {
    position: relative;
    text-align: center;
}

.cta-icon-badge {
    width: 64px;
    height: 64px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.cta-icon-badge img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.cta-heading {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: none;
}

.cta-subtext {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #1e293b;
    opacity: 0.75;
}

.blog-main-content {
    max-width: 100%;
}

.blog-title {
    font-size: 4rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: none;
}

.blog-meta {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-container {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
}

.author-avatar {
    width: 56px;
    height: 56px;
    object-fit: cover;
}

.author-info-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.separator {
    color: #cbd5e1;
    font-weight: 300;
}

.author-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.blog-date {
    font-size: 1rem;
    color: #64748b;
}

@media (max-width: 600px) {
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .blog-date {
        padding-left: 0;
    }
    
    .blog-date::before {
        display: none;
    }
}

.blog-featured-image {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 3rem;
}

.blog-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-color);
}

.blog-body p {
    margin-bottom: 2rem;
}

.blog-body h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.blog-body h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.blog-body ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.blog-body li {
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .blog-details-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .blog-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

/* -------------------------------------------------------------------------- */
/* Responsive Overrides (Mobile First / Tablet / Mobile)
/* -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .giant-text {
        font-size: 4rem;
        line-height: 1.1;
        font-weight: 700;
    }

    .giant-text .partner img {
        width: 4.5rem;
    }

    /* Tablet Gallery Layout */
    .about-team-gallery {
        gap: 1rem;
        margin: 3rem auto;
        height: 400px;
    }

    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3,
    .gallery-item-5 {
        height: 100%;
    }
    
    .about-heading {
        font-size: 2.8rem;
    }

    .nav-center {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Container Padding */
    .container, .global-padding {
        padding-left: 3.5%;
        padding-right: 3.5%;
    }

    /* Hide elements on mobile */
    .hide-mobile {
        display: none !important;
    }

    /* Center CTA button on mobile when second button is hidden */
    .hero-cta-wrapper {
        justify-content: center;
    }

    .site-nav {
        padding: 0.75rem 1rem 0;
    }

    .nav-container {
        padding: 0.75rem 1rem;
        border-radius: 16px;
    }

    /* Hero Section */
    .hero-content {
        margin-top: 6rem;
        padding: 3rem 2rem;
        border-radius: 24px;
    }

    .giant-text { 
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        max-width: 100%;
        line-height: 1.2;
    }

    .mobile-break {
        display: inline;
    }

    .giant-text .partner {
        margin: 0 0.25rem;
    }

    .giant-text .partner img {
        width: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-cta-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .hero-usp {
        margin-bottom: 1.5rem;
    }

    .hero-services-marquee {
        padding: 1rem 0;
        margin-top: 1rem;
        width: calc(100% + 4rem);
        margin-left: -2rem;
        margin-right: -2rem;
        margin-bottom: -3rem;
        border-radius: 0 0 24px 24px;
    }

    .services-marquee-track {
        gap: 1rem;
    }

    .service-marquee-card {
        width: 280px;
        height: 260px;
        padding: 1.25rem;
        border-radius: 24px;
    }

    .service-card-visual {
        border-radius: 16px;
        margin-bottom: 0.75rem;
    }

    .service-card-visual img {
        border-radius: 16px;
    }

    .service-card-label {
        font-size: 1.1rem;
    }

    /* Mobile Gallery */
    .about-team-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
        margin: 2rem auto;
        height: auto;
    }

    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3,
    .gallery-item-5 {
        grid-row: span 1;
        height: 300px;
    }

    .gallery-item-4 {
        display: none;
    }

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

    .hero-video-container {
        height: 50vh; /* Reduced from 80vh */
        margin-top: 3rem;
    }

    .video-play-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* About Section */
    .about {
        padding: 3rem 1rem;
    }

    .about-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .about-main-heading {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .diamond-emoji {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about .container {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-card-purple {
        padding: 2.5rem 2rem;
        border-radius: 24px;
        gap: 2rem;
        height: auto;
    }

    .stat-large {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .client-card {
        padding: 1.5rem 1.25rem;
        border-radius: 20px;
    }

    .client-name {
        font-size: 1.25rem;
    }

    .client-tag {
        padding: 0.3rem 0.7rem;
        font-size: 0.75rem;
    }

    .client-info {
        font-size: 0.9rem;
    }

    .about-arrow {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        padding-top: 2rem;
        gap: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Project Showcase */
    .our-projects {
        padding: 3rem 1rem;
    }
    @media (max-width: 768px) {
        .our-projects {
            padding: 0rem 1rem;
        }
    }

    .projects-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        padding: 0;
    }
    @media (max-width: 768px) {
        .projects-header {
            gap: 1rem;
        }
    }

    .projects-main-heading {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .projects-description {
        font-size: 1rem;
    }

    .project-showcase {
        padding: 3rem 2rem;
    }
    @media (max-width: 768px) {
        .project-showcase {
            padding: 2rem 1.5rem;
        }
    }

    .masonry-grid { 
        grid-template-columns: 1fr; 
        gap: 2.5rem;
    }
    @media (max-width: 768px) {
        .masonry-grid {
            gap: 1rem;
        }
    }
    
    .masonry-full,
    .masonry-half {
        grid-column: span 1;
    }
    
    .project-details {
        padding: 1.25rem 0 0 0;
    }
    
    .project-details .project-title {
        font-size: 2.2rem;
    }
    
    .masonry-full .project-details .project-title {
        font-size: 2.2rem;
    }

    .projects-separator {
        margin: 3rem 0 2rem 0;
    }
    @media (max-width: 768px) {
        .projects-separator {
            margin: 1rem 0 2rem 0;
        }
    }

    .projects-cta-wrapper {
        padding-bottom: 0.5rem;
    }
    
    .masonry-full .project-image img,
    .masonry-half .project-image img {
        height: 350px; /* Consistent height for mobile */
    }

    .project-desc {
        font-size: 1rem;
    }

    /* Talent Reveal */
    .talent-reveal {
        height: 200vh; /* Shorter scroll on mobile */
        padding: 1rem;
    }

    .talent-sticky-container {
        top: 1rem;
        height: calc(100vh - 2rem);
        border-radius: 24px;
    }

    .talent-heading {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .avatar-stack {
        height: 60px;
        width: 60px;
    }

    .avatar-stack img {
        width: 48px;
        height: 48px;
    }

    /* Services Section */
    .services {
        padding-top: 0;
        padding-bottom: 0;
    }

    @media (max-width: 768px) {
        .services {
            padding-top: 0;
        }
    }

    .services-header-new {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 6rem;
        padding: 0 1rem;
    }

    @media (max-width: 768px) {
        .services-header-new {
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-bottom: 3rem;
            padding: 0rem;

        }
    }

    .services-main-heading {
        font-size: 2.2rem;
    }

    .lightning-emoji {
        font-size: 2rem;
    }

    .services-description {
        font-size: 1rem;
    }

    .services-container {
        padding: 0rem;
    }

    .services-grid-simple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-step-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .step-visual {
        padding: 0;
        height: 240px;
        border-radius: 16px;
    }

    .service-image {
        border-radius: 16px;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .services-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .benefit-item {
        font-size: 0.9rem;
    }

    /* On mobile, show the content that was previously only on hover */
    .service-card .card-initial {
        position: relative;
        padding: 2rem 2rem 1rem;
        opacity: 1;
    }

    .service-card .card-hover-content {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 2rem 2rem;
        background: transparent !important; /* Use card's bg */
    }

    .service-card .card-image {
        height: 200px !important;
        margin-bottom: 1.5rem;
    }

    .service-card .card-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .card-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    /* Testimonials */
    .testimonials {
        padding-top: 0rem;
        padding-bottom: 0rem;
    }

    .testimonials .container {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .testimonial-track {
        gap: 1rem;
    }
    @media (max-width: 768px) {
        .testimonial-track {
            gap: 0.2rem;
        }
    }

    .card {
        flex: 0 0 85%;
        min-width: 85%;
        padding: 1.5rem;
        gap: 1.25rem;
        border-radius: 20px;
    }
    @media (max-width: 768px) {
        .card {
            flex: 0 0 85%;
            min-width: 85%;
            padding: 1rem;
            gap: 1rem;
        }
    }

    .rating-stars {
        gap: 0.2rem;
    }

    .star {
        font-size: 1.1rem;
    }

    .quote {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
    }

    .author-info .name {
        font-size: 0.9rem;
    }

    .author-info .role {
        font-size: 0.8rem;
    }

    .quote {
        font-size: 1.2rem;
    }
    @media (max-width: 768px) {
        .quote {
            font-size: 1rem;
        }
    }

    .video-card {
        flex: 0 0 70% !important;
        min-width: 70% !important;
    }

    /* FAQ */
    .faq-heading {
        font-size: 2.2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 0;
    }

    /* Contact Section */
    .contact {
        padding-top: 0rem;
        padding-bottom: 0rem;
    }

    .contact-heading {
        font-size: 2.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .giant-text-footer {
        font-size: 30vw;
        bottom: 2rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .giant-text {
        font-size: 2.5rem;
    }

    .mobile-break {
        display: inline;
    }

    .hide-mobile {
        display: none !important;
    }

    .hero-cta-wrapper {
        justify-content: center;
    }

    .giant-text .partner img {
        width: 2.5rem;
    }

    .hero-usp .usp-text {
        font-size: 0.8rem;
    }

    .about-heading {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-off-white);
    color: var(--primary-color);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.menu-overlay.active {
    transform: translateY(0) !important;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    border-bottom: 1px solid #eee;
}

.mobile-menu-logo {
    height: 30px;
    width: auto;
}

.close-menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    color: var(--primary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.close-menu-btn:hover {
    background: #000;
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.mobile-menu-links {
    display: flex !important;
    flex-direction: column;
    padding: 0 5%;
    width: 100%;
    visibility: visible;
    opacity: 1;
}

/* Base style for links and the button */
.mobile-link-item:not(.has-submenu), 
.mobile-link-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Specific styles for the container of the submenu */
.mobile-link-item.has-submenu {
    display: block; /* Stack button and submenu */
    border-bottom: 1px solid #eee;
    padding: 0;
}

/* Remove border from button inside submenu container to avoid double border */
.mobile-link-item.has-submenu .mobile-link-btn {
    border-bottom: none;
}

.mobile-link-item:hover, .mobile-link-btn:hover {
    color: var(--color-gray);
}

.arrow-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

/* Mobile Submenu */
.mobile-submenu {
    display: none;
    padding: 1rem 0 2rem;
    background: #f9f9f9;
    border-radius: 16px;
    margin: 0.5rem 0;
}

.mobile-submenu.active {
    display: block;
}

.mobile-service-category {
    margin-bottom: 1.5rem;
}

.mobile-service-category h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.mobile-service-category ul {
    list-style: none;
    padding-left: 1rem;
}

.mobile-service-category li {
    margin-bottom: 0.8rem;
}

.mobile-service-category a {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 400;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-service-category a:hover {
    color: var(--color-cyan);
    text-decoration: none;
}

.mobile-menu-icon {
    flex-shrink: 0;
    color: var(--accent-coral);
    opacity: 0.9;
}

/* Navigation Component */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: transform 0.3s ease, background-color 0.3s ease;
    background: transparent;
    border-bottom: none;
    padding-top: 1rem;
}

.site-nav.scrolled-bg {
    background: transparent;
    border-bottom: none;
}

.site-nav.scrolled-bg .nav-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.nav-item,
.mega-menu-trigger {
    color: var(--primary-color) !important;
}

.nav-item:hover,
.mega-menu-trigger:hover {
    color: var(--color-gray) !important;
}

.nav-item::after {
    background-color: var(--primary-color) !important;
}

.site-nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 2rem;
    margin: 0;
    min-height: 80px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    border-radius: 24px;
}

/* Left Section */
.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo-link {
    display: block;
    position: relative;
}

.nav-logo {
    height: 30px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    pointer-events: auto;
}

.logo-light {
    position: relative;
    opacity: 0;
    pointer-events: none;
}

/* Hamburger icon */
.hamburger-line {
    background-color: var(--primary-color) !important;
}

.menu-btn-mobile {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.menu-btn-mobile:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
}

/* Center Section */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: none;
    letter-spacing: 0;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
    text-decoration: none;
}

.nav-item:hover {
    color: var(--color-gray);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    background-color: transparent;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 0;
}

/* Mega Menu */
.has-mega-menu {
    position: static; /* Allow mega menu to be full width relative to nav */
}

.mega-menu-trigger {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
}

.mega-menu-trigger:hover {
    color: var(--color-gray);
}

.mega-menu-trigger:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

.mega-menu-trigger .chevron-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    stroke-width: 2.5;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 6.5%;
    right: 6.5%;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 998;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}

@media (max-width: 1440px) {
    .mega-menu:not(.mega-menu-simple) {
        left: 4%;
        right: 4%;
    }
}

@media (max-width: 768px) {
    .mega-menu:not(.mega-menu-simple) {
        left: 2%;
        right: 2%;
    }
}

@media (max-width: 480px) {
    .mega-menu:not(.mega-menu-simple) {
        left: 1%;
        right: 1%;
    }
}


.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 6rem;
    max-width: auto;
    padding: 3rem;
    margin: 0 auto;
}

/* Company mega menu - compact dropdown, not full width */
.mega-menu.mega-menu-simple {
    left: 50%;
    right: auto;
    width: auto;
    min-width: 240px;
    max-width: 280px;
    transform: translate(-50%, 10px);
    padding: 1.25rem 1.5rem;
}

.mega-menu.mega-menu-simple.active {
    transform: translate(-50%, 0);
}

.mega-menu-simple .mega-menu-container {
    grid-template-columns: 1fr;
    max-width: none;
    padding: 0;
    gap: 0;
}

.mega-column-full .mega-simple-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column-full .mega-simple-list li {
    margin-bottom: 0.25rem;
}

.mega-column-full .mega-simple-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--primary-color);
    background: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition: color 0.2s ease;
}

.mega-column-full .mega-simple-list a:hover {
    color: var(--accent-coral);
    background: none;
    background-color: transparent;
}

.mega-column-full .mega-simple-list a:hover .mega-simple-icon {
    color: var(--accent-coral);
}

.mega-column h4 {
    font-size: 0.85rem; /* Increased from 0.75rem */
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-black); /* Darker for more visibility */
    margin-bottom: 0.75rem;
    font-weight: 700; /* Bolder */
}

.mega-column-desc {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column li {
    margin-bottom: 0.35rem;
}

.mega-column a {
    font-size: 0.95rem; /* Increased from 0.9rem */
    color: var(--primary-color);
    background-color: var(--color-off-white);
    padding: 0.85rem 1.1rem; /* Increased padding */
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 16px;
    transition: all 0.2s ease;
    font-weight: 500; /* Slightly bolder */
    border: 1px solid transparent;
}

.mega-column a:hover {
    border-color: rgba(0,0,0,0.06);
}

.mega-column a:hover {
    background-color: var(--accent-cyan);
    color: #fff;
}

.mega-column a:focus {
    outline: 2px solid var(--accent-yellow);
    outline-offset: -2px;
}

/* Service items with descriptions */
.mega-services-list li a {
    align-items: flex-start;
    gap: 0.75rem;
}

.mega-services-list li a div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mega-services-list li a .mega-menu-icon {
    margin-top: 0.15rem;
}

.mega-item-desc {
    font-size: 0.8rem;
    color: var(--color-gray);
    font-weight: 400;
    line-height: 1.4;
    display: block;
}

.mega-column a:hover .mega-item-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* Simple column style (no button look) */
.mega-column-simple li {
    margin-bottom: 0.1rem;
}

.mega-column-simple a {
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0.45rem 0 !important;
    font-size: 0.9rem !important;
    font-weight: 500;
    gap: 0.5rem;
}

.mega-column-simple a:hover {
    background-color: transparent !important;
    color: var(--accent-coral) !important;
}

.mega-simple-icon {
    flex-shrink: 0;
    color: var(--color-gray);
    transition: color 0.2s ease;
}

.mega-column-simple a:hover .mega-simple-icon {
    color: var(--accent-coral);
}

.mega-menu-icon {
    flex-shrink: 0;
    color: var(--accent-coral);
    transition: color 0.2s ease, transform 0.2s ease;
}

.mega-column a:hover .mega-menu-icon {
    color: #fff;
    transform: scale(1.1);
}

/* Mega Menu Banner */
.mega-banner-col {
    display: flex;
    flex-direction: column;
}

.mega-banner {
    background-color: var(--color-black);
    color: #fff;
    padding: 2rem;
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.banner-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.banner-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.banner-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    color: #fff !important;
    background: rgba(255,255,255,0.1) !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 30px !important;
    font-size: 0.85rem !important;
    font-weight: 600;
    width: fit-content;
}

.banner-link:hover {
    background: #fff !important;
    color: var(--color-black) !important;
}

.banner-stats {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Add Sign In Link Style */
.nav-signin {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-signin:hover {
    color: var(--color-gray);
}

/* .nav-cta removed */

.menu-btn-mobile {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 100;
    border-radius: 12px;
    position: relative;
    pointer-events: auto;
    touch-action: manipulation;
}

.menu-btn-mobile:active {
    transform: scale(0.95);
}

.menu-btn-mobile:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hamburger-line {
    width: 24px;
    height: 1.5px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* Responsive */
@media (min-width: 1025px) {
    /* Ensure desktop navigation is properly positioned */
    .nav-center {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        align-items: center !important;
        width: auto !important;
        top: auto !important;
    }

    .nav-links {
        flex-direction: row !important;
        gap: 2rem !important;
        width: auto !important;
        background: transparent !important;
        border-radius: 0 !important;
        padding: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        opacity: 1 !important;
        position: static !important;
        box-shadow: none !important;
        margin-top: 0 !important;
    }

    .nav-item {
        display: inline !important;
        padding: 0.5rem 0 !important;
        width: auto !important;
        text-align: left !important;
        border-bottom: none !important;
        justify-content: flex-start !important;
    }

    .menu-btn-mobile {
        display: none !important;
    }

    .mobile-submenu-dropdown {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .nav-center {
        display: flex; /* Show nav on mobile */
        position: absolute;
        transform: none;
        width: 100%;
        top: 100%;
        left: 0;
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        background: white;
        border-radius: 16px;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        position: relative;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }

    .nav-center.mobile-menu-open .nav-links {
        max-height: 600px;
        opacity: 1;
        padding: 1rem 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links li:last-child .nav-item {
        border-bottom: none;
    }

    .has-mega-menu .mega-menu-trigger {
        justify-content: space-between;
    }
    
    .menu-btn-mobile {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-cta {
        display: none;
    }

    .nav-right site-button {
        display: none;
    }

    .nav-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        z-index: 100;
    }

    .menu-btn-mobile {
        position: relative;
        z-index: 101;
    }

    .nav-container {
        flex-wrap: nowrap;
        position: relative;
    }

    .nav-links {
        z-index: 99;
    }

    /* Show mobile submenu */
    .has-mega-menu {
        position: relative;
    }

    .has-mega-menu .mobile-submenu-dropdown {
        display: none;
        width: 100%;
        background: #F8F9FA;
        border-radius: 0 0 12px 12px;
        padding: 0.5rem 1.5rem 1rem;
    }

    .mega-menu-trigger.mobile-submenu-open ~ .mobile-submenu-dropdown {
        display: block;
    }

    .mobile-submenu-dropdown ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-submenu-dropdown ul li {
        margin: 0.5rem 0;
    }

    .mobile-submenu-dropdown ul li a {
        color: #666666;
        font-size: 0.9rem;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .mobile-submenu-dropdown ul li a:hover {
        color: var(--primary-color);
    }

    .mobile-submenu-dropdown .mobile-menu-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    /* Mobile CTA Buttons */
    .mobile-cta-list-item {
        list-style: none;
        border-bottom: none !important;
    }

    .mobile-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 1.5rem 0.5rem;
        width: 100%;
    }

    /* Hide desktop mega menus on mobile */
    .mega-menu {
        display: none !important;
    }
}

/* Hide mobile CTA buttons on desktop */
@media (min-width: 1025px) {
    .mobile-cta-list-item {
        display: none !important;
    }
}

/* FAQ Component Styles */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.faq-cta-col {
    position: sticky;
    top: 6rem;
}

.faq-heading {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.faq-cta-card {
    background-color: var(--accent-coral);
    color: #fff;
    border-radius: 32px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-cta-card .avatars {
    margin-bottom: 1.5rem;
}

.faq-cta-card .avatar-group {
    height: 60px;
    width: 60px;
    border-radius: 50px;
}

.faq-cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.3;
}

.faq-list-col {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid transparent;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 0;
    }
}
.faq-question:hover {
    color: var(--accent-coral);
}

.faq-icon {
    width: 30px !important;
    height: 30px !important;
    background: #ebeaea;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: #000;
    color: #fff;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    padding-top: 1rem;
}

.faq-answer > * {
    overflow: hidden;
    min-height: 0;
}

.faq-answer p {
    color: var(--color-gray);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-cta-col {
        position: static;
    }
}

/* -------------------------------------------------------------------------- */
/* Booking Page */
/* -------------------------------------------------------------------------- */
.booking-section {
    padding-top: 8rem;
    padding-bottom: 2rem;
}

.booking-container {
    margin: 0 auto;
    height: calc(100vh);
    display: flex;
    flex-direction: column;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.booking-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.booking-embed {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex: 1;
    min-height: 0;
}

.booking-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

@media (max-width: 768px) {
    .booking-section {
        padding-top: 7rem;
        padding-bottom: 2rem;
        min-height: calc(100vh - 5rem);
    }

    .booking-container {
        height: calc(100vh - 9rem);
    }

    .booking-title {
        font-size: 2rem;
    }

    .booking-embed iframe {
        min-height: 500px;
    }
}

/* -------------------------------------------------------------------------- */
/* Service Page Hero Section - About Style Layout */
.service-hero-wrapper {
    height: 300vh;
    position: relative;
}

.service-hero {
    height: 100vh;
    width: 100%;
    position: sticky;
    top: 0;
    background: var(--color-dark-green);
    overflow: hidden;
    z-index: 10;
    margin: 0;
    display: flex;
    align-items: stretch;
}

.service-hero-inner {
    width: 100%;
    display: flex;
    align-items: stretch;
    position: relative;
}

.service-hero-left {
    width: 50%;
    height: 100%;
    padding: 12rem 4rem 4rem 0rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 5;
}

.service-hero-left h1 {
    font-size: clamp(5rem, 11vw, 15rem);
    line-height: 100%;
    margin: 0;
    color: white;
    font-weight: 500;
    letter-spacing: -0.05em;
    transform: translateX(-1rem);
    word-wrap: break-word;
}

.service-hero-arrow {
    margin-bottom: 2rem;
}

.service-hero-right {
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: var(--color-dark-green);
    z-index: 20;
    overflow: hidden;
}

.service-panel-content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.service-img-box {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 7rem 0rem 4.7rem 4.7rem;
    height: 64vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

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

.service-title-box {
    padding: 4.7rem 0rem 4.7rem 4.7rem;
    border-bottom: transparent;
}

.service-title-h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.1;
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 500;
    max-width: 768px;
}

.service-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent-green);
    display: block;
    margin-bottom: 1rem;
}

.service-desc-box {
    display: none;
}

.service-desc-p {
    display: none;
}

@media (max-width: 1024px) {
    .service-hero-left {
        display: none;
    }
    
    .service-hero-right {
        width: 100% !important;
        position: relative;
    }
    
    .service-hero-wrapper {
        height: auto;
    }
    
    .service-hero {
        position: relative;
        height: auto;
    }
    
    .service-title-box {
        padding: 3rem;
    }
    
    .service-desc-box {
        padding:  3rem;
        align-items: flex-start;
    }
    
    .service-img-box {
        height: 50vh;
        padding: 6rem 3rem 3rem 3rem;
    }
}

@media (max-width: 768px) {
    .service-hero-left h1 {
        font-size: 4rem;
    }
    
    .service-title-h2 {
        font-size: 2rem;
    }
    
    .service-img-box {
        height: 40vh;
        padding: 6rem 2rem 2rem 2rem;
    }
    
    .service-title-box {
        padding: 2rem;
    }
    
    .service-desc-box {
        padding: 2rem;
    }
    
    .service-desc-p {
        font-size: 1rem;
    }
}

/* -------------------------------------------------------------------------- */
/* Logo Marquee Section */
.logo-marquee-section {
    overflow: hidden;
}

.logo-marquee-title {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-dark-gray);
    margin-bottom: 3rem;
}

.logo-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 40s linear infinite;
    width: fit-content;
}

.logo-marquee-track:hover {
    animation-play-state: paused;
}

.logo-marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-width: 140px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.logo-marquee-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-marquee-item img {
    max-height: 100%;
    max-width: 140px;
    width: auto;
    object-fit: contain;
}

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

@media (max-width: 768px) {
    .logo-marquee-section {
        padding: 3rem 0;
    }
    
    .logo-marquee-title {
        font-size: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .logo-marquee-track {
        gap: 3rem;
    }
    
    .logo-marquee-item {
        height: 50px;
        min-width: 120px;
    }
}

/* -------------------------------------------------------------------------- */
/* About Page - Studio Space Section */
.studio-space {
    padding-top: 0;
    padding-bottom: 0;
}

.studio-space-contanier {
    background-color: var(--color-dark-green);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    color: #fff;
    text-align: center;
}

.studio-space-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.studio-space-title {
    font-size: clamp(2.5rem, 4.5vw, 4vw);
    line-height: 1.2;
    max-width: 800px;
    margin-bottom: 4.5rem;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-heading);
    text-transform: none;
}

.studio-space-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    z-index: 5;
    cursor: pointer;
}

.studio-space-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #E2D3FA; /* Light purple */
    border-radius: 80px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 16px 60px rgba(0,0,0,0.12);
}

.studio-space-image-wrapper:hover .studio-space-image-container {
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.studio-space-image {
    width: 60%;
    height: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-hover-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    visibility: hidden;
    z-index: 15;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-space-image-wrapper:hover .studio-space-image-container {
    background-color: var(--accent-green);
    transform: scale(1.05);
}

.studio-space-image-wrapper:hover .studio-space-image {
    opacity: 0.15;
    transform: scale(0.9);
}

.studio-space-image-wrapper:hover .studio-hover-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.studio-space-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 140vw;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.studio-space-line svg {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    
    .studio-space-image-container {
        border-radius: 60px;
    }
    
    .studio-space-title {
        font-size: 1.8rem;
        padding: 0 1.5rem;
    }
    
    .studio-space-image-wrapper {
        max-width: 85%;
    }
}

/* -------------------------------------------------------------------------- */
/* Meet the Team Section */
.meet-team-section {
    position: relative;
}

.meet-team-section .container {
    padding-left: 0rem;
    padding-right: 0rem;
}

.meet-team-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.meet-team-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--color-black);
    text-transform: none;
    font-family: var(--font-heading);
}

.meet-team-nav {
    display: flex;
    gap: 0.75rem;
}

.meet-team-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--color-gray-300);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.meet-team-nav-btn:hover {
    background: var(--color-gray-100);
    border-color: var(--color-gray-400);
}

.meet-team-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 6rem 0 0;
    -webkit-overflow-scrolling: touch;
}

.meet-team-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.meet-team-carousel-wrapper {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.meet-team-carousel {
    display: flex;
    gap: 1.25rem;
    padding-bottom: 0.5rem;
}

.meet-team-card {
    flex: 0 0 calc(33.333% - 0.85rem);
    min-width: 280px;
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    overflow: hidden;
    padding-bottom: 1.5rem;
}


.meet-team-card-photo {
    position: relative;
    aspect-ratio: 3 / 3;
    margin: 1rem 1rem 0;
    border-radius: 24px;
    overflow: hidden;
}

/* Decorative wavy background layer */
.meet-team-card-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Dot pattern overlay */
.meet-team-card-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
    background-size: 12px 12px;
}

.meet-team-card-photo--purple::before {
    background-color: #e8ddf5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500' preserveAspectRatio='none'%3E%3Cpath d='M-50 200 C50 100 150 350 250 200 S400 50 500 150' fill='none' stroke='%23c4aee6' stroke-width='80' opacity='0.5'/%3E%3Cpath d='M-100 350 C0 250 100 450 200 300 S350 150 450 250' fill='none' stroke='%23d4bff0' stroke-width='100' opacity='0.4'/%3E%3Cpath d='M50 50 C150 -50 250 200 350 100 S500 250 600 150' fill='none' stroke='%23b89dd9' stroke-width='60' opacity='0.3'/%3E%3C/svg%3E");
    background-size: cover;
}

.meet-team-card-photo--pink::before {
    background-color: #f5dce8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500' preserveAspectRatio='none'%3E%3Cpath d='M-50 200 C50 100 150 350 250 200 S400 50 500 150' fill='none' stroke='%23e8a8c8' stroke-width='80' opacity='0.5'/%3E%3Cpath d='M-100 350 C0 250 100 450 200 300 S350 150 450 250' fill='none' stroke='%23f0c0d8' stroke-width='100' opacity='0.4'/%3E%3Cpath d='M50 50 C150 -50 250 200 350 100 S500 250 600 150' fill='none' stroke='%23d490b0' stroke-width='60' opacity='0.3'/%3E%3C/svg%3E");
    background-size: cover;
}

.meet-team-card-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meet-team-card-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    margin: 1rem 1.5rem 0.25rem;
    color: var(--primary-color);
    text-transform: none;
}

.meet-team-card-role {
    font-size: 1rem;
    color: var(--color-gray-600);
    margin: 0 1.5rem;
}

.meet-team-card-divider {
    height: 1px;
    background: var(--color-gray-300);
    margin: 1rem 1.5rem 0;
}

.meet-team-card-socials {
    display: flex;
    gap: 0.75rem;
    margin: 1rem 1.5rem 0;
}

.meet-team-card-socials a {
    color: var(--color-gray-600);
    transition: color 0.2s ease;
}

.meet-team-card-socials a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .meet-team-section .container {
        padding-left: 0;
        padding-right: 0;
    }
    
    
    .meet-team-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .meet-team-card {
        flex: 0 0 280px;
    }
}

/* Meet Zendeeps Section */
.meet-zendeeps {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

/* Header outside white container */
.meet-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8rem;
    margin: 0 auto 6rem;
    align-items: start;
}

.meet-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #000000;
    text-transform: none;
}

.meet-top-desc {
    max-width: none;
}

.meet-top-desc p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* White container with content */
.meet-zendeeps-container {
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    padding: 4rem 3rem;
}

.meet-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.meet-image-box img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}

.meet-accordion-item {
    border-top: 1.5px solid #eee;
    padding: 2.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.meet-accordion-item:last-child {
    border-bottom: 1.5px solid #eee;
}

.meet-accordion-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.meet-icon-num {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #999;
    transition: color 0.3s ease;
}

.meet-accordion-item.active .meet-icon-num {
    color: var(--primary-color);
}

.meet-icon-num i {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.meet-icon-num .num {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 2rem;
}

.meet-item-title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: none;
    margin: 0;
}

.meet-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    padding-left: 8.5rem; /* Align with title */
}

.meet-accordion-item.active .meet-accordion-content {
    max-height: 400px;
    opacity: 1;
    margin-top: 1.5rem;
}

.meet-accordion-content p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .meet-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .meet-content-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .meet-image-box img {
        height: 450px;
    }
    
    .meet-accordion-content {
        padding-left: 7rem;
    }

    .meet-zendeeps-container {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .meet-zendeeps {
        padding: 0;
    }

    .meet-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .meet-main-title {
        font-size: 2.5rem;
    }

    .meet-top-desc p {
        font-size: 1rem;
    }

    .meet-zendeeps-container {
        border-radius: 24px;
    }
    
    .meet-accordion-header {
        gap: 1.5rem;
    }
    
    .meet-accordion-content {
        padding-left: 0;
    }
    
    .meet-icon-num {
        gap: 1rem;
    }
    
    .meet-item-title {
        font-size: 1.2rem;
    }

    .meet-image-box img {
        height: 350px;
        border-radius: 24px;
    }
}

/* -------------------------------------------------------------------------- */
/* About Page Hero - Pinned Scroll Interaction
/* -------------------------------------------------------------------------- */

.about-hero-wrapper {
    height: 300vh;
    position: relative;
}

.about-hero-sticky {
    height: 100vh;
    width: 100%;
    position: sticky;
    top: 0;
    background: var(--color-dark-green);
    overflow: hidden;
    z-index: 10;
    margin: 0;
    display: flex;
    align-items: stretch;
}

.about-hero-inner {
    width: 100%;
    display: flex;
    align-items: stretch;
    position: relative;
}

.about-hero-left {
    width: 50%;
    height: 100%;
    padding: 12rem 4rem 4rem 0rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 5;
}

.about-hero-right {
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: var(--color-dark-green);
    z-index: 20;
    overflow: hidden;
}

.about-panel-content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.about-img-box {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 8rem 4rem 4rem 4rem;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-expanding-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
    transition: width 0.1s linear;
    border-radius: 24px;
    background-color: var(--color-cyan-light);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.about-expanding-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    display: block;
    animation: pulse 2s infinite;
}

.about-img-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 2;
}

.about-img-text {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    color: white;
    text-transform: lowercase;
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 2px 2px 30px rgba(0,0,0,0.3);
}

.about-title-box {
    padding: 4rem 4rem 0 4rem;
}

.about-title-h2 {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 500;
    color: white;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.about-desc-box {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    z-index: 30;
}

.about-desc-p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .about-hero-left {
        display: none;
    }
    .about-hero-right {
        width: 100% !important;
        position: relative;
    }
    .about-hero-wrapper {
        height: auto;
    }
    .about-hero-sticky {
        position: relative;
        height: auto;
    }
    .about-desc-box {
        position: relative;
        bottom: 0;
        right: 0;
        padding: 4rem;
        text-align: left;
    }
    .about-desc-p {
        text-align: left;
    }
}
/* ================================
   Legal Pages (FAQ, Privacy, Terms, Cookies)
   ================================ */

.legal-hero {
    background: var(--color-off-white);
    padding: 10rem 0 4rem;
    text-align: center;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin: 0;
}

.legal-content {
    padding: 4rem 0 6rem;
    background: var(--color-white);
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-body h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 3rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-light-gray);
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2rem 0 0.75rem;
}

.legal-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
    margin-bottom: 1rem;
}

.legal-body ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
}

.legal-body ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
    margin-bottom: 0.5rem;
}

.legal-body a {
    color: var(--accent-coral);
    text-decoration: underline;
}

.legal-body a:hover {
    color: var(--color-coral-dark);
}

/* FAQ Specific Styles */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category > h2 {
    color: var(--accent-coral);
    border-bottom-color: var(--accent-coral);
}

.faq-item {
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .faq-item {
        margin-bottom: 0.8rem;
    }
}

.faq-item:hover {
    transform: translateY(-0px);
}

.faq-item h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.75rem;
}

.faq-item p {
    margin: 0;
    color: var(--color-dark-gray);
}

.faq-cta {
    text-align: center;
    padding: 3rem;
    background: var(--primary-color);
    border-radius: 24px;
    margin-top: 3rem;
    box-shadow: 0 8px 32px rgba(26, 58, 46, 0.2);
}

.faq-cta h2 {
    color: white !important;
    border: none !important;
    margin: 0 0 0.5rem !important;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-light-gray);
}

.cookie-table th {
    background: var(--color-off-white);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--color-dark-gray);
}

.cookie-table tr:hover td {
    background: var(--color-off-white);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-hero {
        padding: 8rem 0 3rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 3rem 0 4rem;
    }
    
    .legal-body {
        padding: 0 1.5rem;
    }
    
    .legal-body h2 {
        font-size: 1.3rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .cookie-table {
        font-size: 0.85rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem;
    }
}

/* ================================
   Cookie Banner Component
   ================================ */

/* Hide the custom element wrapper */
consent-banner {
    display: none;
}

.consent-banner {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 999999 !important;
    padding: 1rem;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    pointer-events: none;
    display: block !important;
    visibility: visible !important;
}

.consent-banner--visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}

/* Ensure bottom positioned banner is visible */
.consent-banner--bottom.consent-banner--visible {
    bottom: 0 !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* Position Variants */
.consent-banner--bottom {
    bottom: 0;
}

.consent-banner--top {
    top: 0;
    bottom: auto;
    transform: translateY(-100%);
}

.consent-banner--top.consent-banner--visible {
    transform: translateY(0);
}

.consent-banner--bottom-left,
.consent-banner--bottom-right {
    bottom: 1rem;
    left: auto;
    right: auto;
    max-width: 420px;
    padding: 0;
}

.consent-banner--bottom-left {
    left: 1rem;
}

.consent-banner--bottom-right {
    right: 1rem;
}

/* Theme Variants */
.consent-banner--dark .consent-banner__container {
    background: #1a3a2f !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consent-banner--light .consent-banner__container {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--color-light-gray);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
}

/* Container */
.consent-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-radius: 24px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    min-height: 80px;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
}

/* Content */
.consent-banner__content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.consent-banner__icon {
    flex-shrink: 0;
    opacity: 0.8;
}

.consent-banner--dark .consent-banner__icon {
    color: var(--accent-green);
}

.consent-banner--light .consent-banner__icon {
    color: var(--accent-coral);
}

.consent-banner__text {
    flex: 1;
}

.consent-banner__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.consent-banner__description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.consent-banner__link {
    color: var(--accent-green);
    text-decoration: underline;
}

.consent-banner--light .consent-banner__link {
    color: var(--accent-coral);
}

/* Actions */
.consent-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.consent-banner__btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.consent-banner__btn--accept {
    background: var(--accent-green);
    color: var(--primary-color);
}

.consent-banner__btn--accept:hover {
    background: var(--color-lime-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 247, 90, 0.4);
}

.consent-banner__btn--reject {
    background: transparent;
    border: 1px solid currentColor;
    opacity: 0.7;
}

.consent-banner--dark .consent-banner__btn--reject {
    color: white;
}

.consent-banner--light .consent-banner__btn--reject {
    color: var(--primary-color);
}

.consent-banner__btn--reject:hover {
    opacity: 1;
}

.consent-banner__btn--settings {
    background: transparent;
    color: inherit;
    text-decoration: underline;
    padding: 0.75rem 0.5rem;
}

.consent-banner__btn--settings:hover {
    opacity: 0.8;
}

/* Settings Modal */
.consent-settings-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.consent-settings-modal--visible {
    opacity: 1;
    visibility: visible;
}

.consent-settings-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.consent-settings-modal__content {
    position: relative;
    background: white;
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.consent-settings-modal--visible .consent-settings-modal__content {
    transform: scale(1) translateY(0);
}

.consent-settings-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-light-gray);
}

.consent-settings-modal__header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.consent-settings-modal__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-light-gray);
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    transition: all 0.3s ease;
}

.consent-settings-modal__close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.consent-settings-modal__body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.consent-setting {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-light-gray);
}

.consent-setting:last-child {
    border-bottom: none;
}

.consent-setting__info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.25rem;
}

.consent-setting__info p {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin: 0;
    line-height: 1.5;
}

/* Toggle Switch */
.consent-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.consent-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.consent-toggle__slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: var(--color-light-gray);
    transition: 0.3s;
    border-radius: 28px;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.08);
}

.consent-toggle__slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.consent-toggle input:checked + .consent-toggle__slider {
    background-color: var(--accent-green);
}

.consent-toggle input:checked + .consent-toggle__slider:before {
    transform: translateX(24px);
}

.consent-toggle--disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.consent-toggle--disabled .consent-toggle__slider {
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .consent-banner__container {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
        gap: 1.25rem;
    }
    
    .consent-banner__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: auto;
    }
    
    .consent-banner__actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .consent-banner--bottom-left,
    .consent-banner--bottom-right {
        left: 0.5rem;
        right: 0.5rem;
        max-width: none;
    }
    
    .consent-settings-modal__content {
        max-height: 80vh;
    }
}

/* Floating Cookie Settings Button */
.consent-settings-float {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.consent-settings-float--visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.consent-settings-float__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--accent-green);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.consent-settings-float__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: var(--color-dark-green-light);
}

.consent-settings-float__btn:active {
    transform: scale(0.95);
}

.consent-settings-float__btn svg {
    transition: transform 0.3s ease;
}

.consent-settings-float__btn:hover svg {
    transform: rotate(15deg);
}

/* Modal Footer with Policy Link */
.consent-settings-modal__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--color-light-gray);
    background: var(--color-off-white);
}

.consent-settings-modal__policy-link {
    color: var(--color-gray);
    font-size: 0.85rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.consent-settings-modal__policy-link:hover {
    color: var(--primary-color);
}

.consent-settings-modal__buttons {
    display: flex;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .consent-settings-float {
        bottom: 1rem;
        left: 1rem;
    }
    
    .consent-settings-float__btn {
        width: 44px;
        height: 44px;
    }
    
    .consent-settings-modal__footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .consent-settings-modal__policy-link {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .consent-settings-modal__buttons {
        flex-direction: column;
    }
    
    .consent-settings-modal__buttons .consent-banner__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ─── Image Carousel ─── */

.carousel-section {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.carousel-viewport {
    background: #ffffff;
    border: 1rem solid #ffffff;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    will-change: transform;
    background: #ffffff;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide {
    flex: 0 0 70vw;
    max-width: 900px;
    border-radius: 1rem;
    overflow: hidden;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Navigation arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--color-black, #1a1a1a);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: var(--color-black, #1a1a1a);
    color: #fff;
}

.carousel-arrow-left {
    left: 1.5rem;
}

.carousel-arrow-right {
    right: 1.5rem;
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--color-gray, #999);
    opacity: 0.35;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.carousel-dot:hover {
    opacity: 0.6;
}

.carousel-dot.active {
    opacity: 1;
    background: var(--color-black, #1a1a1a);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-section {
        padding-top: 0%;
        padding-bottom: 0rem;
    }

    .carousel-slide {
        flex: 0 0 85vw;
    }

    .carousel-track {
        gap: 16px;
    }

    .carousel-slide img {
        aspect-ratio: 4 / 3;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
    }

    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }

    .carousel-arrow-left {
        left: 0.75rem;
    }

    .carousel-arrow-right {
        right: 0.75rem;
    }

    .carousel-dots {
        margin-top: 1.25rem;
    }
}


/* ─── Featured Case Studies Section ─── */

.case-studies-section {
    padding-top: 0rem;
    padding-bottom: 0rem;
}
.case-studies-container {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem;
    margin: 0 auto;
}
.case-studies-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.case-studies-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.case-studies-nav {
    display: flex;
    gap: 0.75rem;
}

.case-studies-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    color: var(--primary-color);
}

.case-studies-nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.case-studies-viewport {
    overflow: hidden;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.case-studies-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
}

.case-studies-track::-webkit-scrollbar {
    display: none;
}

.case-study-card {
    flex: 0 0 340px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.case-study-card:hover {
    transform: translateY(0);
}

.case-study-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--color-off-white, #f7f7f5);
}

.case-study-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.case-study-card:hover .case-study-card-image img {
    transform: scale(1.04);
}

.case-study-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.case-study-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.case-study-tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #555;
    background: #fff;
    white-space: nowrap;
}

.case-study-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary-color);
    margin: 0;
}

.case-study-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: auto;
    padding-top: 0.5rem;
    transition: gap 0.25s ease;
}

.case-study-card-link:hover {
    gap: 0.7rem;
}

.case-study-card-link svg {
    transition: transform 0.25s ease;
}

.case-study-card-link:hover svg {
    transform: translateX(2px);
}

/* Case Studies CTA */
.case-studies-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .case-studies-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .case-studies-title {
        font-size: 2rem;
    }

    .case-studies-nav-btn {
        width: 40px;
        height: 40px;
    }

    .case-study-card {
        flex: 0 0 280px;
    }

    .case-study-card-image {
        height: 180px;
    }
}


/* ─── Contact Hero Section ─── */

.contact-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 3rem;
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Left Column */
.contact-hero-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
}

.contact-team-avatars {
    display: flex;
    gap: 0;
}

.contact-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-off-white, #f7f7f5);
    margin-right: -12px;
    position: relative;
}

.contact-avatar:last-child {
    margin-right: 0;
}

.contact-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin: 0;
}

.contact-hero-sub {
    font-size: 1.05rem;
    color: #555;
    margin: 0.5rem 0 0;
    line-height: 1.6;
}

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

.contact-hero-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #444;
}

.contact-hero-list li svg {
    flex-shrink: 0;
}

/* Contact Testimonial */
.contact-testimonial {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-testimonial-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.contact-testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-dark-gray);
    margin: 0 0 1rem;
    font-style: italic;
}

.contact-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-testimonial-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-black);
}

.contact-testimonial-role {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.contact-book-call-link {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-dark-gray);
}

.contact-book-call-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.contact-book-call-link a:hover {
    color: var(--color-coral-dark, #D44425);
}

.review-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.85rem;
    color: #555;
}

.review-text strong {
    color: var(--primary-color);
}

/* Right Column: Form Wrapper */
.contact-hero-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
}

.contact-form-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-hero {
        padding-top: 8rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .contact-hero-heading {
        font-size: 2rem;
    }

    .contact-hero-form-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }

}


/* ─── Pricing Hero Section ─── */

.pricing-hero {
    padding-top: 12rem;
    padding-bottom: 5rem;
    border-radius: 0 0 32px 32px;
}

.pricing-hero-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 4rem;
}

.pricing-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin: 0 0 1.25rem;
}

.pricing-hero-sub {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    margin: 0 auto 3rem;
    width: fit-content;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-toggle-btn {
    background: none;
    border: none;
    padding: 0.7rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.pricing-toggle-btn.active {
    color: #fff;
}

.pricing-toggle-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: calc(50% - 5px);
    background: var(--primary-color);
    border-radius: 50px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.pricing-toggle-btn[data-plan="onetime"].active ~ .pricing-toggle-slider {
    transform: translateX(100%);
}

/* Pricing Panel Visibility */
.pricing-cards-grid.pricing-panel {
    display: none;
}

.pricing-cards-grid.pricing-panel.active {
    display: grid;
}

/* Bottom note toggle link */
.pricing-note-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    font-size: inherit;
    padding: 0;
}

.pricing-note-toggle:hover {
    color: var(--color-coral);
}

/* Pricing Cards Grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Individual Card */
.pricing-card-new {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card-new:hover {
    transform: translateY(0);
}

/* Highlighted Card */
.pricing-card-highlighted {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pricing-card-highlighted .pricing-card-name,
.pricing-card-highlighted .pricing-card-price {
    color: #fff;
}

.pricing-card-highlighted .pricing-card-price span {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card-highlighted .pricing-card-divider {
    background: rgba(255, 255, 255, 0.15);
}

.pricing-card-highlighted .pricing-card-features li {
    color: rgba(255, 255, 255, 0.9);
}

/* Card Icons Row */
.pricing-card-icons {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.pricing-icon-pill {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}

/* Card Name */
.pricing-card-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.75rem;
}

/* Card Price */
.pricing-card-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin: 0 0 1.5rem;
    font-family: var(--font-heading);
}

.pricing-card-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #999;
}

/* Divider */
.pricing-card-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

/* Features List */
.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.pricing-card-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: #444;
}

.pricing-card-features li svg {
    flex-shrink: 0;
}

/* Bottom Note */
.pricing-bottom-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.95rem;
    color: #666;
}

.pricing-note-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pricing-note-link:hover {
    color: var(--color-coral);
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .pricing-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding-top: 8rem;
        padding-bottom: 3rem;
    }

    .pricing-hero-title {
        font-size: 2rem;
    }

    .pricing-card-new {
        padding: 2rem 1.5rem;
    }
}


/* ─── Perks Section ─── */

.perks-section {
    padding-top: 0;
    padding-bottom: 0;
}

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

.perks-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: var(--color-off-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.perks-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1.15;
    margin: 0;
}

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

.perk-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.perk-card:hover {
    transform: translateY(0);
}

.perk-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.perk-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
}

.perk-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .perks-title {
        font-size: 1.8rem;
    }
}


/* ─── Why Zendeeps Section ─── */

.why-zendeeps {
    padding-top: 0;
    padding-bottom: 0;
}

.why-zendeeps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: var(--color-white);
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.why-zendeeps-content .perks-label {
    margin-bottom: 1rem;
}

.why-zendeeps-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1.15;
    margin: 0 0 1.25rem;
}

.why-zendeeps-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.why-zendeeps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-zendeeps-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
}

.why-zendeeps-list li svg {
    flex-shrink: 0;
}

/* Comparison Card */
.why-zendeeps-card {
    background: var(--color-off-white);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.why-card-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.why-compare-col {
    padding: 1.5rem;
    border-radius: 16px;
}

.why-compare-old {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.why-compare-new {
    background: var(--primary-color);
    color: #fff;
}

.why-compare-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.why-compare-new .why-compare-label {
    color: rgba(255, 255, 255, 0.7);
}

.why-compare-price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.why-compare-new .why-compare-price {
    color: var(--color-lime);
}

.why-compare-price small {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.7;
}

.why-compare-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.why-compare-col ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

.why-compare-new ul li {
    color: rgba(255, 255, 255, 0.85);
}

.why-compare-col ul li svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-zendeeps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-zendeeps-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .why-zendeeps-title {
        font-size: 1.75rem;
    }

    .why-compare-col {
        padding: 1rem;
    }

    .why-compare-price {
        font-size: 1.4rem;
    }
}

/* ===== Career Page ===== */
.career-hero {
    padding-top: 12rem;
    padding-bottom: 5rem;
}

.career-hero-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.career-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin: 0.5rem 0 1.5rem 0;
}

.career-hero-sub {
    font-size: 1.15rem;
    color: var(--color-dark-gray);
    line-height: 1.7;
    margin: 0;
}

.career-benefits-wrapper,
.career-roles-wrapper {
    margin: 0 auto;
}

.career-section-header {
    margin-bottom: 3rem;
}

.career-section-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #000000;
    text-transform: none;
}

.career-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.career-benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.career-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent-coral);
}

.career-benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.career-benefit-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-dark-gray);
    margin: 0;
}

.career-roles-container {
    background: #fff;
    border-radius: 24px;
    padding: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.career-roles-empty {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.career-roles-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-cyan);
}

.career-roles-empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
}

.career-roles-empty-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-dark-gray);
    margin: 0 0 1.5rem 0;
}

.career-roles-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.career-role-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    padding: 2rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
}

.career-role-card:hover {
    transform: translateY(0);
}

.career-role-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.career-role-title {
    font-size: 1.35rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--primary-color);
    margin: 0;
}

.career-role-location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--color-dark-gray);
}

.career-role-location svg {
    flex-shrink: 0;
}

.career-role-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-dark-gray);
    margin: 0 0 1rem 0;
}

.career-role-cta {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-coral);
}

.career-cta-container {
    text-align: center;
    background: var(--primary-color);
    border-radius: 24px;
    padding: 4rem 3rem;
    color: #fff;
}

.career-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 0 0 0.75rem 0;
}

.career-cta-sub {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0 0 2rem 0;
}

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

@media (max-width: 768px) {
    .career-section-title {
        font-size: 2rem;
    }

    .career-benefits-grid {
        grid-template-columns: 1fr;
    }

    .career-roles-container {
        padding: 2.5rem 1.5rem;
    }

    .career-role-card {
        padding: 1.5rem 1.25rem;
    }

    .career-role-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .career-role-title {
        font-size: 1.2rem;
    }

    .career-cta-container {
        padding: 3rem 2rem;
    }

    .career-cta-title {
        font-size: 1.75rem;
    }
}

/* Job Hero (matches service pages) */
.job-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #6e6e73;
}

.job-hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.job-hero-location svg {
    flex-shrink: 0;
}

/* Job Detail Page */
.job-detail-page {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.job-detail-container {
    margin: 0 auto;
}

.job-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 6rem;
    align-items: start;
}

.job-detail-main {
    min-width: 0;
}

.job-detail-sidebar {
    position: sticky;
    top: 8rem;
}

.job-info-card {
    background: var(--color-gray-100);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.job-info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.5rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--color-dark-gray);
}

.job-info-row:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.job-info-label {
    font-weight: 500;
    color: var(--color-dark-gray);
}

.job-info-value {
    font-weight: 400;
    text-align: right;
}

.job-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.2s ease;
}

.job-back-link:hover {
    color: var(--accent-coral);
}

.job-detail-card {
    background: #fff;
    border-radius: 32px;
    padding: 6rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.job-detail-header {
    margin-bottom: 2rem;
}

.job-detail-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-coral);
    margin-bottom: 0.75rem;
}

.job-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.job-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.job-detail-location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    color: var(--color-dark-gray);
}

.job-detail-location svg {
    flex-shrink: 0;
}

.job-detail-type {
    font-size: 0.95rem;
    color: var(--color-dark-gray);
}

.job-detail-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-dark-gray);
    margin: 0 0 2.5rem 0;
}

.job-detail-section {
    margin-bottom: 2.5rem;
}

.job-detail-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.job-detail-list {
    margin: 0;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
}

.job-detail-list li {
    margin-bottom: 0.5rem;
}

.job-detail-list--muted {
    color: var(--color-gray);
}

.job-detail-apply-cta {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .job-detail-page {
        padding-top: 0rem;
        padding-bottom: 0rem;
    }

    .job-detail-layout {
        grid-template-columns: 1fr;
    }

    .job-detail-sidebar {
        position: static;
        order: -1;
    }

    .job-detail-card {
        padding: 1.5rem 1.25rem;
    }

    .job-detail-title {
        font-size: 1.85rem;
    }

    .job-detail-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Apply Page */
.apply-page {
    padding-top: 0;
    padding-bottom: 0;
}

.apply-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.apply-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.2s ease;
}

.apply-back-link:hover {
    color: var(--accent-coral);
}

.apply-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 3rem;
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.apply-hero-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
}

.apply-hero-heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin: 0;
}

.apply-hero-sub {
    font-size: 1.05rem;
    color: #555;
    margin: 0.5rem 0 0;
    line-height: 1.6;
}

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

.apply-hero-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #444;
}

.apply-hero-list li svg {
    flex-shrink: 0;
}

.apply-testimonial {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.apply-view-openings-link {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.apply-view-openings-link a {
    color: var(--accent-coral);
    font-weight: 600;
    text-decoration: none;
}

.apply-view-openings-link a:hover {
    text-decoration: underline;
}

.apply-hero-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.apply-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
}

.apply-form-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 1.5rem;
}

.apply-form {
    width: 100%;
}

.apply-form .form-row {
    margin-bottom: 1.5rem;
}

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

.apply-form .form-group input:focus,
.apply-form .form-group textarea:focus {
    border-color: var(--accent-coral);
    box-shadow: 0 4px 16px rgba(234, 91, 58, 0.15);
}

.apply-form .form-group input[type="file"] {
    padding: 0.75rem 0;
    border: none;
    background: transparent;
}

.apply-submit-btn {
    width: 100%;
    margin-top: 0.5rem;
}

@media (max-width: 1024px) {
    .apply-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .apply-hero {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .apply-hero-grid {
        padding: 2rem 1.5rem;
    }

    .apply-hero-heading {
        font-size: 2rem;
    }

    .apply-hero-form-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .apply-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}
