:root {
    --bg-color: #1a0508;
    --card-bg: rgba(40, 10, 15, 0.5);
    --card-border: #3d141b;
    --text-primary: #f5ecee;
    --text-secondary: #bd9a9f;
    --accent: #b3394c;
    --accent-hover: #d14d62;
    --accent-glow: rgba(179, 57, 76, 0.3);
    --accent-gradient: linear-gradient(135deg, #d14d62 0%, #b3394c 100%);
    --form-bg: rgba(26, 5, 8, 0.98);
    --input-border: #3d141b;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

.theme-light {
    --bg-color: #e8d5d8;
    --card-bg: rgba(255, 255, 255, 0.35);
    --card-border: rgba(255, 255, 255, 0.7);
    --form-bg: rgba(255, 255, 255, 0.5);
    --text-primary: #2b1114;
    --text-secondary: #5e353b;
    --accent: #8c1c2d;
    --accent-hover: #a62639;
    --accent-glow: rgba(140, 28, 45, 0.3);
    --accent-gradient: linear-gradient(135deg, #a62639 0%, #8c1c2d 100%);
    background-color: var(--bg-color);
    background-image: url('assets/uploaded-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-primary);
    font-weight: 400; /* Normal weight for better contrast on light background */
}

.theme-light .text-secondary {
    color: var(--text-secondary);
}

.theme-dark {
    --bg-color: #1a0508;
    --card-bg: rgba(40, 10, 15, 0.5);
    --card-border: #3d141b;
    --text-primary: #f5ecee;
    --text-secondary: #bd9a9f;
    --accent: #b3394c;
    --accent-hover: #d14d62;
    --accent-glow: rgba(179, 57, 76, 0.3);
    --accent-gradient: linear-gradient(135deg, #d14d62 0%, #b3394c 100%);
    --form-bg: rgba(26, 5, 8, 0.98);
    --input-border: #3d141b;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-weight: 350;
}

.theme-dark .text-secondary {
    color: var(--text-secondary);
}

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

html {
    scroll-behavior: smooth;
}

section[id],
.flip-card[id] {
    scroll-margin-top: 120px;
}



@keyframes pageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 350;
    line-height: 1.5;
    overflow-x: hidden;
    animation: pageFadeIn 0.8s ease-out forwards;
    transition: opacity 0.5s ease-in-out;
}

body.fade-out {
    opacity: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

button {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

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

h2 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

h2 em {
    font-style: italic;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--accent);
}

.eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.short-line {
    border: none;
    height: 2px;
    width: 36px;
    background-color: var(--accent);
    margin-bottom: 1.5rem;
}

.req {
    color: #cc4444;
    margin-left: 1px;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 3.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    transition: padding 0.3s ease;
    background-color: rgba(20, 4, 8, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}

.navbar.scrolled {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 32px;
    width: auto;
    display: block;
    fill: var(--text-primary);
    color: var(--text-primary);
    transition: fill 0.3s ease, color 0.3s ease;
}

.logo-svg:hover {
    fill: var(--accent);
    color: var(--accent);
}

.site-footer .logo-svg {
    fill: #f5ecee;
    color: #f5ecee;
}

.logo a:hover svg path {
    fill: #b3394c;
    color: #b3394c;
}

.theme-light .logo svg path {
    fill: #f5ecee;
    color: #f5ecee;
}

.navbar .logo-svg:hover {
    fill: #b3394c;
    color: #b3394c;
}

@media (max-width: 768px) {
    .logo-svg {
        height: 24px;
    }
}


.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    align-items: center;
}

nav a, .dropdown-toggle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    transition: color 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
}

nav a:hover {
    color: var(--accent);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    padding: 1rem 0; /* Add some padding to bridge the gap for the hover state */
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    pointer-events: none;
}

/* Desktop Touch/Click State */
.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown.active .dropdown-toggle {
    color: var(--accent);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(25, 5, 10, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--accent);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 170px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

/* Invisible bridge to prevent hover loss across the gap */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 0;
    width: 100%;
    height: 1.5rem;
}

.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mouse Hover State (Only for devices with cursors) */
@media (hover: hover) and (pointer: fine) {
    .nav-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown:hover .dropdown-toggle {
        color: var(--accent);
    }

    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-menu a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 6px;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(179, 57, 76, 0.08);
    color: var(--accent);
    transform: translateX(4px);
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.6rem 1.4rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    border-radius: 6px;
}

.btn-outline:hover {
    background: var(--accent-gradient);
    color: #1a0508;
    border-color: transparent;
    box-shadow: 0 8px 25px var(--accent-glow);
    transform: translateY(-2px) scale(1.02);
}

/* Mobile Nav Drawer (Hidden Globally) */
.mobile-nav-drawer {
    display: none;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: translateX(100%);
    transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 1;
}

.hero-slide.active {
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.previous {
    transform: translateX(-100%);
    z-index: 1;
}

.hero-slide.next {
    transform: translateX(100%);
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Left side dark, fading to semi-transparent so the cityscape shows through behind the form */
    background: linear-gradient(
        to right,
        rgba(20, 4, 8, 0.75) 0%,
        rgba(20, 4, 8, 0.55) 30%,
        rgba(20, 4, 8, 0.3) 60%,
        rgba(20, 4, 8, 0.15) 85%,
        rgba(20, 4, 8, 0.25) 100%
    );
    z-index: 1;
}

/* Bottom edge warm glow */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(20, 4, 8, 1) 0%, rgba(20, 4, 8, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3.5rem;
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
    gap: 4rem;
}

/* ============================
   HERO LEFT CONTENT
   ============================ */
.hero-content {
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero-content .eyebrow {
    margin-bottom: 0.75rem;
}

.hero-content h2 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 340px;
}

.discover-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0.3rem;
    transition: gap 0.3s ease;
}

.discover-link:hover {
    gap: 0.9rem;
}

.arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}



.form-container {
    background-color: var(--form-bg);
    border-radius: 6px;
    padding: 1rem 2.25rem 1.5rem;
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.form-container h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--text-primary);
}

.form-container > p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 0.8rem;
    position: relative;
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 0.9rem;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin: 0;
    text-transform: uppercase;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group textarea ~ label {
    top: 1.25rem;
    transform: translateY(-50%);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: 0.45rem;
    transform: translateY(0);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--input-border);
    border-radius: 4px;
    padding: 1.35rem 0.9rem 0.5rem 0.9rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 0 12px rgba(179, 57, 76, 0.15);
    background-color: rgba(0, 0, 0, 0.2);
}

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

.submit-btn {
    width: 100%;
    background: var(--accent-gradient);
    color: #1a0508;
    border: none;
    border-radius: 4px;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.submit-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px var(--accent-glow);
    filter: brightness(1.1);
}

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

.privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.7rem;
    line-height: 1.5;
}

