/* ============================================================
   DENIZ OTEL AYDIN — PREMIUM METALLIC NAVY & GOLD DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Navy Metallic Palette */
    --navy-deep:    #080d1a;
    --navy-dark:    #0d1628;
    --navy-mid:     #111e35;
    --navy-light:   #1a2e4a;
    --navy-bright:  #223a5e;

    /* Gold Palette */
    --gold-deep:    #7a5c1e;
    --gold-dark:    #a07830;
    --gold:         #c8973d;
    --gold-light:   #d4aa5c;
    --gold-bright:  #e8c87a;
    --gold-shine:   #f5d98a;

    /* Metallic Gradient */
    --gold-gradient: linear-gradient(135deg, #a07830 0%, #d4aa5c 40%, #f5d98a 60%, #c8973d 100%);
    --navy-gradient: linear-gradient(135deg, #080d1a 0%, #0d1628 50%, #1a2e4a 100%);
    --glass-bg:      rgba(13, 22, 40, 0.6);
    --glass-border:  rgba(200, 151, 61, 0.2);

    /* Typography */
    --text-white:    #f8f6f0;
    --text-cream:    #e8e0d0;
    --text-muted:    #8a9ab5;
    --text-dim:      #4a5a78;

    /* Spacing & Sizing */
    --transition:    all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius:        8px;
    --radius-lg:     16px;
    --shadow-gold:   0 0 40px rgba(200, 151, 61, 0.15);
    --shadow-dark:   0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--navy-deep);
    color: var(--text-cream);
    overflow-x: hidden;
    line-height: 1.7;
}
h1, h2, h3, h4, .logo { font-family: 'Playfair Display', serif; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 2.5rem; }

/* ==================== SCROLL REVEAL ==================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.2, 0, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0, 0.2, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==================== LOADING SCREEN ==================== */
.loader {
    position: fixed; inset: 0;
    background: var(--navy-deep);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}
