/* Removed local fonts */

:root {
    --heading-color: #ffffff;
    --content-color: #e0e0e0;
    /* Increased visibility on dark backgrounds */
    --bg-color: #0d0d12;
    /* Dark theme matching typical Awwwards hero videos */
    --accent: #00d2ff;
    --glass-bg: rgba(13, 13, 18, 0.8);
}

/* Lenis Recommended CSS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

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

body {
    background-color: var(--bg-color);
    color: var(--content-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
    background-color: var(--bg-color);
    /* Matches theme */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Syne', sans-serif;
    color: var(--heading-color);
}

.logo,
.title-font {
    font-family: 'Cinzel', serif !important;
}

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

.light-text {
    color: #f1f1f1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 150px 0;
    position: relative;
}

.section-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 80px;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--heading-color);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.section-title i {
    font-weight: 400;
    font-style: italic;
}

.word-wrap {
    overflow: hidden;
    display: inline-flex;
    margin-right: 0.25em;
    padding-bottom: 0.1em;
}

.word-wrap:last-child {
    margin-right: 0 !important;
}

.word-inner {
    display: inline-block;
    will-change: transform;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 1000;
}

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

.logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transform: scale(1.5);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.6);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.navbar.scrolled .nav-links li a {
    color: var(--content-color);
}

.nav-links li a.btn,
.cta-btn {
    padding: 15px 35px;
    border-radius: 50px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-links li a.btn::before,
.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--heading-color);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.nav-links li a.btn:hover::before,
.cta-btn:hover::before {
    left: 0;
}

.nav-links li a.btn:hover,
.cta-btn:hover {
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.nav-links li a.btn:active,
.cta-btn:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .nav-links li a.btn {
    background: var(--heading-color);
    color: #000;
}

/* Hero Section */
.hero-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: var(--bg-color);
}

.parallax-wrapper {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.hero-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero-content h1 {
    font-family: 'Space Horizon', sans-serif;
    font-size: 7rem;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: -4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content p {
    font-size: 1.4rem;
    color: #eee;
    letter-spacing: 2px;
    margin-bottom: 0;
    text-transform: none;
}

.hero-buttons {
    position: absolute;
    top: 61%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Butterfly Texture Background */
.texture-bg {
    position: relative;
}

.texture-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/texture.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    /* Subtle blend */
    z-index: -1;
    mix-blend-mode: screen;
}

/* ── Philosophy Section — Full BG Video ── */
.philosophy {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 120px 0;
    overflow: hidden;
    background: #0d0d12;
    display: flex;
    align-items: center;
}

.philosophy-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.philosophy-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
}

.philosophy-title {
    margin-bottom: 40px;
}

/* 2 Main Topics — side by side */
.philosophy-topics {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.04);
}

.philosophy-topic {
    flex: 1;
    padding: 32px 40px;
}

.philosophy-topic h3 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.philosophy-topic p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.philosophy-topic-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* 4 Points — single row 4 columns */
.philosophy-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.3);
}

.philosophy-point {
    padding: 24px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.35s ease;
}

.philosophy-point:last-child {
    border-right: none;
}

.philosophy-point:hover {
    background: rgba(0, 210, 255, 0.08);
}

.philosophy-point h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.philosophy-point p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* stats-row is reused — override color for this dark bg context */
.philosophy .stats-row {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.philosophy .stat-item h3,
.philosophy .stat-item span {
    color: #fff;
}

.philosophy .stat-item p {
    color: rgba(255, 255, 255, 0.65);
}

.stats-row {
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 80px;
}

.stat-item h3 {
    font-size: 6rem;
    line-height: 1;
    color: var(--heading-color);
    display: inline-block;
}

.stat-item span {
    font-size: 3rem;
    color: var(--content-color);
}

.stat-item p {
    color: var(--content-color);
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Elephant Section */
.elephant-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-color);
    overflow: hidden;
    padding: 0;
}

.elephant-paper-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.elephant-paper-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
    z-index: 10;
}