.shield-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    opacity: 0.7;
}

.services-section {
    width: 100%;
    padding: 5rem 0 2rem 0;
}

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

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

.services-header .eyebrow {
    margin-bottom: 0.75rem;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.services-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 380px;
    line-height: 1.6;
}

.how-we-help {
    margin-bottom: 2rem;
}

.how-we-help .eyebrow {
    margin-bottom: 1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.card .icon {
    width: 36px;
    height: 36px;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    line-height: 1.3;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Flip Cards for HOW WE HELP */
.card.flip-card {
    background-color: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    perspective: 1500px;
    cursor: pointer;
    min-height: 240px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 240px;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

.card.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2.25rem 2rem;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.flip-card-front {
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 2;
    transform: rotateY(0deg);
}

.flip-card-front .card-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.card.flip-card:hover .card-bg-img {
    transform: scale(1.08);
}

.flip-card-front.has-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.card.flip-card:hover .flip-card-front.has-image::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.9) 100%);
}

.flip-card-front h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.flip-card-front.has-image h3 {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-family: var(--font-display);
}

.flip-card-front .flip-hint {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.25rem;
    padding-top: 0.5rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.flip-card-front.has-image .flip-hint {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.flip-card-front .flip-hint svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card.flip-card:hover .flip-hint svg {
    transform: translateX(4px);
    color: var(--accent-hover);
}

.flip-card-front.has-image:hover .flip-hint svg {
    color: #ffffff;
}

.flip-card-back {
    transform: rotateY(180deg);
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(145deg, var(--card-bg) 0%, color-mix(in srgb, var(--accent) 6%, var(--card-bg)) 100%);
    border-color: color-mix(in srgb, var(--accent) 25%, var(--card-border));
    z-index: 1;
}

.flip-card-back h4 {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.85rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.flip-card-back p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.75;
}

.flip-card-back .learn-more-link {
    margin-top: 1.5rem;
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}

.flip-card-back .learn-more-link:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.card.flip-card:hover .flip-card-front,
.card.flip-card:hover .flip-card-back {
    border-color: color-mix(in srgb, var(--accent) 60%, var(--card-border));
    box-shadow: 0 12px 40px var(--accent-glow);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
}
.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3.5rem;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.75rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cta-banner p {
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 400;
}

/* ============================
   INDUSTRIES SECTION
   ============================ */
.industries-section {
    width: 100%;
    padding: 2rem 0;
}

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

.industries-header {
    margin-bottom: 3.5rem;
}

.industries-header .eyebrow {
    margin-bottom: 1.25rem;
    display: inline-block;
}

.industries-header h2 {
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.industries-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.industry-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.industry-card-image {
    width: 100%;
    height: 140px;
    background-color: rgba(35, 7, 14, 0.6);
    border-bottom: 1px solid var(--card-border);
}

.industry-card-content {
    padding: 2rem 1.5rem;
    padding-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    box-sizing: border-box;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.industry-card .card-arrow {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    color: var(--accent);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    line-height: 1;
}

.industry-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.industry-card .icon {
    width: 42px;
    height: 42px;
    color: var(--accent);
    margin-bottom: 1.75rem;
}

.industry-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.3;
}

.industry-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}


/* ============================
   PROCESS SECTION
   ============================ */
.process-section {
    width: 100%;
    padding: 4rem 0 2rem 0;
}

.process-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3.5rem;
    width: 100%;
    text-align: center;
}

.process-header {
    margin-bottom: 5rem;
}

.process-header h2 {
    font-size: 3.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.process-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    line-height: 1;
}

.step-line {
    position: absolute;
    top: 1.75rem;
    left: 65%;
    width: 70%;
    height: 1px;
    background-color: var(--accent);
    opacity: 0.5;
}

.process-step:last-child .step-line {
    display: none;
}

.process-step .eyebrow {
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 250px;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
    width: 100%;
}

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

/* Top: Purpose + Story side by side */
.about-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 2.5rem;
}

