/* ============================================
   RABROOMS HOTEL CHAIN - PREMIUM CSS
   ============================================ */

:root {
    --gold: #C9A84C;
    --gold-light: #E4C97B;
    --gold-dark: #A07B30;
    --dark: #1A1A1A;
    --dark2: #2C2C2C;
    --cream: #F9F6F0;
    --cream2: #F0EAE0;
    --text: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;
    --transition: all 0.35s ease;
    --radius: 8px;
    --shadow: 0 15px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 25px 60px rgba(0,0,0,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; }

/* Typography */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 600; color: var(--dark); line-height: 1.25; }
p { color: var(--text); }

/* Utility */
.bg-cream { background: var(--cream); }
.bg-dark-luxury { background: var(--dark); }
.text-gold { color: var(--gold) !important; }
.section-pad { padding: 90px 0; }

/* Buttons */
.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    padding: 10px 28px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,168,76,0.35); }
.btn-gold.btn-lg { padding: 14px 40px; font-size: 0.9rem; }
.btn-gold.btn-sm { padding: 8px 20px; font-size: 0.78rem; }

.btn-dark-outline {
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 10px 28px;
    border-radius: 2px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
}
.btn-dark-outline:hover { background: var(--dark); color: var(--white); }

.btn-link-gold {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
}
.btn-link-gold:hover { color: var(--gold-dark); gap: 8px; }

/* Section Labels */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title-lg { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; margin-bottom: 20px; line-height: 1.2; }
.section-title-lg.text-white { color: var(--white); }
.section-desc { color: var(--text-light); font-size: 1.05rem; margin-bottom: 16px; line-height: 1.8; }

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 0.82rem;
    color: #aaa;
}
.top-bar .container-fluid { padding: 0 3rem; }
.top-bar a { color: #bbb; text-decoration: none; margin-left: 16px; transition: var(--transition); font-size: 0.85rem; }
.top-bar a:hover { color: var(--gold); }

/* ============ NAVBAR ============ */
.main-nav {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    padding: 0 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    z-index: 1050;
}
.main-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.15); }

.brand-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.02em;
    text-decoration: none;
}
.brand-logo span { color: var(--gold); }

.main-nav .nav-link {
    font-family: var(--font-body);
    font-size: 0.83rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark) !important;
    padding: 1.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}
.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { width: 60%; }
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--gold) !important; }

.dropdown-menu {
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-radius: 4px;
    padding: 8px 0;
    min-width: 240px;
    border-top: 3px solid var(--gold);
}
.dropdown-item {
    font-size: 0.85rem;
    padding: 10px 20px;
    color: var(--dark);
    font-weight: 400;
    transition: var(--transition);
}
.dropdown-item:hover { background: var(--cream); color: var(--gold); padding-left: 28px; }

.navbar-toggler {
    border: 2px solid var(--dark);
    border-radius: 2px;
    padding: 6px 10px;
    color: var(--dark);
    font-size: 1.2rem;
}

/* ============ HERO ============ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 8s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.45) 60%, rgba(26,26,26,0.3) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}
.hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 12px;
    font-weight: 400;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title span { color: var(--gold-light); font-style: italic; font-size: 0.75em; }
.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 36px;
    color: rgba(255,255,255,0.85);
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.hero-scroll-indicator span {
    display: block;
    width: 2px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    animation: scrollBounce 1.5s infinite;
}
.hero-scroll-indicator span:nth-child(2) { animation-delay: 0.2s; }
.hero-scroll-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes scrollBounce {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============ BOOKING BAR ============ */
.booking-bar {
    background: var(--dark);
    padding: 24px 0;
    position: relative;
    z-index: 10;
}
.booking-bar .container-fluid { padding: 0 3rem; }
.booking-bar-inner label {
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}
.booking-bar .form-control,
.booking-bar .form-select {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: 2px;
    padding: 10px 14px;
    font-size: 0.88rem;
}
.booking-bar .form-control:focus,
.booking-bar .form-select:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--gold);
    box-shadow: none;
    color: var(--white);
}
.booking-bar .form-select option { background: var(--dark2); color: var(--white); }

/* ============ BRAND INTRO ============ */
.brand-intro-image { position: relative; display: inline-block; }
.brand-intro-image img { border-radius: var(--radius); }
.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}
.floating-badge .badge-number { font-size: 2rem; font-family: var(--font-display); font-weight: 700; line-height: 1; }
.floating-badge .badge-text { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.3; }
.rounded-custom { border-radius: 12px; }

.stats-row { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--cream2); }
.stat-item { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }

/* ============ HOTEL CARDS ============ */
.hotel-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.hotel-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-8px); }
.hotel-card.featured { border: 2px solid var(--gold); }

.featured-ribbon {
    position: absolute;
    top: 16px;
    left: -8px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 16px;
    z-index: 10;
    border-radius: 0 2px 2px 0;
}

.hotel-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.hotel-card:hover .hotel-card-image img { transform: scale(1.06); }
.hotel-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.hotel-card:hover .hotel-card-overlay { opacity: 1; }
.hotel-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(26,26,26,0.75);
    color: var(--gold-light);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.hotel-card-body { padding: 24px; }
.hotel-card-body h3 { font-size: 1.4rem; margin-bottom: 10px; }
.hotel-card-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cream2);
}
.hotel-features span {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}
.hotel-features i { color: var(--gold); font-size: 0.8rem; }

