/* ============================================================
   NEXUS AI — Styles
   Luxury AI Consultancy · Orange & Black
   ============================================================ */

:root {
    --orange: #FF6B00;
    --orange-light: #FF8A33;
    --orange-glow: rgba(255, 107, 0, 0.15);
    --orange-subtle: rgba(255, 107, 0, 0.06);
    --black: #0A0A0A;
    --black-card: #111111;
    --black-elevated: #161616;
    --black-border: #1E1E1E;
    --white: #F5F5F0;
    --gray-100: #E8E8E3;
    --gray-300: #A0A09A;
    --gray-500: #6B6B66;
    --gray-700: #3A3A37;
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--gray-300);
    line-height: 1.7;
    overflow-x: hidden;
}

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

.accent { color: var(--orange); }

/* ---- SELECTION ---- */
::selection {
    background: var(--orange);
    color: var(--black);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

#navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid var(--black-border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    color: var(--orange);
    font-size: 20px;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.logo-dot { color: var(--orange); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-300);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:not(.nav-cta):hover { color: var(--white); }

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: var(--orange);
    color: var(--black) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
    background: var(--orange-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.35s var(--ease-out);
}

.btn-primary {
    background: var(--orange);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--black-border);
}

.btn-ghost:hover {
    border-color: var(--gray-500);
    background: rgba(255, 255, 255, 0.03);
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border: 1px solid var(--orange);
}

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

/* ============================================================
   HERO
   ============================================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
    pointer-events: none;
    z-index: 1;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 138, 51, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: orbFloat2 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.05); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--black-border);
    background: rgba(255, 255, 255, 0.02);
    font-size: 13px;
    color: var(--gray-300);
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

#hero h1 {
    font-family: var(--font-display);
    font-size: clamp(72px, 12vw, 140px);
    line-height: 0.92;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 28px;
}

.hero-line {
    display: block;
    animation: heroReveal 1s var(--ease-out) both;
}

.hero-line-1 { animation-delay: 0.2s; }
.hero-line-2 { animation-delay: 0.4s; }

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

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

.hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto 40px;
    animation: fadeUp 0.8s var(--ease-out) 0.6s both;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    animation: fadeUp 0.8s var(--ease-out) 0.7s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    animation: fadeUp 0.8s var(--ease-out) 0.9s both;
}

.stat { text-align: center; }

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--black-border);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeUp 0.8s var(--ease-out) 1.2s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
section:not(#hero) {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-card) 50%, var(--black) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--black-elevated);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover {
    border-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.service-card.featured {
    border-color: rgba(255, 107, 0, 0.3);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.04) 0%, var(--black-elevated) 100%);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--orange);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--black-border);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.5s;
}

.service-card:hover .service-number {
    color: rgba(255, 107, 0, 0.15);
}

.service-icon {
    color: var(--orange);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.service-card > p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 13px;
    color: var(--gray-300);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-left: 16px;
    position: relative;
}

.service-features li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.service-price {
    font-size: 14px;
    color: var(--gray-500);
}

.service-price strong {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process-timeline {
    max-width: 640px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 0;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-marker span {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--orange);
    background: var(--black-card);
    transition: all 0.4s var(--ease-out);
}

.process-step:hover .step-marker span {
    border-color: var(--orange);
    background: rgba(255, 107, 0, 0.08);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.1);
}

.step-line {
    width: 1px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(to bottom, var(--black-border), transparent);
    margin-top: 8px;
}

.step-content {
    padding-bottom: 48px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.step-content p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-card) 50%, var(--black) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--black-elevated);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.5s var(--ease-out);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-featured {
    border-color: var(--orange);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.06) 0%, var(--black-elevated) 100%);
    transform: scale(1.03);
}

.pricing-featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 100px;
    background: var(--orange);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-tier {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.pricing-amount {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pricing-amount .currency {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--orange);
    font-weight: 700;
}

.pricing-amount .price {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
}

.pricing-range {
    font-size: 18px;
    color: var(--gray-500);
    font-weight: 400;
}

.pricing-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-300);
    padding: 8px 0;
}

.pricing-features .check {
    color: var(--orange);
    font-size: 14px;
    font-weight: 700;
}

.pricing-btn { width: 100%; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--black-elevated);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
    border-color: rgba(255, 107, 0, 0.2);
}

.testimonial-stars {
    color: var(--orange);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: var(--gray-100);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
}

.author-name {
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}

.author-role {
    font-size: 13px;
    color: var(--gray-500);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.test-arrow {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--black-border);
    background: var(--black-elevated);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.test-arrow:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.test-dots {
    display: flex;
    gap: 8px;
}

.test-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--black-border);
    transition: all 0.3s;
    cursor: pointer;
}

.test-dots .dot.active {
    background: var(--orange);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   BOOKING / CALENDAR
   ============================================================ */
