/* ═══════════════════════════════════════════════════════════════
   BlueBayHOTEL — Public Website Stylesheet
   Colors: Navy #08172e | Gold #C9A84C | White #ffffff
   Fonts: Cormorant Garamond (serif) + DM Sans (sans-serif)
═══════════════════════════════════════════════════════════════ */

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

:root {
    --navy:      #08172e;
    --navy2:     #0F2744;
    --navy3:     #1a3a63;
    --gold:      #C9A84C;
    --gold2:     #e0c068;
    --gold-dim:  rgba(201,168,76,.15);
    --white:     #ffffff;
    --off-white: #f8f6f1;
    --text:      #1a2744;
    --muted:     #6b7280;
    --border:    #e5e7eb;
    --radius:    14px;
    --shadow:    0 8px 40px rgba(8,23,46,.12);
    --shadow-sm: 0 4px 16px rgba(8,23,46,.08);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Typography ───────────────────────────────────────────── */
.serif { font-family: 'Cormorant Garamond', serif; }

h1,h2,h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; }

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.15;
}

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

.section-sub {
    font-size: 15px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
}

.section-sub.light { color: rgba(255,255,255,.7); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .25s;
    white-space: nowrap;
    text-decoration: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--navy);
}
.btn-gold:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

.btn-white {
    background: var(--white);
    color: var(--navy);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }

.btn-ghost {
    background: transparent;
    border: 2px solid rgba(255,255,255,.4);
    color: var(--white);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-lg { padding: 16px 36px; font-size: 15px; border-radius: 12px; }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 8px; }

/* ── Navbar ───────────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background .35s, box-shadow .35s, padding .35s;
    padding: 20px 0;
}

.site-nav.scrolled {
    background: rgba(8,23,46,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,.25);
    padding: 12px 0;
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--navy);
}

.nav-logo-text { line-height: 1.15; }
.nav-logo-name { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: .02em; }
.nav-logo-sub  { display: block; font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,.82);
    padding: 8px 14px;
    border-radius: 8px;
    transition: color .2s, background .2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,.08);
}

.nav-cta { margin-left: 10px; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--navy2);
    padding: 16px 24px 20px;
}

.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 11px 0; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.07); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .btn { margin-top: 14px; width: 100%; justify-content: center; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #08172e 0%, #0d2545 40%, #1a3a63 100%);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,.06) 0%, transparent 60%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(201,168,76,.06) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.hero-content {}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .gold { color: var(--gold); }
.hero-title .line { display: block; }

.hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,.7);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.hero-stat { text-align: left; }
.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-main {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 20px;
    padding: 28px;
    width: 100%;
    max-width: 360px;
    backdrop-filter: blur(10px);
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,168,76,.15);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.hero-room-img {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--navy3), var(--navy2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 16px;
    overflow: hidden;
}

.hero-room-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.hero-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.hero-card-desc { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.5; margin-bottom: 14px; }
.hero-card-price { font-size: 13px; color: var(--gold); font-weight: 700; }
.hero-card-price span { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 400; }

.hero-floating-badge {
    position: absolute;
    top: -16px; right: -20px;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(201,168,76,.4);
    white-space: nowrap;
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
    background: var(--navy);
    padding: 28px 0;
}

.stats-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.stat-icon {
    width: 44px; height: 44px;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 17px;
    flex-shrink: 0;
}

.stat-info {}
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }

.stats-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.1);
}

/* ── Section base ─────────────────────────────────────────── */
.section {
    padding: 88px 0;
}

.section-alt { background: var(--off-white); }

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

.section-header .section-sub {
    margin: 0 auto;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Rooms ────────────────────────────────────────────────── */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

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

.room-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--navy2), var(--navy3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: rgba(201,168,76,.6);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.room-img img { width: 100%; height: 100%; object-fit: cover; }

.room-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(8,23,46,.6) 100%);
}

.room-type-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(8,23,46,.75);
    backdrop-filter: blur(6px);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(201,168,76,.3);
}

.room-body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.room-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.room-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--muted);
}

