:root {
    --primary-color: #1a5baf;
    --primary-dark: #12407a;
    --dark-bg: #858585;
    --dark-card: #f0f2f5;
    --white: #ffffff;
    --text-main: #111111;
    --text-muted: #555555;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
}

.text-accent {
    color: var(--primary-color);
}

/* Typography */
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; }

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 91, 175, 0.4);
}

.btn-secondary {
    background-color: rgba(0, 0, 0, 0.08);
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

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

.nav-word-logo {
    height: 60px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    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-color);
}

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

.nav-phone {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

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

/* =====================
   HERO
   ===================== */
.hero {
    padding: 110px 2rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    color: #ffffff;
}

.hero-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero buttons need to contrast on the grey background */
.hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.35);
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
}

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
}

.badge-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-monkey-mascot {
    position: absolute;
    bottom: 20px;
    right: -20px;
    width: 180px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.4));
    animation: float 5s ease-in-out infinite alternate;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* =====================
   SECTIONS GENERAL
   ===================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================
   SERVICES
   ===================== */
.services {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(26, 91, 175, 0.3);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =====================
   HOW IT WORKS
   ===================== */
.how-it-works {
    background: var(--primary-color);
    padding: 5rem 2rem;
    color: #ffffff;
}

.how-it-works .section-header h2 {
    color: #ffffff;
}

.how-it-works .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.step {
    text-align: center;
    flex: 1;
    padding: 0 1.5rem;
}

.step h3 { color: #ffffff; }
.step p { color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; }

.step-number {
    width: 56px;
    height: 56px;
    background: #ffffff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    font-family: 'Outfit', sans-serif;
}

.step-divider {
    flex: 0 0 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    margin-top: 28px;
}

/* =====================
   BOOKING WIZARD / CTA
   ===================== */
.cta-section {
    padding: 5rem 2rem;
    max-width: 680px;
    margin: 0 auto;
}

.cta-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Wizard progress bar */
.wizard-progress {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid rgba(0,0,0,0.08);
    padding-bottom: 1.25rem;
}

.progress-step {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 0 1.25rem;
    border-right: 1px solid rgba(0,0,0,0.12);
}

.progress-step:last-child {
    border-right: none;
}

.progress-step.active {
    color: var(--primary-color);
}

/* Wizard pages */
.wizard-page {
    display: none;
    animation: fadeIn 0.35s ease-out;
}

.wizard-page.active {
    display: block;
}

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

.wizard-page h2 { margin-bottom: 0.4rem; }
.wizard-page > p { color: var(--text-muted); margin-bottom: 1.75rem; font-size: 0.95rem; }

/* Detail selects (step 2) */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: left;
    max-width: 460px;
    margin: 0 auto 0;
}

.detail-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.wizard-select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--dark-card);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    cursor: pointer;
}

.wizard-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Step 3 result */
.price-range {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    margin: 1.25rem 0;
}

.range-disclaimer {
    font-size: 0.88rem;
    color: var(--text-muted);
    background: rgba(26, 91, 175, 0.05);
    border: 1px solid rgba(26, 91, 175, 0.12);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.summary-box {
    text-align: left;
    background: var(--dark-card);
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.summary-box p {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

/* Form inputs */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

input[type="text"],
input[type="tel"] {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--dark-card);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

input::placeholder { color: #999; }

/* =====================
   CALENDAR (compact)
   ===================== */
.calendar-container {
    background: var(--dark-card);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.calendar-header h3 {
    font-size: 1rem;
    margin: 0;
}

.cal-btn {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-main);
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.cal-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 0.4rem;
}

.day-name {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    padding: 0.25rem 0;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.82rem;
    transition: var(--transition);
    cursor: default;
    color: var(--text-muted);
}

.cal-day.empty { visibility: hidden; }

.cal-day.disabled {
    color: rgba(0,0,0,0.2);
    cursor: not-allowed;
}

.cal-day.available {
    background: rgba(26, 91, 175, 0.08);
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    border: 1px solid rgba(26, 91, 175, 0.2);
}

.cal-day.available:hover {
    background: rgba(26, 91, 175, 0.2);
}

.cal-day.selected {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
}

/* Admin calendar states */
.cal-day.blocked-admin {
    background: rgba(0,0,0,0.04);
    color: var(--text-muted);
    cursor: pointer;
}

.cal-day.blocked-admin:hover {
    background: rgba(0,0,0,0.08);
}

.cal-day.available-admin {
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.cal-day.available-admin:hover {
    background: var(--primary-dark);
}

.selected-date-text {
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* =====================
   SEO LANDING PAGES
   ===================== */
.seo-hero { 
    padding: 160px 2rem 6rem; 
    text-align: center; 
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0.9), var(--dark-bg)), url('hero-bg.png') no-repeat center center/cover; 
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: #111111;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: #aaaaaa;
    max-width: 300px;
    font-size: 0.9rem;
}

.footer h4 {
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-contact p {
    color: #aaaaaa;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: #777777;
    font-size: 0.875rem;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-text p { margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    .hero-monkey-mascot { width: 100px; right: 5px; top: -10px; }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-phone { display: none; }

    .steps-container {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    .step-divider { display: none; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row { flex-direction: column; }

    .cta-card { padding: 1.75rem; }

    .wizard-progress {
        gap: 0;
        font-size: 0.78rem;
    }

    .progress-step { padding: 0 0.75rem; }
}