.about-purpose {
    flex: 1;
    max-width: 480px;
}

.about-purpose h2 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.about-purpose > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-story {
    flex: 1;
    max-width: 440px;
    padding-top: 0.25rem;
}

.about-story p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-story p:last-child {
    margin-bottom: 0;
}

/* Middle: Values */
.about-values {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 2.5rem;
}

.about-values > .eyebrow {
    margin-bottom: 1.25rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* ================================
   OUR IMPACT — PREMIUM CARDS
   ================================ */
.about-impact {
    padding: 2rem 0;
    width: 100%;
}

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

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

.impact-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.015);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.impact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 90, 43, 0.2);
    box-shadow: 0 16px 32px rgba(139, 90, 43, 0.05);
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(139, 90, 43, 0.04);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.impact-card-icon svg {
    width: 22px;
    height: 22px;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.impact-card:hover .impact-card-icon {
    background: var(--accent);
    color: var(--bg-color);
}

.impact-card:hover .impact-card-icon svg {
    transform: scale(1.08);
}

.impact-card-number {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.impact-big-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
}

.impact-big-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--accent);
    margin-left: 0.08rem;
}

.impact-card-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.impact-card-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-card {
        padding: 3rem 2rem;
    }
}


/* ============================
   CLIENT SHOWCASE (EXECUTIVE PREMIUM)
   ============================ */
.client-showcase {
    padding: 5rem 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.client-showcase-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3.5rem;
}

.client-showcase-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.client-showcase-header .eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.client-showcase-header h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.client-showcase-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.client-panel {
    background-color: transparent;
    border-top: none;
    border-bottom: none;
    padding: 1.5rem 0; /* Reduced from 3rem to offset marquee container padding */
    width: 100%;
    border-radius: 4px;
    position: relative;
}

.client-marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    position: relative;
    padding: 1.5rem 0; /* Added padding to prevent hover translation and drop shadow from clipping */
}

.client-marquee-container::before,
.client-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    min-width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.client-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(20, 4, 8, 1), transparent);
}

.client-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(20, 4, 8, 1), transparent);
}

.marquee-content {
    display: flex;
    animation: marquee 45s linear infinite;
    min-width: 100%;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 3rem;
    width: 150px;
    height: 50px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.marquee-item span {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    font-weight: 600;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-item:hover {
    transform: scale(1.12);
}

.marquee-item:hover span {
    opacity: 1;
}

.marquee-item img,
.marquee-item svg {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) brightness(1.2);
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-item:hover img,
.marquee-item:hover svg {
    opacity: 1;
    filter: brightness(0) invert(1) brightness(1.2);
}

.marquee-divider-vertical {
    width: 1px;
    height: 30px;
    background-color: var(--accent);
    opacity: 0.15;
}

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

/* ============================
   CASE STUDIES SECTION
   ============================ */
.cs-section {
    width: 100%;
}

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

.cs-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    gap: 4rem;
}

.cs-header-left {
    flex: 1.2;
}

.cs-header-left h2 {
    font-size: 3.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cs-header-left p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.6;
}

.cs-header-right {
    flex: 1;
    border-left: 1px solid var(--card-border);
    padding-left: 3rem;
    display: flex;
    align-items: center;
}

.cs-header-right p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

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

.cs-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cs-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.cs-card-image {
    height: 180px;
    background-color: rgba(35, 7, 14, 0.6);
    width: 100%;
    border-bottom: 1px solid var(--card-border);
}

.cs-card-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cs-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 1rem 0 1.5rem 0;
    letter-spacing: 0.02em;
}

.cs-short-line {
    width: 30px;
    height: 1px;
    background-color: var(--accent);
    margin-bottom: 1.5rem;
}

.cs-placeholder-line {
    height: 2px;
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
    margin-bottom: 0.75rem;
    border-radius: 2px;
}

.cs-placeholder-line.short {
    width: 80%;
    margin-bottom: 2.5rem;
}

.cs-read-more {
    margin-top: auto;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, gap 0.3s ease;
}

.cs-card:hover .cs-read-more {
    opacity: 1;
    transform: translateY(0);
    gap: 0.8rem;
}

.cs-card:hover .cs-read-more .arrow {
    transform: translateX(4px);
}

.cs-cta-banner {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cs-cta-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cs-cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.cs-cta-icon svg {
    width: 20px;
    height: 20px;
}

.cs-cta-text h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.cs-cta-text p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ============================
   SINGLE CASE STUDY PAGE
   ============================ */
/* ================================
   CASE STUDY: CINEMATIC HERO
   ================================ */
.single-cs-section {
    padding: 0;
    min-height: 100vh;
}

/* Full-bleed hero banner */
.single-cs-hero-banner {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 480px;
    overflow: hidden;
}

.single-cs-hero-banner img.cs-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: csHeroZoom 8s ease-out forwards;
}

@keyframes csHeroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.00); }
}

/* Multi-layer gradient: dark top (for navbar), dark bottom (for text) */
.single-cs-hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 3, 2, 0.88) 0%,
        rgba(5, 3, 2, 0.60) 35%,
        rgba(5, 3, 2, 0.65) 60%,
        rgba(5, 3, 2, 0.97) 100%
    );
    z-index: 1;
}

/* Text overlay container — spans full height so back-link is visible at top */
.single-cs-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 9rem 2rem 3.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: csHeroText 0.9s ease-out 0.3s both;
}

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

