/* Base Variables */
:root {
    --color-bg: #0A0A0A;
    --color-surface: #111111;
    --color-text: #F3F4F6;
    --color-text-muted: #9CA3AF;
    
    --color-primary: #BFEAC5; /* Light Green */
    --color-secondary: #A0C4FF; /* Light Blue */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-glow: linear-gradient(135deg, rgba(191, 234, 197, 0.4), rgba(160, 196, 255, 0.4));
    
    /* Typography */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img, svg {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography Utilities */
h1, h2, h3, h4, .logo-text {
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.gradient-text-small {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

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

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #0A0A0A;
    font-weight: bold;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(160, 196, 255, 0.3);
}

.btn-small {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
}

.btn-large {
    font-size: 1.5rem;
    padding: 1rem 3rem;
}

.glow-btn {
    position: relative;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: var(--gradient-primary);
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 6px;
}

.glow-btn:hover::after {
    opacity: 0.7;
}

/* Glassmorphism */
.glass {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--color-text);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-text);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 4rem;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(160, 196, 255, 0.15) 0%, rgba(10, 10, 10, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* VSL Player */
.vsl-wrapper {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.vsl-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.box-glow {
    position: relative;
}

.box-glow::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: var(--gradient-primary);
    z-index: -1;
    border-radius: 13px;
    opacity: 0.3;
}

.vsl-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom right, #1a1a1a, #0d0d0d);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.vsl-container:hover .vsl-placeholder {
    background: linear-gradient(to bottom right, #222, #111);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #0A0A0A;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.play-button svg {
    margin-left: 5px; /* Visual center for play icon */
}

.vsl-container:hover .play-button {
    transform: scale(1.1);
}

.pulse-anim {
    box-shadow: 0 0 0 0 rgba(160, 196, 255, 0.7);
    animation: pulse 2s infinite;
}

.vsl-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--color-text);
}

/* Testimonials */
.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #0A0A0A;
}

.avatar-1 { background: #BFEAC5; }
.avatar-2 { background: #A0C4FF; }
.avatar-3 { background: linear-gradient(135deg, #BFEAC5, #A0C4FF); }

.client-name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
}

.client-result {
    font-size: 0.9rem;
}

.testimonial-quote {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.rating {
    color: #FBBF24; /* Gold */
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Booking Section */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
}

.booking-text {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.calendly-placeholder {
    width: 100%;
    background: #151515;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
}

.calendly-mock-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.mock-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #BFEAC5;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    text-align: center;
}

.cal-day {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
}

.cal-date {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 0.9rem;
    color: #666;
}

.cal-date.available {
    color: #fff;
    background: rgba(160, 196, 255, 0.1);
    cursor: pointer;
    font-weight: bold;
}

.cal-date.available:hover {
    background: var(--gradient-primary);
    color: #000;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 0 2rem;
    background: #050505;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    color: #666;
    font-size: 0.85rem;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(160, 196, 255, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(160, 196, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(160, 196, 255, 0); }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

/* Scroll Animation Classes */
.scroll-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 992px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none; /* simple mobile nav hide for demo */
    }
    
    .hero {
        padding-top: 8rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section {
        padding: 4rem 0;
    }
}