#booking {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-card) 100%);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-info { padding-top: 20px; }

.booking-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--black-border);
}

.booking-icon { font-size: 24px; }

.booking-detail strong {
    display: block;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 2px;
}

.booking-detail span {
    font-size: 13px;
    color: var(--gray-500);
}

.booking-trust {
    margin-top: 40px;
    padding: 24px;
    border-radius: 12px;
    background: var(--orange-subtle);
    border-left: 3px solid var(--orange);
}

.booking-trust p {
    font-style: italic;
    color: var(--orange-light);
    font-size: 15px;
}

.booking-calendar {
    background: var(--black-elevated);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    padding: 32px;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cal-month {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.cal-nav {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--black-border);
    background: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cal-nav:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 12px;
}

.cal-weekdays span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    font-weight: 600;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    color: var(--gray-300);
    cursor: pointer;
    transition: all 0.25s;
    border: 1px solid transparent;
}

.cal-day:hover:not(.disabled):not(.empty) {
    border-color: var(--orange);
    color: var(--white);
    background: rgba(255, 107, 0, 0.08);
}

.cal-day.today {
    color: var(--orange);
    font-weight: 700;
}

.cal-day.selected {
    background: var(--orange);
    color: var(--black);
    font-weight: 700;
}

.cal-day.disabled {
    color: var(--gray-700);
    cursor: default;
    opacity: 0.3;
}

.cal-day.empty { cursor: default; }

/* Time slots */
.cal-times-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cal-back {
    background: none;
    border: none;
    color: var(--orange);
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
}

.cal-times-header span {
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}

.cal-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.cal-slot {
    padding: 12px;
    border: 1px solid var(--black-border);
    border-radius: 10px;
    background: none;
    color: var(--gray-300);
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s;
}

.cal-slot:hover {
    border-color: var(--orange);
    color: var(--white);
    background: rgba(255, 107, 0, 0.06);
}

.cal-slot.selected {
    background: var(--orange);
    color: var(--black);
    border-color: var(--orange);
    font-weight: 600;
}

/* Calendar confirm */
.cal-confirm h4, .cal-success h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 20px;
    margin-bottom: 16px;
}

.cal-summary {
    font-size: 14px;
    color: var(--orange-light);
    background: var(--orange-subtle);
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.cal-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--black-border);
    border-radius: 10px;
    background: var(--black-card);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.3s;
}

.cal-input:focus { border-color: var(--orange); }

.cal-submit { width: 100%; margin-top: 6px; }

.cal-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon, .success-check {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.cal-success p { font-size: 14px; color: var(--gray-500); }

/* ============================================================
   STRIPE MODAL
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    width: 100%;
    max-width: 440px;
    background: var(--black-elevated);
    border: 1px solid var(--black-border);
    border-radius: 24px;
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s var(--ease-spring);
    position: relative;
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--black-border);
    background: none;
    color: var(--gray-500);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 1;
}

.modal-close:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.modal-header {
    text-align: center;
    padding: 40px 32px 24px;
    border-bottom: 1px solid var(--black-border);
}

.modal-icon {
    color: var(--orange);
    font-size: 24px;
    margin-bottom: 12px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-amount {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
}

.modal-body { padding: 28px 32px; }

.modal-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--black-border);
    border-radius: 10px;
    background: var(--black-card);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.modal-input:focus { border-color: var(--orange); }

.stripe-element {
    padding: 14px 16px;
    border: 1px solid var(--black-border);
    border-radius: 10px;
    background: var(--black-card);
    margin-bottom: 14px;
    transition: border-color 0.3s;
    min-height: 48px;
}

.stripe-element.StripeElement--focus { border-color: var(--orange); }

.stripe-error {
    color: #EF4444;
    font-size: 13px;
    margin-bottom: 10px;
    min-height: 20px;
}

.modal-pay-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px 24px;
    color: var(--gray-500);
    font-size: 12px;
}

.modal-success {
    text-align: center;
    padding: 60px 32px;
}

.modal-success h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
}

.modal-success p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--black-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 16px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: var(--gray-500);
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--black-border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-700);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gray-500);
    font-size: 14px;
    transition: all 0.3s;
}

.footer-socials a:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-featured { grid-column: span 2; max-width: 420px; justify-self: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        font-size: 24px;
        font-family: var(--font-heading);
        font-weight: 600;
    }

    .nav-toggle { display: flex; z-index: 1001; }

    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero-actions { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .stat-divider { width: 40px; height: 1px; }

    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-featured { grid-column: span 1; max-width: 100%; }

    .booking-wrapper { grid-template-columns: 1fr; gap: 32px; }

    .testimonial-card { flex: 0 0 calc(100vw - 80px); }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
    #hero h1 { font-size: 56px; }
    .cal-slots { grid-template-columns: 1fr; }
}
