﻿/* ================================================
   WENGS SOLUTIONS LLP — Global Stylesheet v3.4
   INCREASED MOBILE NAV HEIGHT & LARGER FONTS
   ================================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---- Design Tokens ---- */
:root {
    --brand-blue: #0067b8;
    --brand-blue-dark: #004e8c;
    --brand-blue-light: #e8f2fc;
    --brand-accent: #f0a500;
    --brand-accent-dk: #c8860a;
    --n-0: #ffffff;
    --n-50: #f6f8fb;
    --n-100: #eef1f6;
    --n-200: #dde3ed;
    --n-300: #b8c4d4;
    --n-500: #6b7a91;
    --n-700: #2d3748;
    --n-900: #111827;
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-8: 32px;
    --sp-10: 40px;
    --sp-12: 48px;
    --sp-16: 64px;
    --sp-20: 80px;
    --sp-24: 96px;
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-pill: 9999px;
    --shadow-xs: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-sm: 0 4px 12px rgba(0,0,0,.07);
    --shadow-md: 0 8px 24px rgba(0,0,0,.09);
    --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
    --shadow-xl: 0 24px 64px rgba(0,0,0,.15);
    --nav-h: 72px; /* Default desktop height */
    --ease: cubic-bezier(.4,0,.2,1);
    --dur: 220ms;
}

/* ---- Reset ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--n-700);
    background: var(--n-0);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    letter-spacing: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--n-900);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ---- Layout ---- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--sp-6);
}

/* ================================================================
   NAVIGATION
   ================================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--n-200);
    height: var(--nav-h);
    transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}

    .site-header.scrolled {
        background: rgba(255,255,255,.98);
        box-shadow: var(--shadow-sm);
    }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    width: 100%;
}

/* --- Logo --- */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.nav-logo__img {
    height: 51px;
    width: 51px;
    object-fit: cover;
    border-radius: 50%;
    background-color: var(--brand-blue-light);
    flex-shrink: 0;
}

.nav-logo__text {
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
    line-height: 1.2;
}

.nav-logo__name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--brand-blue);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 0;
}

.nav-logo__tagline {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--n-500);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin-top: 1px;
}

.nav-logo__badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 50%, #b38728 100%);
    background-size: 200% 200%;
    color: #1a1a1a;
    padding: 2px 7px;
    border-radius: var(--r-pill);
    line-height: 1.2;
    margin-top: 2px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    white-space: nowrap;
    width: fit-content;
    animation: shimmer 3s ease-in-out infinite;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Golden badge shimmer animation */
@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Optional: Static golden color without animation */
.nav-logo__badge-static {
    background: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
    color: #1a1a1a;
}

/* --- Desktop Navigation --- */
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

    .nav-item::after {
        content: '';
        position: absolute;
        top: calc(100% - 5px);
        left: 0;
        right: 0;
        height: 15px;
        background: transparent;
        z-index: 9999;
    }

.nav-item__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--n-700);
    border-radius: var(--r-sm);
    transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
    white-space: nowrap;
}

    .nav-item__link svg.chevron {
        width: 12px;
        height: 12px;
        stroke: currentColor;
        transition: transform var(--dur) var(--ease);
        flex-shrink: 0;
    }

.nav-item:hover > .nav-item__link,
.nav-item:focus-within > .nav-item__link {
    color: var(--brand-blue);
    background: var(--brand-blue-light);
}

/* --- Dropdown --- */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 5px); /* Reduced from 8px */
    left: 0;
    min-width: 260px;
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--sp-3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur) var(--ease);
    pointer-events: none;
    z-index: 10000;
}

    .nav-item:hover > .nav-dropdown,
    .nav-item:focus-within > .nav-dropdown,
    .nav-dropdown:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: all;
        transition-delay: 0s;
    }

.nav-dropdown--wide {
    min-width: 580px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
}

.nav-item:hover > .nav-dropdown--wide {
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown__cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2);
}

.nav-dropdown__link {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: 10px 12px;
    border-radius: var(--r-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--n-700);
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

    .nav-dropdown__link:hover {
        background: var(--brand-blue-light);
        color: var(--brand-blue-dark);
    }

.nav-dropdown__icon {
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    background: var(--n-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    flex-shrink: 0;
    font-size: 14px;
}

.nav-dropdown__label-name {
    display: block;
    font-weight: 600;
    font-size: 13px;
}

.nav-dropdown__label-desc {
    display: block;
    font-size: 11px;
    color: var(--n-500);
    margin-top: 2px;
}

/* --- Nav Actions (Desktop only) --- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    flex-shrink: 0;
}

.btn-nav-ghost {
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-blue);
    border: 1.5px solid var(--n-200);
    border-radius: var(--r-sm);
    background: transparent;
    transition: all var(--dur) var(--ease);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .btn-nav-ghost:hover {
        border-color: var(--brand-blue);
        background: var(--brand-blue-light);
        text-decoration: none;
    }

.btn-nav-primary {
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: var(--brand-blue);
    border: none;
    border-radius: var(--r-sm);
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
    cursor: pointer;
}

    .btn-nav-primary:hover {
        background: var(--brand-blue-dark);
        transform: translateY(-1px);
    }

/* --- Hamburger (Mobile) --- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 10001;
}

    .nav-hamburger span {
        display: block;
        height: 2.5px;
        background: var(--n-700);
        border-radius: 2px;
        transition: all 0.3s var(--ease);
    }

    .nav-hamburger.is-open span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    .nav-hamburger.is-open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-hamburger.is-open span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

/* --- Mobile Drawer --- */
.nav-drawer {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--n-0);
    z-index: 9998;
    overflow-y: auto;
    padding: var(--sp-5) var(--sp-5) var(--sp-10);
    transform: translateX(-100%);
    transition: transform 0.35s var(--ease);
    display: block;
}

    .nav-drawer.is-open {
        transform: translateX(0);
    }

.nav-drawer__group {
    border-bottom: 1px solid var(--n-200);
}

.nav-drawer__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--sp-4) 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--n-900);
    font-family: var(--font-display);
    cursor: pointer;
}

    .nav-drawer__toggle svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        transition: transform 0.25s;
    }

.nav-drawer__group.is-expanded .nav-drawer__toggle svg {
    transform: rotate(180deg);
}

.nav-drawer__sub {
    display: none;
    padding-bottom: var(--sp-3);
    gap: var(--sp-2);
    flex-direction: column;
}

.nav-drawer__group.is-expanded .nav-drawer__sub {
    display: flex;
}

.nav-drawer__sub-link {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: 10px var(--sp-3);
    font-size: 14px;
    font-weight: 500;
    color: var(--n-700);
    border-radius: var(--r-md);
    transition: background var(--dur);
}

    .nav-drawer__sub-link:hover {
        background: var(--brand-blue-light);
        color: var(--brand-blue);
    }

.nav-drawer__sub-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    background: var(--n-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    font-size: 14px;
    flex-shrink: 0;
}

.nav-drawer__link-plain {
    display: block;
    padding: var(--sp-4) 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--n-900);
    font-family: var(--font-display);
    border-bottom: 1px solid var(--n-200);
}

.nav-drawer__actions {
    margin-top: var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.btn-drawer-ghost {
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-blue);
    border: 1.5px solid var(--brand-blue);
    border-radius: var(--r-md);
    transition: all var(--dur);
    text-decoration: none;
}

    .btn-drawer-ghost:hover {
        background: var(--brand-blue-light);
        text-decoration: none;
    }

.btn-drawer-primary {
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--brand-blue);
    border-radius: var(--r-md);
    transition: all var(--dur);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9997;
    backdrop-filter: blur(2px);
    display: none;
}

    .nav-overlay.is-visible {
        display: block;
    }

/* Skip to content */
.skip-link {
    position: absolute;
    top: -9999px;
    left: var(--sp-4);
    padding: var(--sp-2) var(--sp-4);
    background: var(--brand-blue);
    color: #fff;
    border-radius: var(--r-sm);
    font-weight: 600;
    z-index: 10000;
}

    .skip-link:focus {
        top: var(--sp-2);
    }

