/* ============================================
   Ihlara Akar Hotel - Main Stylesheet
   Color Palette: Navy, Gold, White, Light Gray
   ============================================ */

:root {
    --navy: #0a1628;
    --navy-light: #132040;
    --navy-dark: #060f1d;
    --gold: #c8a45a;
    --gold-light: #dfc088;
    --gold-dark: #a8863a;
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --dark: #1a1a1a;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy);
}

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

/* Lazy Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"][complete] {
    opacity: 1;
}

/* ============================================
   TOP BAR - Premium Hotel Style
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #0d1b30 100%);
    padding: 0;
    font-size: 13px;
    color: var(--white);
    border-bottom: 1px solid rgba(200,164,90,0.15);
    position: relative;
    z-index: 1060;
    height: 40px;
    display: flex;
    align-items: center;
}
.top-bar .container {
    display: flex;
    align-items: center;
}
.top-bar .row {
    width: 100%;
    align-items: center;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 4px;
}
.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.75);
    font-size: 12.5px;
    padding: 0 2px;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.top-bar-item:hover { color: var(--gold); }
.top-bar-item i {
    color: var(--gold);
    font-size: 11px;
    width: 14px;
    text-align: center;
}
.top-bar-center {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.3px;
}
.top-bar-center i { color: var(--gold); }
.top-bar-welcome {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.top-bar-divider {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(200,164,90,0.25);
    margin: 0 10px;
    vertical-align: middle;
}
.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}
.top-social {
    display: flex;
    align-items: center;
    gap: 2px;
}
.top-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    transition: var(--transition);
    text-decoration: none;
}
.top-social a:hover {
    color: var(--gold);
    background: rgba(200,164,90,0.1);
}

/* GTranslate Styling - Premium */
.gtranslate_wrapper {
    display: inline-flex;
    align-items: center;
}
.gtranslate_wrapper select {
    background: rgba(200,164,90,0.08) !important;
    color: rgba(255,255,255,0.8) !important;
    border: 1px solid rgba(200,164,90,0.2) !important;
    border-radius: 4px !important;
    padding: 4px 24px 4px 8px !important;
    font-size: 11.5px !important;
    font-family: var(--font-body) !important;
    cursor: pointer;
    outline: none !important;
    appearance: auto;
    transition: var(--transition);
    line-height: 1.4 !important;
}
.gtranslate_wrapper select:hover,
.gtranslate_wrapper select:focus {
    border-color: var(--gold) !important;
    background: rgba(200,164,90,0.15) !important;
}
.gtranslate_wrapper select option {
    background: var(--navy) !important;
    color: #fff !important;
}

/* ============================================
   NAVBAR - Premium Hotel Style
   ============================================ */
#mainNavbar {
    background: var(--navy);
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    border-bottom: none;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
#mainNavbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold-light) 50%, var(--gold) 80%, transparent 100%);
}
#mainNavbar.scrolled {
    background: rgba(10,22,40,0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Brand / Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 6px 0;
    text-decoration: none;
    transition: var(--transition);
}
.navbar-brand:hover { opacity: 0.9; }
.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: var(--transition);
}
#mainNavbar.scrolled .navbar-logo {
    height: 46px;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.82);
    font-weight: 400;
    font-size: 13.5px;
    padding: 24px 15px;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.2px;
    text-decoration: none;
}
#mainNavbar.scrolled .navbar-nav .nav-link {
    padding: 18px 14px;
}
.navbar-nav .nav-link span {
    position: relative;
    display: inline-block;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}
/* Active underline effect */
.navbar-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;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}
/* Hover glow on links */
.navbar-nav .nav-link:hover {
    text-shadow: 0 0 12px rgba(200,164,90,0.25);
}