.loader-bar {
    width: 200px; height: 1px;
    background: rgba(200, 151, 61, 0.2);
    margin: 0 auto;
    overflow: hidden;
}
.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gold-gradient);
    animation: loadbar 1s cubic-bezier(0.4,0,0.2,1) infinite alternate;
}
@keyframes loadbar { from { transform: translateX(-50%); } to { transform: translateX(300%); } }

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 1.8rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    transition: var(--transition);
}
nav.scrolled {
    background: rgba(8, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
}
.nav-links {
    display: flex; gap: 2.5rem;
    list-style: none; align-items: center;
}
.nav-links a {
    color: var(--text-cream);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover { opacity: 1; color: var(--gold-light); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1px;
    background: var(--gold-gradient);
    transition: width 0.4s ease;
}
.nav-links a:hover::after { width: 100%; }

/* Language Toggle */
.lang-toggle { display: flex; gap: 6px; align-items: center; }
.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    padding: 5px 12px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: var(--transition);
}
.lang-btn.active {
    background: var(--gold-gradient);
    border-color: transparent;
    color: var(--navy-deep);
    font-weight: 700;
}
.lang-btn:hover:not(.active) { border-color: var(--gold-light); color: var(--gold-light); }

/* Floating Language Switcher — always accessible on mobile */
.lang-float {
    position: fixed;
    top: 14px; right: 76px;
    display: none;
    flex-direction: row;
    gap: 5px;
    z-index: 1002;
}
.lang-float .lang-btn {
    background: rgba(8,13,26,0.7);
    border: 1px solid rgba(200,151,61,0.4);
    color: var(--gold-light);
    padding: 5px 10px;
    font-size: 0.65rem;
    letter-spacing: 1px;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.lang-float .lang-btn.active { background: var(--gold-gradient); border-color: transparent; color: var(--navy-deep); }
@media (max-width: 768px) { .lang-float { display: flex; } }

/* Burger Menu */
.burger-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.burger-menu span {
    width: 24px; height: 1.5px;
    background: var(--gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.burger-menu.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger-menu.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-menu.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==================== HERO ==================== */
.hero {
    position: relative;
    height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        165deg,
        rgba(8,13,26,0.75) 0%,
        rgba(8,13,26,0.4) 40%,
        rgba(200,151,61,0.05) 70%,
        rgba(8,13,26,0.85) 100%
    );
}
.hero-content {
    position: relative; z-index: 10;
    text-align: center; color: white;
    padding: 0 2rem;
    animation: heroFadeIn 1.5s ease forwards;
}
@keyframes heroFadeIn { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
.hero-tagline {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    border-top: 1px solid rgba(200,151,61,0.4);
    border-bottom: 1px solid rgba(200,151,61,0.4);
    padding: 8px 20px;
    margin-bottom: 2rem;
}
.stars-row { color: var(--gold); font-size: 1rem; letter-spacing: 6px; margin-bottom: 1.5rem; }
.hero h1 {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
    background: linear-gradient(180deg, #ffffff 0%, #e8c87a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-location {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    color: var(--gold-light);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}
.hero p {
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto 3rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
}
.hero-btns { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    color: rgba(200,151,61,0.5); font-size: 0.7rem; letter-spacing: 2px;
    animation: bounceDown 2s ease infinite;
}
.scroll-indicator::after {
    content: '';
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    display: block;
    margin-top: 8px;
}
@keyframes bounceDown { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gold-gradient);
    color: var(--navy-deep);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none; cursor: pointer;
    box-shadow: 0 4px 20px rgba(200,151,61,0.3);
    position: relative; overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(200,151,61,0.5); }
.btn:hover::after { opacity: 1; }
.btn-outline {
    display: inline-block;
    padding: 1rem 3rem;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255,255,255,0.45);
    cursor: pointer;
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: rgba(200,151,61,0.15);
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-small {
    display: inline-block;
    padding: 8px 22px;
    background: transparent;
    color: var(--gold-light);
    border: 1px solid rgba(200,151,61,0.4);
    border-radius: var(--radius);
    font-size: 0.78rem;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-small:hover { background: var(--gold-gradient); color: var(--navy-deep); border-color: transparent; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,151,61,0.3); }

/* ==================== SECTION TITLES ==================== */
section { padding: 120px 0; }
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-title { text-align: center; margin-bottom: 80px; }
.section-title h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.section-title h2 .accent {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title p { color: var(--text-muted); font-size: 1rem; max-width: 550px; margin: 0 auto; }
.section-divider {
    width: 60px; height: 1px;
    background: var(--gold-gradient);
    margin: 1.5rem auto 0;
}

/* ==================== GOLD DIVIDER LINE ==================== */
.gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0;
}

/* ==================== ROOM CARDS ==================== */
.rooms { background: var(--navy-dark); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.room-card {
    background: var(--navy-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(200,151,61,0.1);
    transition: var(--transition);
    position: relative;
}
.room-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,151,61,0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.4s;
    opacity: 0;
}
.room-card:hover { transform: translateY(-12px); border-color: rgba(200,151,61,0.35); box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 30px rgba(200,151,61,0.1); }
.room-card:hover::before { opacity: 1; }
.room-image { height: 280px; overflow: hidden; position: relative; }
.room-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.4,0,0.2,1); }
.room-card:hover .room-image img { transform: scale(1.08); }
.room-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--gold-gradient);
    color: var(--navy-deep);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}
.room-info { padding: 2rem; position: relative; z-index: 2; }
.room-info h3 { font-size: 1.5rem; color: var(--text-white); margin-bottom: 0.5rem; }
.room-price {
    font-size: 1.1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: block;
}
.room-features { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.room-feature {
    background: rgba(200,151,61,0.08);
    border: 1px solid rgba(200,151,61,0.15);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* ==================== AMENITIES ==================== */
.amenities { background: var(--navy-deep); }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.amenity-item {
    background: var(--navy-mid);
    border: 1px solid rgba(200,151,61,0.1);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.amenity-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 2px;
    background: var(--gold-gradient);
    transition: width 0.4s ease;
}
.amenity-item:hover { transform: translateY(-8px); border-color: rgba(200,151,61,0.3); background: var(--navy-light); }
.amenity-item:hover::before { width: 100%; }
.amenity-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(200,151,61,0.1), rgba(200,151,61,0.2));
    border: 1px solid rgba(200,151,61,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}
.amenity-item:hover .amenity-icon { background: linear-gradient(135deg, rgba(200,151,61,0.25), rgba(212,170,92,0.35)); transform: scale(1.1); }
.amenity-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.amenity-item h3 { font-size: 1.1rem; color: var(--text-white); margin-bottom: 0.8rem; }
.amenity-item p { font-size: 0.87rem; color: var(--text-muted); }

/* ==================== STATS STRIP ==================== */
.stats-strip {
    background: var(--navy-light);
    border-top: 1px solid rgba(200,151,61,0.1);
    border-bottom: 1px solid rgba(200,151,61,0.1);
    padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }

/* ==================== TESTIMONIALS ==================== */
.testimonials { background: var(--navy-mid); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
    background: var(--navy-dark);
    border: 1px solid rgba(200,151,61,0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1.5rem; left: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(200,151,61,0.15);
    pointer-events: none;
}
.testimonial-card:hover { border-color: rgba(200,151,61,0.3); transform: translateY(-6px); }
.testimonial-text { color: var(--text-cream); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
    width: 48px; height: 48px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--navy-deep);
    font-weight: 700;
    flex-shrink: 0;
}
.author-info h4 { color: var(--text-white); font-size: 1rem; margin-bottom: 3px; font-weight: 600; }
.stars-review { color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; }

/* ==================== VIRTUAL TOUR ==================== */
.virtual-tour-section {
    background: var(--navy-deep);
    padding: 120px 0;
}
.virtual-tour-section .section-title h2 { color: var(--text-white); }
#efes3d-canvas {
    height: 600px;
    background: var(--navy-dark);
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(200,151,61,0.15);
    overflow: hidden;
}
.tour-controls { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.tour-btn {
    background: transparent;
    color: var(--text-cream);
    border: 1px solid rgba(200,151,61,0.2);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.82rem;
    letter-spacing: 1px;
}
.tour-btn:hover, .tour-btn.active { background: var(--gold-gradient); border-color: transparent; color: var(--navy-deep); font-weight: 700; }

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(165deg, var(--navy-deep), var(--navy-mid));
    padding: 160px 20px 80px;
    text-align: center;
    border-bottom: 1px solid rgba(200,151,61,0.1);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,151,61,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
}
.page-header h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 550px; margin: 0 auto; position: relative; }

/* ==================== CONTACT PAGE ==================== */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.contact-item {
    background: var(--navy-mid);
    border: 1px solid rgba(200,151,61,0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}
.contact-item:hover { border-color: rgba(200,151,61,0.3); transform: translateY(-6px); }
.contact-icon-box {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(200,151,61,0.12), rgba(200,151,61,0.22));
    border: 1px solid rgba(200,151,61,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
.contact-icon-box svg { width: 30px; height: 30px; fill: var(--gold); }
.contact-item h3 { font-size: 1.2rem; color: var(--text-white); margin-bottom: 0.8rem; }
.contact-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

/* Copy Button (contact page) */
.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: transparent;
    color: var(--gold-light);
    border: 1px solid rgba(200,151,61,0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.copy-btn svg { width: 14px; height: 14px; fill: currentColor; }
.copy-btn:hover {
    background: var(--gold-gradient);
    color: var(--navy-deep);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(200,151,61,0.3);
    transform: translateY(-2px);
}
.copy-feedback {
    display: inline-block;
    margin-top: 10px;
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}
.copy-feedback.show { opacity: 1; transform: translateY(0); }

/* ==================== ABOUT PAGE ==================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.about-image img { width: 100%; height: 550px; object-fit: cover; }
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(200,151,61,0.2);
    border-radius: var(--radius-lg);
    pointer-events: none;
}
.about-text h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--text-white); margin-bottom: 1.5rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.5rem; }
/* 2-column helper grid (collapses to 1col on mobile via media query) */
.grid-2col { grid-template-columns: repeat(2, 1fr) !important; }
/* Left-aligned text block with desktop padding */
.text-left-pad { text-align: left; padding: 3rem; }

.stats-row { display: flex; gap: 2.5rem; margin-top: 2.5rem; }
.stat-it .stat-number { font-size: 2.5rem; }
.stat-it .stat-label { font-size: 0.75rem; }

/* Cards Grid (attractions) */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card {
    background: var(--navy-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(200,151,61,0.1);
    transition: var(--transition);
}
.card:hover { transform: translateY(-10px); border-color: rgba(200,151,61,0.3); box-shadow: 0 25px 50px rgba(0,0,0,0.4); }
.card-image { height: 240px; overflow: hidden; position: relative; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.card:hover .card-image img { transform: scale(1.08); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,13,26,0.8) 0%, transparent 60%); }
.distance-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--gold-gradient);
    color: var(--navy-deep);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
}
.card-content { padding: 1.8rem; }
.card-content h3 { color: var(--text-white); font-size: 1.3rem; margin-bottom: 0.5rem; }
.card-time { color: var(--gold); font-size: 0.78rem; letter-spacing: 1px; margin-bottom: 0.8rem; }
.card-content p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ==================== CTA SECTION ==================== */
.cta {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-dark) 50%, var(--navy-mid) 100%);
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(200,151,61,0.15);
    border-bottom: 1px solid rgba(200,151,61,0.15);
}
.cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(200,151,61,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta h2 { font-size: clamp(2rem, 5vw, 4rem); color: var(--text-white); margin-bottom: 1.5rem; position: relative; }
.cta h2 .accent { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta p { color: var(--text-muted); font-size: 1.05rem; max-width: 550px; margin: 0 auto 3rem; position: relative; }
.cta-btns { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ==================== FOOTER ==================== */
footer {
    background: var(--navy-deep);
    border-top: 1px solid rgba(200,151,61,0.1);
    padding: 80px 0 40px;
}
.footer-content { text-align: center; }
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: 2px;
}
.footer-tagline { color: var(--text-dim); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2.5rem; }
.social-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; }
.social-links a {
    width: 44px; height: 44px;
    background: var(--navy-mid);
    border: 1px solid rgba(200,151,61,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.social-links a svg { width: 18px; height: 18px; fill: var(--text-muted); transition: fill 0.3s; }
.social-links a:hover { background: rgba(200,151,61,0.1); border-color: var(--gold); transform: translateY(-3px); }
.social-links a:hover svg { fill: var(--gold); }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
footer hr { border: none; border-top: 1px solid rgba(200,151,61,0.08); margin-bottom: 2rem; }
footer p { color: var(--text-dim); font-size: 0.82rem; }

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 14px 36px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }

/* ==================== TOAST NOTIFICATION ==================== */
.toast {
    position: fixed;
    bottom: 32px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--navy-light);
    color: var(--text-cream);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.88rem;
    display: flex; align-items: center; gap: 10px;
    box-shadow: var(--shadow-dark);
    z-index: 10000;
    border: 1px solid rgba(200,151,61,0.25);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    letter-spacing: 0.5px;
    pointer-events: none;
}
.toast-icon {
    width: 22px; height: 22px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; color: var(--navy-deep); font-weight: 700;
    flex-shrink: 0;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    nav.scrolled { padding: 0.8rem 1.5rem; }
    .burger-menu { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100dvh;
        background: rgba(8,13,26,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(200,151,61,0.1);
    }
    .nav-links.active { right: 0; }
    .nav-links li {
        width: 100%; text-align: center;
        margin: 0;
        opacity: 0;
        transform: translateX(40px);
        transition: 0.4s;
        border-bottom: 1px solid rgba(200,151,61,0.06);
    }
    .nav-links li:last-child { border-bottom: none; margin-top: 1.5rem; }
    .nav-links li a { display: block; padding: 1.2rem 2rem; font-size: 0.95rem; }
    .nav-links.active li { opacity: 1; transform: translateX(0); }
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }

    .rooms-grid, .testimonial-grid, .cards-grid, .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    /* Mission/Vision 2-col grid collapses to 1 col on mobile */
    .amenities-grid.grid-2col { grid-template-columns: 1fr; }
    .text-left-pad { text-align: left; padding: 2rem; }
    section { padding: 80px 0; }
    .hero h1 { font-size: clamp(3rem, 14vw, 6rem); }
    .hero-btns { flex-direction: column; align-items: center; }
    .cta-btns { flex-direction: column; align-items: center; }
    .section-title h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
    .stats-row { flex-direction: column; gap: 1.5rem; }
    .container { padding: 0 1.5rem; }
    .about-grid { gap: 2rem; }
    .about-image img { height: 300px; }
}

@media (max-width: 480px) {
    .amenities-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    nav { padding: 0.8rem 1.2rem; }
}

/* ================================================================
   GLOBAL RESPONSIVE SAFETY FIXES
================================================================ */
html, body { overflow-x: hidden !important; width: 100%; max-width: 100vw; }
h1, h2, h3, h4, h5, h6, p, span, a, div { overflow-wrap: break-word; }
img, video { max-width: 100%; }