/* ================================================================
   RESPONSIVE - INCREASED MOBILE NAV HEIGHT & LARGER FONTS
   ================================================================ */

/* Tablet and below - Switch to mobile navigation */
@media (max-width: 1024px) {
    :root {
        --nav-h: 80px;
    }

    .nav-list,
    .nav-actions {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .nav-drawer {
        display: none !important;
    }

    .nav-overlay {
        display: none !important;
    }
    .nav-actions {
        display: flex;
        align-items: center;
        gap: var(--sp-2);
        flex-shrink: 0;
    }
}

/* Mobile - Increased height and larger fonts */
@media (max-width: 768px) {
    :root {
        --nav-h: 85px;
    }

    .nav-logo__img {
        height: 52px;
        width: 52px;
    }

    .nav-logo__name {
        font-size: 18px;
        font-weight: 800;
    }

    .nav-logo__tagline {
        font-size: 12px;
        letter-spacing: 0.4px;
    }

    .nav-logo__badge {
        font-size: 10px;
        padding: 2px 8px;
    }

    .nav-logo {
        gap: 12px;
    }

    .nav-logo__text {
        gap: 2px;
    }
}

/* Small mobile - Even larger for readability */
@media (max-width: 600px) {
    :root {
        --nav-h: 82px;
    }

    .nav-logo__img {
        height: 50px;
        width: 50px;
    }

    .nav-logo__name {
        font-size: 17px;
    }

    .nav-logo__tagline {
        font-size: 10px;
    }

    .nav-logo__badge {
        font-size: 9px;
        padding: 1px 5px;
        background: linear-gradient(135deg, #d4af37 0%, #f5e7a3 50%, #d4af37 100%);
    }

    .nav-logo {
        gap: 11px;
    }
}

/* Extra small - Maintain readability */
@media (max-width: 480px) {
    :root {
        --nav-h: 78px;
    }

    .nav-logo__img {
        height: 48px;
        width: 48px;
    }

    .nav-logo__name {
        font-size: 16px;
    }

    .nav-logo__tagline {
        font-size: 9px;
    }

    .nav-logo__badge {
        font-size: 8.5px;
        padding: 2px 6px;
    }

    .nav-logo {
        gap: 10px;
    }
}

/* Very small - Still readable */
@media (max-width: 380px) {
    :root {
        --nav-h: 76px;
    }

    .nav-logo__img {
        height: 46px;
        width: 46px;
    }

    .nav-logo__name {
        font-size: 15px;
    }

    .nav-logo__tagline {
        font-size: 8.8px;
    }

    .nav-logo__badge {
        font-size: 7.8px;
        padding: 1px 5px;
    }
}

/* ================================================================
   HERO SECTION (Adjusted for taller nav)
   ================================================================ */
.hero {
    padding-top: calc(var(--nav-h) + 50px);
    padding-bottom: var(--sp-20);
    position: relative;
    overflow: hidden;
    background: #f0f6ff;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--sp-12);
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-blue);
    background: var(--brand-blue-light);
    border: 1px solid rgba(0,103,184,.2);
    padding: 5px 14px;
    border-radius: var(--r-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--sp-5);
}

.hero__balance-text {
    text-align: center;
    margin-top: var(--sp-1);
    padding-top: var(--sp-2);
    border-top: 1px solid var(--n-200);
}
.hero__balance-quote {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--brand-blue);
    letter-spacing: -0.01em;
    font-style: normal;
}

.hero__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--n-900);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-5);
}

    .hero__title em {
        font-style: normal;
        color: var(--brand-blue);
        position: relative;
    }

        .hero__title em::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 2px;
            width: 100%;
            height: 4px;
            background: var(--brand-accent);
            border-radius: 2px;
            opacity: .6;
        }

.hero__desc {
    font-size: 1rem;
    color: var(--n-500);
    max-width: 520px;
    margin-bottom: var(--sp-6);
    font-weight: 400;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
    margin-bottom: var(--sp-8);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 12px 24px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--r-md);
    border: none;
    transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
    box-shadow: 0 4px 14px rgba(0,103,184,.3);
    cursor: pointer;
}

    .btn-primary:hover {
        background: var(--brand-blue-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,103,184,.35);
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 12px 24px;
    background: transparent;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 700;
    border: 2px solid var(--brand-blue);
    border-radius: var(--r-md);
    transition: all var(--dur);
    cursor: pointer;
}

    .btn-outline:hover {
        background: var(--brand-blue-light);
        transform: translateY(-2px);
    }

.hero__trust {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 12px;
    font-weight: 600;
    color: var(--n-500);
}

.hero__media {
    position: relative;
}

.hero__img-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

    .hero__img-wrap img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
    }

.hero__stats {
    display: flex;
    gap: 0;
    margin-top: var(--sp-8);
    border-top: 1px solid var(--n-200);
    padding-top: var(--sp-6);
}

.hero__stat {
    flex: 1;
    text-align: center;
    padding: var(--sp-2);
    border-right: 1px solid var(--n-200);
}

    .hero__stat:last-child {
        border-right: none;
    }

.hero__stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-blue);
    line-height: 1.2;
    margin-bottom: 4px;
}
.stat-plus {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-blue);
    margin-left: 2px;
}

.hero__stat-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--n-500);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--sp-6);
    }

    .hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__media {
        display: none;
    }

    .hero__stats {
        display: none;
    }

    .hero {
        padding-top: calc(var(--nav-h) + 35px);
        padding-bottom: var(--sp-12);
    }
}

/* ================================================================
   SERVICES, ABOUT, FOOTER SECTIONS (Standard)
   ================================================================ */
.section {
    padding: var(--sp-16) 0;
}

.section--alt {
    background: var(--n-50);
}

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--sp-10);
}

.section__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brand-blue);
    background: var(--brand-blue-light);
    padding: 5px 14px;
    border-radius: var(--r-pill);
    margin-bottom: var(--sp-3);
}

.section__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-3);
}

.section__subtitle {
    font-size: 0.95rem;
    color: var(--n-500);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: var(--r-lg);
    padding: var(--sp-6) var(--sp-5);
    transition: all var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    background: var(--brand-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    font-size: 22px;
    margin-bottom: var(--sp-4);
    transition: background var(--dur), color var(--dur);
}

.service-card:hover .service-card__icon {
    background: var(--brand-blue);
    color: #fff;
}

.service-card__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--sp-2);
}

.service-card__desc {
    font-size: 13px;
    color: var(--n-500);
    line-height: 1.6;
    margin-bottom: var(--sp-4);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-blue);
    transition: gap var(--dur);
}

    .service-card__link:hover {
        gap: 10px;
    }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    align-items: center;
}

@media (max-width: 768px) {
    .hero__balance-text {
        margin-top: var(--sp-3);
    }

    .hero__balance-quote {
        font-size: 0.9rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .hero__stat-num {
        font-size: 1.6rem;
    }

    .stat-plus {
        font-size: 1.4rem;
    }

    .hero__stat-label {
        font-size: 10px;
    }
}

.about__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-4);
}

.about__desc {
    color: var(--n-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--sp-5);
}

.about__checks {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-bottom: var(--sp-6);
}

.about__check {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: 13px;
    font-weight: 600;
    color: var(--n-700);
}

.about__check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.about__img-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: visible;
}

    .about__img-wrap img {
        width: 100%;
        border-radius: var(--r-xl);
        box-shadow: var(--shadow-xl);
    }

.site-footer {
    background: var(--n-900);
    color: var(--n-0);
    padding: var(--sp-16) 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: var(--sp-6);
    padding-bottom: var(--sp-10);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-6) var(--sp-4);
    }
}

.footer-brand__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--sp-4);
}

    .footer-brand__logo img {
        height: 44px;
        height: 44px;
        width: auto;
        filter: none;
        opacity: 1;
    }

.footer-brand__name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #fff;
    margin-bottom: var(--sp-4);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.footer-col a {
    font-size: 12px;
    color: var(--n-300);
    transition: color var(--dur);
    display: flex;
    align-items: center;
    gap: 6px;
}

    .footer-col a:hover {
        color: #fff;
    }

