/* ==========================================================================
   MDR Hotel & Resort — Complete Luxury Design System v2.0
   ========================================================================== */

/* --- Google Fonts Fallback Variables --- */
:root {
    --navy:       #0b1728;
    --navy-2:     #132035;
    --navy-3:     #1c2e4a;
    --gold:       #c9a84c;
    --gold-2:     #e4c46d;
    --gold-grd:   linear-gradient(135deg, #e4c46d 0%, #c9a84c 50%, #a07830 100%);
    --gold-grd2:  linear-gradient(135deg, #c9a84c 0%, #a07830 100%);
    --white:      #ffffff;
    --off-white:  #f8f6f1;
    --text-body:  #4a5568;
    --text-dark:  #1a202c;
    --border:     #e8e0d0;
    --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
    --shadow-md:  0 8px 28px rgba(0,0,0,.10);
    --shadow-lg:  0 20px 50px rgba(0,0,0,.15);
    --radius:     10px;
    --transition: all .35s cubic-bezier(.25,.8,.25,1);
    --font-h:     'Playfair Display', Georgia, serif;
    --font-b:     'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Reset & Base --- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
    font-family: var(--font-b);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--font-h);
    color: var(--text-dark);
    line-height: 1.25;
}
a{ text-decoration:none; color:inherit; transition: var(--transition); }
ul{ list-style:none; }
img{ max-width:100%; display:block; }

/* ======================================================
   TOP BAR
====================================================== */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    font-size: .8rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(201,168,76,.25);
}
.top-bar .tb-info span {
    margin-right: 20px;
    white-space: nowrap;
}
.top-bar .tb-info span i {
    color: var(--gold);
    margin-right: 5px;
}
.top-bar .tb-social a {
    color: rgba(255,255,255,.6);
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    margin-left: 5px;
    transition: var(--transition);
}
.top-bar .tb-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.top-bar .tb-staff {
    font-size: .75rem;
    color: rgba(255,255,255,.7);
    border: 1px solid rgba(201,168,76,.4);
    padding: 3px 12px;
    border-radius: 20px;
    margin-left: 12px;
    transition: var(--transition);
}
.top-bar .tb-staff:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ======================================================
   MAIN NAVBAR
====================================================== */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,168,76,.15);
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
    transition: var(--transition);
}
.main-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-grd);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(201,168,76,.35);
}
.brand-text-wrap .brand-name {
    display: block;
    font-family: var(--font-h);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: .3px;
}
.brand-text-wrap .brand-sub {
    display: block;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
/* Nav Links */
.main-nav .nav-link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-dark) !important;
    letter-spacing: .3px;
    padding: 8px 14px !important;
    position: relative;
    transition: var(--transition);
}
.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-grd);
    border-radius: 2px;
    transition: width .35s ease;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active-link {
    color: var(--gold) !important;
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active-link::after {
    width: 60%;
}
/* Toggler Custom */
.main-nav .navbar-toggler {
    border: 1px solid rgba(201,168,76,.5);
    padding: 6px 10px;
    border-radius: 6px;
}
.main-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(11,23,40,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ======================================================
   BUTTONS
====================================================== */
.btn-gold {
    background: var(--gold-grd);
    color: var(--white) !important;
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .5px;
    border: none;
    padding: 11px 26px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 18px rgba(201,168,76,.3);
    transition: var(--transition);
    text-transform: uppercase;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(201,168,76,.45);
    color: var(--white) !important;
}
.btn-gold-sm {
    padding: 8px 18px;
    font-size: .8rem;
}
.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold) !important;
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .5px;
    padding: 9px 24px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
    text-transform: uppercase;
}
.btn-outline-gold:hover {
    background: var(--gold-grd);
    color: var(--white) !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-navy {
    background: var(--navy);
    color: var(--white) !important;
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .5px;
    border: none;
    padding: 11px 26px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}
.btn-navy:hover {
    background: var(--navy-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ======================================================
   SECTION UTILITIES
====================================================== */
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    color: var(--text-dark);
    margin-bottom: 14px;
}
.section-desc {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 620px;
    margin: 0 auto 45px;
}
.gold-text { color: var(--gold); }
.divider-gold {
    display: block;
    width: 55px;
    height: 3px;
    background: var(--gold-grd);
    border-radius: 3px;
    margin: 14px auto 0;
}
.divider-left { margin: 14px 0 0; }

/* ======================================================
   HERO SECTION
====================================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(11,23,40,.8) 0%, rgba(11,23,40,.6) 60%, rgba(11,23,40,.4) 100%),
                url('../images/hero.png') center/cover no-repeat;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(201,168,76,.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.4);
    color: var(--gold-2);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}
.hero-h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-h1 .gold-text { color: var(--gold-2); }
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.82);
    margin-bottom: 35px;
    max-width: 560px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11,23,40,.85);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(201,168,76,.2);
    padding: 22px 0;
}
.hero-stat-item {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.1);
    padding: 5px 0;
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-item .number {
    display: block;
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-2);
    line-height: 1;
}
.hero-stat-item .label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-top: 4px;
}

/* ======================================================
   BOOKING WIDGET
====================================================== */
.booking-widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 28px 32px;
    border-top: 4px solid var(--gold);
    position: relative;
    z-index: 10;
    margin-top: -50px;
}
.bw-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-body);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.bw-label i { color: var(--gold); }
.bw-input {
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 11px 14px;
    font-size: .92rem;
    width: 100%;
    transition: var(--transition);
    background: var(--off-white);
    color: var(--text-dark);
    font-family: var(--font-b);
}
.bw-input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

