/* ===== CSS VARIABLES ===== */
:root {
    --navy: #0E2A3A;
    --navy-dark: #0A2030;
    --gold: #C9A96A;
    --gold-dark: #A8823F;
    --gold-light: #E0C892;
    --gold-soft: #F3EADA;
    --ivory: #F6F1E9;
    --ivory-2: #EFE7D9;
    --stone: #8A8172;
    --ink: #14232E;
    --slate: #46545E;
    --muted: #8B8577;
    --muted-light: #B6AF9F;
    --bg: #FDFBF7;
    --surface: #FFFFFF;
    --white: #FFFFFF;
    --dark: #0E2A3A;
    --line: #EAE2D4;
    --line-strong: #DDD3C0;
    --shadow-sm: 0 2px 12px rgba(14, 42, 58, 0.05);
    --shadow-md: 0 14px 38px rgba(14, 42, 58, 0.09);
    --shadow-lg: 0 26px 60px rgba(14, 42, 58, 0.13);
    --shadow-xl: 0 36px 84px rgba(14, 42, 58, 0.18);
    --shadow-gold: 0 14px 34px rgba(201, 169, 106, 0.35);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 36px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
    font-family: 'Jost', sans-serif;
    color: var(--slate);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--ink);
    line-height: 1.15;
    font-weight: 600;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; background: var(--navy); z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-mark {
    font-size: 2.4rem; margin-bottom: 12px; color: var(--gold);
    animation: markPulse 1.4s ease-in-out infinite;
}
@keyframes markPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.18) rotate(45deg); opacity: 1; }
}
.preloader-text {
    display: block; font-family: 'Playfair Display', serif; font-weight: 600;
    font-size: 2rem; letter-spacing: 1px; color: var(--white);
}
.preloader-sub {
    display: block; font-family: 'Jost', sans-serif; font-size: 0.72rem;
    letter-spacing: 5px; color: var(--gold-light); margin-top: 6px; font-weight: 300;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 22px 0; transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(253, 251, 247, 0.94); backdrop-filter: blur(20px);
    padding: 13px 0; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--line);
}
.nav-container {
    max-width: 1240px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-icon {
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); font-size: 1.15rem; box-shadow: var(--shadow-gold);
}
.logo-text {
    font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.4rem;
    letter-spacing: 0.2px; color: var(--ink);
}
.logo-text span { color: var(--gold-dark); }
.navbar:not(.scrolled) .logo-text,
.navbar:not(.scrolled) .nav-links a { color: var(--ink); }
.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a {
    font-size: 0.92rem; font-weight: 500; color: var(--slate);
    transition: color var(--transition); position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
    background: var(--gold-dark); transition: width var(--transition); border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    padding: 11px 26px; background: var(--navy); color: var(--white) !important;
    border-radius: 50px; font-size: 0.9rem; font-weight: 600; transition: all var(--transition);
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--ink); transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 34px; border-radius: 50px; font-family: 'Jost', sans-serif;
    font-size: 0.94rem; font-weight: 500; cursor: pointer; letter-spacing: 0.3px;
    transition: all var(--transition); border: none; white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-accent { background: var(--gold); color: var(--navy); }