.footer-bottom {
    padding: var(--sp-4) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-3);
    border-top: 1px solid rgba(255,255,255,.06);
}

    .footer-bottom p {
        font-size: 12px;
        color: var(--n-300);
    }

.footer-bottom__links {
    display: flex;
    gap: var(--sp-4);
}

    .footer-bottom__links a {
        font-size: 11px;
        color: var(--n-300);
        transition: color var(--dur);
    }

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.wa-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    z-index: 5000;
    transition: all var(--dur);
}

    .wa-fab:hover {
        background: #128c7e;
        transform: scale(1.08);
    }

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-fade-up {
    animation: fade-up 0.6s var(--ease) both;
}

.anim-delay-1 {
    animation-delay: 0.1s;
}

.anim-delay-2 {
    animation-delay: 0.2s;
}

.anim-delay-3 {
    animation-delay: 0.3s;
}

/* Footer Brand Description - Professional & Clean */
.footer-brand__desc {
    font-size: 12px;
    color: var(--n-300);
    line-height: 1.5;
    max-width: 280px;
    margin: var(--sp-3) 0 var(--sp-4) 0;
    opacity: 0.85;
}

/* Footer Social Icons - Perfect Equal Spacing */
.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: var(--sp-3);
}

.footer-social__btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--n-300);
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .footer-social__btn:hover {
        background: var(--brand-blue);
        color: #fff;
        transform: translateY(-3px);
    }

/* Responsive footer social icons */
@media (max-width: 768px) {
    .footer-social {
        gap: 14px;
    }

    .footer-social__btn {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .footer-social {
        gap: 12px;
        justify-content: center;
    }
}

/* ================================================================
   ABOUT PAGE STYLES - Cross Platform Ready
   ================================================================ */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #2c3e50 0%, var(--brand-blue) 100%);
    color: #fff;
    padding: calc(var(--nav-h) + 60px) var(--sp-6) var(--sp-16);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><path fill="white" d="M0,0 L1000,0 L1000,1000 L0,1000 Z M200,200 L800,200 L800,800 L200,800 Z"/></svg>');
        background-repeat: repeat;
        pointer-events: none;
    }

    .about-hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 700;
        margin-bottom: var(--sp-4);
        letter-spacing: -0.02em;
        position: relative;
        z-index: 1;
        color: #fff;
    }

    .about-hero p {
        font-size: clamp(1rem, 2vw, 1.3rem);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
        font-weight: 400;
        position: relative;
        z-index: 1;
        opacity: 0.95;
    }

/* About Container */
.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--sp-16) var(--sp-6) var(--sp-20);
}

/* About Sections */
.about-section {
    margin-bottom: var(--sp-16);
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: var(--sp-12);
}

    .section-header h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 700;
        margin-bottom: var(--sp-5);
        position: relative;
        display: inline-block;
        color: var(--n-900);
    }

        .section-header h2:after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--brand-blue);
            border-radius: 2px;
        }

    .section-header p {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
        color: var(--n-500);
        max-width: 800px;
        margin: var(--sp-6) auto 0;
        line-height: 1.7;
    }

.justify-text {
    text-align: justify;
    line-height: 1.8;
    font-size: clamp(0.95rem, 2vw, 1rem);
    color: var(--n-700);
}

/* Founder Section */
.founder-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--n-0);
    border-radius: var(--r-xl);
    padding: var(--sp-10);
    box-shadow: var(--shadow-md);
    margin-top: var(--sp-6);
    border: 1px solid var(--n-200);
}

.founder-image {
    width: 280px;
    height: 280px; /* Fixed equal width and height */
    min-width: 280px;
    min-height: 280px;
    max-width: 280px;
    max-height: 280px;
    border-radius: 50% !important; /* Force perfect circle */
    overflow: hidden;
    margin-bottom: var(--sp-6);
    border: 4px solid var(--n-0);
    box-shadow: var(--shadow-md);
    background: var(--n-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .founder-image img {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover; /* Ensures image covers the circle without distortion */
        object-position: center center; /* Centers the image */
        display: block;
    }

.founder-bio {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

    .founder-bio h3 {
        font-size: clamp(1.5rem, 3vw, 1.8rem);
        font-weight: 700;
        margin-bottom: var(--sp-3);
        color: var(--n-900);
    }

    .founder-bio .title {
        color: var(--brand-blue);
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: var(--sp-5);
        display: inline-block;
        padding-bottom: var(--sp-2);
        border-bottom: 2px solid var(--brand-accent);
    }

.founder-quote {
    background: linear-gradient(135deg, var(--brand-blue-light) 0%, #eef5ff 100%);
    padding: var(--sp-6);
    border-radius: var(--r-lg);
    margin: var(--sp-6) 0;
    position: relative;
    font-style: italic;
}

    .founder-quote::before {
        content: '"';
        position: absolute;
        top: 10px;
        left: 20px;
        font-size: 5rem;
        color: var(--brand-blue);
        opacity: 0.15;
        font-family: Georgia, serif;
    }

    .founder-quote p {
        font-size: clamp(1rem, 2vw, 1.1rem);
        color: var(--n-700);
        position: relative;
        z-index: 1;
        margin-bottom: var(--sp-3);
        line-height: 1.7;
    }

    .founder-quote .author {
        color: var(--n-500);
        font-weight: 600;
        font-style: normal;
        margin-top: var(--sp-2);
        display: block;
    }

/* Journey Timeline */
.journey-container {
    position: relative;
    padding: var(--sp-8) 0;
}

.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

    .journey-timeline::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        height: 100%;
        width: 3px;
        background: var(--brand-blue);
    }

.timeline-item {
    width: 50%;
    padding: var(--sp-6) var(--sp-8);
    position: relative;
    margin-bottom: var(--sp-4);
}

    .timeline-item:nth-child(odd) {
        left: 0;
        padding-right: 70px;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
        padding-left: 70px;
    }

.timeline-year {
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: var(--sp-2);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.timeline-content {
    background: var(--n-0);
    padding: var(--sp-5);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--n-200);
    transition: all var(--dur);
}

    .timeline-content:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .timeline-content h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: var(--sp-2);
        color: var(--n-900);
    }

    .timeline-content p {
        font-size: 0.9rem;
        color: var(--n-500);
        line-height: 1.6;
    }

.timeline-item:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--n-0);
    transform: rotate(45deg);
    border-right: 1px solid var(--n-200);
    border-top: 1px solid var(--n-200);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: "";
    position: absolute;
    top: 30px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: var(--n-0);
    transform: rotate(45deg);
    border-left: 1px solid var(--n-200);
    border-bottom: 1px solid var(--n-200);
}

.timeline-marker {
    position: absolute;
    top: 35px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--brand-blue);
    border: 3px solid var(--n-0);
    box-shadow: 0 0 0 3px var(--brand-blue);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -8px;
}

/* Mission Section */
.mission-cards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-8);
    justify-content: center;
    margin-top: var(--sp-8);
}

