/* ============================================================
   HOTEL SEEMA VILLA INN — MASTER STYLESHEET
   Color System: White (primary) · Crimson Red (secondary) · Charcoal Black (accent)
   Font: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────── */
:root {
    --white: #FFFFFF;
    --off-white: #F8F4F0;
    --cream: #F2EDE6;
    --light-grey: #EDEDEB;

    --red: #C0392B;
    --red-dark: #8B1A1A;
    --red-deep: #6B0F0F;
    --red-bright: #E74C3C;
    --red-light: #FAD7D4;
    --red-pale: #FEF0EF;

    --black: #0F0F0F;
    --charcoal: #1A1A1A;
    --dark-grey: #2C2C2C;
    --mid-grey: #555555;
    --soft-grey: #888888;
    --border-grey: #E0DAD4;

    --gold: #D4AF37;
    --gold-light: #F5E6A3;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Helvetica Neue', sans-serif;

    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 28px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
    --shadow-red: 0 8px 30px rgba(192, 57, 43, 0.25);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

/* ── Reset & Base ──────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-grey);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

.rounded-20 {
    border-radius: var(--radius-lg) !important;
}


/* ── TOP BAR ───────────────────────────────────────── */
.top-bar {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.75);
    font-size: 12.5px;
    font-weight: 400;
    padding: 7px 0;
    letter-spacing: 0.3px;
}

.top-bar-address {
    display: flex;
    align-items: center;
}

.top-bar-actions {
    display: flex;
    align-items: center;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    font-weight: 500;
}

.top-bar-link:hover {
    color: var(--gold);
}

@media (max-width: 576px) {
    .top-bar-address {
        display: none;
    }

    .top-bar {
        text-align: center;
    }

    .top-bar-actions {
        justify-content: center;
    }
}


.main-header {
    z-index: 1050; /* Bootstrap's sticky-top default is 1020, making it higher for safety */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* ── NAVBAR ────────────────────────────────────────── */
.main-navbar {
    background: var(--white);
    /* padding: 14px 0; */
    transition: all 0.4s ease;
}

.main-navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Logo */
.logo-icon svg {
    transition: transform 0.3s;
}

.navbar-brand:hover .logo-icon svg {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.3px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Nav Links */
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-grey) !important;
    padding: 6px 12px !important;
    border-radius: 6px;
    letter-spacing: 0.2px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: width 0.3s, left 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
    left: 20%;
}

.nav-link:hover {
    color: var(--red) !important;
}

/* Nav Buttons */
.btn-nav-call {
    background: var(--red);
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    border: none;
    transition: var(--transition);
}

.btn-nav-call:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
    color: var(--white) !important;
}

.btn-nav-wa {
    background: #25D366;
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    border: none;
    transition: var(--transition);
}

.btn-nav-wa:hover {
    background: #1DA851;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    color: var(--white) !important;
}

/* Mobile Nav */
@media (max-width: 991px) {
    .navbar-collapse {
        padding: 16px 0;
    }

    .nav-link {
        padding: 10px 8px !important;
    }

    .btn-nav-call,
    .btn-nav-wa {
        display: block;
        text-align: center;
        margin: 4px 0;
    }

    .nav-link::after {
        display: none;
    }
}


/* ── FLOATING ACTION BUTTONS ───────────────────────── */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.fab-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.fab-call {
    background: var(--red);
}

.fab-wa {
    background: #25D366;
}

.fab-btn:hover {
    transform: scale(1.12);
    color: white;
}


/* 
   ==========================================================================
   HERO CAROUSEL DESIGN SYSTEM
   --------------------------------------------------------------------------
   Color Palette: 
   - Primary: #C0392B (Red) | Accent: #FF8A7A (Coral)
   - Background: #FFFFFF | Overlay: rgba(0, 0, 0, 0.4)
   Font Stack: 
    - Display: 'Cormorant Garamond', serif (var(--font-display))
    - Body: 'Jost', sans-serif (var(--font-body))
   Image Credits: 
   - assets/images/wedding-venue-stage.jpeg (Local)
   - assets/images/Marriage-Lawns.jpeg (Local)
   - assets/images/AC-Banquet-Hall-1599x899.jpeg (Local)
   ========================================================================== 
*/

/* ── HERO SECTION ──────────────────────────────────── */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1080px;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Static - No background animation as requested */
}

