/* --- VARIABLES & CORE --- */
:root {
    --bg: #050608;
    --accent: #007aff;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* --- BACKGROUND DECOR --- */
.mesh-gradient {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 0% 0%, #001e4d 0%, transparent 45%),
                radial-gradient(circle at 100% 100%, #1a0033 0%, transparent 45%);
    z-index: -2; opacity: 0.6;
}

.noise-overlay {
    position: fixed; inset: 0;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04; z-index: -1; pointer-events: none;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed; 
    top: 0; 
    width: 100%;
    padding: 30px 5%;
    z-index: 2000;
}

@media (max-width: 768px) {
    .navbar { padding: 40px 5% 10px; } 
}

.nav-container {
    max-width: 1200px; margin: 0 auto;
    background: rgba(10, 12, 15, 0.4);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 12px 25px; border-radius: 100px;
    display: flex; justify-content: space-between; align-items: center;
}

.logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.5rem; text-decoration: none; color: #fff; }
.logo span { color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: 25px; }
.nav-link { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: 0.3s; }
.nav-link:hover { color: #fff; }

.nav-cta-btn {
    background: #fff; color: #000; padding: 10px 22px; border-radius: 50px;
    text-decoration: none; font-weight: 700; font-size: 0.85rem;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; 
    padding: 120px 8% 100px;
}

.hero-bg-wrapper { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-image { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 25%, transparent 100%); }

.hero-content { max-width: 800px; z-index: 10; }

h1 {
    font-family: 'Sora', sans-serif; font-size: clamp(2.8rem, 10vw, 5.5rem);
    line-height: 1.05; letter-spacing: -3px; margin-bottom: 1.5rem;
}

.gradient-text { background: linear-gradient(90deg, #fff, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.hero-subtext { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-dim); margin-bottom: 3rem; max-width: 600px; }

.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 4rem; }

.btn-primary {
    background: var(--accent); color: #fff; padding: 20px 40px; border-radius: 18px;
    text-decoration: none; font-weight: 700; box-shadow: 0 15px 35px rgba(0, 113, 255, 0.4); transition: 0.3s;
}

.btn-glass {
    background: var(--glass); border: 1px solid var(--glass-border); padding: 20px 40px;
    color: #fff; border-radius: 18px; text-decoration: none; font-weight: 700; backdrop-filter: blur(15px); transition: 0.3s;
}

.hero-stats { display: flex; gap: 40px; border-top: 1px solid var(--glass-border); padding-top: 30px; }
.stat-item b { display: block; font-size: 1.5rem; }
.stat-item span { font-size: 0.8rem; text-transform: uppercase; color: var(--text-dim); letter-spacing: 1px; }

/* --- GRID SYSTEM --- */
.section { padding: 160px 8% 140px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 80px; }
.section-header h2 { font-family: 'Sora', sans-serif; font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 15px; }

.process-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--glass); border: 1px solid var(--glass-border);
    padding: 60px 40px; border-radius: 35px; backdrop-filter: blur(20px);
    transition: 0.4s; position: relative;
}

.glass-card:hover { border-color: var(--accent); transform: translateY(-10px); }

.card-icon { font-size: 2.5rem; margin-bottom: 25px; display: block; }
.card-badge { position: absolute; top: 25px; right: 25px; background: var(--accent); font-size: 0.7rem; font-weight: 800; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; }

/* --- REVIEWS --- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; }
.review-card { padding: 50px; border-radius: 30px; background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); }
.stars { color: #ffcc00; margin-bottom: 20px; }
.review-card p { font-size: 1.1rem; color: #fff; font-style: italic; margin-bottom: 25px; }
.author { color: var(--accent); font-weight: 700; }

/* --- BOOKING (UPDATED FOR STATIC FEEL) --- */
.booking-glass {
    display: grid; 
    grid-template-columns: 1fr 1.5fr;
    background: var(--glass); 
    border: 1px solid var(--glass-border);
    border-radius: 40px; 
    overflow: hidden; 
    backdrop-filter: blur(20px);
    align-items: start; /* Prevents stretching */
}

.booking-info { padding: 80px; }
.booking-contact { margin-top: 40px; display: flex; flex-direction: column; gap: 30px; }
.c-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; color: var(--text-dim); }
.c-item a { font-size: 1.4rem; color: #fff; text-decoration: none; font-weight: 700; transition: 0.3s; }
.c-item a:hover { color: var(--accent); }

.booking-frame { 
    background: #fff; 
    height: 750px; /* Specific height to accommodate Calendly without scrolling */
    overflow: hidden;
}

.booking-frame iframe { 
    width: 100%; 
    height: 100%; 
    border: none;
}

/* --- FOOTER --- */
.footer { 
    padding: 120px 8% 100px;
    text-align: center; 
    border-top: 1px solid var(--glass-border); 
}
.footer p { color: var(--text-dim); font-size: 0.9rem; }

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .booking-glass { grid-template-columns: 1fr; }
    .booking-frame { height: 900px; } /* Slightly taller for mobile layout */
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero { padding-top: 160px; } 
    .hero-stats { flex-direction: column; gap: 25px; }
    .hero-actions a { width: 100%; text-align: center; }
    .reviews-grid { grid-template-columns: 1fr; }
    .section { padding: 120px 5% 100px; }
    .booking-info { padding: 50px 30px; }
}

/* --- ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s cubic-bezier(0.2, 1, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.badge-reveal { display: inline-flex; align-items: center; gap: 10px; background: var(--glass); padding: 8px 16px; border-radius: 100px; margin-bottom: 20px; border: 1px solid var(--glass-border); }
.status-dot { width: 8px; height: 8px; background: #00ff88; border-radius: 50%; box-shadow: 0 0 10px #00ff88; }