/* --- CSS RESET & ROOT VARIABLES --- */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-overflow-scrolling: touch;
}

:root {
    --bg-dark: #041018;
    --bg-card: rgba(12, 14, 24, 0.72);
    --neon-cyan: #00e5ff;
    --neon-blue: #00d8ff;
    --neon-green: #00ff66;
    --neon-green-glow: rgba(0, 255, 102, 0.45);
    --text-main: #e8fbff;
    --text-muted: #9fb6c3;
    --purple-primary: #00b8df;
    --purple-neon: #33e6ff;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
}

body {
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    cursor: default;
}


/* Ambient Radial Background Lighting */

body::before {
    content: "";
    position: fixed;
    top: -10%;
    right: -10%;
    width: 65vw;
    height: 65vw;
    background: radial-gradient(circle, rgba(0, 216, 255, 0.22) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* GLOBAL LINK STYLING - PREVENTS DEFAULT BROWSER BLUE/PURPLE */

a,
a:link,
a:visited {
    color: inherit;
    text-decoration: none;
}

a,
button,
input,
select,
textarea,
[role="button"] {
    cursor: pointer;
}


/* --- HEADER & NAVIGATION --- */

header {
    padding: 1.2rem 0;
    background: rgba(10, 8, 19, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-subtle);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar {
    position: relative;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    padding: 10px 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

.brand a {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.brand span {
    color: var(--purple-neon);
}

.brand p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: 0.3rem;
    font-size: 0.8rem;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.8rem;
    min-width: 240px;
    background: rgba(4, 10, 24, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.75rem 0;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 10;
}

.has-dropdown:hover .submenu,
.has-dropdown:focus-within .submenu,
.has-dropdown.open .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 0.75rem 1.2rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    text-decoration: none;
}

.submenu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}


/* --- BUTTONS --- */

.btn {
    padding: 0.7rem 1.4rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}


/* Cyan Action Buttons: Text Forced Pure White (#ffffff) Across All Interaction States */

.btn-purple-glow,
.btn-email,
a.btn-purple-glow,
a.btn-email,
.btn-purple-glow *,
.btn-email * {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-neon)) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-weight: 800;
    box-shadow: 0 6px 28px rgba(0, 216, 255, 0.35), inset 0 -4px 12px rgba(0, 0, 0, 0.25);
}

.btn-purple-glow:hover,
.btn-email:hover,
.btn-purple-glow:visited,
.btn-email:visited,
.btn-purple-glow:focus,
.btn-email:focus,
.btn-purple-glow:active,
.btn-email:active {
    background: linear-gradient(135deg, var(--purple-neon), var(--purple-primary)) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 216, 255, 0.55);
}

.btn-outline-dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    color: #fff !important;
}

.btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-contact-direct,
a.btn-contact-direct {
    background: linear-gradient(135deg, #15d96a, #7ef4a8) !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    font-weight: 700;
    box-shadow: 0 8px 26px rgba(21, 217, 106, 0.5) !important;
    border: none !important;
}

.btn-contact-direct:hover,
a.btn-contact-direct:hover,
.btn-contact-direct:focus,
a.btn-contact-direct:focus,
.btn-contact-direct:active,
a.btn-contact-direct:active {
    background: linear-gradient(135deg, #2ae57d, #a3f7be) !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(21, 217, 106, 0.7) !important;
}


/* WhatsApp Fluo Neon Green Button */

.btn-whatsapp,
a[href*="wa.me"] {
    background: linear-gradient(135deg, #3af77e, #b8ffd0) !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(58, 247, 126, 0.75) !important;
    border: none !important;
}

.btn-whatsapp:hover,
a[href*="wa.me"]:hover {
    background: linear-gradient(135deg, #58ff8b, #d0ffe0) !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(88, 255, 139, 0.9) !important;
}


/* --- HERO SECTION --- */

.hero {
    padding: 4rem 0 6rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 4.8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 30%, var(--purple-neon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-stats-list {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* --- HERO VISUAL & FLOATING CARD --- */

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-banner-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.hero-floating-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(15, 12, 28, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr auto;
    gap: 1rem;
    align-items: center;
}

.metric-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.metric-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--purple-neon);
    display: block;
}

.metric-title.email-title {
    font-size: 0.85rem;
    color: #fff;
    word-break: break-all;
}

.metric-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-quote-btn {
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.ring-1 {
    width: 350px;
    height: 350px;
}

.ring-2 {
    width: 500px;
    height: 500px;
}

.ring-3 {
    width: 650px;
    height: 650px;
}

.btn-purple-sm {
    background: var(--purple-primary);
    color: #fff !important;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    transition: background 0.2s;
}

.btn-purple-sm:hover {
    background: var(--purple-neon);
}


/* --- SERVICES SECTION --- */

.top-sellers {
    padding: 4rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.seller-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.seller-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 216, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.seller-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 18px 40px rgba(0, 216, 255, 0.16);
    transform: translateY(-4px);
}

.seller-card img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.seller-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.seller-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.top-sellers {
    background: rgba(4, 8, 18, 0.6);
    padding: 4rem 0;
}

.seller-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.seller-card {
    background: rgba(10, 18, 30, 0.92);
    border: 1px solid rgba(0, 216, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.seller-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 18px 40px rgba(0, 216, 255, 0.16);
    transform: translateY(-4px);
}

.seller-card img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.seller-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.seller-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
}


/* --- ABOUT & CONTACT SECTIONS --- */

.about-section {
    padding: 3rem 0 6rem;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.about-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.contact-section {
    padding: 4rem 0;
    background: rgba(4, 8, 18, 0.9);
    border-top: 1px solid var(--border-subtle);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-card h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #fff;
}

.contact-methods {
    display: grid;
    gap: 0.9rem;
}

.contact-link {
    display: inline-block;
    color: #fff !important;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    background: rgba(0, 216, 255, 0.08);
}


/* --- BOOKING CARD & FORM STYLING --- */

.booking-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: var(--radius-lg);
}

.booking-card h2,
.booking-card h3 {
    margin: 0;
    color: #a8f7ff;
}

.booking-row {
    display: grid;
    gap: 0.55rem;
}

.booking-label {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.75);
}

.booking-input,
.booking-select,
.booking-textarea {
    width: 100%;
    background: rgba(4, 16, 24, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    color: #fff;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    outline: none;
}

.booking-input:focus,
.booking-select:focus,
.booking-textarea:focus {
    border-color: rgba(40, 230, 255, 0.75);
    box-shadow: 0 0 0 4px rgba(40, 230, 255, 0.12);
}

.booking-select option {
    background-color: #041018;
    color: #ffffff;
    padding: 0.5rem;
}

.booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}


/* --- SITE FOOTER --- */

.site-footer {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-subtle);
    padding: 4.5rem 0 0;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-neon), transparent);
    opacity: 0.6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff !important;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.footer-logo span {
    color: var(--purple-neon);
}

.brand-tagline {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--purple-neon);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.2rem 0 0.8rem;
}

.brand-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 102, 0.08);
    border: 1px solid rgba(0, 255, 102, 0.25);
    color: #00ff66;
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    width: fit-content;
}

