/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
    --bg-dark: #0a1128; /* Deep rich navy */
    --primary: #00F0B5; /* Vibrant green from logo */
    --secondary: #0081C9; /* Blue from logo */
    --text-main: #f0f4f8;
    --text-muted: #a0aec0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --input-bg: rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Mesh Background for Depth */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, rgba(0, 129, 201, 0.15) 0%, var(--bg-dark) 80%);
}

/* ==========================================================================
   2. TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

.text-center { text-align: center; }
.max-w-lg { max-width: 600px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.hidden { display: none !important; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* ==========================================================================
   3. BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    box-shadow: 0 10px 25px -5px rgba(0, 240, 181, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 240, 181, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

.btn-large { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

.nav-book {
    padding: 0.5rem 1.25rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-submit-icon {
    opacity: 0.8;
}

/* ==========================================================================
   4. NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    transition: background 0.3s ease, border-bottom 0.3s ease;
}

.navbar.glass {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    display: block;
    height: auto;
    max-height: 66px;
    width: auto;
    max-width: min(320px, 82vw);
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================================================
   6. SERVICES & PRICING
   ========================================================================== */
.services-grid, .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (min-width: 1024px) {
    .pricing-grid-three { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
    padding: 2.5rem 1.5rem;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 181, 0.3);
    box-shadow: 0 10px 30px rgba(0, 129, 201, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-card h3 { margin-bottom: 1rem; font-size: 1.3rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }

.pricing-card {
    padding: 3rem 2rem;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 240, 181, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.price { font-size: 2.8rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--text-main); }
.price span { display: none; }

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-footnote {
    margin-top: 2.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ==========================================================================
   7. BOOKING FORM
   ========================================================================== */
.booking-wrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    gap: 0;
}

@media (min-width: 992px) {
    .booking-wrapper { flex-direction: row; }
    .booking-info {
        width: 40%;
        border-right: 1px solid var(--glass-border);
        border-bottom: none;
    }
    .booking-form-container { width: 60%; }
}

.booking-info {
    padding: 2rem 3.5rem 3.5rem 3.5rem;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--glass-border);
}

@media (min-width: 992px) {
    .booking-info {
        width: 40%;
        border-bottom: none;
        border-right: 1px solid var(--glass-border);
    }
}

.booking-form-container {
    padding: 3rem;
}

.booking-logo {
    display: block;
    width: 140px;
    height: auto;
    align-self: center;
    margin: 0 0 1rem 0;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.booking-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.booking-lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.booking-lead span {
    display: block;
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.95rem;
}

.booking-cal-cta {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.booking-cal-cta p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.booking-cal-cta .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.booking-service-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.icon-circle {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 181, 0.06);
    border: 1px solid rgba(0, 240, 181, 0.15);
    border-radius: 14px;
    color: var(--primary);
    font-size: 1.4rem;
    transition: var(--transition);
}

.icon-circle:hover {
    background: rgba(0, 240, 181, 0.1);
    transform: translateY(-3px);
}

.booking-highlights {
    list-style: none;
    margin-top: auto;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.booking-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #e2e8f0;
}

.highlight-check {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(0, 240, 181, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 240, 181, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .booking-form-grid { grid-template-columns: 1fr 1fr; }
    .col-span-2 { grid-column: span 2; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.label-optional {
    opacity: 0.6;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--input-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-input--with-map-icon {
    padding-right: 2.5rem;
}

.form-input::placeholder { color: rgba(160, 174, 192, 0.5); }

.form-input:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 240, 181, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(160, 174, 192, 0.8)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.2rem;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: var(--input-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-select:focus {
    background-color: rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 240, 181, 0.1);
}

/* Pill Style Radio Buttons */
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.radio-label {
    position: relative;
    cursor: pointer;
    text-align: center;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-label span {
    display: block;
    padding: 0.75rem 1rem;
    background: var(--input-bg);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--text-muted);
}

.radio-label input:checked + span {
    background: rgba(0, 240, 181, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 240, 181, 0.15);
}

.radio-label:hover span {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.map-icon {
    position: absolute;
    right: 1rem;
    top: 2.6rem;
    color: var(--primary);
    opacity: 0.7;
    pointer-events: none;
}

.field-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.booking-submit-wrap {
    margin-top: 1rem;
    width: 100%;
}

.booking-form .btn-primary {
    width: 100% !important;
    display: flex;
}

.form-feedback {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.form-feedback-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.form-feedback-icon--lg {
    font-size: 1.5rem;
}

.form-success {
    background: rgba(0, 240, 181, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 240, 181, 0.3);
}

.form-success .feedback-text p:first-child {
    color: white;
    font-weight: 700;
}
.form-success .feedback-text p:last-child {
    color: var(--text-muted);
}

.form-error {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.pac-container {
    z-index: 10050;
}

/* Sub-options animation */
.sub-options-group {
    animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   8. ABOUT & FOOTER
   ========================================================================== */
.about {
    background: rgba(0, 129, 201, 0.05);
}

.footer {
    background: #050a17;
    padding-top: 4rem;
}

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

.footer-logo {
    display: block;
    height: auto;
    max-height: 120px;
    width: auto;
    max-width: 220px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }
.footer h4 { margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.footer ul a, .footer ul li {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer ul a:hover { color: var(--primary); }
.footer ul li i { width: 20px; color: var(--primary); }

.footer-contact-row { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact-row a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-contact-row a:hover { color: var(--primary); }

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass-bg);
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   9. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
    .booking-wrapper { padding: 0; }
    .booking-info, .booking-form-container { padding: 2rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-cta { flex-direction: column; }
    .nav-links { display: none; }
    .hamburger { display: block; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .nav-logo {
        max-height: 60px;
        max-width: min(280px, 85vw);
    }
}