.mission-card {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background: var(--n-0);
    padding: var(--sp-8) var(--sp-6);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--dur);
    border: 1px solid var(--n-200);
}

    .mission-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.mission-icon {
    font-size: 3rem;
    margin-bottom: var(--sp-5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    text-align: center;
}

.mission-card.it .mission-icon {
    background: rgba(0, 103, 184, 0.1);
    color: var(--brand-blue);
}

.mission-card.environment .mission-icon {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.mission-card h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: var(--sp-4);
    color: var(--n-900);
}

.mission-card p {
    font-size: 0.95rem;
    color: var(--n-500);
    line-height: 1.7;
}

/* Leaf Bank Section */
.leaf-bank-section {
    background: linear-gradient(135deg, #1a5f5f 0%, var(--brand-blue) 100%);
    color: #fff;
    padding: var(--sp-12) var(--sp-10);
    border-radius: var(--r-xl);
    margin: var(--sp-12) 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-10);
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.leaf-bank-info {
    flex: 2;
    min-width: 280px;
}

    .leaf-bank-info h2 {
        color: #FFD700;
        margin-bottom: var(--sp-5);
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 700;
    }

    .leaf-bank-info p {
        line-height: 1.8;
        margin-bottom: var(--sp-4);
        font-size: clamp(0.95rem, 1.5vw, 1rem);
        color: rgba(255,255,255,0.95);
    }

.leaf-bank-logo {
    flex: 1;
    min-width: 220px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: var(--sp-6);
    border-radius: var(--r-lg);
    backdrop-filter: blur(10px);
}

    .leaf-bank-logo img {
        width: 140px;
        height: 140px;
        object-fit: contain;
        margin-bottom: var(--sp-3);
    }

    .leaf-bank-logo h3 {
        color: #FFD700;
        margin: var(--sp-3) 0 var(--sp-2);
        font-size: clamp(1.3rem, 2vw, 1.6rem);
        font-weight: 700;
    }

    .leaf-bank-logo p {
        color: rgba(255,255,255,0.9);
        font-style: italic;
        font-size: 0.85rem;
        margin-bottom: var(--sp-4);
    }

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--r-md);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: var(--sp-3);
    transition: all var(--dur);
    border: none;
    cursor: pointer;
}

    .read-more-btn:hover {
        background: #128C7E;
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm);
    }

    .read-more-btn i {
        font-size: 0.8rem;
    }

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-6);
    margin-top: var(--sp-8);
}

.value-card {
    background: var(--n-0);
    padding: var(--sp-8) var(--sp-6);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--dur);
    border: 1px solid var(--n-200);
}

    .value-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: var(--brand-blue);
    }

.value-icon {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: var(--sp-4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: rgba(0, 103, 184, 0.1);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--sp-3);
    color: var(--n-900);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--n-500);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    padding: var(--sp-12) var(--sp-6);
    border-radius: var(--r-xl);
    margin-top: var(--sp-12);
    position: relative;
    overflow: hidden;
    margin-bottom:21px;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--sp-4);
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto var(--sp-6);
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 14px 32px;
    background: #fff;
    color: var(--brand-blue);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--r-md);
    transition: all var(--dur);
    text-decoration: none;
    position: relative;
    z-index: 1;
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

/* ================================================================
   RESPONSIVE DESIGN - ABOUT PAGE
   ================================================================ */

@media (max-width: 968px) {
    .journey-timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: var(--sp-5);
        left: 0;
        text-align: left;
    }

        .timeline-item:nth-child(odd) {
            padding-right: var(--sp-5);
            text-align: left;
        }

        .timeline-item:nth-child(even) {
            left: 0;
            padding-left: 80px;
        }

    .timeline-marker {
        left: 22px !important;
        right: auto !important;
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        display: none;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: calc(var(--nav-h) + 40px) var(--sp-4) var(--sp-12);
    }

    .about-container {
        padding: var(--sp-10) var(--sp-4) var(--sp-16);
    }

    .about-section {
        margin-bottom: var(--sp-12);
    }

    .section-header {
        margin-bottom: var(--sp-8);
    }

        .section-header h2:after {
            width: 60px;
            bottom: -12px;
        }

    .founder-profile {
        padding: var(--sp-6);
    }

    .founder-quote {
        padding: var(--sp-5);
    }

    .leaf-bank-section {
        padding: var(--sp-8) var(--sp-6);
        flex-direction: column;
        text-align: center;
    }

    .leaf-bank-info {
        text-align: center;
    }

    .leaf-bank-logo {
        order: -1;
    }

    .mission-cards {
        gap: var(--sp-5);
    }

    .values-grid {
        gap: var(--sp-5);
    }

    .cta-section {
        padding: var(--sp-8) var(--sp-4);
    }
    .founder-image {
        width: 220px;
        height: 220px;
        min-width: 220px;
        min-height: 220px;
        max-width: 220px;
        max-height: 220px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-hero p {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .founder-image {
        width: 200px;
        height: 200px;
    }

    .founder-bio h3 {
        font-size: 1.4rem;
    }

    .founder-quote p {
        font-size: 0.9rem;
    }

    .timeline-content {
        padding: var(--sp-4);
    }

        .timeline-content h3 {
            font-size: 1rem;
        }

    .mission-card {
        padding: var(--sp-6) var(--sp-4);
    }

    .value-card {
        padding: var(--sp-6) var(--sp-4);
    }

    .leaf-bank-info h2 {
        font-size: 1.5rem;
    }

    .leaf-bank-logo img {
        width: 120px;
        height: 120px;
    }
    .founder-image {
        width: 180px;
        height: 180px;
        min-width: 180px;
        min-height: 180px;
        max-width: 180px;
        max-height: 180px;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-container {
        max-width: 960px;
    }

    .timeline-item {
        padding: var(--sp-5) var(--sp-6);
    }

        .timeline-item:nth-child(odd) {
            padding-right: 60px;
        }

        .timeline-item:nth-child(even) {
            padding-left: 60px;
        }
}

/* Print Styles */
@media print {
    .about-hero {
        background: #2c3e50;
        color: #fff;
        padding: 20px;
    }

    .cta-section,
    .read-more-btn,
    .cta-button {
        display: none;
    }

    .mission-card,
    .value-card,
    .timeline-content {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ================================================================
   CONTACT PAGE - MODERN PROFESSIONAL DESIGN
   Inspired by Stripe, Linear, and Modern SaaS
   ================================================================ */

/* Hero Section */
.contact-hero-modern {
    padding: calc(var(--nav-h) + 60px) 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--n-200);
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-blue);
    background: var(--brand-blue-light);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.contact-hero-modern h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--n-900);
    margin-bottom: 16px;
}

.contact-hero-modern p {
    font-size: 1.1rem;
    color: var(--n-500);
    line-height: 1.5;
}

/* Main Grid */
.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    padding: 60px 0 80px;
}

@media (max-width: 968px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Left Column - Contact Info */
.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-group h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--n-400);
    margin-bottom: 20px;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

    .contact-method:hover {
        border-color: var(--brand-blue);
        background: var(--brand-blue-light);
        transform: translateX(4px);
    }

.method-icon {
    width: 44px;
    height: 44px;
    background: var(--brand-blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .method-icon i {
        font-size: 20px;
        color: var(--brand-blue);
    }

.method-details {
    flex: 1;
}

.method-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--n-400);
    margin-bottom: 2px;
}

.method-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--n-700);
}

.method-arrow {
    color: var(--n-300);
    font-size: 14px;
    transition: all 0.2s ease;
}

.contact-method:hover .method-arrow {
    color: var(--brand-blue);
    transform: translateX(4px);
}

/* Offices */
.offices {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.office {
    padding: 16px;
    background: var(--n-50);
    border-radius: 16px;
}

.office-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-blue);
    background: var(--brand-blue-light);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.office-address {
    font-size: 14px;
    color: var(--n-600);
    line-height: 1.6;
}

/* Hours */
.hours-modern {
    background: var(--n-50);
    border-radius: 16px;
    padding: 16px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--n-200);
}

    .hour-row:last-child {
        border-bottom: none;
    }

    .hour-row .day {
        font-weight: 500;
        color: var(--n-700);
    }

    .hour-row .time {
        text-align: right;
        font-size: 13px;
        color: var(--n-500);
        line-height: 1.4;
    }

.evening {
    font-size: 11px;
    color: var(--n-400);
}

/* Holidays */
.holidays-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.holiday-category {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.category-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
}

    .category-dot.full {
        background: #dc3545;
    }

    .category-dot.half {
        background: var(--brand-accent);
    }

.category-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--n-600);
    min-width: 65px;
}

.holiday-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

    .holiday-tags span {
        font-size: 12px;
        color: var(--n-500);
        background: var(--n-100);
        padding: 4px 10px;
        border-radius: 20px;
    }

/* Right Column - Form */
.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-card {
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

    .form-card h2 {
        font-size: 22px;
        font-weight: 600;
        color: var(--n-900);
        margin-bottom: 8px;
    }

    .form-card > p {
        font-size: 14px;
        color: var(--n-500);
        margin-bottom: 28px;
    }

/* Success Message */
.success-message-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
}

    .success-message-modern i {
        font-size: 24px;
        color: #28a745;
    }

    .success-message-modern strong {
        font-size: 14px;
        color: #155724;
    }

    .success-message-modern p {
        font-size: 12px;
        color: #155724;
        margin: 0;
    }