.status-dot {
    width: 7px;
    height: 7px;
    background-color: #00ff66;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff66;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.4;
    }
}

.footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-menu a {
    color: var(--text-muted) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.footer-menu a:hover {
    color: #fff !important;
    transform: translateX(4px);
    display: inline-block;
}

.contact-item {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
}

.contact-item strong {
    color: #fff;
}

.contact-item a {
    color: var(--text-muted) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #fff !important;
}

.footer-map {
    width: 100%;
    min-height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-top: 1rem;
}

.footer-cta-wrapper {
    margin-top: 1rem;
}

.footer-wa-btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    background-color: var(--bg-dark);
    padding: 1.5rem 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-legal-links a {
    color: var(--text-muted) !important;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: #fff !important;
}

.footer-legal-links .divider {
    color: var(--border-subtle);
    font-size: 0.6rem;
}


/* --- CURSOR GLOW & PARTICLES --- */

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 216, 255, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 90;
    will-change: transform;
}

.site-cursor-star {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    color: #00eaff;
    font-size: 16px;
    font-weight: bold;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    text-shadow: 0 0 6px #00eaff, 0 0 12px #008cff;
    transition: transform 0.65s cubic-bezier(.2, .8, .2, 1), opacity 0.65s ease-out;
    will-change: transform, opacity;
}

.site-cursor-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    background: #00eaff;
    box-shadow: 0 0 6px #00eaff, 0 0 12px #008cff;
    animation: siteParticleFade 0.6s ease-out forwards;
    will-change: transform, opacity;
}

@keyframes siteParticleFade {
    0% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(0.2) translate(var(--move-x), var(--move-y));
    }
}

@keyframes mobileGlowPulse {
    0% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.55;
        transform: translate(-50%, -50%) scale(1.35);
    }
}


/* --- RESPONSIVE MEDIA QUERIES --- */

@media (max-width: 900px) {
    header {
        padding: 0.7rem 0;
    }
    nav {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }
    .brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
    }
    .brand a {
        font-size: 1.2rem;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-panel {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        background: rgba(4, 16, 24, 0.98);
        border: 1px solid var(--border-subtle);
        border-radius: 16px;
        padding: 1rem;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
    }
    .nav-panel.open {
        display: flex;
    }
    .nav-links {
        flex-direction: column;
        gap: 0.55rem;
        width: 100%;
        padding: 0.25rem 0;
    }
    .has-dropdown {
        width: 100%;
    }
    .has-dropdown .submenu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-subtle);
        border-radius: 12px;
        margin-top: 0.35rem;
        text-align: center;
        display: none;
    }
    .has-dropdown.open .submenu {
        display: block;
    }
    .submenu a {
        padding: 0.6rem 1rem;
    }
    .nav-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero {
        padding: 2rem 0;
    }
    .hero-grid,
    .seller-cards-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-content h1 {
        text-align: center;
        font-size: clamp(2.1rem, 9vw, 3.3rem);
    }
    .hero-description {
        text-align: center;
        margin: 0 auto 1.5rem auto;
        max-width: 100%;
    }
    .hero-actions,
    .booking-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    .hero-actions .btn,
    .booking-actions .btn {
        width: 100%;
        min-height: 48px;
    }
    .hero-stats-list {
        justify-content: space-around;
        gap: 1.25rem;
    }
    .hero-image-wrapper {
        max-width: 100%;
    }
    .hero-banner-img {
        height: auto;
        max-height: 360px;
    }
    .hero-floating-card {
        position: static;
        margin-top: 1rem;
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    .footer-grid {
        text-align: center;
    }
}


/* --- FOOTER MAP STYLING --- */

.footer-map {
    width: 100%;
    height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    margin-top: 0.8rem;
    display: block;
}

.footer-contact-col .contact-item {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-contact-col .contact-item strong {
    color: #fff;
}