.btn-accent:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--line-strong); }
.btn-outline:hover { border-color: var(--gold-dark); color: var(--gold-dark); background: var(--gold-soft); transform: translateY(-3px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-full { width: 100%; }
.btn-sm { padding: 11px 24px; font-size: 0.86rem; }

/* ===== SECTION STYLES ===== */
.section-tag {
    display: inline-flex; align-items: center; gap: 7px; padding: 7px 18px;
    background: var(--gold-soft); border-radius: 50px; font-size: 0.74rem;
    font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold-dark); margin-bottom: 18px;
}
.section-tag.accent { background: rgba(14,42,58,0.07); color: var(--navy); }
.section-tag.light { background: rgba(255,255,255,0.14); color: var(--gold-light); }
.section-header { text-align: center; margin-bottom: 58px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-title {
    font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 600;
    letter-spacing: -0.3px; margin-bottom: 16px;
}
.section-title em { color: var(--gold-dark); font-style: italic; }
.section-desc { font-size: 1.06rem; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ===== HERO ===== */
.hero {
    position: relative; padding: 150px 0 90px;
    background:
        radial-gradient(ellipse at 88% 8%, rgba(201,169,106,0.16) 0%, transparent 52%),
        radial-gradient(ellipse at 6% 92%, rgba(14,42,58,0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--ivory) 0%, var(--bg) 100%);
    overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px;
    background: var(--white); border: 1px solid var(--line); border-radius: 50px;
    font-size: 0.82rem; font-weight: 500; color: var(--slate); margin-bottom: 24px;
    box-shadow: var(--shadow-sm); animation: fadeInUp 0.8s ease-out;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,169,106,0.22); }
.hero-title {
    font-size: clamp(2.6rem, 5.2vw, 4rem); font-weight: 600; letter-spacing: -0.5px;
    line-height: 1.08; margin-bottom: 22px; animation: fadeInUp 0.8s ease-out 0.15s both;
}
.hero-title em { color: var(--gold-dark); font-style: italic; }
.hero-subtitle {
    font-size: 1.12rem; color: var(--muted); max-width: 500px; margin-bottom: 34px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-buttons { display: flex; gap: 14px; margin-bottom: 40px; animation: fadeInUp 0.8s ease-out 0.45s both; }
.hero-trust { display: flex; align-items: center; gap: 22px; animation: fadeInUp 0.8s ease-out 0.6s both; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span {
    width: 42px; height: 42px; border-radius: 50%; border: 3px solid var(--bg);
    margin-left: -12px; display: flex; align-items: center; justify-content: center;
    font-weight: 600; color: #fff; font-size: 0.9rem; font-family: 'Jost', sans-serif;
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust-text strong { display: block; color: var(--ink); font-weight: 600; font-family: 'Jost', sans-serif; }
.hero-trust-text span { font-size: 0.85rem; color: var(--muted); }
.hero-trust-text .stars { color: var(--gold); letter-spacing: 1px; }

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

/* Hero Visual */
.hero-visual { position: relative; animation: fadeInUp 0.9s ease-out 0.4s both; }
.hero-visual-blob {
    position: absolute; inset: -6% -4% -6% 4%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%; z-index: 0;
    animation: blobMorph 13s ease-in-out infinite; opacity: 0.9;
}
@keyframes blobMorph {
    0%, 100% { border-radius: 46% 54% 52% 48% / 55% 46% 54% 45%; }
    50% { border-radius: 54% 46% 45% 55% / 46% 55% 45% 54%; }
}
.hero-visual-img { position: relative; z-index: 1; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.hero-visual-img img { width: 100%; height: 500px; object-fit: cover; }
.hero-float-card {
    position: absolute; z-index: 2; background: var(--white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg); padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.hero-float-card.top { top: 30px; left: -26px; animation: floatY 4s ease-in-out infinite; }
.hero-float-card.bottom { bottom: 34px; right: -22px; animation: floatY 4s ease-in-out infinite 1.5s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-float-icon {
    width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 1.15rem; flex-shrink: 0;
}
.hero-float-icon.gold { background: var(--gold-soft); color: var(--gold-dark); }
.hero-float-icon.navy { background: rgba(14,42,58,0.09); color: var(--navy); }
.hero-float-card .fc-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1rem; color: var(--ink); }
.hero-float-card .fc-sub { font-size: 0.74rem; color: var(--muted); }

/* ===== BOOKING WIDGET ===== */
.booking-widget {
    margin-top: 64px; background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    padding: 14px 18px; animation: fadeInUp 0.9s ease-out 0.7s both;
}
.booking-form { display: flex; align-items: center; gap: 8px; }
.booking-field { flex: 1; padding: 8px 16px; }
.booking-field label {
    display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px;
}
.booking-field input, .booking-field select {
    width: 100%; border: none; background: transparent; outline: none;
    font-family: 'Jost', sans-serif; font-size: 0.98rem; color: var(--ink); font-weight: 500;
    cursor: pointer;
}
.booking-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A8823F' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right center;
}
.booking-divider { width: 1px; height: 42px; background: var(--line); flex-shrink: 0; }
.booking-btn { flex-shrink: 0; padding: 16px 30px; }

/* ===== FEATURES ===== */
.features { padding: 90px 0; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
    padding: 34px 26px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-md); transition: all var(--transition); text-align: center;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card-icon {
    width: 62px; height: 62px; border-radius: 18px; background: var(--gold-soft); color: var(--gold-dark);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.6rem;
}
.feature-card:nth-child(2) .feature-card-icon,
.feature-card:nth-child(4) .feature-card-icon { background: rgba(14,42,58,0.07); color: var(--navy); }
.feature-card h4 { font-size: 1.14rem; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--muted); }

/* ===== ABOUT ===== */
.about { padding: 110px 0; background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 500px; object-fit: cover; }
.about-badge {
    position: absolute; bottom: -26px; right: -22px; background: var(--navy);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 22px 28px; text-align: center;
}
.about-badge .num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 600; color: var(--gold-light); line-height: 1; }
.about-badge .lbl { font-size: 0.76rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
.about-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.about-list-item { display: flex; gap: 14px; align-items: flex-start; }
.about-check {
    width: 28px; height: 28px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-dark);
    display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; margin-top: 2px;
}
.about-list-item h4 { font-size: 1.08rem; font-weight: 600; margin-bottom: 2px; }
.about-list-item p { font-size: 0.9rem; color: var(--muted); }

/* ===== STATS BAND ===== */
.stats-band { padding: 74px 0; background: var(--navy); position: relative; overflow: hidden; }
.stats-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(201,169,106,0.22) 0%, transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(224,200,146,0.12) 0%, transparent 45%);
}
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 600; color: var(--white); line-height: 1; }
.stat-suffix { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold-light); }
.stat-label { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-top: 8px; letter-spacing: 0.3px; }

