/* =====================================================
   HOTEL EDEN IAȘI - Premium Tourism Website
   Cohesive, Modern, Dynamic Design
   ===================================================== */

:root {
    /* Primary Palette - Elegant Deep Tones */
    --primary: #1e3a32;
    --primary-light: #2d5247;
    --primary-dark: #152a25;
    --primary-rgb: 30, 58, 50;

    /* Accent - Warm Gold */
    --accent: #c9a227;
    --accent-light: #e3bf4a;
    --accent-dark: #a88620;
    --accent-rgb: 201, 162, 39;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #faf9f7;
    --cream: #f5f3ef;
    --gray-100: #f0eeea;
    --gray-200: #e0ddd7;
    --gray-300: #c5c1b8;
    --gray-400: #9d9890;
    --gray-500: #6e6a62;
    --gray-600: #4a4740;
    --gray-700: #2d2b27;
    --gray-800: #1a1917;
    --black: #0d0c0b;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    /* Spacing */
    --section-py: clamp(80px, 10vw, 120px);
    --container: 1200px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(201, 162, 39, 0.3);

    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition-fast: 0.2s ease;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   PRELOADER
   ===================================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 8px;
    margin-bottom: 30px;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-800);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.section-tag.light {
    color: var(--accent-light);
}

.section-tag.light::before,
.section-tag.light::after {
    background: var(--accent-light);
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title.light {
    color: var(--white);
}

.section-title .highlight {
    color: var(--accent);
}

.section-title .highlight-light {
    color: var(--accent-light);
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: var(--transition);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--accent);
    color: var(--gray-800);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-accent {
    background: var(--accent);
    color: var(--gray-800);
}

.btn-accent:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

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

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 11px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 14px 0;
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 54px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.nav.scrolled .nav-logo {
    filter: none;
}

/* Hero logo overlay */
.hero-logo-overlay {
    position: absolute;
    top: 145px;
    left: clamp(60px, 10vw, 180px);
    z-index: 3;
    pointer-events: none;
}

.hero-logo-overlay img {
    width: clamp(130px, 14vw, 200px);
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 4px 24px rgba(0,0,0,0.4));
    opacity: 0.92;
}

/* Footer logo */
.footer-logo-img {
    height: 52px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    margin-bottom: 16px;
    transition: opacity 0.3s;
}

.footer-logo:hover .footer-logo-img {
    opacity: 1;
}

.brand-icon {
    font-size: 24px;
    color: var(--accent);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
    letter-spacing: 1px;
}

.brand-location {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
}

.nav.scrolled .brand-name {
    color: var(--gray-800);
}

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

.nav-link {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.9);
    position: relative;
    padding: 8px 0;
}

.nav.scrolled .nav-link {
    color: var(--gray-600);
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    padding: 10px 18px;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-phone:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.nav-phone i {
    color: var(--accent);
    font-size: 12px;
}

.nav.scrolled .nav-phone {
    color: var(--gray-700);
    border-color: var(--gray-200);
}

.nav.scrolled .nav-phone:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.nav-cta {
    padding: 12px 28px;
    background: var(--accent);
    color: var(--gray-800);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-sm);
}

.nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav.scrolled .nav-toggle span {
    background: var(--gray-800);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
    background-size: cover;
    background-position: center;
}

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

.hero-slide[data-slide="1"] {
    background-image: url('../images/IMG_6847.jpg');
    background-size: cover;
    background-position: center;
}

.hero-slide[data-slide="2"] {
    background-image: url('../images/IMG_6841.JPG');
    background-size: cover;
    background-position: center;
}

.hero-slide[data-slide="3"] {
    background-image: url('../images/L1030041_web_1.JPG');
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-badge .star {
    color: var(--accent);
    font-size: 14px;
}

.hero-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.8);
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title .title-line {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.hero-title .title-main {
    display: block;
    font-size: clamp(56px, 12vw, 120px);
    font-weight: 500;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1;
}

.hero-title .title-sub {
    display: block;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 12px;
    margin-top: 8px;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    color: var(--accent);
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.2);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.hero-scroll span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin: 0 auto;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

.slider-dot:hover {
    border-color: var(--accent);
}

/* =====================================================
   QUICK BOOKING BAR
   ===================================================== */
.quick-book {
    background: var(--white);
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 100;
}

.quick-book-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.quick-book-form .form-group {
    padding: 24px 28px;
    border-right: 1px solid var(--gray-100);
}

.quick-book-form .form-group:last-of-type {
    border-right: none;
}

.quick-book-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.quick-book-form label i {
    color: var(--accent);
}

.quick-book-form input,
.quick-book-form select {
    width: 100%;
    padding: 8px 0;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
    border: none;
    background: transparent;
    cursor: pointer;
}

.quick-book-form input:focus,
.quick-book-form select:focus {
    outline: none;
}

.quick-book-form .btn {
    border-radius: 0;
    padding: 24px 40px;
    white-space: nowrap;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
    padding: var(--section-py) 0;
    background: var(--white);
}

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

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 70%;
}

