/*
 * Nostalji Suite Hotel - Premium CSS
 * Concept: Elegant, Nostalgic, Modern UX
 * Colors: Gold, Charcoal, Cream, Burgundy
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&display=swap');

:root {
    --gold: #C5A059;
    --gold-dark: #A68541;
    --gold-light: #D4B670;
    --charcoal: #1A1A1A;
    --charcoal-light: #2A2A2A;
    --cream: #FDFBF7;
    --beige: #F5F1E9;
    --burgundy: #4A0E0E;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #777777;
    --text-light: #999999;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.1);
    --radius: 0px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.3;
}

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

ul { list-style: none; }

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== TYPOGRAPHY ==================== */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.section-padding { padding: 100px 0; }

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header .section-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
}

.section-header .section-tag::before,
.section-header .section-tag::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 12px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Ornament Divider */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.ornament::before, .ornament::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.ornament i {
    color: var(--gold);
    font-size: 14px;
}

/* ==================== BUTTONS ==================== */
.btn-premium {
    display: inline-block;
    padding: 16px 42px;
    background-color: var(--charcoal);
    color: var(--white);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    border: 1px solid var(--charcoal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Outfit', sans-serif;
}

.btn-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--gold);
    z-index: -1;
    transition: var(--transition);
}

.btn-premium:hover::after {
    height: 100%;
}

.btn-premium:hover {
    border-color: var(--gold);
}

.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.btn-gold::after {
    background-color: var(--charcoal);
}

.btn-outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-white {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn-white::after {
    background-color: var(--gold);
}

.btn-white:hover {
    color: var(--white);
    border-color: var(--gold);
}

/* ==================== PRELOADER ==================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease;
}

.preloader-inner {
    text-align: center;
}

.preloader-ornament {
    width: 40px;
    height: 40px;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.preloader-inner span {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    letter-spacing: 5px;
}

/* ==================== NAVIGATION ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(255,255,255,0.97);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

header.scrolled .nav-links a { color: var(--charcoal); }
header.scrolled .logo-main { color: var(--charcoal); }
header.scrolled .logo-sub { color: var(--gold); }
header.scrolled .header-phone { color: var(--charcoal); }

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 60px; }

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.logo-sub {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 400;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 10px 25px !important;
    letter-spacing: 1px !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

header.scrolled .mobile-toggle span { background: var(--charcoal); }

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

.mobile-nav {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100%;
    background: var(--charcoal);
    z-index: 2001;
    padding: 30px;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-head .logo-main { color: var(--white); }

.mobile-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
}

.mobile-nav a {
    display: block;
    color: rgba(255,255,255,0.7);
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-weight: 400;
}

.mobile-nav a:hover { color: var(--gold); padding-left: 10px; }

.mobile-cta {
    display: block;
    background: var(--gold) !important;
    color: var(--white) !important;
    text-align: center;
    padding: 15px !important;
    margin-top: 20px;
    font-weight: 600 !important;
}

.mobile-whatsapp {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366 !important;
    color: var(--white) !important;
    text-align: center;
    padding: 15px !important;
    margin-top: 10px;
    font-weight: 600 !important;
}

/* ==================== HERO SECTION ==================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    animation: heroZoom 15s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26,26,26,0.4), rgba(26,26,26,0.6));
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-content .hero-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 72px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.85;
    max-width: 550px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    color: var(--white);
}

.hero-scroll span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ==================== BOOKING BAR ==================== */
.booking-bar {
    background: var(--white);
    padding: 30px 40px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 20px;
    align-items: end;
}

.booking-group label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 1px;
}

.booking-group input,
.booking-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #eee;
    font-family: 'Outfit', sans-serif;
    outline: none;
    font-size: 15px;
    transition: var(--transition);
    background: var(--cream);
}

.booking-group input:focus,
.booking-group select:focus {
    border-color: var(--gold);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 120px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    z-index: 2;
}

.about-img-accent span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

.about-img-accent span:last-child {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-top: 5px;
}

.about-text .section-tag {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.about-feature i {
    color: var(--gold);
    font-size: 18px;
}

/* ==================== ROOMS SECTION ==================== */
.rooms-section {
    padding: 120px 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.room-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.room-card:hover .room-img img {
    transform: scale(1.1);
}

.room-price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    font-weight: 600;
    font-size: 16px;
    z-index: 2;
}

.room-info {
    padding: 30px;
}

.room-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.room-info h3 a:hover { color: var(--gold); }

.room-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-meta i {
    color: var(--gold);
}

.room-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.room-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.room-card-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-card-link:hover { gap: 14px; }

.room-price {
    font-size: 24px;
    color: var(--gold);
    font-weight: 700;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 120px 0;
    background: var(--charcoal);
    color: var(--white);
}

.services-section .section-header h2 { color: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197,160,89,0.3);
    border-radius: 50%;
    transition: var(--transition);
}

.service-icon i {
    font-size: 28px;
    color: var(--gold);
}