/* ===== ROOMS ===== */
.rooms { padding: 110px 0; background: var(--bg); }
.rooms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.room-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.room-photo { position: relative; height: 260px; overflow: hidden; }
.room-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-photo img { transform: scale(1.06); }
.room-tag {
    position: absolute; top: 16px; left: 16px; padding: 7px 16px; background: rgba(14,42,58,0.85);
    backdrop-filter: blur(6px); color: var(--gold-light); border-radius: 50px;
    font-size: 0.74rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
}
.room-info { padding: 26px 28px; display: flex; flex-direction: column; flex: 1; }
.room-info h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 8px; }
.room-info > p { font-size: 0.92rem; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.room-specs {
    display: flex; flex-wrap: wrap; gap: 10px 18px; padding: 16px 0;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 18px;
}
.room-spec {
    display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem;
    color: var(--slate); font-weight: 500;
}
.room-spec svg { color: var(--gold-dark); flex-shrink: 0; }
.room-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.room-price strong { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--navy); }
.room-price span { font-size: 0.82rem; color: var(--muted); margin-left: 4px; }

/* ===== AMENITIES ===== */
.amenities { padding: 110px 0; background: var(--ivory); }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.amenity-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; transition: all var(--transition);
}
.amenity-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.amenity-media { height: 180px; overflow: hidden; }
.amenity-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.amenity-card:hover .amenity-media img { transform: scale(1.07); }
.amenity-body { padding: 24px 24px 28px; text-align: center; position: relative; }
.amenity-icon {
    width: 56px; height: 56px; border-radius: 16px; background: var(--gold-soft); color: var(--gold-dark);
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    margin: -52px auto 16px; position: relative; z-index: 2; border: 4px solid var(--surface);
}
.amenity-body h3 { font-size: 1.18rem; font-weight: 600; margin-bottom: 8px; }
.amenity-body p { font-size: 0.87rem; color: var(--muted); }

/* ===== GALLERY ===== */
.gallery { padding: 110px 0; background: var(--bg); }
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item::after {
    content: '\2725'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #fff; background: rgba(14,42,58,0.35); opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item.wide { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 110px 0; background: var(--ivory); }
.testimonials-slider { max-width: 860px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
    min-width: 100%; padding: 50px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm);
}
.testimonial-stars { font-size: 1.2rem; color: var(--gold); letter-spacing: 4px; margin-bottom: 22px; }
.testimonial-text { font-family: 'Playfair Display', serif; font-size: 1.28rem; font-style: italic; color: var(--ink); line-height: 1.7; margin-bottom: 30px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.author-avatar {
    width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.3rem;
}
.testimonial-author h4 { font-size: 1rem; font-weight: 600; }
.testimonial-author span { font-size: 0.83rem; color: var(--muted); }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.testimonial-btn {
    width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--white);
    font-size: 1.1rem; color: var(--slate); cursor: pointer; transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.testimonial-btn:hover { border-color: var(--navy); background: var(--navy); color: var(--gold-light); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); cursor: pointer; transition: all var(--transition); }
.testimonial-dots .dot.active { background: var(--gold-dark); width: 30px; border-radius: 5px; }

