:root {
    /* Bold Red, White, and Black Theme */
    --bg-main: #ffffff; /* White */
    --bg-secondary: #f8f9fa; /* Very light gray for contrast */
    --bg-dark: #121212; /* Black */
    --bg-card: #ffffff;
    
    /* Bold Red Accents */
    --brand-red: #d32f2f; /* Strong Red */
    --brand-red-hover: #b71c1c; /* Darker Red for hover */
    --brand-black: #000000;
    
    /* Text Colors */
    --text-primary: #121212; /* Black */
    --text-secondary: #424242; /* Dark Gray */
    --text-light: #ffffff; /* White text on dark/red backgrounds */
    
    /* Borders and Glass */
    --border-color: #e0e0e0;
    --glass-blur: blur(12px);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-soft: 8px; /* Sharper corners for a bolder look */
    --radius-pill: 9999px;
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-red: 0 4px 15px rgba(211, 47, 47, 0.3);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-main);
    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;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--brand-black);
    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 {
    color: var(--brand-red);
}
.text-gradient-orange {
    color: var(--brand-red);
}

/* Independent Disclaimer Banner */
.disclaimer-banner {
    background: var(--brand-black);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.disclaimer-banner .material-symbols-outlined {
    font-size: 18px;
    color: var(--brand-red);
}

/* Header Glassmorphism */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.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(--brand-black);
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo .material-symbols-outlined {
    color: var(--brand-red) !important;
}
.header-logo {
    height: 36px;
    margin-right: 12px;
}

.nav {
    display: flex;
    gap: 32px;
}
.nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    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(--brand-red);
    transition: width 0.3s;
}
.nav a:hover {
    color: var(--brand-red);
}
.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-soft);
    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: var(--brand-red);
    color: var(--text-light);
    box-shadow: var(--shadow-red);
}
.btn-primary:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.btn-secondary {
    background: var(--brand-black);
    border: 1px solid var(--brand-black);
    color: var(--text-light);
}
.btn-secondary:hover {
    background: #333333;
    border-color: #333333;
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--brand-red);
    color: var(--brand-red);
    padding: 10px 24px;
}
.btn-outline:hover {
    background: rgba(211, 47, 47, 0.1);
}
.btn-full { width: 100%; }

/* Hero Section */
.hero {
    padding: 140px 0 160px;
    text-align: center;
    position: relative;
    background-color: var(--bg-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(18,18,18,0.7) 100%);
    z-index: 0;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.badge-neon {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(211, 47, 47, 0.2);
    border: 1px solid rgba(211, 47, 47, 0.5);
    color: #ff5252;
    font-weight: 700;
    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;
    color: var(--text-light);
}
.hero p {
    font-size: 22px;
    margin-bottom: 48px;
    max-width: 700px;
    color: #e0e0e0;
}
.hero-actions {
    display: flex;
    gap: 20px;
}

/* Glass Cards */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-soft);
    padding: 40px 32px;
    box-shadow: var(--shadow-subtle);
    transition: all 0.4s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-red);
    box-shadow: var(--shadow-card);
}

/* Services Grid */
.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}
.services { padding: 100px 0; background-color: var(--bg-main); }
.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.service-img-wrapper {
    overflow: hidden;
    border-radius: 6px;
    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, rgba(0,0,0,0.5) 0%, transparent 100%);
    opacity: 0.2;
}
.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.glass-card:hover .service-image {
    transform: scale(1.05);
}
.service-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--brand-black);
}
.service-desc {
    font-size: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    margin-top: auto;
}
.text-link:hover {
    color: var(--brand-red-hover);
    gap: 10px;
}

/* Booking Form */
.booking-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}
.booking-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-card);
}
.booking-inner {
    background: var(--bg-card);
    border-top: 5px solid var(--brand-red);
    border-radius: var(--radius-soft);
    padding: 48px;
}
.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: 600; font-size: 14px; margin-bottom: 8px; color: var(--brand-black);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 16px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-soft);
    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(--brand-red);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}
.form-group option {
    background: #ffffff;
    color: var(--text-primary);
}

/* Features Grid */
.features { padding: 100px 0; background-color: var(--bg-main); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item {
    text-align: center;
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: var(--radius-soft);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--brand-red);
}
.icon-feature {
    font-size: 48px;
    color: var(--brand-red);
    margin-bottom: 20px;
}
.feature-item p {
    font-size: 16px; font-weight: 700; color: var(--brand-black);
}

/* Footer */
.footer {
    background: var(--brand-black);
    border-top: 5px solid var(--brand-red);
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px;
}
.footer-brand .logo {
    color: var(--text-light);
}
.footer-links h3, .footer-contact h3 {
    font-size: 18px; margin-bottom: 24px; color: var(--text-light);
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 16px; }
.footer-links a { color: #cccccc; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--brand-red); }
.footer-contact p {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: #cccccc;
}
.footer-contact .material-symbols-outlined { color: var(--brand-red); }
.footer-bottom {
    padding-top: 32px; border-top: 1px solid #333333; text-align: center; font-size: 14px; color: #999999;
}

/* 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; }
    .hero { padding: 100px 0 120px; }
    .services, .booking-section, .features, .policy-content { padding: 60px 0; }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .call-header-btn { padding: 10px 16px; font-size: 14px; }
    .call-header-btn .material-symbols-outlined { font-size: 18px; }
    .logo { font-size: 18px; }
    
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 18px; margin-bottom: 32px; }
    .hero { padding: 60px 0 80px; }
    
    .section-title { font-size: 32px; margin-bottom: 40px; }
    .booking-inner h2 { font-size: 28px; }
    
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .hero-actions .btn { width: 100%; }
    
    .form-row { grid-template-columns: 1fr; gap: 16px; }
    .grid-4, .grid-auto { grid-template-columns: 1fr; }
    
    .booking-inner { padding: 24px 16px; }
    
    .disclaimer-banner { font-size: 11px; padding: 10px 12px; flex-direction: column; text-align: center; gap: 4px; }
}