.about-img-secondary {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 50%;
    height: 45%;
    z-index: 2;
}

.about-img-tertiary {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 35%;
    height: 35%;
    z-index: 1;
}

.img-frame {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder i {
    font-size: 60px;
    color: rgba(255,255,255,0.3);
}

.gradient-1 { background: linear-gradient(135deg, #1e3a32, #2d5247); }
.gradient-2 { background: linear-gradient(135deg, #2d4a52, #3d6068); }
.gradient-3 { background: linear-gradient(135deg, #4a3852, #6a5872); }
.gradient-4 { background: linear-gradient(135deg, #c9a227, #e3bf4a); }
.gradient-5 { background: linear-gradient(135deg, #8b5a3c, #a67c5b); }
.gradient-6 { background: linear-gradient(135deg, #3d5a80, #5d7a9a); }

.gradient-gold { background: linear-gradient(135deg, #c9a227, #a88620); }
.gradient-blue { background: linear-gradient(135deg, #2d5a6a, #4d7a8a); }
.gradient-green { background: linear-gradient(135deg, #2d5247, #4d7267); }

.gradient-warm { background: linear-gradient(135deg, #8b4513, #a0522d); }
.gradient-warm-2 { background: linear-gradient(135deg, #722f37, #943e48); }
.gradient-warm-3 { background: linear-gradient(135deg, #5d4037, #795548); }

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: var(--accent);
    color: var(--gray-800);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-glow);
    z-index: 10;
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.about-lead {
    font-size: 20px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--gray-100);
    transform: translateX(5px);
}

.about-feature .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.about-feature h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 13px;
    color: var(--gray-500);
}

/* =====================================================
   AMENITIES STRIP
   ===================================================== */
.amenities-strip {
    background: var(--primary);
    padding: 24px 0;
    overflow: hidden;
}

.amenities-scroll {
    display: flex;
    animation: scrollAmenities 30s linear infinite;
}

@keyframes scrollAmenities {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    white-space: nowrap;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.amenity-item i {
    color: var(--accent);
    font-size: 16px;
}

/* =====================================================
   ROOMS SECTION
   ===================================================== */
.rooms {
    padding: var(--section-py) 0;
    background: var(--cream);
}

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

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.room-card.featured {
    box-shadow: var(--shadow-md), 0 0 0 2px var(--accent);
}

.room-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.room-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.room-card:hover .room-placeholder {
    transform: scale(1.05);
}

.room-placeholder i {
    font-size: 60px;
    color: rgba(255,255,255,0.3);
}

.room-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
}

.badge {
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.badge-popular {
    background: var(--accent);
    color: var(--gray-800);
}

.badge-family {
    background: #3d7a8a;
    color: var(--white);
}

.badge-business {
    background: var(--gray-700);
    color: var(--white);
}

.room-price-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.room-price-tag .price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.room-price-tag .currency {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.room-price-tag .period {
    font-size: 12px;
    color: var(--gray-400);
}

.room-body {
    padding: 28px;
}

.room-title {
    font-size: 24px;
    margin-bottom: 4px;
}

.room-subtitle {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.room-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.room-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500);
}

.room-specs i {
    color: var(--accent);
    font-size: 12px;
}

.room-amenities {
    margin-bottom: 24px;
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
}

.room-amenities li i {
    color: var(--accent);
    font-size: 10px;
}

/* Room Policies */
.room-policies {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.policy {
    display: flex;
    align-items: center;
    gap: 16px;
}

.policy i {
    font-size: 24px;
    color: var(--accent);
}

.policy div {
    font-size: 13px;
    color: var(--gray-600);
}

.policy strong {
    color: var(--gray-800);
}

/* =====================================================
   RESTAURANT SECTION
   ===================================================== */
.restaurant {
    position: relative;
    padding: var(--section-py) 0;
    overflow: hidden;
}

.restaurant-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.restaurant-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.restaurant > .container {
    position: relative;
    z-index: 1;
}

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

.restaurant-lead {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 36px;
}

.restaurant-features {
    margin-bottom: 32px;
}

.rest-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.rest-feature:last-child {
    border-bottom: none;
}

.rest-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rest-icon i {
    color: var(--accent);
    font-size: 18px;
}

.rest-feature h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.rest-feature p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.restaurant-hours {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.restaurant-hours h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.restaurant-hours h4 i {
    color: var(--accent);
}

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

.hour-item {
    text-align: center;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
}

.hour-item .meal {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.hour-item .time {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.restaurant-promo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--accent);
    color: var(--gray-800);
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
}

.restaurant-promo i {
    font-size: 20px;
}

.restaurant-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.restaurant-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    height: 500px;
}

.rest-img {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.rest-img-1 {
    grid-row: span 2;
}

.rest-img .img-placeholder {
    transition: var(--transition);
}

.rest-img:hover .img-placeholder {
    transform: scale(1.05);
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */
.gallery {
    padding: var(--section-py) 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large,
.gallery-item.tall {
    grid-column: unset;
    grid-row: unset;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-placeholder i {
    font-size: 48px;
    color: rgba(255,255,255,0.4);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-overlay span {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

/* =====================================================
   ATTRACTIONS
   ===================================================== */
.attractions {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.attractions-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.attraction-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.attraction-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.attraction-distance {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: var(--accent);
    color: var(--gray-800);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.attraction-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.attraction-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* =====================================================
   REVIEWS SECTION
   ===================================================== */
.reviews {
    padding: var(--section-py) 0;
    background: var(--white);
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.rating-score {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--gray-800);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.rating-stars {
    color: var(--accent);
    margin-bottom: 4px;
}

.rating-info span {
    font-size: 13px;
    color: var(--gray-500);
}

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

.review-card {
    background: var(--cream);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.reviewer-info h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
}

.reviewer-info span {
    font-size: 12px;
    color: var(--gray-400);
}

.review-score {
    margin-left: auto;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.review-text {
    font-size: 15px;
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-date {
    font-size: 12px;
    color: var(--gray-400);
}

.reviews-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.review-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
}

.review-logo i {
    font-size: 32px;
}

.review-logo span {
    font-size: 12px;
    font-weight: 600;
}

.booking-logo {
    font-size: 18px;
    font-weight: 700;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    padding: var(--section-py) 0;
    background: var(--cream);
}

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

.contact-desc {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.method-icon {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 20px;
    color: var(--accent);
}

.method-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.method-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
}

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

.social-link {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
}

.social-link.whatsapp:hover {
    background: #25D366;
}

.contact-map-wrapper {
    position: relative;
}

.map-container {
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.map-overlay-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.map-overlay-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--gray-800);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 0.8fr 0.9fr 1fr;
    gap: 36px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .brand-name {
    color: var(--white);
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--gray-800);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    transition: var(--transition);
}

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

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--gray-400);
}

.footer-contact ul li i {
    color: var(--accent);
    width: 16px;
}

.footer-contact ul li a {
    color: var(--gray-400);
}

.footer-contact ul li a:hover {
    color: var(--accent);
}

.footer-badges {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-badges-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-badge-link {
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-badge-link:hover {
    opacity: 1;
}

.footer-badge-img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

/* =====================================================
   BACK TO TOP & WHATSAPP FLOAT
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--gray-800);
    transform: translateY(-4px);
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
    .attractions-slider {
        grid-template-columns: repeat(3, 1fr);
    }

    .attraction-card:nth-child(4),
    .attraction-card:nth-child(5) {
        display: none;
    }
}

@media (max-width: 1024px) {
    .quick-book-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-book-form .btn {
        grid-column: span 2;
    }

    .about-grid,
    .restaurant-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        height: 450px;
        order: -1;
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rooms-grid .room-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .room-policies {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid .review-card:last-child {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Conference section */
    .conference-section > .container > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    /* Nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        color: var(--gray-700);
        font-size: 16px;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Quick Book */
    .quick-book-form {
        grid-template-columns: 1fr;
    }

    .quick-book-form .form-group {
        border-right: none;
        border-bottom: 1px solid var(--gray-100);
    }

    .quick-book-form .btn {
        grid-column: 1;
    }

    /* Rooms */
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .rooms-grid .room-card:last-child {
        grid-column: 1;
        max-width: 100%;
    }

    .room-policies {
        grid-template-columns: 1fr;
    }

    /* Restaurant */
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-gallery {
        height: 350px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 150px);
    }

    /* Attractions */
    .attractions-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .attraction-card:nth-child(3) {
        display: none;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid .review-card:last-child {
        display: block;
    }

    /* Contact */
    .map-container {
        height: 350px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* WhatsApp */
    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    /* Hero */
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .hero-slider-nav {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title .title-main {
        font-size: 48px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .attractions-slider {
        grid-template-columns: 1fr;
    }

    .attraction-card:nth-child(3) {
        display: block;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