/* ===== CTA ===== */
.cta-section { padding: 100px 0; position: relative; overflow: hidden; background: var(--bg); }
.cta-inner {
    position: relative; border-radius: var(--radius-xl); overflow: hidden; padding: 72px 40px; text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.cta-inner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(201,169,106,0.2) 0%, transparent 45%),
                radial-gradient(circle at 82% 85%, rgba(224,200,146,0.14) 0%, transparent 45%);
}
.cta-content { position: relative; z-index: 2; color: var(--white); }
.cta-content h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-content h2 em { font-style: italic; color: var(--gold-light); }
.cta-content p { font-size: 1.1rem; opacity: 0.85; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 110px 0; background: var(--bg); }
.contact-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
.contact-info { display: grid; grid-template-columns: 1fr; gap: 16px; }
.contact-info-card {
    display: flex; gap: 16px; align-items: flex-start; padding: 24px 26px; background: var(--surface);
    border: 1px solid var(--line); border-radius: var(--radius-md); transition: all var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-icon {
    width: 50px; height: 50px; flex-shrink: 0; border-radius: 14px; background: var(--gold-soft);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--gold-dark);
}
.contact-info-card:nth-child(2) .contact-icon, .contact-info-card:nth-child(4) .contact-icon { background: rgba(14,42,58,0.07); color: var(--navy); }
.contact-info-card h4 { font-size: 1.02rem; font-weight: 600; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.contact-form {
    padding: 44px 42px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 6px; }
.contact-form > p { font-size: 0.9rem; color: var(--muted); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 0; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 500; color: var(--slate); margin-bottom: 7px; padding-left: 2px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
    font-family: 'Jost', sans-serif; font-size: 0.9rem; color: var(--ink); background: var(--ivory);
    transition: all var(--transition); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(201,169,106,0.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A8823F' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
}
.contact-form .btn { margin-top: 10px; padding: 16px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); color: var(--muted-light); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: var(--gold-light); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
    padding: 8px 16px; background: rgba(255,255,255,0.07); border-radius: 50px; font-size: 0.78rem;
    font-weight: 400; color: rgba(255,255,255,0.7); transition: all var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); }
.footer-links h4 { color: var(--white); font-size: 1.05rem; font-weight: 600; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-newsletter h4 { color: var(--white); font-size: 1.05rem; font-weight: 600; margin-bottom: 12px; }
.footer-newsletter p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.newsletter-form { display: flex; }
.newsletter-form input {
    flex: 1; padding: 12px 16px; border: none; border-radius: 50px 0 0 50px; background: rgba(255,255,255,0.09);
    color: var(--white); font-family: 'Jost', sans-serif; font-size: 0.85rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
    padding: 12px 20px; background: var(--gold); color: var(--navy); border: none;
    border-radius: 0 50px 50px 0; cursor: pointer; font-size: 1rem; transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===== BACK TO TOP & WHATSAPP ===== */
.back-to-top {
    position: fixed; bottom: 100px; right: 30px; width: 48px; height: 48px; background: var(--navy);
    color: var(--gold-light); border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer;
    opacity: 0; visibility: hidden; transition: all var(--transition); box-shadow: var(--shadow-md);
    z-index: 100; display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-3px); }
.whatsapp-btn {
    position: fixed; bottom: 30px; right: 30px; display: flex; align-items: center; gap: 8px;
    padding: 14px 24px; background: #25D366; color: var(--white); border-radius: 50px; font-size: 0.85rem;
    font-weight: 600; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); z-index: 100; transition: all var(--transition);
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4); }
.whatsapp-icon { font-size: 1.2rem; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { max-width: 540px; }
    .booking-form { flex-wrap: wrap; }
    .booking-field { flex: 1 1 40%; }
    .booking-divider { display: none; }
    .booking-btn { flex: 1 1 100%; width: 100%; margin-top: 8px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrap { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(253,251,247,0.98); backdrop-filter: blur(20px); padding: 24px; gap: 16px;
        box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line);
    }
    .hero { padding: 130px 0 70px; }
    .hero-float-card.top { left: 6px; }
    .hero-float-card.bottom { right: 6px; }
    .booking-field { flex: 1 1 100%; }
    .features-grid { grid-template-columns: 1fr; }
    .rooms-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .amenities-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 52px; }
    .about-img-main img { height: 380px; }
    .about-badge { right: 16px; bottom: -20px; }
    .contact-info { grid-template-columns: 1fr; }
    .contact-form { padding: 36px 26px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .testimonial-card { padding: 34px 24px; }
    .cta-inner { padding: 52px 26px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .gallery-item.wide { grid-column: span 2; grid-row: span 1; }
    .gallery-item.tall { grid-row: span 1; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .whatsapp-text { display: none; }
    .hero-trust { flex-wrap: wrap; gap: 14px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gallery-item.wide { grid-column: span 1; }
}