.room-meta-item i { color: var(--gold); font-size: 11px; }

.room-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.room-equip {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.room-equip-tag {
    font-size: 11px;
    background: #f3f4f6;
    color: var(--muted);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 500;
}

.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: auto;
}

.room-price {}
.room-price-from { font-size: 11px; color: var(--muted); }
.room-price-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.room-price-unit { font-size: 11px; color: var(--muted); }

/* ── Features ─────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(201,168,76,.4);
}

.feature-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.04));
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    margin: 0 auto 16px;
}

.feature-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Espaces ──────────────────────────────────────────────── */
.espaces-section {
    background: var(--navy);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.espaces-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 100% 50%, rgba(201,168,76,.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 0% 0%, rgba(201,168,76,.05) 0%, transparent 50%);
}

.espaces-section .container { position: relative; z-index: 1; }

.espaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.espace-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s, border-color .3s;
    display: flex;
    flex-direction: column;
}

.espace-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,168,76,.5);
}

.espace-img {
    height: 180px;
    background: linear-gradient(135deg, rgba(201,168,76,.1), rgba(201,168,76,.03));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: var(--gold);
    overflow: hidden;
}

.espace-img img { width: 100%; height: 100%; object-fit: cover; }

.espace-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }

.espace-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.espace-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.espace-desc {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}

.espace-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.espace-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255,255,255,.55);
}

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

.espace-tarif {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-section {
    padding: 88px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, var(--navy3) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,.08) 0%, transparent 60%);
}

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

.cta-icon {
    width: 72px; height: 72px;
    background: rgba(201,168,76,.12);
    border: 2px solid rgba(201,168,76,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    margin: 0 auto 24px;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 15px;
    color: rgba(255,255,255,.65);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-section { padding: 80px 0; background: var(--off-white); }

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

.contact-info {}

.contact-info .section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); }

.contact-items { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 17px;
    flex-shrink: 0;
}

.contact-item-text {}
.contact-item-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-item-value { font-size: 15px; font-weight: 600; color: var(--navy); }
.contact-item-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

.contact-map {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.map-placeholder {
    height: 320px;
    background: linear-gradient(135deg, var(--navy2), var(--navy3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,.6);
}

.map-placeholder i { font-size: 42px; color: var(--gold); }
.map-placeholder p { font-size: 14px; }
.map-placeholder strong { font-size: 1.05rem; color: var(--white); font-family: 'Cormorant Garamond', serif; }

.contact-map-footer {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-map-addr { font-size: 13px; color: var(--muted); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {}

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

.footer-logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--navy);
}

.footer-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--white); }
.footer-logo-sub  { font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

.footer-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    transition: background .2s, color .2s;
}

.footer-social-btn:hover { background: var(--gold); color: var(--navy); }

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(255,255,255,.6);
    transition: color .2s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
}

.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-copyright { font-size: 12.5px; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { padding: 88px 0; background: var(--off-white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform .3s, box-shadow .3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.testimonial-stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--navy2), var(--navy3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-origin { font-size: 12px; color: var(--muted); }

/* ── Scroll to top ────────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 16px rgba(201,168,76,.35);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .3s, transform .3s;
    z-index: 900;
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-2px) !important; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.animate-fadeInUp { animation: fadeInUp .7s ease forwards; }
.animate-delay-1  { animation-delay: .1s; opacity: 0; }
.animate-delay-2  { animation-delay: .25s; opacity: 0; }
.animate-delay-3  { animation-delay: .4s; opacity: 0; }
.animate-delay-4  { animation-delay: .55s; opacity: 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; padding-top: 100px; }
    .hero-visual { display: none; }
    .hero-title { font-size: clamp(2.4rem, 6vw, 3.5rem); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .section { padding: 64px 0; }
    .rooms-grid { grid-template-columns: 1fr; }
    .espaces-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 20px; }
    .stats-container { flex-direction: column; gap: 0; }
    .stats-divider { width: 100%; height: 1px; margin: 4px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-lg { width: 100%; justify-content: center; }
}