.service-card:hover .service-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.service-card:hover .service-icon i { color: var(--white); }

.service-card h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.7;
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
    padding: 120px 0;
    background: var(--beige);
    overflow: hidden;
}

.review-slider {
    overflow: hidden;
    position: relative;
}

.review-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.review-track::-webkit-scrollbar { display: none; }

.review-card {
    min-width: 380px;
    max-width: 400px;
    background: var(--white);
    padding: 40px;
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow);
}

.review-stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 14px;
}

.review-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.review-author-info h5 {
    font-size: 16px;
    margin-bottom: 3px;
}

.review-author-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    color: var(--white);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,26,26,0.75);
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

/* ==================== BLOG SECTION ==================== */
.blog-section {
    padding: 120px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-img {
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img { transform: scale(1.08); }

.blog-body {
    padding: 30px;
}

.blog-date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.blog-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.blog-body h3 a:hover { color: var(--gold); }

.blog-body p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
}

.blog-read-more:hover { gap: 14px; }

/* ==================== PAGE HERO (Inner Pages) ==================== */
.page-hero {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26,26,26,0.5), rgba(26,26,26,0.7));
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
}

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

/* ==================== ROOM DETAIL ==================== */
.room-detail-section {
    padding: 80px 0;
}

.room-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.room-gallery {
    position: relative;
}

.room-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 15px;
}

.room-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.room-thumb {
    width: 100px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}

.room-thumb:hover,
.room-thumb.active {
    opacity: 1;
    border-color: var(--gold);
}

.room-detail-info h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.room-detail-price {
    font-size: 32px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 25px;
}

.room-detail-price small {
    font-size: 14px;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.room-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--cream);
}

.room-feature-item i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.room-detail-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Room Detail Sidebar */
.room-sidebar {
    position: sticky;
    top: 100px;
}

.room-booking-card {
    background: var(--cream);
    padding: 35px;
    border: 1px solid #eee;
}

.room-booking-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}

.room-booking-card .form-group {
    margin-bottom: 18px;
}

.room-booking-card label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.room-booking-card input,
.room-booking-card select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-family: 'Outfit', sans-serif;
    outline: none;
    background: var(--white);
}

.room-booking-card input:focus,
.room-booking-card select:focus {
    border-color: var(--gold);
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--cream);
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-info-card:hover { transform: translateX(5px); }

.contact-info-card i {
    color: var(--gold);
    font-size: 22px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-info-card a:hover { color: var(--gold); }

.contact-form { background: var(--cream); padding: 40px; }

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    font-family: 'Outfit', sans-serif;
    outline: none;
    margin-bottom: 15px;
    font-size: 15px;
    background: var(--white);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea { height: 150px; resize: vertical; }

.contact-map {
    margin-top: 60px;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(30%);
}

/* ==================== GALLERY PAGE ==================== */
.gallery-section {
    padding: 80px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid #e0e0e0;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,26,26,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 {
    color: var(--white);
    font-size: 28px;
}

/* ==================== LIGHTBOX ==================== */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

#lightbox.open {
    opacity: 1;
    visibility: visible;
}

#lightbox-img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
}

#lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
}

/* ==================== FAQ PAGE ==================== */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
    font-size: 14px;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

/* ==================== BLOG DETAIL ==================== */
.blog-detail-section {
    padding: 80px 0;
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.blog-detail-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 30px;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.blog-detail-meta i { color: var(--gold); margin-right: 5px; }

.blog-detail-content {
    font-size: 16px;
    line-height: 2;
    color: var(--text-main);
}

.blog-detail-content p { margin-bottom: 20px; }
.blog-detail-content h2, .blog-detail-content h3 { margin: 30px 0 15px; }

/* Blog Sidebar */
.blog-sidebar h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.recent-post-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-item h5 {
    font-size: 14px;
    margin-bottom: 5px;
}

.recent-post-item h5 a:hover { color: var(--gold); }

.recent-post-item span {
    font-size: 12px;
    color: var(--text-light);
}

/* ==================== RESERVATION PAGE ==================== */
.reservation-section {
    padding: 80px 0;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.reservation-info {
    padding: 40px;
    background: var(--charcoal);
    color: var(--white);
}

.reservation-info h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
}

.reservation-info p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    line-height: 1.8;
}

.res-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.res-info-item i {
    color: var(--gold);
    font-size: 20px;
    width: 25px;
}

.res-info-item span {
    color: rgba(255,255,255,0.8);
}

.reservation-form {
    background: var(--cream);
    padding: 40px;
}

.reservation-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.reservation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.reservation-form .form-group {
    margin-bottom: 18px;
}

.reservation-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-family: 'Outfit', sans-serif;
    outline: none;
    font-size: 15px;
    background: var(--white);
    transition: var(--transition);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    border-color: var(--gold);
}

.reservation-form textarea {
    height: 120px;
    resize: vertical;
}