/* Dropdown - Rooms */
.dropdown-menu-hotel {
    background: var(--navy);
    border: 1px solid rgba(200,164,90,0.15);
    border-radius: 0 0 8px 8px;
    border-top: 2px solid var(--gold);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    padding: 8px 0;
    min-width: 240px;
    animation: dropdownFade 0.25s ease;
}
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown-menu-hotel .dropdown-item {
    color: rgba(255,255,255,0.75);
    font-size: 13.5px;
    padding: 9px 20px;
    transition: var(--transition);
}
.dropdown-menu-hotel .dropdown-item:hover,
.dropdown-menu-hotel .dropdown-item:focus {
    background: rgba(200,164,90,0.1);
    color: var(--gold);
}
.dropdown-menu-hotel .dropdown-item i {
    font-size: 11px;
    opacity: 0.6;
}
.dropdown-menu-hotel .dropdown-divider {
    border-color: rgba(200,164,90,0.12);
    margin: 4px 0;
}
/* Keep dropdown open on hover for desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu-hotel {
        display: block;
    }
    .nav-item.dropdown > .dropdown-toggle::after {
        font-size: 10px;
        margin-left: 4px;
        vertical-align: 2px;
        opacity: 0.5;
        transition: var(--transition);
    }
    .nav-item.dropdown:hover > .dropdown-toggle::after {
        opacity: 1;
        transform: rotate(180deg);
    }
}

/* CTA Button in Navbar */
.nav-cta-btn {
    padding: 10px 22px !important;
    font-size: 13px !important;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    box-shadow: 0 2px 12px rgba(200,164,90,0.25);
    transition: all 0.3s ease !important;
}
.nav-cta-btn:hover {
    box-shadow: 0 4px 20px rgba(200,164,90,0.4);
    transform: translateY(-1px);
}
.nav-item-cta .nav-link { padding: 0 !important; }
.nav-item-cta .nav-link::after { display: none; }

/* Mobile Icon Buttons */
.nav-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(200,164,90,0.3);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
}
.nav-icon-btn:hover { color: var(--gold); border-color: var(--gold); }
.nav-icon-btn--gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.nav-icon-btn--gold:hover {
    background: var(--gold-light);
    color: var(--navy);
}

/* Hamburger Menu Animation */
.hamburger {
    width: 22px;
    height: 18px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.navbar-toggler {
    border: 1px solid rgba(200,164,90,0.3);
    padding: 8px 10px;
    border-radius: 6px;
    transition: var(--transition);
}
.navbar-toggler:hover { border-color: var(--gold); }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Collapse */
@media (max-width: 991px) {
    .top-bar {
        display: none !important;
    }
    .navbar-collapse {
        background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
        padding: 10px 0;
        border-radius: 0 0 12px 12px;
        margin-top: 4px;
        border-top: 1px solid rgba(200,164,90,0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .navbar-nav .nav-link {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(200,164,90,0.06);
    }
    .navbar-nav .nav-link::after { display: none; }
    .navbar-nav .nav-link.active {
        background: rgba(200,164,90,0.08);
        border-left: 3px solid var(--gold);
    }
    .dropdown-menu-hotel {
        background: rgba(0,0,0,0.15);
        border: none;
        border-top: none;
        box-shadow: none;
        padding: 0 0 0 15px;
        border-radius: 0;
    }
    .nav-item-cta {
        padding: 15px 20px;
    }
    .nav-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 22px !important;
    }
    /* Mobile Extra Info Block */
    .navbar-mobile-extra {
        padding: 0 20px 10px;
    }
    .mobile-extra-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(200,164,90,0.2), transparent);
        margin: 10px 0 15px;
    }
    .mobile-contact-row {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
    }
    .mobile-contact-row a {
        color: rgba(255,255,255,0.65);
        font-size: 13px;
        text-decoration: none;
        transition: var(--transition);
    }
    .mobile-contact-row a i {
        color: var(--gold);
        width: 20px;
        text-align: center;
        margin-right: 6px;
    }
    .mobile-contact-row a:hover { color: var(--gold); }
    .mobile-social-row {
        display: flex;
        gap: 8px;
        margin-bottom: 12px;
    }
    .mobile-social-row a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid rgba(200,164,90,0.2);
        color: rgba(255,255,255,0.6);
        font-size: 13px;
        text-decoration: none;
        transition: var(--transition);
    }
    .mobile-social-row a:hover {
        background: rgba(200,164,90,0.15);
        color: var(--gold);
        border-color: var(--gold);
    }
    .mobile-lang-row {
        padding-top: 4px;
    }
}

/* Desktop dropdown toggle - link still works on click */
@media (min-width: 992px) {
    .dropdown-toggle {
        pointer-events: auto;
    }
}

/* Gold Button */
.btn-gold {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    border: 2px solid var(--gold);
    border-radius: 4px;
    padding: 10px 24px;
    font-size: 14px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}