/* WebP Background with JPEG Fallback */
.slide-1 { background-image: url('../images/wedding-venue-02.jpeg'); }
.slide-2 { background-image: url('../images/room-img.jpeg'); }
.slide-3 { background-image: url('../images/seating-area.jpeg'); }

@supports (background-image: url('../images/Engagements.jpeg')) {
    .slide-1 { background-image: url('../images/Engagements.jpeg'); }
    .slide-2 { background-image: url('../images/room-img.jpeg'); }
    .slide-3 { background-image: url('../images/seating-area.jpeg'); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* WCAG 2.1 AA Compliant Contrast */
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.hero-caption {
    position: absolute;
    top: 50%;
    left: 8%; /* 8% Left Gutter */
    transform: translateY(-50%);
    width: 90%;
    max-width: 680px; /* Card-based max-width */
    padding: 0;
    text-align: left; /* Left Aligned Content */
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-left: 3px solid var(--red);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem); /* Fluid Typography */
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-accent {
    color: #FF8A7A;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem); /* Fluid Typography */
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-hero-call, .btn-hero-wa {
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 4px; /* Minimal card style */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-hero-call {
    background: var(--red);
    color: white;
    border: none;
}

.btn-hero-call:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.btn-hero-wa {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-wa:hover {
    background: white;
    color: var(--black);
    transform: translateY(-2px);
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-icon {
    width: 40px;
    height: 40px;
    stroke: #fff;
    stroke-width: 1px;
    fill: none;
}

/* Dot Indicators */
#heroCarousel .carousel-indicators {
    justify-content: flex-start;
    left: 8%;
    margin: 0;
    bottom: 40px;
    gap: 8px; /* 8px Spacing */
}

#heroCarousel .carousel-indicators [data-bs-target] {
    width: 12px; /* 6px radius */
    height: 12px;
    border-radius: 50%;
    border: 2px solid transparent;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0;
    box-sizing: content-box;
    transition: all 0.3s;
}

#heroCarousel .carousel-indicators [data-bs-target].active {
    background-color: #fff;
    transform: scale(1.2);
}

#heroCarousel .carousel-indicators [data-bs-target]:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-caption {
        left: 5%;
        width: 90%;
    }
    #heroCarousel .carousel-indicators {
        left: 5%;
    }
}

/* Remove old animations and hints as requested for static/clean look */
.scroll-hint, .animate-up, .animate-up-delay, .animate-up-delay2 {
    display: none !important;
}


/* ── STATS STRIP ───────────────────────────────────── */
.stats-strip {
    background: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-grey);
}

.stat-item {
    padding: 8px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.stat-plus {
    font-size: 32px;
    font-weight: 700;
    color: var(--red);
}

.stat-item p {
    font-size: 13px;
    font-weight: 500;
    color: var(--soft-grey);
    margin-top: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* ── PARALLAX SECTIONS ─────────────────────────────── */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(139,26,26,0.75); */
    background: rgba(10, 10, 10, 0.72);
}

.dark-overlay {
    background: rgba(10, 10, 10, 0.72);
}

.deep-overlay {
    background: rgba(10, 10, 10, 0.72);
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }
}


/* ── INNER PAGE HERO ───────────────────────────────── */
.inner-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.inner-hero .container {
    z-index: 5;
}

.inner-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--red-light);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "·";
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    line-height: 1;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .inner-hero {
        height: 320px;
    }
}


/* ── SECTION COMMONS ───────────────────────────────── */
.section-services,
.section-rooms,
.section-venue,
.section-why {
    padding: 50px 0;
}

.section-about,
.section-events,
.section-facilities,
.section-contact,
.section-location {
    padding: 50px 0;
}

.bg-soft {
    background: var(--off-white);
}

.section-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.text-gold {
    color: var(--gold) !important;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--mid-grey);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.text-red {
    color: var(--red) !important;
}


/* ── CAROUSEL NAV BUTTONS ──────────────────────────── */
.carousel-nav-btns {
    margin-top: 28px;
}

.carousel-nav-btn {
    background: white;
    color: var(--red);
    border: 2px solid var(--red);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    transition: var(--transition);
    cursor: pointer;
}

.carousel-nav-btn:hover {
    background: var(--red);
    color: white;
    transform: scale(1.08);
}