/* ==================== CONTENT PAGE ==================== */
.content-section {
    padding: 80px 0;
}

.content-page {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 2;
    color: var(--text-main);
}

.content-page h2, .content-page h3 { margin: 30px 0 15px; }
.content-page p { margin-bottom: 20px; }
.content-page ul { padding-left: 25px; margin-bottom: 20px; list-style: disc; }

/* ==================== ABOUT PAGE ==================== */
.about-page-section { padding: 80px 0; }

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-story-grid img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    padding: 80px 0;
    background: var(--cream);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.value-card {
    padding: 40px 20px;
}

.value-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ==================== SERVICES PAGE ==================== */
.services-page-section { padding: 80px 0; }

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}

.service-detail-card:nth-child(even) {
    direction: rtl;
}

.service-detail-card:nth-child(even) > * {
    direction: ltr;
}

.service-detail-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-detail-img {
    height: 400px;
    overflow: hidden;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-detail-card:hover .service-detail-img img {
    transform: scale(1.05);
}

.service-detail-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detail-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    padding-bottom: 15px;
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* .footer-contact empty removed */

.fc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.fc-item i {
    color: var(--gold);
    margin-top: 4px;
    width: 16px;
}

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

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

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

.footer-logo .logo-main { font-size: 22px; }

/* ==================== WHATSAPP WIDGET ==================== */

/* ==================== ANIMATIONS ==================== */
.anim-up, .anim-fade, .anim-left, .anim-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.anim-up { transform: translateY(40px); }
.anim-left { transform: translateX(-40px); }
.anim-right { transform: translateX(40px); }

.anim-visible {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) !important;
}

/* Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==================== ALERT MESSAGES ==================== */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==================== CAMPAIGNS SECTION ==================== */
.campaigns-section {
    padding: 120px 0;
    background: var(--cream);
}

.campaign-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.campaign-img {
    height: 350px;
    overflow: hidden;
}

.campaign-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.campaign-card:hover .campaign-img img { transform: scale(1.05); }

.campaign-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.campaign-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.campaign-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* ==================== PAGINATION ==================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #eee;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.pagination a:hover,
.pagination .current {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 56px; }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .nav-links { display: none; }
    .mobile-toggle { 
        display: flex; 
        flex-direction: column;
        justify-content: space-between;
        background: rgba(255,255,255,0.1); 
        width: 40px; 
        height: 40px; 
        padding: 12px 10px;
        border-radius: 4px;
    }
    .header-phone { 
        background: rgba(255,255,255,0.1); 
        width: 40px; 
        height: 40px; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        border-radius: 4px;
        color: var(--white);
    }
    .header-phone span { display: none; }
    .header-phone i { font-size: 16px; }
    .header-actions { gap: 10px; padding-right: 15px; }
    
    header.scrolled .mobile-toggle,
    header.scrolled .header-phone {
        background: rgba(0,0,0,0.05);
    }

    .booking-bar { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 44px; }
    .section-header h2 { font-size: 32px; }
    .about-grid, .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-accent { display: none; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .room-detail-grid { grid-template-columns: 1fr; }
    .blog-detail-grid { grid-template-columns: 1fr; }
    .reservation-grid { grid-template-columns: 1fr; }
    .service-detail-card { grid-template-columns: 1fr; }
    .service-detail-card:nth-child(even) { direction: ltr; }
    .campaign-card { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .page-hero-content h1 { font-size: 38px; }
    .cta-section h2 { font-size: 36px; }
    
    /* Logo fix for mid-size screens */
    .logo-main { font-size: 20px; }
    .logo-sub { font-size: 9px; letter-spacing: 3px; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .rooms-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .booking-bar { grid-template-columns: 1fr; padding: 20px; }
    .room-features { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .reservation-form .form-row { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 32px; line-height: 1.2; margin-bottom: 15px; }
    .hero-content .hero-tag { margin-bottom: 10px; font-size: 11px; }
    .hero-content p { font-size: 15px; margin-bottom: 25px; }
    .hero { height: auto; min-height: 550px; padding: 120px 0 80px; }
    .hero-buttons { flex-wrap: nowrap; gap: 10px; }
    .hero-buttons .btn-premium { padding: 14px 15px; font-size: 11px; flex: 1; text-align: center; white-space: nowrap; }
    .page-hero { height: 250px; }
    .review-card { min-width: 280px; }
    .booking-bar { margin-top: 20px; grid-template-columns: 1fr; padding: 25px; }
}

/* ==================== FLOATING CONTACT BAR ==================== */
.floating-contact-bar {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.floating-btn.whatsapp a { background: #25D366; }
.floating-btn.call a { background: #007bff; }
.floating-btn.location a { background: #EA4335; }

.floating-btn a:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .floating-contact-bar {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .floating-btn a {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
}

/* Pulse Animation for WhatsApp */
.floating-btn.whatsapp a {
    animation: pulseContact 2s infinite;
}

@keyframes pulseContact {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}