.single-cs-hero-overlay .back-link {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
    display: inline-flex;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.single-cs-hero-overlay .back-link:hover {
    color: #fff;
    opacity: 1;
}

.single-cs-hero-text {
    display: flex;
    flex-direction: column;
}

.single-cs-hero-overlay .eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

.single-cs-hero-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
    max-width: 900px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.75), 0 1px 4px rgba(0,0,0,0.9);
}

/* Content area below hero */
.single-cs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    opacity: 0.7;
}

.single-cs-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

/* Main content area */
.single-cs-main {
    font-family: 'Inter', sans-serif;
}

.single-cs-main h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 3rem;
    margin-bottom: 0.75rem;
}

.single-cs-main h3:first-child {
    margin-top: 0;
}

.single-cs-main h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.single-cs-main p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.single-cs-main h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Industry Pages Custom Layout */
.industry-overview-section {
    display: block;
    margin-bottom: 4rem;
}

.industry-text-content p {
    text-align: justify;
}

.industry-text-content {
    min-width: 300px;
}

.industry-image-wrapper {
    width: 100%;
    height: 100%;
}

.industry-image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.4s ease;
}

.industry-image-wrapper:hover img {
    transform: scale(1.02);
}

/* Sidebar metrics card */
.single-cs-sidebar {
}

.metrics-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.metrics-card:hover {
    transform: translateY(-4px);
}

.metrics-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--card-border);
}

.metrics-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.metric-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

/* Timeline */
.cs-timeline {
    margin: 2.5rem 0;
    padding-left: 2rem;
    border-left: 1px solid rgba(140, 28, 45, 0.2);
}

.cs-timeline-item {
    position: relative;
    padding: 1.5rem 0 1.5rem 2rem;
    transition: transform 0.3s ease;
}

.cs-timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 1.75rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: 2px solid var(--accent);
    margin-left: -7px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px rgba(140, 28, 45, 0.05);
}

.cs-timeline-item:hover::before {
    background-color: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(140, 28, 45, 0.15);
}

.cs-timeline-item h5 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.cs-timeline-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Pillars / Feature blocks */
.cs-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cs-pillar {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.cs-pillar:hover {
    border-color: var(--accent);
}

.cs-pillar .pillar-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.cs-pillar h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cs-pillar p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Bullet list */
.cs-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.cs-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.cs-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.cs-list li strong {
    color: var(--text-primary);
}

/* Blockquote */
.single-cs-main blockquote {
    border-left: 3px solid var(--accent);
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: rgba(179, 57, 76, 0.04);
    border-radius: 0 8px 8px 0;
}

.single-cs-main blockquote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 0;
}

.single-cs-main blockquote cite {
    display: block;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.05em;
}

/* Tables */
.single-cs-main table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.single-cs-main table thead th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    border-bottom: 1px solid rgba(179, 57, 76, 0.3);
    background: rgba(255,255,255,0.02);
}

.single-cs-main table tbody td {
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--card-border);
}

.single-cs-main table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}

/* Status badges */
.status-closed {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.8rem;
}

.status-open {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
}

.status-existing {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    font-style: italic;
}

/* Specialisms tags */
.cs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.cs-tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(179, 57, 76, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(179, 57, 76, 0.15);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    cursor: default;
}

.cs-tag:hover {
    background: rgba(179, 57, 76, 0.12);
    border-color: rgba(179, 57, 76, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(179, 57, 76, 0.1);
}

/* Inline metrics row (used within body text) */
.cs-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.cs-outcome-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cs-outcome-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.cs-outcome-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.cs-outcome-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Value proposition list */
.cs-value-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.cs-value-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cs-value-list li .value-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .single-cs-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .single-cs-sidebar {
        position: static;
        order: -1;
    }

    .metrics-card {
        padding: 1.5rem;
    }

    .metrics-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .metric-item {
        flex: 1;
        min-width: 120px;
    }

    .cs-pillars {
        grid-template-columns: 1fr;
    }

    .cs-outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .single-cs-section {
        padding: 0;
    }

    .single-cs-header h2 {
        font-size: 1.5rem;
    }

    .cs-outcomes-grid {
        grid-template-columns: 1fr;
    }

    .metrics-list {
        flex-direction: column;
    }
}

/* ============================
   COMING SOON BANNER
   ============================ */
.coming-soon-banner {
    position: relative;
    background: rgba(179, 57, 76, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 57, 76, 0.2);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-bottom: 5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.coming-soon-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: shimmerLine 3s infinite;
}

.coming-soon-banner .eyebrow {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.25em;
    animation: pulseGlow 2s infinite alternate;
}

.coming-soon-banner p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    margin-top: 0;
    opacity: 0.9;
}

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

@keyframes pulseGlow {
    from { text-shadow: 0 0 5px rgba(179, 57, 76, 0); }
    to { text-shadow: 0 0 15px rgba(179, 57, 76, 0.5); }
}