.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-navy:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,22,40,0.5) 0%, rgba(10,22,40,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    margin-bottom: 10px;
}
.hero-content .hero-slogan {
    font-size: 1.3rem;
    color: var(--gold-light);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
.hero-content .btn { margin: 0 8px; }
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.hero-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ============================================
   QUICK BOOKING FORM
   ============================================ */
.booking-bar {
    background: var(--navy);
    padding: 25px 0;
    margin-top: -40px;
    position: relative;
    z-index: 20;
    border-bottom: 3px solid var(--gold);
}
.booking-bar .form-label {
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.booking-bar .form-control,
.booking-bar .form-select {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(200,164,90,0.3);
    color: #fff;
    border-radius: 4px;
    padding: 10px 14px;
}
.booking-bar .form-control::placeholder { color: rgba(255,255,255,0.5); }
.booking-bar .form-control:focus,
.booking-bar .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(200,164,90,0.15);
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.booking-bar .form-select option { background: var(--navy); color: #fff; }

/* ============================================
   SECTION STYLES
   ============================================ */
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 60px 0; }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 10px;
}
.section-header .section-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto;
    border-radius: 2px;
}
.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light-section { background: var(--light); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }

/* ============================================
   ABOUT SECTION (Homepage)
   ============================================ */
.about-home-img {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.about-home-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
}
.about-badge .years {
    font-size: 2rem;
    display: block;
    line-height: 1;
    font-family: var(--font-heading);
}
.about-badge .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   ROOM CARDS
   ============================================ */
.room-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.room-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.room-card:hover .room-card-img img {
    transform: scale(1.05);
}
.room-card-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--navy);
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
}
.room-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.room-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.room-card-body h3 a {
    color: var(--navy);
}
.room-card-body h3 a:hover { color: var(--gold-dark); }
.room-card-body p {
    color: var(--gray);
    font-size: 14px;
    flex: 1;
}
.room-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--gray);
    padding: 12px 0;
    border-top: 1px solid var(--gray-light);
    margin-top: auto;
}
.room-card-features span i {
    color: var(--gold);
    margin-right: 4px;
    width: 16px;
    text-align: center;
}
.room-card-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    gap: 10px;
}
.room-card-footer .btn { flex: 1; font-size: 13px; padding: 8px; }

/* ============================================
   FEATURES SECTION
   ============================================ */
.feature-item {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}
.feature-item:hover { transform: translateY(-5px); }
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(200,164,90,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}
.feature-icon i {
    font-size: 28px;
    color: var(--gold);
}
.feature-item:hover .feature-icon {
    background: var(--gold);
}
.feature-item:hover .feature-icon i {
    color: var(--navy);
}
.feature-item h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.feature-item p {
    font-size: 13px;
    color: var(--gray);
}

/* ============================================
   CAMPAIGN CARDS
   ============================================ */
.campaign-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.campaign-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}
.campaign-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.campaign-card-img .campaign-icon {
    font-size: 3rem;
    color: var(--gold);
}
.campaign-card-body {
    padding: 20px;
}
.campaign-card-body h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.campaign-card-body p {
    font-size: 14px;
    color: var(--gray);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}
.gallery-filter .btn {
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 30px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}
.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,22,40,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i {
    font-size: 2rem;
    color: var(--gold);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
}
.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: 15px;
}
.testimonial-card p {
    font-style: italic;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
}
.testimonial-card .guest-name {
    font-weight: 600;
    color: var(--navy);
    margin-top: 15px;
}
.testimonial-card .guest-country {
    font-size: 12px;
    color: var(--gray);
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card-img .blog-icon {
    font-size: 3rem;
    color: var(--gold);
}
.blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-body .blog-date {
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 8px;
}
.blog-card-body h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.blog-card-body h4 a { color: var(--navy); }
.blog-card-body h4 a:hover { color: var(--gold-dark); }
.blog-card-body p {
    font-size: 14px;
    color: var(--gray);
    flex: 1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--navy);
    padding: 60px 0;
    text-align: center;
}
.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
}
.cta-section p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 15px auto 25px;
}

/* ============================================
   PAGE HEADER / BREADCRUMB
   ============================================ */