.carousel-nav-btn.light-nav {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.carousel-nav-btn.light-nav:hover {
    background: white;
    color: var(--red);
    border-color: white;
}


/* ── SERVICE CARDS ─────────────────────────────────── */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-card-body {
    padding: 24px;
}

.service-icon {
    width: 46px;
    height: 46px;
    background: var(--red-pale);
    color: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.service-card h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--mid-grey);
    margin-bottom: 18px;
}


/* ── CARD ACTION BUTTONS ───────────────────────────── */
.card-action-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-card-call {
    background: var(--red);
    color: white !important;
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    border: none;
    flex: 1;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-card-call:hover {
    background: var(--red-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-card-wa {
    background: #25D366;
    color: white !important;
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    border: none;
    flex: 1;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-card-wa:hover {
    background: #1DA851;
    color: white !important;
    transform: translateY(-2px);
}


/* ── ABOUT SECTION ─────────────────────────────────── */
.about-img-grid {
    position: relative;
    padding-right: 50px;
    padding-bottom: 50px;
}

.about-img-main {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    z-index: 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

.about-img-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.about-badge-float {
    position: absolute;
    top: 30px;
    right: -10px;
    background: var(--red);
    color: white;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    text-align: center;
    z-index: 4;
    box-shadow: var(--shadow-red);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-text {
    font-size: 15.5px;
    color: var(--mid-grey);
    margin-bottom: 14px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--off-white);
    border: 1px solid var(--border-grey);
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-grey);
    transition: var(--transition);
}

.feature-pill:hover {
    background: var(--red-pale);
    border-color: var(--red-light);
    color: var(--red);
}

.feature-pill i {
    color: var(--red);
    font-size: 16px;
}

/* Room Types */
.room-types-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.room-badge {
    display: inline-flex;
    align-items: center;
    background: var(--red-pale);
    color: var(--red-dark);
    border: 1px solid var(--red-light);
    border-radius: 50px;
    padding: 7px 15px;
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-img-grid {
        padding-right: 0;
        padding-bottom: 30px;
    }

    .about-img-main img {
        height: 260px;
    }

    .about-img-secondary {
        width: 50%;
    }

    .about-badge-float {
        right: 10px;
        top: 10px;
    }
}


/* ── ROOMS SECTION ─────────────────────────────────── */
.section-rooms {
    padding: 50px 0;
}

.room-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    color: white;
    transition: var(--transition);
}

.room-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.room-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 16px;
}

.room-card h5 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.room-card p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.btn-room-book {
    background: var(--red);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-room-book:hover {
    background: var(--red-dark);
    color: white;
    transform: translateY(-2px);
}


/* ── EVENT CARDS ───────────────────────────────────── */
.event-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.event-img {
    height: 190px;
    background-size: cover;
    background-position: center;
}

.event-body {
    padding: 22px;
}

.event-icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.event-body h5 {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.event-body p {
    font-size: 13.5px;
    color: var(--mid-grey);
    margin-bottom: 16px;
}


/* ── VENUE CARDS ───────────────────────────────────── */
.venue-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.venue-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.16);
}

.venue-img {
    height: 185px;
    background-size: cover;
    background-position: center;
}

.venue-body {
    padding: 22px;
    color: white;
}

.venue-body h5 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.venue-body p {
    font-size: 13.5px;
    opacity: 0.82;
    margin-bottom: 16px;
}


/* ── GALLERY STRIP ─────────────────────────────────── */
.gallery-strip {
    overflow: hidden;
    padding: 0;
    background: var(--charcoal);
}

.gallery-track {
    display: flex;
    gap: 4px;
    animation: galleryScroll 50s linear infinite;
    width: max-content;
}



.reverse-gallery-track {
    display: flex;
    gap: 4px;
    animation: galleryScroll 50s linear infinite reverse;
    width: max-content;
}


.gallery-item {
    flex-shrink: 0;
    width: 280px;
    height: 190px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-strip:hover .gallery-track {
    animation-play-state: paused;
}


/* ── FACILITY CARDS ────────────────────────────────── */
.facility-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.facility-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.facility-body {
    padding: 22px;
}

.facility-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.facility-body h5 {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.facility-body p {
    font-size: 13.5px;
    color: var(--mid-grey);
    margin-bottom: 16px;
}


/* ── WHY CHOOSE US ─────────────────────────────────── */
.why-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    color: white;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.why-card h5 {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    opacity: 0.82;
    line-height: 1.6;
}


/* ── LOCATION SECTION ──────────────────────────────── */
.location-info-card {
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--light-grey);
}

.location-info-item:last-child {
    border-bottom: none;
}

.loc-icon {
    width: 42px;
    height: 42px;
    background: var(--red-pale);
    color: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.location-info-item strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.location-info-item p {
    font-size: 14px;
    color: var(--mid-grey);
    margin: 0;
}

.location-info-item a {
    color: var(--red);
    font-weight: 500;
}

.location-info-item a:hover {
    color: var(--red-dark);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.map-wrapper iframe {
    display: block;
}


/* ── CONTACT SECTION ───────────────────────────────── */
.contact-direct-btns {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
}

.contact-action-btn i {
    font-size: 28px;
    flex-shrink: 0;
}

.btn-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.85;
}

.btn-value {
    display: block;
    font-size: 17px;
    font-weight: 700;
}

.call-full {
    background: var(--red-pale);
    border: 1.5px solid var(--red-light);
    color: var(--red);
}

.call-full:hover {
    background: var(--red);
    color: white;
    transform: translateX(4px);
}

.wa-full {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    color: #15803d;
}

.wa-full:hover {
    background: #25D366;
    color: white;
    transform: translateX(4px);
}

/* Contact Form */
.contact-form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-grey);
}

.form-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--red-pale);
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 7px;
    letter-spacing: 0.2px;
}