/* Modern Form */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-card {
        padding: 24px;
    }
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .input-group.full-width {
        grid-column: 1 / -1;
    }

    .input-group label {
        font-size: 13px;
        font-weight: 500;
        color: var(--n-700);
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        padding: 12px 14px;
        border: 1px solid var(--n-200);
        border-radius: 12px;
        font-size: 14px;
        font-family: var(--font-body);
        transition: all 0.2s ease;
        background: var(--n-0);
    }

        .input-group input:focus,
        .input-group select:focus,
        .input-group textarea:focus {
            outline: none;
            border-color: var(--brand-blue);
            box-shadow: 0 0 0 3px rgba(0, 103, 184, 0.05);
        }

        .input-group input.error,
        .input-group select.error,
        .input-group textarea.error {
            border-color: #dc3545;
        }

.error-msg {
    display: none;
    font-size: 11px;
    color: #dc3545;
}

/* Submit Button */
.submit-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

    .submit-btn-modern:hover {
        background: var(--brand-blue-dark);
        transform: translateY(-1px);
    }

.form-note-modern {
    font-size: 11px;
    color: var(--n-400);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Map Card */
.map-card-modern {
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 24px;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 200px;
    display: block;
}

.map-details {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--n-50);
    font-size: 13px;
    color: var(--n-600);
}

    .map-details i {
        color: var(--brand-blue);
    }

/* Responsive */
@media (max-width: 768px) {
    .contact-hero-modern {
        padding: calc(var(--nav-h) + 40px) 0 40px;
    }

    .contact-grid-modern {
        padding: 40px 0 60px;
    }

    .contact-info-modern {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 11px;
    }

    .contact-hero-modern h1 {
        font-size: 1.8rem;
    }

    .contact-hero-modern p {
        font-size: 1rem;
    }

    .method-icon {
        width: 40px;
        height: 40px;
    }

    .method-value {
        font-size: 13px;
    }
}

/* ================================================================
   FAQ PAGE STYLES
   ================================================================ */

/* FAQ Hero Section */
.faq-hero {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    padding: calc(var(--nav-h) + 60px) 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .faq-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.faq-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.faq-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-blue);
    background: rgba(255,255,255,0.9);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.faq-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.faq-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-meta {
    margin-top: 20px;
}

.last-updated {
    display: inline-block;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 30px;
}

/* FAQ Grid Layout */
.faq-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    padding: 60px 0 80px;
}

@media (max-width: 968px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Sidebar */
.faq-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

@media (max-width: 968px) {
    .faq-sidebar {
        position: static;
    }
}

.sidebar-card {
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
}

    .sidebar-card h3 {
        font-size: 16px;
        font-weight: 700;
        color: var(--n-900);
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--n-200);
    }

.sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .sidebar-nav li {
        margin-bottom: 8px;
    }

    .sidebar-nav a {
        display: block;
        padding: 10px 12px;
        font-size: 14px;
        font-weight: 500;
        color: var(--n-600);
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.2s ease;
    }

        .sidebar-nav a:hover {
            background: var(--brand-blue-light);
            color: var(--brand-blue);
        }

        .sidebar-nav a.active {
            background: var(--brand-blue);
            color: #fff;
        }

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--n-50) 100%);
    text-align: center;
}

    .contact-card p {
        font-size: 13px;
        color: var(--n-600);
        margin-bottom: 16px;
    }

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .contact-btn:hover {
        background: var(--brand-blue-dark);
        transform: translateY(-2px);
    }

/* FAQ Content */
.faq-content {
    min-width: 0;
}

.faq-section {
    margin-bottom: 48px;
}

    .faq-section h2 {
        font-size: 24px;
        font-weight: 700;
        color: var(--n-900);
        margin-bottom: 24px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--brand-blue);
        display: inline-block;
    }

/* FAQ Item */
.faq-item {
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
}

    .faq-item:hover {
        border-color: var(--brand-blue-light);
        box-shadow: var(--shadow-sm);
    }

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .faq-question:hover {
        background: var(--n-50);
    }

.question-icon {
    width: 32px;
    height: 32px;
    background: var(--brand-blue-light);
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--n-900);
    margin: 0;
}

.toggle-icon {
    font-size: 14px;
    color: var(--n-400);
    transition: transform 0.3s ease;
}

    .toggle-icon.rotated {
        transform: rotate(180deg);
    }

.faq-answer {
    display: none;
    padding: 0 24px 24px 72px;
    border-top: 1px solid var(--n-200);
    background: var(--n-50);
}

    .faq-answer p {
        font-size: 14px;
        color: var(--n-600);
        line-height: 1.6;
        margin-bottom: 12px;
    }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

    .faq-answer strong {
        color: var(--brand-blue);
        font-weight: 600;
    }

@media (max-width: 600px) {
    .faq-question {
        padding: 16px;
        gap: 12px;
    }

    .faq-answer {
        padding: 0 16px 16px 60px;
    }

    .question-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .faq-question h3 {
        font-size: 14px;
    }
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    border-radius: 24px;
    margin-top: 40px;
    overflow: hidden;
}

.contact-cta-content {
    text-align: center;
    padding: 48px 32px;
}

    .contact-cta-content i {
        font-size: 48px;
        color: #fff;
        margin-bottom: 16px;
    }

    .contact-cta-content h3 {
        font-size: 24px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
    }

    .contact-cta-content p {
        font-size: 15px;
        color: rgba(255,255,255,0.9);
        max-width: 500px;
        margin: 0 auto 24px;
        line-height: 1.6;
    }

.contact-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 14px;
    flex-wrap: wrap;
}

    .contact-cta-buttons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-width: 180px;
        height: 46px;
        padding: 0 18px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        line-height: 1;
        box-sizing: border-box;
        transition: all 0.25s ease;
    }

    .contact-cta-buttons .btn-primary i {
        color: var(--brand-blue);
    }

    .contact-cta-buttons .btn-outline i {
        color: #25D366;
    }

    .contact-cta-buttons a i {
        font-size: 26px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transform: translateY(6px);
    }


    .contact-cta-buttons .btn-primary {
        background: #fff;
        color: var(--brand-blue);
        border: 1px solid #fff;
    }

        .contact-cta-buttons .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

    .contact-cta-buttons .btn-outline {
        background: transparent;
        border: 1px solid #25D366;
        color: #25D366;
    }

        .contact-cta-buttons .btn-outline:hover {
            background: #25D366;
            color: #fff;
            transform: translateY(-2px);
        }

@media (max-width: 480px) {
    .contact-cta-content {
        padding: 32px 20px;
    }

        .contact-cta-content h3 {
            font-size: 20px;
        }

    .contact-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
        .contact-cta-buttons a {
            width: 100%;
            min-width: unset;
        }
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: calc(var(--nav-h) + 40px) 0 40px;
    }

        .faq-hero h1 {
            font-size: 1.8rem;
        }

        .faq-hero p {
            font-size: 1rem;
        }

    .faq-grid {
        padding: 40px 0 60px;
    }

    .faq-section h2 {
        font-size: 20px;
    }
}

/* ================================================================
   SUSTAINABILITY & EVENT PAGES
   ================================================================ */

/* Page Hero */
.page-hero,
.event-hero,
.event-header {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    padding: calc(var(--nav-h) + 60px) var(--sp-6) 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .page-hero h1,
    .event-hero h1,
    .event-header h1 {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
    }

    .page-hero p,
    .event-hero p,
    .event-header p {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.9);
        max-width: 700px;
        margin: 0 auto;
    }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 20px;
    transition: all 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--n-500);
    line-height: 1.5;
}

/* Impact Visual */
.impact-visual {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--n-50) 100%);
    border-radius: 24px;
    margin: 40px 0;
}

    .impact-visual h3 {
        font-size: 1.3rem;
        margin-bottom: 16px;
        color: var(--n-900);
    }