/* ============================
   GALLERY SECTION
   ============================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.gallery-item {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: border-color 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--accent);
}

.gallery-img {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: var(--card-bg); /* fallback */
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-img.placeholder {
    background-image: linear-gradient(45deg, rgba(226,171,102,0.05) 25%, transparent 25%, transparent 50%, rgba(226,171,102,0.05) 50%, rgba(226,171,102,0.05) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
}

/* ============================
   RESPONSIVE
   ============================ */
/* Hamburger Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}



/* ============================
   FOOTER
   ============================ */
.site-footer {
    background-color: rgba(10, 2, 4, 0.95);
    border-top: 1px solid var(--card-border);
    padding: 6rem 0 2rem;
    color: #bd9a9f;
    --text-primary: #f5ecee;
    --text-secondary: #bd9a9f;
    --accent: #b3394c;
    --accent-hover: #d14d62;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-col.brand-col p {
    margin-top: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 85%;
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: var(--text-secondary);
    display: inline-block;
    width: 24px;
    height: 24px;
    transition: color 0.3s ease;
}

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

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul a, .footer-col p {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    line-height: 1.6;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

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

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .legal-links a {
        margin: 0 1rem;
    }
}

/* Tablet Swipeable Carousel */
@media (max-width: 1024px) {
    .client-showcase {
        padding: 5rem 2rem;
    }
    
    .client-panel {
        border-radius: 0;
    }

    .client-marquee-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .client-marquee-container::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }
    
    .marquee-content {
        animation: none !important;
        justify-content: flex-start;
        padding: 0 1rem;
    }
    
    .marquee-content[aria-hidden="true"] {
        display: none;
    }

    .marquee-item {
        scroll-snap-align: center;
        margin: 0 3rem;
    }
    
    .marquee-divider-vertical {
        display: none; /* Dividers clutter swipe carousels */
    }
}

/* Mobile Client Grid */
@media (max-width: 768px) {
    .client-showcase {
        padding: 4rem 1.5rem;
    }
    
    .client-showcase-header h2 {
        font-size: 2rem;
    }
    
    .client-panel {
        padding: 2rem 0;
        background: transparent;
        border: none;
    }

    .client-marquee-container {
        display: block;
        padding: 0.5rem 0; /* Added small vertical padding for mobile grid edges */
        overflow: visible; /* Prevent clipping of hovered logos/shadows on mobile */
    }
    
    .client-marquee-container::before,
    .client-marquee-container::after {
        display: none;
    }

    .marquee-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1.5rem;
        padding: 0;
    }

    .marquee-item {
        margin: 0;
    }
    
    .marquee-item img {
        height: 28px;
    }
}


/* ==========================================================================
   Our Team Section
   ========================================================================== */

.about-team {
    padding: 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-heading {
    margin-top: 1rem;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.team-diamond-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.team-card {
    width: 230px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.team-image-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--card-border);
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.team-card:hover .team-image-wrapper {
    border-color: var(--accent);
    transform: scale(1.02);
}

.team-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.95);
}

.team-card:hover .team-image-wrapper img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.team-image-wrapper img.pratiksha-img {
    object-position: center center;
    transform: scale(1.5) translateX(8%);
}

.team-card:hover .team-image-wrapper img.pratiksha-img {
    transform: scale(1.55) translateX(8%);
}

.team-image-wrapper img.tamanna-img {
    object-position: center center;
    transform: scale(1.65) translateX(-2%) translateY(-10%);
}

.team-card:hover .team-image-wrapper img.tamanna-img {
    transform: scale(1.70) translateX(-2%) translateY(-10%);
}

.team-image-wrapper img.nikita-img {
    object-position: center center;
    transform: scale(1.4) translateX(4%) translateY(6%);
}

.team-card:hover .team-image-wrapper img.nikita-img {
    transform: scale(1.45) translateX(4%) translateY(6%);
}

.team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.team-name-link {
    text-decoration: none;
    display: inline-block;
}

.team-name-link h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-primary);
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.team-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400; /* Improve thickness for readability */
    letter-spacing: 0.05em;
    margin: 0;
    text-transform: uppercase;
}

.team-name-link:hover h3 {
    color: var(--accent);
}

.inline-linkedin {
    position: absolute;
    right: -16px;
    top: 0;
    width: 13px;
    height: 13px;
    fill: currentColor;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-name-link:hover .inline-linkedin {
    opacity: 1;
    transform: translateX(0);
}

/* Center-out underline animation */
.team-name-link h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-name-link:hover h3::after {
    width: 100%;
}



/* ==========================================================================
   Industry Detail Pages
   ========================================================================== */

/* Breadcrumb */
.industry-breadcrumb {
    max-width: 1140px;
    margin: 0 auto;
    padding: 7rem 2rem 2rem;
}

.industry-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-breadcrumb a:hover {
    color: var(--accent);
}

/* Top Section */
.ind-top {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
}

.ind-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 600;
    color: rgba(201, 160, 80, 0.12);
    line-height: 1;
    margin-bottom: -0.5rem;
}

.ind-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.ind-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.25rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 2rem;
    max-width: 700px;
}

/* Divider */
.ind-divider {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ind-divider hr {
    border: none;
    border-top: 1px solid var(--card-border);
}

/* Two-Column Layout */
.ind-layout {
    max-width: 1140px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: start;
}

/* Left Column */
.ind-main p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

/* Image */
.ind-image {
    margin-top: 0.5rem;
    margin-bottom: 3rem;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.ind-image img {
    width: 100%;
    display: block;
    border-radius: 6px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.ind-image-label {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--accent);
    color: var(--bg-color);
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Sub-sector Grid */
.ind-subsectors-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.ind-subsectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--card-border);
    border-left: 1px solid var(--card-border);
}

.ind-sub-item {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--card-border);
    border-right: 1px solid var(--card-border);
    transition: background 0.2s, color 0.2s;
}