.required {
    color: var(--red);
}

.form-input-custom {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--dark-grey);
    background: var(--off-white);
    border: 1.5px solid var(--border-grey);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition-fast);
    appearance: none;
}

.form-input-custom:focus {
    border-color: var(--red);
    background: white;
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.08);
}

textarea.form-input-custom {
    resize: vertical;
    min-height: 100px;
}

.btn-submit-form {
    width: 100%;
    background: var(--red);
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-submit-form:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* Alerts */
.alert-success-custom {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #15803d;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.alert-error-custom {
    background: var(--red-pale);
    border: 1px solid var(--red-light);
    color: var(--red-dark);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}


/* ── SHARED BUTTONS ────────────────────────────────── */
.btn-primary-red {
    background: var(--red);
    color: white;
    font-weight: 600;
    font-size: 14.5px;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-primary-red:hover {
    background: var(--red-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-outline-red {
    background: transparent;
    color: var(--red);
    font-weight: 600;
    font-size: 14.5px;
    padding: 11px 26px;
    border-radius: 50px;
    border: 2px solid var(--red);
    transition: var(--transition);
}

.btn-outline-red:hover {
    background: var(--red);
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp-solid {
    background: #25D366;
    color: white;
    font-weight: 600;
    font-size: 14.5px;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-whatsapp-solid:hover {
    background: #1DA851;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}


/* ── FOOTER ────────────────────────────────────────── */
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-brand {
    margin-bottom: 6px;
}

.footer-logo-main {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.footer-logo-sub {
    font-size: 9px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    transition: var(--transition);
}

.footer-social-btn.call-btn {
    background: var(--red);
}

.footer-social-btn.wa-btn {
    background: #25D366;
}

.footer-social-btn:hover {
    transform: scale(1.12);
    opacity: 0.9;
    color: white;
}

.footer-heading {
    color: white;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.footer-links a i {
    font-size: 12px;
    color: var(--red);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list i {
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-list a:hover {
    color: var(--gold);
}

.btn-footer-call {
    background: var(--red);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-footer-call:hover {
    background: var(--red-dark);
    color: white;
}

.btn-footer-wa {
    background: #25D366;
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-footer-wa:hover {
    background: #1DA851;
    color: white;
}

.footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}


/* ── SCROLL REVEAL ANIMATIONS ──────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ── RESPONSIVE FIXES ──────────────────────────────── */
@media (max-width: 991px) {
    .about-img-grid {
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .hero-caption {
        bottom: 8%;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-call,
    .btn-hero-wa {
        width: 80%;
        max-width: 280px;
    }

    .section-services,
    .section-rooms,
    .section-venue,
    .section-why,
    .section-about,
    .section-events,
    .section-facilities,
    .section-contact,
    .section-location {
        padding: 60px 0;
    }

    .scroll-hint {
        display: none;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .about-img-grid {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 200px;
        height: 140px;
    }

    .stat-number {
        font-size: 40px;
    }
}