.paper-saved {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 12px;
}

.tree-equivalent {
    font-size: 1rem;
    color: var(--n-600);
    margin-bottom: 12px;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.impact-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 20px;
    transition: all 0.3s ease;
}

    .impact-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.impact-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .impact-icon i {
        font-size: 28px;
        color: var(--brand-blue);
    }

.impact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.impact-card p {
    font-size: 0.9rem;
    color: var(--n-500);
    line-height: 1.6;
}

/* Commitment Section */
.commitment-section {
    margin: 60px 0;
}

    .commitment-section h2 {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 32px;
    }

/* Partner Showcase */
.partner-showcase {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
    padding: 40px;
    background: var(--n-50);
    border-radius: 24px;
}

@media (max-width: 768px) {
    .partner-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.partner-logo {
    text-align: center;
}

    .partner-logo img {
        width: 150px;
        height: auto;
        margin-bottom: 16px;
    }

    .partner-logo h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

.partner-info h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--brand-blue);
}

.partner-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--n-600);
    margin-bottom: 16px;
}

/* Initiative Grid */
.initiative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.initiative-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 20px;
    transition: all 0.3s ease;
}

    .initiative-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 40px 0;
    text-align: center;
}

.partner-card img {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

.partner-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* Event Details */
.event-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .event-details-grid {
        grid-template-columns: 1fr;
    }
}

.event-image {
    background: var(--n-100);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.image-placeholder {
    text-align: center;
}

    .image-placeholder i {
        font-size: 80px;
        color: var(--brand-blue);
        margin-bottom: 16px;
    }

.event-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-card {
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 16px;
    padding: 24px;
}

    .detail-card h3 {
        font-size: 1.2rem;
        margin-bottom: 16px;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--brand-blue);
        display: inline-block;
    }

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

    .detail-item i {
        width: 24px;
        color: var(--brand-blue);
        font-size: 18px;
    }

    .detail-item span {
        flex: 1;
    }

/* Registration Box */
.registration-box {
    text-align: center;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    padding: 48px 32px;
    border-radius: 24px;
    margin: 48px 0;
    color: #fff;
}

    .registration-box h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
        color: #fff;
    }

    .registration-box p {
        margin-bottom: 24px;
        opacity: 0.9;
    }

.register-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: var(--brand-blue);
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .register-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

/* Map Wrapper */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0;
}

    .map-wrapper iframe {
        width: 100%;
        height: 300px;
        display: block;
    }

/* Speaker List */
.speaker-list {
    list-style: none;
    padding: 0;
}

    .speaker-list li {
        padding: 12px 0;
        border-bottom: 1px solid var(--n-200);
        font-size: 1rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .page-hero,
    .event-hero,
    .event-header {
        padding: calc(var(--nav-h) + 40px) var(--sp-4) 40px;
    }

        .page-hero h1,
        .event-hero h1,
        .event-header h1 {
            font-size: 1.8rem;
        }

    .stat-number {
        font-size: 2rem;
    }

    .paper-saved {
        font-size: 2rem;
    }

    .impact-visual {
        padding: 24px;
    }

    .registration-box {
        padding: 32px 20px;
    }

        .registration-box h2 {
            font-size: 1.5rem;
        }
}


/* ================================================================
   STARTUP INDIA EVENT PAGE - Professional Design
   ================================================================ */

/* Hero Section */
.startup-hero {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    padding: calc(var(--nav-h) + 80px) 0 80px;
    position: relative;
    overflow: hidden;
}

    .startup-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.3;
        pointer-events: none;
    }

.startup-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.event-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.startup-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-date {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
}

    .hero-date i {
        font-size: 16px;
        color: var(--brand-accent);
    }

    .hero-date span {
        font-size: 0.95rem;
        color: rgba(255,255,255,0.95);
    }

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-primary {
    background: #fff;
    color: var(--brand-blue);
}

    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.btn-hero-secondary {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: #fff;
}

    .btn-hero-secondary:hover {
        background: rgba(255,255,255,0.1);
        transform: translateY(-2px);
        border-color: #fff;
    }

/* Layout */
.startup-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    padding: 60px 0 80px;
}

@media (max-width: 968px) {
    .startup-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Main Content Cards */
.startup-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.event-card-modern {
    display: flex;
    gap: 24px;
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s ease;
}

    .event-card-modern:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

@media (max-width: 600px) {
    .event-card-modern {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--brand-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .card-icon i {
        font-size: 24px;
        color: var(--brand-blue);
    }

.card-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--n-800);
    margin-bottom: 12px;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--n-600);
    line-height: 1.7;
}

/* Launch Details Card */
.launch-details-card {
    background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--n-0) 100%);
    border: 1px solid var(--n-200);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    margin-top: 8px;
}

    .launch-details-card h2 {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--n-800);
        margin-bottom: 24px;
    }

.launch-timer {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.timer-item {
    text-align: center;
    min-width: 80px;
}

.timer-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-blue);
    background: var(--n-0);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 8px;
}

.timer-label {
    font-size: 0.75rem;
    color: var(--n-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.launch-info {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 28px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--n-200);
}

    .info-row i {
        width: 24px;
        color: var(--brand-blue);
        font-size: 16px;
    }

    .info-row span {
        font-size: 0.9rem;
        color: var(--n-600);
    }

    .info-row strong {
        color: var(--n-800);
    }

.btn-launch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--brand-blue);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-launch:hover {
        background: var(--brand-blue-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,103,184,0.3);
    }

/* Sidebar */
.startup-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card-modern {
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 20px;
    padding: 24px;
}

    .sidebar-card-modern h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--n-800);
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--brand-blue);
        display: inline-block;
    }

        .sidebar-card-modern h3 i {
            margin-right: 8px;
            color: var(--brand-blue);
        }

/* Speaker Profile */
.speaker-profile {
    display: flex;
    gap: 16px;
    align-items: center;
}

.speaker-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .speaker-avatar i {
        font-size: 32px;
        color: #fff;
    }

.speaker-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--n-800);
    margin-bottom: 4px;
}

.speaker-info p {
    font-size: 0.85rem;
    color: var(--n-500);
    margin-bottom: 2px;
}

.speaker-title {
    font-size: 0.8rem;
    color: var(--brand-blue);
    font-weight: 500;
}

/* Partner Profile */
.partner-profile {
    text-align: center;
}

.partner-logo-img {
    width: 100px;
    height: auto;
    margin-bottom: 16px;
}

.partner-profile h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--n-800);
    margin-bottom: 4px;
}

.partner-profile > p {
    font-size: 0.8rem;
    color: var(--n-500);
    margin-bottom: 16px;
}

.partner-description {
    background: var(--n-50);
    padding: 16px;
    border-radius: 12px;
    margin-top: 12px;
}

    .partner-description p {
        font-size: 0.85rem;
        color: var(--n-600);
        line-height: 1.6;
        margin: 0;
    }

/* Quick Info List */
.quick-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .quick-info-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid var(--n-200);
    }

        .quick-info-list li:last-child {
            border-bottom: none;
        }

    .quick-info-list i {
        width: 20px;
        color: var(--brand-blue);
        font-size: 14px;
    }

    .quick-info-list span {
        font-size: 0.9rem;
        color: var(--n-600);
    }

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

    .share-btn.linkedin {
        background: #0077b5;
    }

    .share-btn.twitter {
        background: #1da1f2;
    }

    .share-btn.facebook {
        background: #3b5998;
    }

    .share-btn.whatsapp {
        background: #25d366;
    }

    .share-btn:hover {
        transform: translateY(-3px);
        opacity: 0.9;
    }