.ind-sub-item:hover {
    background: rgba(201, 160, 80, 0.06);
    color: var(--text-primary);
}

/* Right Sidebar */
.ind-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Stats Card */
.ind-stats-card {
    background: rgba(25, 5, 10, 0.5);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ind-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--card-border);
}

.ind-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.ind-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.ind-stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    font-weight: 600;
}

/* CTA Button */
.ind-cta-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-color);
    padding: 1.1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
}

.ind-cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1024px) {
    .ind-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ind-sidebar {
        position: relative;
        top: 0;
    }
    .ind-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .ind-subsectors {
        grid-template-columns: 1fr;
    }
    .ind-title {
        font-size: 2rem;
    }
    .ind-number {
        font-size: 3.5rem;
    }
    .ind-stat-value {
        font-size: 2rem;
    }
}

/* ==========================================================================
   GLOBAL MOBILE RESPONSIVENESS (320px - 1024px)
   ========================================================================== */

/* Fix horizontal scrolling globally */
html, body {
    overflow-x: hidden;
}

/* TABLET & MOBILE (< 1024px) */
@media (max-width: 1024px) {
    /* Navbar */
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: var(--text-primary);
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .mobile-nav-drawer {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 100vw;
        height: 100vh;
        background-color: var(--bg-color);
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    }
    
    .mobile-nav-drawer.active {
        right: 0;
    }
    
    .mobile-nav-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-list a {
        font-family: var(--font-body);
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-primary);
        text-decoration: none;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        display: block;
        text-align: center;
    }
    
    .mobile-nav-list a:hover {
        color: var(--accent);
    }
    
    .navbar {
        padding: 1.25rem 2rem;
    }
    
    /* Layout Containers */
    .hero-container, .services-container, .industries-container, .process-container, .about-container, .cs-container, .footer-container, .client-showcase-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Hero Section */
    .hero-container {
        flex-direction: column;
        padding-top: 8rem;
        padding-bottom: 4rem;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        align-items: center;
    }
    
    .hero-content p {
        margin: 0 auto 2.5rem;
    }
    
    .hero-form-wrapper {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(20, 4, 8, 0.95) 0%, rgba(20, 4, 8, 0.8) 40%, rgba(20, 4, 8, 0.95) 100%);
    }

    /* Process Section */
    .process-grid, .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-card {
        padding: 2rem;
    }
    
    /* Grids */
    .industries-grid, .cards-grid, .services-grid, .impact-grid, .cs-grid, .footer-grid, .team-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Pillars */
    .cs-pillars, .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE (< 768px) */