.page-header {
    position: relative;
    padding: 130px 0 65px;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: var(--navy);
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(165deg, rgba(10,22,40,0.93) 0%, rgba(10,22,40,0.78) 40%, rgba(10,22,40,0.90) 100%);
    z-index: 1;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    z-index: 3;
}
.page-header .container {
    position: relative;
    z-index: 2;
}
.page-header h1 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
    margin-bottom: 16px;
    animation: phFadeUp 0.8s ease both;
}
.page-header-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 22px;
    animation: phFadeUp 0.8s ease 0.15s both;
}
.page-header-ornament span {
    display: block;
    width: 60px;
    height: 1px;
}
.page-header-ornament span:first-child {
    background: linear-gradient(90deg, transparent, var(--gold));
}
.page-header-ornament span:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.page-header-ornament i {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}
.page-header .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
    background: rgba(255,255,255,0.06);
    display: inline-flex;
    padding: 10px 28px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(200,164,90,0.15);
    animation: phFadeUp 0.8s ease 0.3s both;
}
.page-header nav[aria-label="breadcrumb"] {
    display: flex;
    justify-content: center;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
}
.page-header .breadcrumb-item a:hover { color: var(--gold); }
.page-header .breadcrumb-item.active { color: var(--gold); }
.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(200,164,90,0.5);
    content: '\203A';
    font-size: 16px;
}
@keyframes phFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   ROOM DETAIL PAGE
   ============================================ */
.room-detail-gallery {
    border-radius: 10px;
    overflow: hidden;
}

/* Main Image Wrapper */
.room-main-img-wrap {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}
.room-detail-main-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.room-main-img-wrap:hover .room-detail-main-img {
    transform: scale(1.02);
}
.room-main-img-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10,22,40,0.0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    transition: all 0.35s ease;
    pointer-events: none;
}
.room-main-img-wrap:hover .room-main-img-overlay {
    background: rgba(10,22,40,0.35);
    opacity: 1;
}
.room-main-img-overlay i {
    font-size: 28px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.room-main-img-overlay span {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.room-img-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(10,22,40,0.7);
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}
.room-img-counter::before {
    content: '\f03e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 6px;
    font-size: 11px;
    color: var(--gold);
}

/* Thumbnails */
.room-detail-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
.room-detail-thumbs::-webkit-scrollbar { height: 4px; }
.room-detail-thumbs::-webkit-scrollbar-track { background: transparent; }
.room-detail-thumbs::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.room-detail-thumb {
    width: 90px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.25s ease;
    flex-shrink: 0;
    border: 2px solid transparent;
}
.room-detail-thumb:hover {
    opacity: 0.85;
}
.room-detail-thumb.active {
    opacity: 1;
    border-color: var(--gold);
    box-shadow: 0 2px 8px rgba(200,164,90,0.3);
}

/* ============================================
   ROOM GALLERY MODAL (Fullscreen Lightbox)
   ============================================ */
.room-gallery-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.room-gallery-modal.open {
    opacity: 1;
    visibility: visible;
}
.rgm-backdrop {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(6,15,29,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
/* Close Button */
.rgm-close {
    position: absolute;
    top: 16px; right: 20px;
    z-index: 10;
    background: none;
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.rgm-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}
/* Counter */
.rgm-counter {
    position: absolute;
    top: 22px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
}
.rgm-counter span { color: var(--gold); font-weight: 700; }
/* Nav Arrows */
.rgm-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.rgm-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-50%) scale(1.08);
}
.rgm-prev { left: 20px; }
.rgm-next { right: 20px; }
/* Image */
.rgm-image-wrap {
    position: relative;
    z-index: 5;
    max-width: 85vw;
    max-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rgm-image {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    transition: opacity 0.25s ease;
    user-select: none;
    -webkit-user-drag: none;
}
/* Modal Thumbnails */
.rgm-thumbs {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 6px;
    max-width: 80vw;
    overflow-x: auto;
    padding: 8px 12px;
    background: rgba(10,22,40,0.6);
    border-radius: 10px;
    backdrop-filter: blur(6px);
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
.rgm-thumbs::-webkit-scrollbar { height: 3px; }
.rgm-thumbs::-webkit-scrollbar-track { background: transparent; }
.rgm-thumbs::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.rgm-thumb {
    width: 64px;
    height: 46px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.4;
    flex-shrink: 0;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}
.rgm-thumb:hover { opacity: 0.75; }
.rgm-thumb.active {
    opacity: 1;
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

/* Responsive Gallery Modal */
@media (max-width: 767px) {
    .rgm-nav { width: 40px; height: 40px; font-size: 15px; }
    .rgm-prev { left: 8px; }
    .rgm-next { right: 8px; }
    .rgm-close { top: 10px; right: 12px; width: 38px; height: 38px; font-size: 16px; }
    .rgm-counter { top: 16px; font-size: 13px; }
    .rgm-image-wrap { max-width: 94vw; max-height: 65vh; }
    .rgm-image { max-height: 65vh; }
    .rgm-thumbs { max-width: 92vw; bottom: 10px; padding: 6px 8px; gap: 4px; }
    .rgm-thumb { width: 50px; height: 36px; }
}
.room-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.room-features-list .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--light);
    border-radius: 6px;
    font-size: 14px;
}
.room-features-list .feature i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}
.room-info-table td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--gray-light);
    font-size: 14px;
}
.room-info-table td:first-child {
    font-weight: 600;
    color: var(--navy);
    width: 40%;
}
.room-info-table td i {
    color: var(--gold);
    margin-right: 8px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-values .value-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}