.hotel-card-footer { display: flex; justify-content: space-between; align-items: center; }
.price-from { font-size: 0.82rem; color: var(--text-light); }
.price-from strong { font-size: 1.1rem; color: var(--dark); font-family: var(--font-display); }

/* ============ SERVICES ICONS ============ */
.service-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: default;
}
.service-icon-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); transform: translateY(-4px); }
.service-icon-card i { font-size: 1.8rem; color: var(--gold); }
.service-icon-card span { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

/* ============ FEATURE LIST ============ */
.feature-list { margin-top: 28px; }
.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    align-items: flex-start;
}
.feature-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1rem;
}
.feature-item h5 { font-size: 1rem; margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
.feature-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ============ GALLERY MOSAIC ============ */
.gallery-mosaic { display: flex; gap: 12px; height: 420px; }
.mosaic-main { flex: 1.5; overflow: hidden; border-radius: var(--radius); }
.mosaic-main img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-side { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.mosaic-side img { flex: 1; width: 100%; object-fit: cover; border-radius: var(--radius); }

/* ============ TESTIMONIALS ============ */
.testimonial-section { background: var(--white); }
.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 32px;
    height: 100%;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
}
.testimonial-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.testimonial-card.featured { background: var(--dark); }
.testimonial-card.featured .stars i,
.testimonial-card.featured p,
.testimonial-card.featured strong { color: var(--white); }
.testimonial-card.featured .reviewer span { color: rgba(255,255,255,0.6); }

.stars { margin-bottom: 14px; }
.stars i { color: var(--gold); font-size: 0.85rem; margin-right: 2px; }
.testimonial-card p { font-size: 0.95rem; color: var(--text); font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.9rem; font-family: var(--font-body); }
.reviewer span { font-size: 0.78rem; color: var(--text-light); }

/* ============ CTA BANNER ============ */
.cta-banner {
    position: relative;
    padding: 120px 0;
    background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(26,26,26,0.7); }
.cta-content { position: relative; z-index: 2; color: var(--white); }
.cta-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin-bottom: 16px; }
.cta-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; }

/* ============ FOOTER ============ */
.main-footer {
    background: #111111;
    padding-top: 80px;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
}
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 24px; }
.footer-heading {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-top p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 8px; }
.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.82rem;
    margin-left: 20px;
    transition: var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-3px); }

/* ============ PAGE HEADER (Inner pages) ============ */
.page-hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    position: relative;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(26,26,26,0.65); }
.page-hero-content { position: relative; z-index: 2; color: var(--white); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); }
.breadcrumb { background: transparent; padding: 0; }
.breadcrumb-item a { color: var(--gold-light); text-decoration: none; font-size: 0.85rem; }
.breadcrumb-item.active { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============ HOTEL PAGE HERO ============ */
.hotel-hero {
    height: 65vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.hotel-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.2) 60%); }
.hotel-hero-content { position: relative; z-index: 2; padding: 50px 0; color: var(--white); }
.hotel-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--white); line-height: 1.1; }
.hotel-hero .hotel-location { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hotel-rating i { color: var(--gold); font-size: 0.9rem; }

/* ============ ROOM CARDS ============ */
.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.room-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.room-card-image { position: relative; height: 220px; overflow: hidden; }
.room-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-card-image img { transform: scale(1.05); }
.room-price-badge {
    position: absolute;
    bottom: -14px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(201,168,76,0.4);
}
.room-card-body { padding: 28px 20px 20px; }
.room-card-body h4 { font-size: 1.3rem; margin-bottom: 8px; }
.room-meta { display: flex; gap: 16px; font-size: 0.82rem; color: var(--text-light); margin-bottom: 16px; }
.room-meta i { color: var(--gold); margin-right: 4px; }

/* ============ AMENITIES GRID ============ */
.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--cream);
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 0.88rem;
}
.amenity-item i { color: var(--gold); width: 20px; text-align: center; }

/* ============ CONTACT PAGE ============ */
.contact-form-section { padding: 80px 0; }
.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}
.form-control, .form-select {
    border: 1px solid #E0DAD0;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--cream);
    border-radius: 8px;
    margin-bottom: 16px;
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

/* ============ GALLERY PAGE ============ */
.gallery-grid { columns: 3; gap: 12px; }
.gallery-grid img { width: 100%; margin-bottom: 12px; border-radius: 6px; break-inside: avoid; transition: var(--transition); }
.gallery-grid img:hover { transform: scale(0.98); box-shadow: var(--shadow-hover); }
@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* ============ SERVICES PAGE ============ */
.service-card {
    padding: 36px 28px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}
.service-card:hover { border-bottom-color: var(--gold); transform: translateY(-6px); }
.service-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--white);
}
.service-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ============ ABOUT PAGE ============ */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), transparent); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold);
}
.timeline-year {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 991px) {
    .top-bar { display: none; }
    .main-nav .nav-link { padding: 10px 0 !important; }
    .main-nav .nav-link::after { display: none; }
    .hero-title { font-size: 3rem; }
    .booking-bar .container-fluid { padding: 0 1rem; }
    .gallery-mosaic { height: 300px; }
    .mosaic-side { display: none; }
    .floating-badge { right: 0; bottom: -10px; }
    .stats-row { gap: 16px; }
    .section-pad { padding: 60px 0; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 2.5rem; }
    .cta-banner { background-attachment: scroll; }
    .hotel-hero { height: 50vh; }
}
