*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #f9fafb;
    background: #020617;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.flex {
    display: flex;
}

.between {
    justify-content: space-between;
}

.center {
    align-items: center;
}

.topbar {
    background: #020617;
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 20;
}

.logo-main {
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-sub {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
}

.top-contact {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.9rem;
}

.phone {
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-outline {
    border: 1px solid #38bdf8;
    color: #38bdf8;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(56, 189, 248, 0.12);
}

.btn-primary {
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #111827;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-ghost {
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
    background: transparent;
}

.btn-ghost:hover {
    background: rgba(148, 163, 184, 0.15);
}

.btn-block {
    width: 100%;
}

.hero {
    padding: 40px 0 32px;
    background: radial-gradient(circle at top, #0f172a 0, #020617 55%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 32px;
}

.hero-text h1 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-text p {
    color: #cbd5f5;
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hero-points {
    list-style: disc;
    margin-left: 16px;
    color: #e5e7eb;
    font-size: 0.9rem;
}

/* Hero image */
.hero-image {
    margin-top: 16px;
    max-width: 420px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.7);
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: 18px;
    padding: 20px 20px 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.hero-card h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-form label {
    font-size: 0.8rem;
    color: #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    background: #020617;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    padding: 8px 10px;
    font-size: 0.85rem;
    color: #e5e7eb;
}

.booking-form textarea {
    resize: vertical;
    min-height: 60px;
}

.small {
    font-size: 0.78rem;
}

.muted {
    color: #9ca3af;
}

.section {
    padding: 40px 0;
}

.section.alt {
    background: #020617;
}

.section-title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 24px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.card {
    background: #020617;
    border-radius: 16px;
    padding: 18px 16px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.6);
}

.card h3 {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.card p {
    font-size: 0.9rem;
    color: #e5e7eb;
}

.pricing-grid .card {
    background: #050816;
}

.pricing-list {
    list-style: none;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.pricing-list li {
    margin-bottom: 6px;
}

.center {
    text-align: center;
}

.max-600 {
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.plain-list {
    list-style: none;
    font-size: 0.9rem;
}

.plain-list li {
    margin-bottom: 4px;
}

.footer {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    padding: 14px 0;
    background: #020617;
}

.footer p {
    font-size: 0.78rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin-bottom: 10px;
}

.review-card {
    background: #050816;
    border-radius: 16px;
    padding: 16px 14px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.6);
}

.stars {
    color: #facc15;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.review-text {
    font-size: 0.9rem;
    color: #e5e7eb;
    margin-bottom: 8px;
}

.review-name {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.gallery-item {
    background: #020617;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.6);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gallery-item figcaption {
    padding: 10px 12px;
    font-size: 0.85rem;
    color: #e5e7eb;
}

/* Social links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.social-link {
    font-size: 0.8rem;
    border-radius: 999px;
    padding: 6px 12px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
}

.social-link:hover {
    background: rgba(148, 163, 184, 0.15);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .top-contact {
        display: none;
    }

    .hero {
        padding-top: 28px;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .hero-card {
        max-width: 100%;
    }

    /* Floating WhatsApp Button */
    .floating-whatsapp {
        position: fixed;
        right: 18px;
        bottom: 18px;
        width: 56px;
        height: 56px;
        background: #25d366;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
        z-index: 999;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .floating-whatsapp:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    }

    /* Floating Call Button (Mobile only) */
    .floating-call {
        position: fixed;
        left: 18px;
        bottom: 18px;
        background: #2563eb;
        color: #fff;
        padding: 10px 14px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
        z-index: 999;
        display: none;
    }

    /* Show only on mobile */
    @media (max-width: 768px) {
        .floating-call {
            display: block;
        }
    }

    /* FORCE Google Review Button */
    .force-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        background-color: #facc15 !important;
        color: #111827 !important;
        padding: 12px 22px !important;
        border-radius: 999px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        border: none !important;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35) !important;
        cursor: pointer;
        gap: 6px;
    }

    .force-btn:hover {
        background-color: #f59e0b !important;
        transform: translateY(-1px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45) !important;
    }

    /* Site Logo - adjusted for BMT logo */
    .site-logo {
        height: 40px;
        width: auto;
        display: block;
    }

    /* About Section Layout */
    .about-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 28px;
        align-items: center;
    }

    .about-text p {
        color: #e5e7eb;
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 18px;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
    }

    /* Align About title left */
    .section-title.left {
        text-align: left;
        margin-bottom: 14px;
    }

    /* Mobile responsive */
    @media (max-width: 900px) {
        .about-grid {
            grid-template-columns: 1fr;
        }

        .about-image {
            order: -1;
        }
    }

    /* ===== MOBILE OPTIMIZATION ===== */
    @media (max-width: 768px) {

        body {
            font-size: 15px;
            overflow-x: hidden;
        }

        .container {
            padding-left: 14px;
            padding-right: 14px;
        }

        header,
        section,
        footer {
            overflow-x: hidden;
        }

        h1 {
            font-size: 1.6rem;
            line-height: 1.3;
        }

        h2 {
            font-size: 1.3rem;
        }

        .hero-inner {
            display: flex !important;
            flex-direction: column !important;
        }

        .hero-card {
            width: 100% !important;
            margin-top: 16px;
        }

        .grid,
        .pricing-grid,
        .reviews-grid,
        .gallery-grid {
            grid-template-columns: 1fr !important;
        }

        .btn {
            width: 100%;
            text-align: center;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .top-contact {
            display: none;
        }
    }

    /* ===============================
   MOBILE CALL / WHATSAPP BAR
   =============================== */

    .mobile-action-bar {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #020617;
        border-top: 1px solid rgba(148, 163, 184, 0.25);
        z-index: 9999;
    }

    .mobile-action-bar a {
        flex: 1;
        text-align: center;
        padding: 14px 0;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
    }

    .mobile-action-bar .call-btn {
        background: #22c55e;
        color: #ffffff;
    }

    .mobile-action-bar .wa-btn {
        background: #25d366;
        color: #ffffff;
    }

    @media (max-width: 768px) {
        .mobile-action-bar {
            display: flex;
        }

        /* prevent content from hiding behind bar */
        body {
            padding-bottom: 60px;
        }
    }

}

/* =====================================================
   CLEAN MOBILE FIX – DO NOT NEST MEDIA QUERIES
   ===================================================== */

/* Mobile-only fixes */
@media (max-width: 768px) {

    /* Hide desktop header contact */
    .top-contact {
        display: none !important;
    }

    /* Stack hero properly */
    .hero-inner {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Ensure buttons are tappable */
    .btn {
        width: 100%;
        text-align: center;
    }

    /* Prevent horizontal scroll */
    body,
    header,
    section,
    footer {
        overflow-x: hidden;
    }

    /* ===============================
     MOBILE CALL / WHATSAPP BAR
     =============================== */

    .mobile-action-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 56px;
        display: flex;
        background: #020617;
        border-top: 1px solid rgba(148, 163, 184, 0.25);
        z-index: 99999;
    }

    .mobile-action-bar a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        text-decoration: none;
    }

    .mobile-action-bar .call-btn {
        background: #22c55e;
    }

    .mobile-action-bar .wa-btn {
        background: #25d366;
    }

    /* Prevent content hiding under bar */
    body {
        padding-bottom: 56px;
    }
}

/* Fix enquiry form height stretching */
.hero-inner {
    align-items: flex-start;
}

.hero-card {
    height: auto;
}

/* ===============================
   Clear Button Styling
   =============================== */

.btn-clear {
    background: rgba(148, 163, 184, 0.15);
    /* soft slate */
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.btn-clear:hover {
    background: rgba(148, 163, 184, 0.25);
    border-color: rgba(148, 163, 184, 0.8);
}

.btn-clear:active {
    transform: scale(0.98);
}