.about-values .value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.about-values .value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(200,164,90,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.about-values .value-icon i {
    font-size: 24px;
    color: var(--gold);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card {
    background: var(--navy);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.contact-info-item i {
    color: var(--gold);
    font-size: 20px;
    margin-top: 3px;
    width: 24px;
    text-align: center;
}
.contact-info-item h6 {
    color: var(--gold-light);
    margin-bottom: 3px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-info-item p,
.contact-info-item a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
}
.contact-info-item a:hover { color: var(--gold); }

/* ============================================
   FORMS
   ============================================ */
.form-control, .form-select {
    border-radius: 4px;
    padding: 10px 14px;
    border: 1px solid var(--gray-light);
    font-size: 14px;
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,164,90,0.15);
}
.form-label {
    font-weight: 500;
    font-size: 14px;
    color: var(--navy);
}
.reservation-form {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section .accordion-item {
    border: 1px solid var(--gray-light);
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-section .accordion-button {
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
}
.faq-section .accordion-button:not(.collapsed) {
    background: rgba(200,164,90,0.08);
    color: var(--gold-dark);
}
.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--gold);
}
.faq-section .accordion-body {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
}
.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(200,164,90,0.15);
}
.footer-title {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}
.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact li i {
    color: var(--gold);
    margin-top: 3px;
    width: 16px;
    text-align: center;
}
.footer-contact a {
    color: rgba(255,255,255,0.6);
}
.footer-contact a:hover { color: var(--gold); }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(200,164,90,0.3);
    color: var(--gold);
    margin-right: 8px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.footer-bottom {
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   WHATSAPP FLOAT & BACK TO TOP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    background: #128c7e;
    color: #fff;
    transform: scale(1.1);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--gold);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page-404 h1 {
    font-size: 6rem;
    color: var(--gold);
    font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content .hero-slogan { font-size: 1rem; }
    .hero-section { height: 60vh; min-height: 400px; }
    .section-header h2 { font-size: 1.8rem; }
    .booking-bar { margin-top: 0; }
    .room-detail-main-img { height: 300px; }
    .room-features-list { grid-template-columns: 1fr; }
    .page-header { padding: 115px 0 55px; background-attachment: scroll; }
    .page-header h1 { font-size: 2.4rem; }
}

@media (max-width: 767px) {
    .hero-content h1 { font-size: 1.8rem; }
    .section-padding { padding: 50px 0; }
    .page-header { padding: 100px 0 45px; }
    .page-header h1 { font-size: 2rem; }
    .page-header-ornament span { width: 45px; }
    .room-detail-main-img { height: 250px; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .gallery-item { height: 180px; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
    .back-to-top { bottom: 20px; left: 20px; }
    .navbar-logo { height: 48px; }
}

@media (max-width: 576px) {
    body { font-size: 14px; }
    .hero-content h1 { font-size: 1.5rem; }
    .hero-content .btn { font-size: 13px; padding: 8px 16px; margin: 4px; }
    .section-header h2 { font-size: 1.5rem; }
    .booking-bar .row > div { margin-bottom: 10px; }
    .page-header { padding: 85px 0 35px; }
    .page-header h1 { font-size: 1.6rem; letter-spacing: 1px; }
    .page-header-ornament span { width: 35px; }
    .navbar-logo { height: 40px; }
}
