/* ==========================================================================
   ASTROLOGY CONSULTATION - PREMIUM LUXURY DESIGN SYSTEM
   Theme: Midnight Navy, Royal Violet, Warm Gold & Celestial White
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

/* CSS Variables */
:root {
    /* Color Palette */
    --bg-dark: #070913;
    --bg-navy: #0b0e1f;
    --bg-violet: #151028;
    --bg-card: rgba(18, 22, 45, 0.7);
    --bg-card-hover: rgba(28, 34, 66, 0.85);
    
    /* Gold Accents */
    --gold-primary: #d4af37;
    --gold-light: #f5e49c;
    --gold-dark: #aa851d;
    --gold-gradient: linear-gradient(135deg, #f5e49c 0%, #d4af37 50%, #aa851d 100%);
    --gold-glow: 0 0 25px rgba(212, 175, 55, 0.25);
    
    /* Text Colors */
    --text-main: #f9f8f5;
    --text-muted: #a6adce;
    --text-gold: #e5c158;
    
    /* Borders & Glass Effect */
    --border-gold: rgba(212, 175, 55, 0.25);
    --border-light: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(15, 18, 38, 0.65);
    --glass-border: rgba(212, 175, 55, 0.2);
    
    /* Typography */
    --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-serif-sub: 'Cormorant Garamond', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Radius & Shadow */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Header Height */
    --header-height: 80px;
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Starfield Canvas Background */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Typography Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { color: var(--text-muted); font-size: 1rem; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--gold-light);
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
}

/* Badges & Accents */
.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.badge-gold svg {
    width: 16px;
    height: 16px;
    fill: var(--gold-primary);
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-header p {
    font-size: 1.1rem;
    margin-top: 0.75rem;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    border: none;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #080a14;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: #000;
}

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

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.btn-phone:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================================
   1. STICKY HEADER
   ========================================================================== */
/* Top Announcement Bar */
.top-bar {
    background: rgba(11, 14, 31, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 0.4rem 0;
    position: relative;
    z-index: 1001;
    height: 36px;
    display: flex;
    align-items: center;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.top-bar-sparkle {
    color: var(--gold-primary);
    margin-right: 0.3rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-link {
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition-fast);
    font-weight: 500;
}

.top-bar-link svg {
    width: 14px;
    height: 14px;
    fill: var(--gold-primary);
}

.top-bar-link:hover {
    color: var(--gold-light);
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .top-bar { display: none; }
}

/* ==========================================================================
   1. STICKY LUXURY FULL-WIDTH HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    height: 75px;
    z-index: 1000;
    transition: all 0.35s ease;
    background: rgba(7, 9, 19, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

@media (max-width: 768px) {
    .site-header { top: 0; }
}

.site-header.scrolled {
    top: 0;
    background: rgba(7, 9, 19, 0.96);
    border-bottom: 1px solid var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon-glow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-glow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.35;
    animation: logoPulse 3s infinite ease-in-out;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(0.95); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0.6; }
}

.logo-icon {
    position: relative;
    width: 38px;
    height: 38px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    fill: #070913;
}

.logo-text {
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 0.58rem;
    font-family: var(--font-body);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-top: 2px;
    font-weight: 600;
}

/* Navigation Items */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    color: var(--text-main);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.12);
}

.nav-link.active {
    color: #070913;
    background: var(--gold-gradient);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35);
}

/* Button Shine Effect */
.btn-gold-shine {
    position: relative;
    overflow: hidden;
}

.btn-gold-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 80%
    );
    transform: rotate(30deg);
    animation: btnShine 4s infinite ease-in-out;
}

@keyframes btnShine {
    0% { transform: translateX(-100%) rotate(30deg); }
    30%, 100% { transform: translateX(100%) rotate(30deg); }
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.header-quick-call {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.header-quick-call svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-light);
}

.header-quick-call:hover {
    background: var(--gold-primary);
}

.header-quick-call:hover svg {
    fill: #070913;
}

/* Mobile Drawer Header & Actions */
.mobile-drawer-header, .mobile-drawer-actions {
    display: none;
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.drawer-close:hover {
    color: var(--gold-primary);
}

/* Mobile Responsive Drawer Styling */
@media (max-width: 991px) {
    .hamburger { display: block; }
    .header-quick-call { display: none; }

    .mobile-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-light);
    }

    .mobile-drawer-actions {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-light);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: rgba(9, 12, 28, 0.98);
        backdrop-filter: blur(25px);
        border-left: 1px solid var(--border-gold);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem 1.75rem;
        gap: 0.6rem;
        transition: var(--transition-normal);
        z-index: 9999;
        box-shadow: -15px 0 50px rgba(0, 0, 0, 0.9);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }
    
    .header-cta .btn {
        display: none;
    }
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 155px;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, rgba(33, 21, 59, 0.6) 0%, rgba(7, 9, 19, 0.95) 70%);
}

@media (max-width: 768px) {
    .hero {
        padding-top: 110px;
    }
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-primary);
}

/* Celestial Zodiac Wheel Artwork Graphic */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zodiac-wheel-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
}

.zodiac-wheel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: spinSlow 90s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--bg-violet) 0%, var(--bg-navy) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.3);
}

.hero-center-badge svg {
    width: 40px;
    height: 40px;
    fill: var(--gold-light);
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons, .hero-trust-list {
        justify-content: center;
    }
    .zodiac-wheel-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   3. TRUST / STATISTICS SECTION
   ========================================================================== */
.stats-section {
    background: linear-gradient(180deg, var(--bg-navy) 0%, var(--bg-violet) 100%);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    position: relative;
    padding: 1rem;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-gold);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .stat-card:nth-child(2)::after {
        display: none;
    }
}

