:root {
    /* Ultra Modern Dark Theme */
    --bg-dark: #0f172a; /* Slate 900 */
    --bg-darker: #020617; /* Slate 950 */
    --bg-card: rgba(30, 41, 59, 0.7); /* Slate 800 with opacity for glassmorphism */
    
    /* Vibrant Neon Accents */
    --neon-blue: #38bdf8; /* Sky 400 */
    --neon-blue-hover: #0ea5e9; /* Sky 500 */
    --neon-orange: #fb923c; /* Orange 400 */
    --neon-orange-hover: #f97316; /* Orange 500 */
    --neon-purple: #c084fc; /* Purple 400 */
    
    /* Text Colors */
    --text-primary: #f8fafc; /* Slate 50 */
    --text-secondary: #94a3b8; /* Slate 400 */
    --text-muted: #64748b; /* Slate 500 */
    
    /* Borders and Glass */
    --border-glass: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(16px);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-soft: 16px;
    --radius-pill: 9999px;
    --shadow-neon: 0 0 20px rgba(56, 189, 248, 0.3);
    --shadow-card: 0 10px 30px -10px rgba(0,0,0,0.5);
}

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

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

/* Background Gradients (Animated Orbs) */
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.bg-orbs::before, .bg-orbs::after {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s infinite alternate;
}
.bg-orbs::before {
    background: var(--neon-blue);
    top: -10%;
    left: -10%;
}
.bg-orbs::after {
    background: var(--neon-purple);
    bottom: -10%;
    right: -10%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.2); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
}

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

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-orange {
    background: linear-gradient(135deg, var(--neon-orange) 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Independent Disclaimer Banner */
.disclaimer-banner {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.disclaimer-banner .material-symbols-outlined {
    font-size: 18px;
    color: var(--neon-orange);
}

/* Header Glassmorphism */
.header {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-glass);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header-logo {
    height: 36px;
    margin-right: 12px;
}

.nav {
    display: flex;
    gap: 32px;
}
.nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s;
    font-size: 15px;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0%; height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s;
}
.nav a:hover {
    color: var(--text-primary);
}
.nav a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue) 0%, #2563eb 100%);
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.6);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    backdrop-filter: blur(4px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--neon-orange);
    color: var(--neon-orange);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 10px 24px;
}
.btn-outline:hover {
    background: rgba(56, 189, 248, 0.1);
    box-shadow: var(--shadow-neon);
}
.btn-full { width: 100%; }

/* Hero Section */
.hero {
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.badge-neon {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: var(--neon-blue);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    text-transform: uppercase;
}
.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero p {
    font-size: 22px;
    margin-bottom: 48px;
    max-width: 700px;
    color: var(--text-secondary);
}
.hero-actions {
    display: flex;
    gap: 20px;
}

/* Glass Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-soft);
    padding: 40px 32px;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Services Grid */
.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}
.services { padding: 100px 0; }
.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.service-img-wrapper {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 24px;
    position: relative;
    height: 200px;
}
.service-img-wrapper::after {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
    opacity: 0.8;
}
.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.glass-card:hover .service-image {
    transform: scale(1.1);
}
.service-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.service-desc {
    font-size: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    margin-top: auto;
}
.text-link:hover {
    color: var(--neon-blue-hover);
    gap: 10px; /* Micro interaction on hover */
}

/* Booking Form */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, transparent, var(--bg-darker));
}
.booking-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-soft);
}
.booking-wrapper::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(transparent, var(--neon-blue), transparent 30%);
    animation: rotate 4s linear infinite;
    z-index: -1;
    opacity: 0.1;
}
@keyframes rotate { 100% { transform: rotate(1turn); } }
.booking-inner {
    background: var(--bg-darker);
    border-radius: var(--radius-soft);
    padding: 48px;
    margin: 2px; /* border gradient illusion */
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}
.booking-inner h2 {
    font-size: 36px; margin-bottom: 16px; text-align: center;
}
.form-intro {
    text-align: center; margin-bottom: 40px; color: var(--text-secondary);
}
.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px;
}
.form-group {
    margin-bottom: 24px;
    text-align: left;
}
.form-group label {
    display: block; font-weight: 500; font-size: 14px; margin-bottom: 8px; color: var(--text-secondary);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--neon-blue);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 4px rgba(56,189,248,0.1);
}
.form-group option {
    background: var(--bg-darker);
    color: var(--text-primary);
}

/* Features Grid */
.features { padding: 100px 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item {
    text-align: center;
    padding: 32px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-soft);
    border: 1px solid var(--border-glass);
}
.icon-feature {
    font-size: 48px;
    color: var(--neon-orange);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(251, 146, 60, 0.4));
}
.feature-item p {
    font-size: 16px; font-weight: 600; color: var(--text-primary);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px;
}
.footer-links h3, .footer-contact h3 {
    font-size: 18px; margin-bottom: 24px; color: var(--text-primary);
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 16px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--neon-blue); }
.footer-contact p {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--text-secondary);
}
.footer-contact .material-symbols-outlined { color: var(--neon-orange); }
.footer-bottom {
    padding-top: 32px; border-top: 1px solid var(--border-glass); text-align: center; font-size: 14px; color: var(--text-muted);
}

/* Utilities */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* Mobile */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 48px; }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .hero h1 { font-size: 40px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .grid-4, .grid-auto { grid-template-columns: 1fr; }
    .call-header-btn { display: none; }
    .booking-inner { padding: 32px 24px; }
}