@media (max-width: 768px) {
    /* Global Typography */
    h2 {
        font-size: 2.25rem;
    }
    h3 {
        font-size: 1.75rem;
    }
    
    /* Layout Padding */
    .hero-container, .services-container, .industries-container, .process-container, .about-container, .cs-container, .footer-container, .client-showcase-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero-container {
        padding-top: 6rem;
    }
    
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    /* Grids -> 1 Column */
    .industries-grid, .cards-grid, .services-grid, .impact-grid, .cs-grid, .team-row, .cs-pillars, .values-grid, .cs-outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links a {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    /* Client Showcase */
    .marquee-content {
        gap: 2rem;
    }
    
    .marquee-content img {
        height: 35px;
    }
    
    /* About Team */
    .team-image-wrapper {
        width: 120px;
        height: 120px;
    }
}

/* SMALL MOBILE (< 600px) */
@media (max-width: 600px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .btn-outline, .submit-btn, .discover-link {
        width: 100%;
        justify-content: center;
    }
    
    .cs-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .cs-cta-left {
        flex-direction: column;
        text-align: center;
    }
    
    .cs-timeline-item {
        padding: 1rem 0 1rem 1.5rem;
    }
    
    .team-diamond-grid {
        gap: 3rem;
    }
    .team-row {
        gap: 2rem;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional staggered delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Ambient Spotlights */
.ambient-glows {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9998;
    pointer-events: none;
    overflow: hidden;
}

.ambient-glows::before, .ambient-glows::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vh;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: ambientShift 25s infinite alternate ease-in-out;
}

.ambient-glows::before {
    top: -10vh;
    left: -10vw;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}

.ambient-glows::after {
    bottom: -10vh;
    right: -10vw;
    background: radial-gradient(circle, var(--accent-hover) 0%, transparent 70%);
    animation-delay: -12.5s;
}

@keyframes ambientShift {
    0% { transform: translate(0, 0) scale(1); opacity: 0.08; }
    50% { transform: translate(20vw, 20vh) scale(1.2); opacity: 0.15; }
    100% { transform: translate(-10vw, 30vh) scale(0.9); opacity: 0.1; }
}

/* ==========================================================================
   MASTER RESPONSIVE OVERRIDES (TABLET & MOBILE)
   ========================================================================== */

@media (max-width: 1024px) {
    /* Global Spacing */
    section { padding: 4rem 2rem; }
    
    /* Typography */
    h2 { font-size: 2.5rem; }
    
    /* Navbar & Menu */
    .nav-right.desktop-nav { display: none !important; }
    .mobile-menu-toggle { display: block; z-index: 1001; }
    .navbar { padding: 1rem 2rem; }
    
    /* Hero */
    .hero-container {
        flex-direction: column;
        padding-top: 6rem;
        padding-left: 2rem;
        padding-right: 2rem;
        gap: 3rem;
    }
    .hero-content, .hero-form-wrapper { width: 100%; max-width: 100%; text-align: center; }
    .hero-content h2 { font-size: 3rem; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    
    /* Grids to 2 Columns */
    .solutions-grid,
    .industries-grid,
    .case-studies-grid,
    .stats-grid,
    .careers-grid,
    .gallery-grid,
    .impact-grid,
    .cards-grid,
    .services-grid,
    .cs-grid,
    .team-row,
    .cs-pillars,
    .values-grid,
    .cs-outcomes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    .footer-col { margin-bottom: 1.5rem; }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    
    /* Client Showcase */
    .client-showcase-inner { padding: 3rem 2rem 1rem; }

    /* Case Studies Header & About Top */
    .cs-header,
    .about-top {
        flex-direction: column !important;
        gap: 2rem !important;
        margin-bottom: 2rem !important;
    }
    .cs-header-right {
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 1px solid var(--card-border) !important;
        padding-top: 2rem !important;
    }
}

@media (max-width: 768px) {
    /* Global Spacing */
    section { padding: 3rem 1.5rem; }
    
    /* Typography */
    h2 { font-size: 2rem; }
    h3 { font-size: 1.25rem; }
    body { font-size: 0.95rem; }
    
    /* Navbar & Menu */
    .navbar { padding: 1rem 1.5rem; }
    .logo-svg { height: 28px; }
    
    /* Hero */
    .hero-container { padding-left: 1.5rem; padding-right: 1.5rem; padding-top: 5rem; }
    .hero-content h2 { font-size: 2.5rem; }
    
    /* Mobile Nav Drawer Fullscreen Slide In */
    .mobile-nav-drawer {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background-color: rgba(20, 4, 8, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        transform: translateY(-20px);
    }
    .mobile-nav-drawer.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .mobile-nav-list {
        list-style: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 0;
    }
    .mobile-nav-list a {
        font-size: 1.5rem;
        font-family: var(--font-heading);
        color: var(--text-primary);
        font-weight: 500;
    }
    
    /* Grids to 1 Column */
    .solutions-grid,
    .industries-grid,
    .case-studies-grid,
    .stats-grid,
    .careers-grid,
    .gallery-grid,
    .case-study-hero,
    .case-study-content,
    .industry-hero,
    .industry-content,
    .impact-grid,
    .cards-grid,
    .services-grid,
    .cs-grid,
    .team-row,
    .cs-pillars,
    .values-grid,
    .cs-outcomes-grid {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
    }

    /* About Section */
    .about-hero-container { grid-template-columns: 1fr !important; gap: 2rem; }
    
    /* CTA Banner */
    .cta-container {
        padding: 0 1.5rem !important;
    }
    .cta-banner {
        flex-direction: column !important;
        gap: 2.5rem !important;
        text-align: center !important;
        padding: 5rem 2.5rem !important;
    }
    .cta-banner p {
        font-size: 0.95rem !important;
    }

    /* Forms & Buttons */
    .btn-outline, .submit-btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
    }
    .form-group input, .form-group textarea {
        font-size: 16px; /* Prevents iOS auto-zoom */
        padding: 1.25rem 1rem;
    }
    
    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Mobile Client Marquee Override */
    .client-marquee-container .marquee-content[aria-hidden="true"] {
        display: none !important;
    }
    .client-marquee-container .marquee-content:not([aria-hidden="true"]) {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 3rem 1.5rem !important;
        align-items: center !important;
        justify-items: center !important;
    }
    .client-marquee-container .marquee-item {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 !important;
    }
    .client-marquee-container .marquee-item img,
    .client-marquee-container .marquee-item svg {
        height: 32px !important;
        width: auto !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .ambient-glows::before, .ambient-glows::after {
        width: 100vw;
        height: 100vh;
    }
}

@media (max-width: 480px) {
    h2 { font-size: 1.75rem !important; }
    .hero-content h2 { font-size: 2rem !important; }
    .navbar { padding: 0.8rem 1rem; }
    .hero-container { padding-left: 1rem; padding-right: 1rem; }
    section { padding: 2.5rem 1rem; }
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact-container {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 5rem 2rem; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center;
}

.contact-info .eyebrow {
    color: var(--accent); 
    font-weight: 600; 
    letter-spacing: 0.1em; 
    font-size: 0.85rem; 
    display: block; 
    margin-bottom: 1rem;
}

.contact-info h2 {
    font-size: 2.8rem; 
    font-weight: 400; 
    margin-bottom: 1.5rem; 
    line-height: 1.2;
}

.contact-info p.subtitle {
    color: var(--text-secondary); 
    font-size: 1.05rem; 
    line-height: 1.6; 
    margin-bottom: 3rem; 
    max-width: 90%;
}

.contact-details {
    display: flex; 
    flex-direction: column; 
    gap: 2rem;
}

.contact-item {
    display: flex; 
    gap: 1.5rem; 
    align-items: flex-start;
}

.contact-icon {
    color: var(--accent); 
    padding-top: 0.25rem;
}

.contact-text {
    display: flex; 
    flex-direction: column; 
    gap: 0.25rem;
}

.contact-text strong {
    font-size: 1rem; 
    font-weight: 600;
}

.contact-text span {
    color: var(--text-secondary); 
    font-size: 0.95rem; 
    line-height: 1.5;
}

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

.contact-text a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background-color: var(--form-bg); 
    border-radius: 12px; 
    padding: 2.5rem; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
    border: 1px solid var(--input-border);
}

.contact-form-wrapper form {
    display: flex; 
    flex-direction: column; 
    gap: 1rem;
}

.contact-form-wrapper .form-row {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem;
}

.contact-form-wrapper .submit-btn {
    background-color: var(--text-primary);
    color: var(--bg-color);
    border: none;
    border-radius: 4px;
    padding: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-wrapper .submit-btn .arrow {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-wrapper .submit-btn:hover {
    background-color: var(--accent);
    box-shadow: 0 6px 24px rgba(139, 90, 43, 0.35);
    transform: translateY(-2px);
}

.contact-form-wrapper .submit-btn:hover .arrow {
    transform: translateX(5px);
}

.contact-form-wrapper .submit-btn:active {
    transform: translateY(0px);
    transition: transform 0.1s ease;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

.custom-select-group {
    position: relative;
}

.custom-select-group select {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--input-border);
    border-radius: 4px;
    padding: 1.25rem 1rem;
    width: 100%;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.custom-select-group select:focus {
    border-color: var(--accent);
    outline: none;
}

.custom-select-group .select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
    pointer-events: none;
}

/* ============================
   CLIENT TESTIMONIALS
   ============================ */
.testimonials-section {
    padding: 5rem 2rem;
    background-image: url('assets/testimonials-bg.jpg');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: left;
    margin-bottom: 3.5rem;
}

.testimonials-header .eyebrow {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

.testimonials-header h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.testimonial-card {
    background-color: rgba(26, 5, 8, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background-color: rgba(26, 5, 8, 0.8);
}

.testimonial-card .stars {
    display: flex;
    gap: 0.2rem;
    color: var(--accent); /* Gold color */
    margin-bottom: 1.5rem;
}

.testimonial-card .stars svg {
    width: 16px;
    height: 16px;
}

.testimonial-card .quote {
    font-style: normal;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1; /* Pushes client info to the bottom */
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: auto;
}

.testimonial-card .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-card .client-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-card .client-details strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-card .client-details span {
    color: var(--accent);
    font-size: 0.8rem;
}

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

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

/* ============================
   ABOUT PAGE: JOURNEY TIMELINE
   ============================ */
.about-journey {
    margin: 6rem auto;
    max-width: 1200px;
    padding: 0 2rem;
    position: relative;
}

.journey-header {
    margin-bottom: 4rem;
}

.journey-header .eyebrow {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

.journey-header h2 {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
}

.journey-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.journey-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(0,0,0,0.02) 100%);
    border: 1px solid var(--card-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    transform: scale(0.9) translateY(10px);
}

.carousel-slide.active {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1) translateY(0);
}

.slide-year {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: transparent;
    border: 1px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.slide-year::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    opacity: 0.1;
}

.slide-year::after {
    display: none;
}

.slide-title {
    font-size: 2.6rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

.slide-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

.carousel-btn {
    background: var(--form-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.carousel-btn:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1) translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: var(--text-primary);
    opacity: 0.2;
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.indicator.active {
    opacity: 1;
    background-color: var(--accent);
    width: 32px;
}

@media (max-width: 768px) {
    .carousel-slide {
        padding: 2rem;
    }
    .journey-carousel-wrapper {
        flex-direction: column;
    }
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .prev-btn { left: -10px; }
    .next-btn { right: -10px; }
    .carousel-btn:hover {
        transform: translateY(-50%) scale(1.1);
    }
}

/* responsive hero */
@media (max-width: 768px) {
    .single-cs-hero-banner {
        height: 55vw;
        min-height: 300px;
    }
    .single-cs-hero-overlay {
        padding: 5.5rem 1.5rem 2rem 1.5rem;
    }
    .single-cs-hero-overlay h2 {
        font-size: 1.6rem;
    }
}

/* Uniform Mobile Spacing Standards */
@media (max-width: 768px) {
    .services-section,
    .about-impact,
    .industries-section,
    .process-section,
    .client-showcase,
    .testimonials-section {
        padding: 4rem 1.5rem !important;
    }
    
    .contact-container {
        padding: 4rem 1.5rem !important;
    }
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-menu {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 1rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    max-height: 250px;
    opacity: 1;
    margin-top: 1rem;
}

.mobile-dropdown-toggle {
    display: block;
    text-align: center;
    width: 100%;
    text-decoration: none;
}

.mobile-dropdown-toggle .dropdown-text {
    position: relative;
    display: inline-block;
}

.mobile-dropdown.open .mobile-dropdown-toggle .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-dropdown-toggle .dropdown-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown-menu a {
    font-size: 1rem !important;
    color: var(--text-secondary) !important;
    font-weight: 500 !important;
    text-transform: none !important;
    transform: translateY(-5px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, color 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-menu a {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger the inner links slightly for a premium feel */
.mobile-dropdown.open .mobile-dropdown-menu a:nth-child(1) { transition-delay: 0.05s; }
.mobile-dropdown.open .mobile-dropdown-menu a:nth-child(2) { transition-delay: 0.10s; }
.mobile-dropdown.open .mobile-dropdown-menu a:nth-child(3) { transition-delay: 0.15s; }
.mobile-dropdown.open .mobile-dropdown-menu a:nth-child(4) { transition-delay: 0.20s; }

.mobile-dropdown-menu a:hover {
    color: var(--accent) !important;
}