/* ==========================================================================
   4. ABOUT ASTROLOGER
   ========================================================================== */
.about-section {
    position: relative;
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 12px;
    background: linear-gradient(135deg, rgba(212,175,55,0.4) 0%, rgba(255,255,255,0.05) 100%);
    box-shadow: var(--shadow-gold);
}

.about-img-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--radius-lg) - 8px);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-navy);
    border: 2px solid var(--gold-primary);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.about-experience-badge .text {
    font-size: 0.85rem;
    line-height: 1.2;
    color: var(--text-main);
}

.about-content h2 {
    margin-bottom: 1.25rem;
}

.about-points {
    list-style: none;
    margin: 1.75rem 0 2.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-main);
    font-size: 0.98rem;
}

.about-points li svg {
    width: 20px;
    height: 20px;
    fill: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-experience-badge {
        right: 10px;
        bottom: -15px;
    }
}

/* ==========================================================================
   5. ASTROLOGY SERVICES
   ========================================================================== */
.services-section {
    background: var(--bg-navy);
    position: relative;
}

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

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

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

.service-icon {
    width: 54px;
    height: 54px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--gold-gradient);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold-primary);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon svg {
    fill: #070913;
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-top: auto;
}

.service-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: var(--transition-fast);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

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

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

/* ==========================================================================
   6. WHY CHOOSE US
   ========================================================================== */
.why-section {
    background: var(--bg-violet);
    position: relative;
}

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

.why-card {
    background: rgba(11, 14, 31, 0.6);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.75rem;
    text-align: center;
    transition: var(--transition-normal);
}

.why-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem auto;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold-primary);
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.why-card p {
    font-size: 0.92rem;
}

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

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

/* ==========================================================================
   7. HOW IT WORKS
   ========================================================================== */
.process-section {
    background: var(--bg-dark);
}

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

.process-step {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    z-index: 1;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.88rem;
}

.process-cta-wrap {
    text-align: center;
    margin-top: 3.5rem;
}

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

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

/* ==========================================================================
   8. CONSULTATION CTA BANNER
   ========================================================================== */
.cta-banner {
    background: linear-gradient(135deg, #181133 0%, #0c0f24 100%);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================================================
   9. TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    background: var(--bg-navy);
}

.testimonial-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem 0 3rem 0;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.4s ease-in-out;
}

.testimonial-card {
    min-width: calc(50% - 1rem);
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #070913;
    font-weight: 700;
    font-size: 1.1rem;
}

.client-details h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.client-details span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--gold-primary);
    color: #070913;
    border-color: var(--gold-primary);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--gold-primary);
    width: 24px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
    }
}

/* ==========================================================================
   10. FAQ ACCORDION
   ========================================================================== */
.faq-section {
    background: var(--bg-dark);
}

.faq-accordion {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--border-gold);
    background: rgba(21, 26, 54, 0.8);
}

.faq-header {
    width: 100%;
    padding: 1.35rem 1.75rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.75rem;
}

.faq-item.active .faq-body {
    max-height: 500px;
    transition: max-height 0.35s ease-in-out;
    padding: 0 1.75rem 1.5rem 1.75rem;
}

/* ==========================================================================
   11. LEAD GENERATION SECTION (FORM)
   ========================================================================== */
.form-section {
    background: linear-gradient(180deg, var(--bg-navy) 0%, var(--bg-violet) 100%);
    position: relative;
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(11, 14, 31, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

select.form-control option {
    background: var(--bg-navy);
    color: var(--text-main);
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.form-submit-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1.1rem;
    font-size: 1.05rem;
}

.form-alert {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    display: none;
    font-size: 0.95rem;
}

.form-alert.success {
    display: block;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid #25D366;
    color: #25D366;
}

.form-alert.error {
    display: block;
    background: rgba(235, 87, 87, 0.15);
    border: 1px solid #EB5757;
    color: #EB5757;
}

@media (max-width: 768px) {
    .lead-form { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .form-wrapper { padding: 2rem 1.25rem; }
}

/* ==========================================================================
   12. CONTACT SECTION
   ========================================================================== */
.contact-section {
    background: var(--bg-dark);
}

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

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.5rem;
    text-align: center;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    margin: 0 auto 1.25rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--gold-primary);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

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

/* ==========================================================================
   13. FINAL CTA
   ========================================================================== */
.final-cta {
    background: radial-gradient(circle at center, rgba(33, 21, 59, 0.8) 0%, rgba(7, 9, 19, 1) 100%);
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   14. FOOTER & LEGAL MODALS
   ========================================================================== */
.site-footer {
    background: #04050d;
    border-top: 1px solid var(--border-gold);
    padding-top: 4rem;
    padding-bottom: 6rem; /* Extra space for sticky mobile nav */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.92rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

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

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   FIXED MOBILE BOTTOM CONVERSION NAV BAR
   ========================================================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 9, 19, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-gold);
    z-index: 9999;
    padding: 0.6rem 0.5rem;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.8);
}

.mobile-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.mobile-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.55rem 0.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}

.mobile-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-btn-call {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid var(--border-light);
}

.mobile-btn-wa {
    background: #25D366;
    color: #fff;
}

.mobile-btn-book {
    background: var(--gold-gradient);
    color: #070913;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
}
