/* ==========
   GLOBAL THEME
   ========== */
:root {
    --blue-main: #27D3F5;
    --red-main: #EE6754;
    --yellow-main: #F9DE53;
    --bg-main: #f5f9ff;
    --bg-soft: #ffffff;
    --bg-accent: #e8f8ff;
    --text-main: #182233;
    --text-muted: #5b6475;
    --border-soft: #dde3f0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========
   LAYOUT HELPERS
   ========== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 5px 0;
}

.section-heading {
    margin-bottom: 8px;
    font-size: 2rem;
}

.section-subtitle {
    margin-bottom: 32px;
    color: var(--text-muted);
    max-width: 640px;
}

main {
    padding-top: 1px;

    /* space for fixed header */
}

/* ==========
   HEADER / NAV
   ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
    z-index: 999;
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, var(--yellow-main), var(--blue-main));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #012030;
    font-weight: 800;
}

/* desktop nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-links a {
    font-size: 0.95rem;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--text-muted);
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #000;
    background: var(--blue-main);
}

.nav-links a.active {
    background: var(--yellow-main);
    color: #000;
}

/* hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 24px;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 3px;
    border-radius: 999px;
    background: #0f1728;
    transition: 0.25s;
}

/* mobile menu panel */
.mobile-nav {
    display: none;
}

/* mobile layouts */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid var(--border-soft);
        display: none;
        z-index: 998;
    }

    .mobile-nav.open {
        display: block;
    }

    .mobile-nav ul {
        list-style: none;
        margin: 0;
        padding: 8px 16px 16px;
    }

    .mobile-nav li {
        margin: 4px 0;
    }

    .mobile-nav a {
        display: block;
        padding: 8px 10px;
        border-radius: 6px;
        color: var(--text-main);
    }

    .mobile-nav a:hover {
        background: var(--bg-accent);
        color: #000;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ==========
   HERO
   ========== */
.hero {
    background: radial-gradient(circle at top left, rgba(39, 211, 245, 0.3), transparent 55%),
        radial-gradient(circle at bottom right, rgba(249, 222, 83, 0.3), transparent 55%),
        #e8f6ff;
    padding: 64px 0 56px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.hero-title {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.hero-tagline {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-soft);
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.btn-primary {
    background: var(--red-main);
    color: #fff;
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border-radius: 999px;
    padding: 9px 18px;
    border: 1px solid var(--blue-main);
    font-weight: 500;
    cursor: pointer;
    font-size: 0.95rem;
}

.hero-image {
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    background: #d2ecff;
}

/* hero responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ==========
   CARDS / GRIDS
   ========== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.card {
    background: var(--bg-soft);
    border-radius: 14px;
    padding: 18px 18px 20px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-soft);
    font-size: 0.95rem;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

//* BOOK STRIP */
.book-strip {
    background: #101622;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* inner layout */
.book-strip-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;

    /* was 38px */
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;

    /* a bit more breathing room */
    font-size: 0.9rem;
}

/* buttons / text (keep as you had, shown here for clarity) */
.book-strip span {
    color: var(--text-muted);
}

.book-strip-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.book-strip-cta a {
    border-radius: 999px;
    padding: 7px 14px;
    font-weight: 600;
    font-size: 0.85rem;
}

.book-now {
    background: var(--red-main);
    color: #000;
}

.call-now {
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* MOBILE: push strip down so it clears the fixed header */
@media (max-width: 768px) {
    /* only needed on pages where the strip is the very first element */
    .book-strip {
        margin-top: 72px;

        /* match your fixed header height */
    }

    .book-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.book-strip-cta a {
    border-radius: 999px;
    padding: 7px 14px;
    font-weight: 600;
    font-size: 0.85rem;
}

.book-now {
    background: var(--yellow-main);
    color: #000;
}

.call-now {
    border: 1px solid var(--blue-main);
    color: var(--blue-main);
}

/* ==========
   FOOTER
   ========== */
.site-footer {
    background: #ffffff;
    padding: 24px 0 32px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-soft);
}

.site-footer .footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

/* ==========
   FORMS
   ========== */
.form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

form .form-field {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

form label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

form input,
form textarea {
    border-radius: 8px;
    border: 1px solid var(--border-soft);
    padding: 8px 10px;
    font-family: inherit;
    font-size: 0.95rem;
}

form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========
   MAP BLOCK
   ========== */
.map-block {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    background: #fff;
    height: 320px;
}

.map-block iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-strip {
    background: linear-gradient(
        135deg,
        #27D3F5 0%,
        #F9DE53 50%,
        #EE6754 100%
    );
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 40px auto;
    color: #000;
}

.location-strip h2 {
    font-size: 1.9rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.location-strip p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
    font-weight: 500;
}

.location-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    background: #ffffff;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.2s ease;
}

.location-btn:hover {
    background: #000;
    color: #fff;
}

.location-strip {
    background: linear-gradient(135deg, #27D3F5, #F9DE53);
    padding: 40px 0;
    color: #000;
    text-align: center;
}

.location-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1100px;
    margin: auto;
    padding: 0 16px;
}

.location-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 24px;
    width: 240px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.location-item .icon {
    font-size: 42px;
    margin-bottom: 8px;
}

.location-item h3 {
    margin: 6px 0 8px;
    color: #EE6754;
    font-size: 1.1rem;
}

.location-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}

/* MOBILE */
@media (max-width: 768px) {
    .location-item {
        width: 90%;
    }
}

/* Caravan image carousel */
.caravan-card {
    position: relative;
}

.caravan-carousel {
    position: relative;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
}

.caravan-carousel-inner {
    position: relative;
}

.caravan-slide {
    display: none;
}

.caravan-slide.active {
    display: block;
}

.caravan-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.caravan-prev,
.caravan-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.45);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
}

.caravan-prev {
    left: 8px;
}

.caravan-next {
    right: 8px;
}

.caravan-dots {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.caravan-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
}

.caravan-dot.active {
    background: #27D3F5;
}



