/* ── Variables ─────────────────────────────────────────────────── */
:root {
    --red:       #CC0000;
    --red-dark:  #aa0000;
    --red-light: #fff0f0;
    --white:     #ffffff;
    --grey:      #f5f5f5;
    --border:    #e8e8e8;
    --text:      #1a1a1a;
    --text-mid:  #555555;
    --text-light:#888888;
    --shadow:    0 4px 20px rgba(0,0,0,0.08);
    --shadow-red:0 6px 24px rgba(204,0,0,0.3);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    padding: 1.3rem 3.8rem;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-red);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(204,0,0,0.4);
}

/* ── Navigation ─────────────────────────────────────────────────── */
#navbar {
    position: sticky;
    top: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: #fff;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    overflow: visible;
    transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.nav-logo { margin-left: -1.5rem; }
.nav-logo img { height: 90px; object-fit: contain; filter: invert(1) sepia(1) saturate(5) hue-rotate(320deg); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-mid);
    font-weight: 600;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.2s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width 0.25s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }

.btn-book {
    background: var(--red) !important;
    color: #fff !important;
    padding: 0.5rem 1.4rem !important;
    border-radius: 50px !important;
    box-shadow: var(--shadow-red);
    transition: background 0.25s, transform 0.2s !important;
}
.btn-book::after { display: none !important; }
.btn-book:hover { background: var(--red-dark) !important; transform: translateY(-1px) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    background: url('background.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.52);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 5%;
    animation: fadeUp 0.9s ease-out both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-tagline {
    font-family: 'Righteous', cursive;
    font-size: clamp(2.6rem, 6vw, 5rem);
    color: #fff;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero-sub {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 2.8rem;
}

/* ── Sections ───────────────────────────────────────────────────── */
.section { padding: 5.5rem 0; }
.section-grey { background: var(--grey); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 5%; }

.section-title {
    font-family: 'Righteous', cursive;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    color: var(--text);
    text-align: center;
    margin-bottom: 0.5rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 44px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    margin: 0.6rem auto 2.8rem;
}
.sub-title {
    font-family: 'Righteous', cursive;
    font-size: 1.6rem;
    color: var(--text);
    text-align: center;
    margin: 3rem 0 1.5rem;
}

/* ── Services Grid ──────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: 0 14px 36px rgba(204,0,0,0.12);
}
.card-icon { font-size: 2.8rem; margin-bottom: 1rem; color: var(--red); }
.card-icon i { font-size: 2.8rem; }
.card h3 { font-weight: 800; font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; }
.card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; }

/* ── Features Grid ──────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.feature {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    border-left: 4px solid transparent;
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.feature:hover {
    transform: translateY(-5px);
    border-left-color: var(--red);
    box-shadow: 0 12px 28px rgba(204,0,0,0.1);
}
.feature-icon { font-size: 2.2rem; margin-bottom: 0.8rem; color: var(--red); }
.feature-icon i { font-size: 2.2rem; }
.feature h3 { font-weight: 800; font-size: 1.05rem; color: var(--text); margin-bottom: 0.4rem; }
.feature p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; }

/* ── Locations ──────────────────────────────────────────────────── */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.loc-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
}
.loc-card:hover {
    transform: translateY(-4px);
    border-color: var(--red);
    box-shadow: 0 10px 24px rgba(204,0,0,0.1);
}
.loc-name { font-weight: 800; font-size: 1.3rem; color: var(--red); margin-bottom: 0.4rem; }
.loc-status { font-size: 0.88rem; color: #2e7d32; font-weight: 600; }
.loc-status.contact { color: var(--red); }

/* ── Reviews ────────────────────────────────────────────────────── */
.review-form-wrap {
    max-width: 600px;
    margin: 0 auto 2rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}
.review-form-wrap textarea {
    display: block;
    width: 100%;
    padding: 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    resize: vertical;
    min-height: 120px;
    margin-bottom: 1rem;
    transition: border-color 0.25s;
    background: var(--grey);
}
.review-form-wrap textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(204,0,0,0.1);
}
.reviews-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.review-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    transition: box-shadow 0.25s;
}
.review-item:hover { box-shadow: var(--shadow); }
.review-item p { color: var(--text); line-height: 1.6; margin-bottom: 0.4rem; }
.review-item small { color: var(--text-light); font-size: 0.8rem; }
.no-reviews-msg { text-align: center; color: var(--text-light); padding: 2rem; }

/* ── Booking Form ───────────────────────────────────────────────── */
.booking-section {
    background: var(--red);
}
.white-title {
    color: #fff !important;
}
.white-title::after {
    background: rgba(255,255,255,0.5) !important;
}
.booking-sub {
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}
.tally-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 2.5rem 1.5rem;
    box-shadow: 0 12px 50px rgba(0,0,0,0.25);
}
.tally-wrapper iframe {
    display: block;
    border: none;
    background: transparent;
}

/* ── Footer ─────────────────────────────────────────────────────── */
footer {
    background: #111;
    color: #fff;
    padding: 3.5rem 0 2rem;
    text-align: center;
}
.footer-title {
    font-family: 'Righteous', cursive;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.social-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--red);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.25s, transform 0.25s;
}
.social-icon:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}
.footer-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; cursor: pointer; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-links span { color: rgba(255,255,255,0.2); }
.copyright { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ── Modals ─────────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none; align-items: center; justify-content: center;
    padding: 1.5rem;
}
.modal-overlay.active { display: flex; }
.modal-box {
    background: #fff;
    max-width: 660px; width: 100%;
    max-height: 82vh; overflow-y: auto;
    border-radius: 18px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
    color: var(--text);
    line-height: 1.75;
}
.modal-box h2 {
    font-family: 'Righteous', cursive;
    color: var(--red);
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid var(--red-light);
}
.modal-box p { margin-bottom: 0.9rem; font-size: 0.93rem; color: #444; }
.modal-box strong { color: var(--text); }
.modal-box a { color: var(--red); }
.modal-close {
    position: absolute; top: 1.1rem; right: 1.1rem;
    background: var(--red-light); color: var(--red);
    border: none; width: 34px; height: 34px;
    border-radius: 50%; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--red); color: #fff; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .nav-links { gap: 1.2rem; }
}
@media (max-width: 900px) {
    .services-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    /* Switch to hamburger at 900px to prevent overflow */
    .nav-links {
        position: fixed;
        top: 70px; left: -100%;
        width: 100%; background: #fff;
        flex-direction: column;
        padding: 2rem; gap: 1.4rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transition: left 0.3s;
        z-index: 999;
    }
    .nav-links.active { left: 0; }
    .hamburger { display: flex; }
}
@media (max-width: 600px) {
    .services-grid, .features-grid, .locations-grid { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; align-items: center; gap: 0.75rem; }
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           