/* Differentiators & Services */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.diff-card {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.diff-card h4 {
    color: var(--heading-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.diff-card p {
    color: var(--content-color);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.service-box .service-number {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 20px;
    line-height: 1;
}

.service-box h4 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.service-box p {
    color: var(--content-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Categories Manual Slider */
.categories-section {
    background: var(--bg-color);
    overflow: hidden;
}

.categories-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 40px;
    padding: 40px 10vw;
    margin-top: 60px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.categories-slider::-webkit-scrollbar {
    display: none;
}

.cat-card {
    flex: 0 0 350px;
    scroll-snap-align: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.cat-card:hover {
    transform: translateY(-10px);
}

.cat-img-wrap {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cat-img-wrap img,
.cat-img-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cat-card:hover .cat-img-wrap img,
.cat-card:hover .cat-img-wrap video {
    transform: scale(1.08);
}

.cat-card h4 {
    font-size: 1.5rem;
    color: var(--heading-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Category Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 13, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    overflow-y: auto;
}

.gallery-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-close {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 4rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1400px;
}

.gallery-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

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

/* Portfolio Orbiting Modal */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
    overflow: hidden;
}

.portfolio-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.portfolio-center-text {
    position: absolute;
    font-size: 3.5rem;
    color: #000000;
    z-index: 10;
    letter-spacing: -2px;
    pointer-events: none;
}

.orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    /* Center point for orbits */
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
}

.orbit-item-wrap {
    position: absolute;
    top: 0;
    left: 0;
}

.orbit-media {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translate(-50%, -50%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.orbit-media:hover {
    transform: translate(-50%, -50%) scale(1.15);
    z-index: 20;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

/* Media Preview Modal */
.preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.preview-content-wrap {
    width: 90vw;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-content-wrap video,
.preview-content-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Founder Section */
.founder {
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.founder-bio {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: var(--content-color);
    line-height: 1.5;
    max-width: 1000px;
    margin: 0 auto 60px;
    font-style: italic;
}

.founder-name h4 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--content-color);
}

.founder-name h3 {
    font-size: 3rem;
    color: var(--heading-color);
}

/* Footer Curtain Effect via GSAP */
.footer-reveal {
    position: relative;
    width: 100%;
    min-height: 75vh;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/footer bg.jpeg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
    z-index: -1;
}

.footer-content {
    color: #fff;
}

.footer-reveal .section-title {
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.footer-reveal .cta-btn {
    background: #fff;
    color: #000;
    font-size: 1.2rem;
    padding: 25px 50px;
    margin-top: 10px;
    display: inline-block;
}

.footer-reveal .cta-btn:hover {
    transform: scale(1.05);
    background: var(--heading-color);
    color: #fff;
}

.contact-details {
    margin: 40px 0 20px;
    font-size: 1.2rem;
    color: #ddd;
}

.contact-details p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-sep {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--heading-color);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #aaa;
    font-size: 1rem;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-contact-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.footer-contact-inline a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-inline a:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {

    .section-title,
    .hero-content h1 {
        font-size: 4rem;
    }

    .elephant-side-panel {
        width: 100%;
        padding: 40px 20px;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .elephant-side-panel .section-title {
        font-size: 2.5rem;
    }

    .diff-grid,
    .stats-row {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 40px;
    }

    .cocoon-wrapper {
        height: 600px;
    }

    .cocoon-video {
        width: 250px;
        height: 250px;
    }

    .categories-slider {
        padding: 40px 20px;
    }

    .cat-card {
        flex: 0 0 280px;
    }

    .cat-img-wrap {
        height: 350px;
    }

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

    .footer-reveal {
        height: auto;
        padding: 100px 0 50px;
    }
}

/* Fix z-index for fog */

#fog-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: screen;
    opacity: 0.5;
}

/* ── Services Split-Screen Section ── */
.services-split {
    display: flex;
    flex-direction: row;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.services-split-left {
    width: 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg-color);
}

.services-split-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3.5rem, 5.5vw, 7rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -3px;
    color: var(--heading-color);
    margin-bottom: 36px;
}

.services-split-sub {
    font-size: 1.15rem;
    color: var(--content-color);
    opacity: 0.6;
    max-width: 300px;
    line-height: 1.6;
}

.services-split-right {
    width: 50%;
    display: flex;
    flex-direction: column;
}

/* Each service row */
.service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: background 0.4s ease;
    padding: 0;
    overflow: hidden;
}

.service-item:hover {
    background: #f0f0f0;
}

.service-item-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 52px 56px;
    transition: transform 0.4s ease;
}

.service-item:hover .service-item-inner {
    transform: translateX(12px);
}

.service-num {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    flex-shrink: 0;
}

.service-name {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--heading-color);
    transition: color 0.4s ease;
    line-height: 1;
}

.service-item:hover .service-name {
    color: #000;
}

.service-item:hover .service-num {
    color: #000;
}

/* ── Service Drawer ── */
.service-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9000;
    backdrop-filter: blur(4px);
}

.service-drawer-overlay.active {
    display: block;
}

.service-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(560px, 95vw);
    height: 100%;
    background: var(--bg-dark, #0a0a0a);
    z-index: 9001;
    padding: 60px 48px;
    overflow-y: auto;
    transition: right 0.55s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.service-drawer.active {
    right: 0;
}

.drawer-close {
    position: absolute;
    top: 36px;
    right: 40px;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: color 0.2s, transform 0.3s;
    line-height: 1;
}

.drawer-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.drawer-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.drawer-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -2px;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 36px;
}

.drawer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 28px 0;
}

.drawer-sub {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
}

.drawer-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.drawer-approach {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .services-split {
        flex-direction: column;
    }

    .services-split-left {
        width: 100%;
        position: relative;
        height: auto;
        padding: 60px 30px 40px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .services-split-right {
        width: 100%;
    }

    .service-item-inner {
        padding: 36px 30px;
    }
}