/* Responsive */
@media (max-width: 768px) {
    .startup-hero {
        padding: calc(var(--nav-h) + 40px) var(--sp-4) 50px;
    }

        .startup-hero h1 {
            font-size: 1.8rem;
        }

    .hero-date span {
        font-size: 0.8rem;
    }

    .timer-number {
        font-size: 1.6rem;
        min-width: 60px;
        padding: 8px 12px;
    }

    .timer-item {
        min-width: 60px;
    }

    .launch-timer {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .launch-timer {
        gap: 8px;
    }

    .timer-number {
        font-size: 1.2rem;
        min-width: 50px;
        padding: 6px 8px;
    }

    .speaker-profile {
        flex-direction: column;
        text-align: center;
    }
}

/* ================================================================
   QR CODE GENERATOR PAGE - Professional Design
   ================================================================ */

/* Hero Section */
.qr-hero {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    padding: calc(var(--nav-h) + 60px) var(--sp-6) 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .qr-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.qr-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.qr-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-blue);
    background: rgba(255,255,255,0.9);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.qr-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.qr-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Layout */
.qr-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    padding: 60px 0 80px;
}

@media (max-width: 968px) {
    .qr-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Cards */
.qr-card {
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

    .qr-card h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--n-800);
        margin-bottom: 8px;
    }

.card-subtitle {
    font-size: 0.9rem;
    color: var(--n-500);
    margin-bottom: 28px;
}

/* QR Type Selector */
.qr-type-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.type-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--n-50);
    border: 1px solid var(--n-200);
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--n-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .type-btn i {
        font-size: 14px;
    }

    .type-btn:hover {
        background: var(--brand-blue-light);
        border-color: var(--brand-blue);
        color: var(--brand-blue);
    }

    .type-btn.active {
        background: var(--brand-blue);
        border-color: var(--brand-blue);
        color: #fff;
    }

/* Input Group */
.qr-input-group {
    margin-bottom: 28px;
}

.input-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--n-700);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    margin-bottom: 8px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--n-400);
    font-size: 16px;
    pointer-events: none;
}

.qr-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1px solid var(--n-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    background: var(--n-0);
}

    .qr-input:focus {
        outline: none;
        border-color: var(--brand-blue);
        box-shadow: 0 0 0 3px rgba(0,103,184,0.05);
    }

.input-hint {
    font-size: 0.75rem;
    color: var(--n-400);
}

/* Generate Button */
.btn-generate {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-generate:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,103,184,0.3);
    }

/* Example Suggestions */
.example-suggestions {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--n-200);
}

.suggestion-title {
    font-size: 0.8rem;
    color: var(--n-500);
    margin-bottom: 12px;
}

.suggestion-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-btn {
    padding: 6px 14px;
    background: var(--n-50);
    border: 1px solid var(--n-200);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--n-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .suggestion-btn:hover {
        background: var(--brand-blue-light);
        border-color: var(--brand-blue);
        color: var(--brand-blue);
    }

/* Result Section */
.qr-result-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.result-card {
    text-align: center;
}

.qr-image-container {
    background: var(--n-50);
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
}

.qr-image {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.qr-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
}

.btn-download,
.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-download {
    background: var(--brand-blue);
    color: #fff;
    border: none;
}

    .btn-download:hover {
        background: var(--brand-blue-dark);
        transform: translateY(-2px);
    }

.btn-copy {
    background: var(--n-50);
    border: 1px solid var(--n-200);
    color: var(--n-600);
}

    .btn-copy:hover {
        background: var(--brand-blue-light);
        border-color: var(--brand-blue);
        color: var(--brand-blue);
    }

.qr-note {
    font-size: 0.75rem;
    color: var(--n-400);
    margin-top: 16px;
}

/* Info Card */
.qr-info-card {
    background: var(--n-50);
    border: 1px solid var(--n-200);
    border-radius: 20px;
    padding: 24px;
}

    .qr-info-card h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--n-800);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .qr-info-card h3 i {
            color: var(--brand-blue);
        }

    .qr-info-card p {
        font-size: 0.9rem;
        color: var(--n-600);
        line-height: 1.6;
        margin-bottom: 16px;
    }

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .info-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        font-size: 0.85rem;
        color: var(--n-600);
    }

        .info-list li i {
            color: var(--brand-blue);
            font-size: 14px;
        }

/* Messages */
.message-hidden {
    display: none;
}

.message-success {
    display: block;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.message-error {
    display: block;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .qr-hero {
        padding: calc(var(--nav-h) + 40px) var(--sp-4) 40px;
    }

        .qr-hero h1 {
            font-size: 1.8rem;
        }

        .qr-hero p {
            font-size: 0.95rem;
        }

    .qr-card {
        padding: 24px;
    }

        .qr-card h2 {
            font-size: 1.3rem;
        }

    .type-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .qr-type-selector {
        gap: 8px;
    }

    .type-btn {
        flex: 1;
        justify-content: center;
    }

    .qr-actions {
        flex-direction: column;
    }

    .btn-download,
    .btn-copy {
        justify-content: center;
    }
}

/* QR Size Selector */
.qr-size-group {
    margin-bottom: 24px;
}

.qr-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--n-200);
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    background: var(--n-0);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .qr-select:focus {
        outline: none;
        border-color: var(--brand-blue);
        box-shadow: 0 0 0 3px rgba(0,103,184,0.05);
    }

/* ================================================================
   CUSTOMER SIGNUP PAGE - Professional & Non-Conflicting
   ================================================================ */

/* Signup Hero Section */
.signup-hero {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    padding: calc(var(--nav-h) + 60px) var(--sp-6) 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .signup-hero {
        padding: calc(var(--nav-h) + 40px) var(--sp-4) 40px;
    }
}

@media (max-width: 480px) {
    .signup-hero {
        padding: calc(var(--nav-h) + 30px) var(--sp-3) 30px;
    }
}

.signup-hero h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.signup-hero p {
    font-size: clamp(0.9rem, 3vw, 1rem);
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Signup Form Container */
.signup-form-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

@media (max-width: 768px) {
    .signup-form-container {
        padding: 40px 16px 60px;
    }
}

@media (max-width: 480px) {
    .signup-form-container {
        padding: 30px 12px 50px;
    }
}

/* Signup Card */
.signup-card {
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
    .signup-card {
        padding: 24px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .signup-card {
        padding: 20px;
        border-radius: 16px;
    }
}

.signup-card h2 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    font-weight: 700;
    color: var(--n-800);
    margin-bottom: 8px;
    text-align: center;
}

.signup-card-subtitle {
    text-align: center;
    color: var(--n-500);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--n-200);
    font-size: clamp(0.85rem, 3vw, 0.95rem);
}

/* Signup Form Row */
.signup-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .signup-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
}

/* Signup Form Group */
.signup-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .signup-form-group.full-width {
        grid-column: 1 / -1;
    }

    .signup-form-group label {
        font-size: 14px;
        font-weight: 600;
        color: var(--n-700);
        line-height: 1.4;
    }

@media (max-width: 480px) {
    .signup-form-group label {
        font-size: 13px;
    }
}

.signup-required {
    color: #dc3545;
    font-size: 14px;
}

.signup-optional {
    color: var(--n-400);
    font-size: 12px;
    font-weight: normal;
}

/* Signup Input Fields */
.signup-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--n-200);
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    background: var(--n-0);
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .signup-input {
        padding: 14px 16px;
        font-size: 16px;
    }
}

.signup-input:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 103, 184, 0.1);
}

/* Signup Select */
.signup-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--n-200);
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-body);
    background: var(--n-0);
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

    .signup-select:focus {
        outline: none;
        border-color: var(--brand-blue);
        box-shadow: 0 0 0 3px rgba(0, 103, 184, 0.1);
    }

/* Signup Textarea */
.signup-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--n-200);
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    background: var(--n-0);
    resize: vertical;
    min-height: 100px;
    box-sizing: border-box;
}

    .signup-textarea:focus {
        outline: none;
        border-color: var(--brand-blue);
        box-shadow: 0 0 0 3px rgba(0, 103, 184, 0.1);
    }

/* Signup Error Message */
.signup-error-msg {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    line-height: 1.4;
}

/* Signup Button */
.signup-btn {
    position: relative;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    .signup-btn {
        padding: 16px 24px;
        font-size: 16px;
        margin-top: 20px;
    }
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 103, 184, 0.3);
}

.signup-btn:active {
    transform: translateY(0);
}

/* Disabled button style */
.signup-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Signup Footer */
.signup-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--n-200);
    font-size: 14px;
    color: var(--n-500);
}