/* ======================================================
   ABOUT SECTION
====================================================== */
.about-img-wrap {
    position: relative;
    padding: 20px 20px 20px 0;
}
.about-img-wrap .img-main {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-badge-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gold-grd);
    color: var(--white);
    padding: 22px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    min-width: 160px;
}
.about-badge-box .big-num {
    display: block;
    font-family: var(--font-h);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.about-badge-box .small-label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 6px;
    opacity: .9;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--border);
}
.feature-item:last-child { border-bottom: none; }
.feature-icon {
    width: 46px;
    height: 46px;
    background: rgba(201,168,76,.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.feature-item:hover .feature-icon {
    background: var(--gold-grd);
    color: var(--white);
}
.feature-text h6 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2px;
}
.feature-text p {
    font-size: .82rem;
    color: var(--text-body);
    margin: 0;
}

/* ======================================================
   ROOM CARDS
====================================================== */
.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,.3);
}
.room-card-img {
    position: relative;
    height: 235px;
    overflow: hidden;
    flex-shrink: 0;
}
.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.08); }
.room-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--navy);
    color: var(--gold-2);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}
.room-price-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(11,23,40,.88);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: .8rem;
}
.room-price-tag .price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-2);
    display: block;
    line-height: 1;
}
.room-card-body {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.room-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.room-meta {
    display: flex;
    gap: 14px;
    font-size: .8rem;
    color: var(--text-body);
    padding: 12px 0;
    border-top: 1px dashed var(--border);
    border-bottom: 1px dashed var(--border);
    margin-bottom: 14px;
}
.room-meta span i { color: var(--gold); margin-right: 4px; }
.room-desc {
    font-size: .85rem;
    color: var(--text-body);
    flex-grow: 1;
    margin-bottom: 18px;
}
.room-card-footer { display: flex; gap: 10px; margin-top: auto; }
.room-card-footer .btn { flex: 1; font-size: .8rem; padding: 9px 12px; }

/* ======================================================
   AMENITY CARDS
====================================================== */
.amenity-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.amenity-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 12px 35px rgba(201,168,76,.15);
}
.amenity-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(201,168,76,.1);
    color: var(--gold);
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition);
}
.amenity-card:hover .amenity-icon {
    background: var(--gold-grd);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(201,168,76,.35);
}
.amenity-card h5 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.amenity-card p {
    font-size: .85rem;
    color: var(--text-body);
    margin: 0;
}

/* ======================================================
   DINING CARDS
====================================================== */
.dining-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}
.dining-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.dining-card:hover img { transform: scale(1.06); }
.dining-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,23,40,.95) 40%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}
.dining-overlay h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 6px;
}
.dining-overlay p {
    color: rgba(255,255,255,.75);
    font-size: .88rem;
    margin-bottom: 16px;
}

/* ======================================================
   TESTIMONIALS
====================================================== */
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.testi-card::before {
    content: '\201C';
    font-family: var(--font-h);
    font-size: 5rem;
    color: rgba(201,168,76,.12);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: .85rem; margin-bottom: 12px; }
.testi-text {
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 20px;
    font-size: .95rem;
}
.testi-author h6 { font-size: 1rem; margin: 0; color: var(--text-dark); }
.testi-author span { font-size: .8rem; color: var(--gold); }

/* ======================================================
   PAGE BANNER
====================================================== */
.page-banner {
    background: linear-gradient(rgba(11,23,40,.78), rgba(11,23,40,.88)),
                url('../images/hero.png') center/cover no-repeat;
    padding: 100px 0 55px;
    text-align: center;
    color: var(--white);
}
.page-banner h1 {
    color: var(--white);
    font-size: clamp(2rem,5vw,3.2rem);
    margin-bottom: 14px;
}
.page-banner .breadcrumb {
    justify-content: center;
    background: none;
    margin: 0;
    padding: 0;
}
.page-banner .breadcrumb-item a { color: var(--gold); }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,.65); }
.page-banner .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ======================================================
   GALLERY
====================================================== */
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    height: 270px;
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,23,40,.85) 40%, transparent 70%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: opacity .35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h6 { color: var(--white); margin: 0; font-size: .95rem; }
.gallery-overlay small { color: var(--gold-2); font-size: .78rem; }

