/* ====================================================================
   SERVICES PAGE — Premium Redesign (matches index.html theme)
   ==================================================================== */

/* --- Navbar Override --- */
.services-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: padding 0.3s ease, background-color 0.3s ease;
}

.services-navbar .nav-menu a {
    color: var(--bg-dark);
}

.services-navbar .nav-menu a.active {
    font-weight: 600;
    border-bottom: 2px solid var(--bg-dark);
    padding-bottom: 2px;
}

.services-navbar .btn-waitlist-nav {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.services-navbar .hamburger-line {
    background-color: var(--bg-dark);
}

/* --- Hero Section --- */
.svc-hero {
    padding: 200px 60px 120px;
    background: linear-gradient(180deg, #08aabe 0%, #5cc4d2 60%, #e0f4f6 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.svc-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.svc-hero-pattern-inner {
    width: 100%;
    height: 100%;
    background-image: url('icon.svg');
    background-repeat: repeat;
    background-size: 80px;
    background-position: center;
    filter: brightness(0) invert(1);
}

.svc-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.svc-eyebrow {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.svc-hero-title {
    font-family: var(--font-heading);
    font-size: 100px;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -3px;
    color: #ffffff;
    margin-bottom: 32px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
}

.svc-hero-subtitle {
    font-family: var(--font-main);
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Intro Section --- */
.svc-intro {
    padding: 120px 60px;
    background: linear-gradient(180deg, #e0f4f6 0%, #ffffff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.svc-intro-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.svc-intro-heading {
    font-family: var(--font-heading);
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    font-weight: 400;
    color: #067a8a;
}

.svc-intro-paragraph {
    font-family: var(--font-main);
    font-size: 20px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.65);
    max-width: 900px;
}

/* --- Marquee --- */
.svc-marquee-section {
    padding: 40px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.svc-marquee-section .marquee-word {
    color: rgba(8, 170, 190, 0.1);
}

.svc-marquee-section .marquee-dot {
    color: rgba(8, 170, 190, 0.06);
}

/* --- Split Layout: Services Grid + Sticky CTA --- */
.svc-listing {
    padding: 80px 60px 120px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8fa 100%);
}

.svc-split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.svc-grid-col {
    display: flex;
    flex-direction: column;
}

.svc-cta-col {
    position: sticky;
    top: 120px;
    height: max-content;
    align-self: flex-start;
}

/* --- Service Cards --- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.svc-card {
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
}

.svc-card-accent {
    background: linear-gradient(135deg, rgba(198, 246, 194, 0.3) 0%, rgba(8, 170, 190, 0.08) 100%);
    border: 1px solid rgba(8, 170, 190, 0.15);
}

.svc-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #08aabe;
    transition: all 0.3s ease;
}

.svc-icon svg {
    width: 26px;
    height: 26px;
}

.svc-card:hover .svc-icon {
    background: #08aabe;
    color: #ffffff;
    transform: scale(1.1);
}

.svc-card h2 {
    font-family: var(--font-main);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.4px;
    color: var(--text-main, #1c1c1e);
    line-height: 1.3;
}

.svc-card p {
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
}

/* --- Sticky CTA Column --- */
.svc-sticky-cta {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-sticky-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    color: #08aabe;
    line-height: 1.1;
    font-weight: 500;
}

.svc-sticky-image {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 16/9;
    margin: 4px 0;
}

.svc-sticky-text {
    font-family: var(--font-main);
    font-size: 17px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.6;
}

.svc-sticky-cta .btn-waitlist-main {
    background: #08aabe;
    color: #ffffff;
}

.svc-sticky-cta .btn-waitlist-main .arrow-circle {
    background: #ffffff;
    color: #08aabe;
}

.svc-sticky-cta .btn-waitlist-main:hover {
    background: #067a8a;
    transform: translateY(-4px) scale(1.02);
}

/* --- CTA Band --- */
.svc-cta-band {
    padding: 120px 60px;
    background: linear-gradient(135deg, #08aabe 0%, #067a8a 100%);
    color: #ffffff;
}

.svc-cta-band-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.svc-cta-band-inner h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    letter-spacing: -2px;
    color: #ffffff;
    line-height: 1.1;
}

.svc-cta-band-inner p {
    font-family: var(--font-main);
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}

.svc-cta-band .btn-waitlist-main {
    margin-top: 12px;
    background-color: #ffffff;
    color: var(--text-main, #1c1c1e);
}

.svc-cta-band .arrow-circle.dark {
    background-color: var(--text-main, #1c1c1e);
    color: #ffffff;
}

.svc-cta-band .btn-waitlist-main:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px) scale(1.02);
}

/* ====================================================================
   RESPONSIVE: Tablet (≤1024px)
   ==================================================================== */
@media (max-width: 1024px) {
    .services-navbar {
        padding: 20px 30px;
    }

    .svc-hero {
        padding: 160px 40px 80px;
    }

    .svc-hero-title {
        font-size: 64px;
    }

    .svc-intro {
        padding: 80px 40px;
    }

    .svc-intro-heading {
        font-size: 52px;
    }

    .svc-listing {
        padding: 60px 40px 80px;
    }

    .svc-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .svc-cta-col {
        position: static;
    }

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

    .svc-cta-band {
        padding: 80px 40px;
    }

    .svc-cta-band-inner h2 {
        font-size: 42px;
    }
}

/* ====================================================================
   RESPONSIVE: Mobile (≤768px)
   ==================================================================== */
@media (max-width: 768px) {
    .services-navbar {
        padding: 16px 20px;
    }

    .svc-hero {
        padding: 130px 24px 60px;
    }

    .svc-hero-title {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .svc-hero-title br {
        display: none;
    }

    .svc-eyebrow {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .svc-hero-subtitle {
        font-size: 16px;
    }

    .svc-intro {
        padding: 60px 24px;
    }

    .svc-intro-heading {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .svc-intro-paragraph {
        font-size: 16px;
    }

    .svc-marquee-section {
        padding: 24px 0;
    }

    .svc-listing {
        padding: 40px 16px 60px;
    }

    .svc-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .svc-card {
        padding: 28px 22px;
        border-radius: 18px;
        gap: 14px;
    }

    .svc-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 12px;
    }

    .svc-icon svg {
        width: 22px;
        height: 22px;
    }

    .svc-card h2 {
        font-size: 17px;
    }

    .svc-card p {
        font-size: 14px;
    }

    .svc-sticky-cta {
        padding: 40px 24px;
        border-radius: 18px;
    }

    .svc-sticky-heading {
        font-size: 32px;
    }

    .svc-cta-band {
        padding: 60px 24px;
    }

    .svc-cta-band-inner h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .svc-cta-band-inner p {
        font-size: 15px;
    }
}

/* ====================================================================
   RESPONSIVE: Small Mobile (≤480px)
   ==================================================================== */
@media (max-width: 480px) {
    .svc-hero {
        padding: 110px 20px 50px;
    }

    .svc-hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .svc-intro-heading {
        font-size: 28px;
    }

    .svc-cta-band-inner h2 {
        font-size: 26px;
    }
}