@media (max-width: 480px) {
    .signup-footer {
        font-size: 13px;
        margin-top: 20px;
        padding-top: 16px;
    }
}

.signup-footer a {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

    .signup-footer a:hover {
        text-decoration: underline;
    }

/* Signup Success/Error Messages */
.signup-message-hidden {
    display: none;
}

.signup-message-success {
    display: block;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.signup-message-error {
    display: block;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* iOS Fix */
@supports (-webkit-touch-callout: none) {
    .signup-input,
    .signup-select,
    .signup-textarea,
    .signup-btn {
        -webkit-appearance: none;
    }
}

/* Older Android Browsers */
@supports not (backdrop-filter: blur(12px)) {
    .signup-hero {
        background: var(--brand-blue);
    }
}

/* Print Styles */
@media print {
    .signup-hero {
        background: var(--brand-blue);
        padding: 20px;
    }

    .signup-btn,
    .signup-footer {
        display: none;
    }

    .signup-card {
        border: 1px solid #ddd;
        box-shadow: none;
    }
}

/* Loading Button Animation */
.signup-btn.loading {
    opacity: 0.7;
    color: transparent !important;
    cursor: not-allowed;
    pointer-events: none;
}

    .signup-btn.loading .btn-text {
        opacity: 0.7;
    }

    .signup-btn.loading::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: #fff;
        animation: spin 0.8s linear infinite;
    }

/* Spinner animation */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ================================================================
   EMPLOYEE SIGNUP PAGE - Professional & Cross-Platform
   ================================================================ */

.employee-hero {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    padding: calc(var(--nav-h) + 60px) var(--sp-6) 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .employee-hero {
        padding: calc(var(--nav-h) + 40px) var(--sp-4) 40px;
    }
}

@media (max-width: 480px) {
    .employee-hero {
        padding: calc(var(--nav-h) + 30px) var(--sp-3) 30px;
    }
}

.employee-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.employee-hero-content {
    position: relative;
    z-index: 1;
}

.employee-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #2e7d32;
    background: rgba(255,255,255,0.9);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.employee-hero h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.employee-hero p {
    font-size: clamp(0.9rem, 3vw, 1rem);
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Employee Form Container */
.employee-form-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

@media (max-width: 768px) {
    .employee-form-container {
        padding: 40px 16px 60px;
    }
}

/* Employee Card */
.employee-card {
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
    .employee-card {
        padding: 24px;
    }
}

.employee-card h2 {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    font-weight: 700;
    color: var(--n-800);
    margin-bottom: 8px;
    text-align: center;
}

.employee-card-subtitle {
    text-align: center;
    color: var(--n-500);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--n-200);
    font-size: clamp(0.85rem, 3vw, 0.95rem);
}

/* Form Rows */
.employee-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .employee-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Form Groups */
.employee-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .employee-form-group.full-width {
        grid-column: 1 / -1;
    }

    .employee-form-group label {
        font-size: 14px;
        font-weight: 600;
        color: var(--n-700);
    }

@media (max-width: 480px) {
    .employee-form-group label {
        font-size: 13px;
    }
}

.employee-required {
    color: #dc3545;
    font-size: 14px;
}

.employee-optional {
    color: var(--n-400);
    font-size: 12px;
    font-weight: normal;
}

/* Input Fields */
.employee-input,
.employee-textarea,
.employee-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--n-200);
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    background: var(--n-0);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .employee-input,
    .employee-textarea,
    .employee-select {
        padding: 14px 16px;
    }
}

.employee-input:focus,
.employee-textarea:focus,
.employee-select:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.employee-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Error Messages */
.employee-error-msg {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Register Button */
.employee-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .employee-btn {
        padding: 16px 24px;
    }
}

.employee-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.employee-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

/* Spinner */
.employee-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: employeeSpin 0.8s linear infinite;
}

@keyframes employeeSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Footer */
.employee-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--n-200);
    font-size: 14px;
    color: var(--n-500);
}

    .employee-footer a {
        color: #2e7d32;
        text-decoration: none;
        font-weight: 600;
    }

        .employee-footer a:hover {
            text-decoration: underline;
        }

/* Responsive */
@media (max-width: 480px) {
    .employee-card {
        padding: 20px;
    }

    .employee-footer {
        font-size: 13px;
    }
}

/* iOS Fix */
@supports (-webkit-touch-callout: none) {
    .employee-input,
    .employee-textarea,
    .employee-select,
    .employee-btn {
        -webkit-appearance: none;
    }
}

/* ================================================================
   LOGIN PAGE - Professional Modern Design
   ================================================================ */

.login-hero {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    padding: calc(var(--nav-h) + 60px) var(--sp-6) 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .login-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 70%);
    }

.login-hero-content {
    position: relative;
    z-index: 1;
}

.login-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-blue);
    background: rgba(255,255,255,0.9);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.login-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.login-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    margin: 0 auto;
}

/* Login Container */
.login-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}

@media (max-width: 968px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Login Card */
.login-card {
    background: var(--n-0);
    border: 1px solid var(--n-200);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

@media (max-width: 768px) {
    .login-card {
        padding: 28px;
    }
}

/* Login Tabs */
.login-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--n-200);
    padding-bottom: 16px;
}

.login-tab {
    background: none;
    border: none;
    padding: 8px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--n-500);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

    .login-tab.active {
        color: var(--brand-blue);
    }

        .login-tab.active::after {
            content: '';
            position: absolute;
            bottom: -17px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--brand-blue);
        }

    .login-tab:hover {
        color: var(--brand-blue);
    }

/* Login Panels */
.login-panel {
    display: none;
}

    .login-panel.active-panel {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .login-panel h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--n-800);
        margin-bottom: 8px;
    }

.login-subtitle {
    color: var(--n-500);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

/* Input Groups */
.login-input-group {
    margin-bottom: 24px;
}

    .login-input-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--n-700);
        margin-bottom: 8px;
    }

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--n-400);
    font-size: 16px;
}

.login-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1px solid var(--n-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.2s ease;
}

    .login-input:focus {
        outline: none;
        border-color: var(--brand-blue);
        box-shadow: 0 0 0 3px rgba(0,103,184,0.05);
    }

.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--n-400);
}

/* Login Options */

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--n-600);
}

    .checkbox-label input {
        width: 16px;
        height: 16px;
        cursor: pointer;
    }

.forgot-password {
    font-size: 0.85rem;
    color: var(--brand-blue);
    text-decoration: none;
}

    .forgot-password:hover {
        text-decoration: underline;
    }

/* Login Button */
.login-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,103,184,0.3);
    }

/* Info Card */
.login-info-card {
    background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--n-50) 100%);
    border: 1px solid var(--n-200);
    border-radius: 24px;
    padding: 32px;
    height: fit-content;
}

    .login-info-card h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--n-800);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .login-info-card h3 i {
            color: var(--brand-blue);
        }

    .login-info-card p {
        font-size: 0.9rem;
        color: var(--n-600);
        line-height: 1.6;
        margin-bottom: 20px;
    }

.login-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

    .login-info-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        font-size: 0.85rem;
        color: var(--n-600);
    }

        .login-info-list li i {
            color: var(--brand-blue);
            width: 18px;
        }

.login-help {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--n-200);
}

    .login-help a {
        color: var(--brand-blue);
        text-decoration: none;
        font-weight: 600;
    }

/* Forgot Password Form */
.forgot-password-container {
    animation: fadeIn 0.3s ease;
}

.forgot-header {
    margin-bottom: 28px;
}

.back-to-login {
    background: none;
    border: none;
    color: var(--brand-blue);
    cursor: pointer;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .back-to-login:hover {
        text-decoration: underline;
    }

.otp-timer {
    display: block;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--brand-blue);
}
    .otp-timer i {
        margin-right: 4px;
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .login-hero {
        padding: calc(var(--nav-h) + 40px) var(--sp-4) 40px;
    }

        .login-hero h1 {
            font-size: 1.8rem;
        }

    .login-container {
        padding: 40px 16px 60px;
    }

    .login-tab {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 20px;
    }

    .login-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}