/* ======================================================
   FILTER PILLS
====================================================== */
.filter-pills { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-pill {
    padding: 10px 24px;
    border-radius: 30px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1.8px solid #c9a84c;
    color: #c9a84c;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,.03);
    transition: var(--transition);
}
.filter-pill.active,
.filter-pill:hover {
    background: linear-gradient(135deg, #e4c46d 0%, #c9a84c 50%, #b45309 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(201,168,76,.4);
    transform: translateY(-2px);
}

/* ======================================================
   BOOKING PAGE
====================================================== */
.booking-page {
    background: var(--off-white);
    min-height: 100vh;
}
.booking-form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    border-top: 4px solid var(--gold);
}
.booking-step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
}
.booking-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-grd);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(201,168,76,.3);
}
.booking-summary-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    position: sticky;
    top: 110px;
}
.booking-summary-card h4 { color: var(--gold-2); margin-bottom: 20px; font-size: 1.2rem; }
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .88rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label { color: rgba(255,255,255,.65); }
.summary-row .value { color: var(--white); font-weight: 600; }
.summary-total {
    font-size: 1.4rem;
    color: var(--gold-2);
    font-weight: 800;
}

/* ======================================================
   CONTACT PAGE
====================================================== */
.contact-info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 16px;
}
.contact-info-box:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(201,168,76,.12);
}
.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--gold-grd);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(201,168,76,.3);
}
.contact-info-box h6 { font-size: .88rem; color: var(--text-body); margin: 0 0 4px; }
.contact-info-box p { font-size: .95rem; color: var(--text-dark); font-weight: 600; margin: 0; }

/* ======================================================
   FORM CONTROLS (Global)
====================================================== */
.form-label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-body);
    margin-bottom: 6px;
}
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 11px 14px;
    font-size: .92rem;
    font-family: var(--font-b);
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

/* ======================================================
   CTA BANNER
====================================================== */
.cta-banner {
    background: linear-gradient(rgba(11,23,40,.88), rgba(11,23,40,.92)),
                url('../images/dining.png') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 28px; }

/* ======================================================
   FOOTER
====================================================== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.7);
    padding: 70px 0 0;
    border-top: 3px solid var(--gold);
}
.footer-brand-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-grd);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(201,168,76,.35);
}
.site-footer h4 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .3px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.site-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--gold-grd);
    border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,.65);
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}
.footer-links a i { color: var(--gold); font-size: .7rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: .88rem;
    color: rgba(255,255,255,.65);
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-btn {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(201,168,76,.35);
    border-radius: 8px;
    color: rgba(255,255,255,.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--gold-grd);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}
.newsletter-input-group {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}
.newsletter-input-group .form-control {
    flex: 1;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.15);
    color: var(--white);
    border-radius: 6px;
}
.newsletter-input-group .form-control::placeholder { color: rgba(255,255,255,.4); }
.newsletter-input-group .form-control:focus { border-color: var(--gold); background: rgba(255,255,255,.12); }
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.08);
    margin: 50px 0 0;
}
.footer-bottom {
    padding: 18px 0;
    background: rgba(0,0,0,.25);
}
.footer-bottom p {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    margin: 0;
}
.footer-bottom a {
    color: var(--gold);
    font-weight: 600;
}
.footer-bottom a:hover { text-decoration: underline; }

/* ======================================================
   BACK TO TOP
====================================================== */
#backToTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--gold-grd);
    color: var(--white);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(201,168,76,.4);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
}
#backToTop.show { opacity: 1; pointer-events: auto; }
#backToTop:hover { transform: translateY(-4px); }

/* ======================================================
   SCROLL REVEAL ANIMATION
====================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal-up.visible { opacity: 1; transform: none; }

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 991.98px) {
    .hero-section { min-height: 80vh; }
    .hero-h1 { font-size: 2.4rem; }
    .booking-widget { margin-top: 20px; }
    .hero-stats { position: relative; margin-top: 0; }
    .main-nav .collapse { background: var(--white); padding: 16px 0; border-top: 1px solid var(--border); }
    .main-nav .navbar-nav { padding: 0 10px; gap: 2px; }
    .main-nav .nav-link { padding: 10px 12px !important; border-radius: 6px; }
    .main-nav .nav-link:hover { background: rgba(201,168,76,.08); }
    .main-nav .btn-gold { width: 100%; justify-content: center; margin-top: 8px; }
    .about-img-wrap { padding: 0; margin-bottom: 30px; }
    .about-badge-box { position: relative; margin-top: 16px; display: inline-block; }
    .booking-summary-card { position: relative; top: 0; margin-top: 30px; }
    .booking-form-card { padding: 26px 20px; }
}
@media (max-width: 575.98px) {
    .top-bar .tb-info span { font-size: .72rem; margin-right: 10px; }
    .hero-desc { font-size: .95rem; }
    .booking-widget { padding: 20px 16px; }
    .section-title { font-size: 1.8rem; }
    .room-card-img { height: 200px; }
    .dining-card { height: 280px; }
    .gallery-item { height: 200px; }
}
