/* ============================================================
   Danat Spa Al Ain — Shared Stylesheet
   danatspa.com
   ============================================================ */

:root {
  --gold: #c9a84c;
  --gold-light: #e4c97e;
  --gold-dark: #a07830;
  --dark: #0d0d0d;
  --dark-2: #141414;
  --dark-3: #1e1e1e;
  --cream: #f8f4ef;
  --cream-2: #f0ece4;
  --text-dark: #1a1505;
  --text-muted: #7a7068;
  --white: #ffffff;
  --border-gold: rgba(201,168,76,0.18);
  --border-light: rgba(0,0,0,0.08);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --t: all 0.35s ease;
  --pad: 90px 0;
  --pad-sm: 60px 0;
  --r: 0px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Raleway', sans-serif; color: var(--text-dark); line-height: 1.75; overflow-x: hidden; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { font-size: 0.95rem; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.7rem;
}
.section-label::before, .section-label::after { content: ''; width: 28px; height: 1px; background: var(--gold); opacity: 0.6; }
.divider { width: 50px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1.2rem auto; }
.divider.left { margin: 1.2rem 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px;
  font-family: 'Raleway', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: none; transition: var(--t); white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light)); color: var(--dark); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.4); filter: brightness(1.05); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-gold { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.btn-outline-white { background: transparent; border: 1px solid rgba(255,255,255,0.6); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--dark); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #20b858; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-sm { padding: 10px 22px; font-size: 0.66rem; }

/* === FLOATING CTAs === */
.float-cta { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-btn { display: flex; align-items: center; gap: 8px; padding: 13px 20px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: var(--t); }
.float-btn svg { width: 18px; height: 18px; }
.float-btn.wa { background: #25D366; color: #fff; }
.float-btn.wa:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.float-btn.call { background: var(--gold); color: var(--dark); }
.float-btn.call:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,168,76,0.45); }
.float-label { font-size: 0.72rem; font-weight: 700; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px; height: 76px;
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--t);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(20px);
  height: 62px;
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar.light { background: var(--white); border-bottom: 1px solid var(--border-light); height: 72px; box-shadow: var(--shadow); }
.navbar.light .nav-link { color: var(--text-dark); }
.navbar.light .nav-link:hover { color: var(--gold); }
.navbar.light .dropdown-menu { background: var(--white); }
.navbar.light .hamburger span { background: var(--dark); }
.nav-logo img { height: 48px; width: auto; mix-blend-mode: multiply; transition: height 0.3s; }
.navbar.scrolled .nav-logo img { height: 40px; mix-blend-mode: normal; filter: brightness(10); }
.nav-center { display: flex; align-items: center; gap: 6px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-arrow { font-size: 0.55rem; transition: transform 0.3s; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-tel { font-size: 0.72rem; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; border: 1px solid var(--border-gold); padding: 7px 16px; transition: var(--t); }
.nav-tel:hover { background: var(--gold); color: var(--dark); }
.navbar.light .nav-tel { color: var(--gold); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--dark-2);
  border: 1px solid var(--border-gold);
  min-width: 220px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 200;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 20px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--cream-2); border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, background 0.2s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--gold); background: rgba(201,168,76,0.06); padding-left: 26px; }
.navbar.light .dropdown-menu a { color: var(--text-dark); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: var(--t); }
.navbar.light .hamburger span { background: var(--dark); }

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(13,13,13,0.98);
  flex-direction: column; justify-content: center; align-items: center; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--white); padding: 6px 0; transition: color 0.3s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-services { display: flex; flex-direction: column; align-items: center; gap: 4px; margin: 4px 0; }
.mobile-nav-services a { font-family: 'Raleway', sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.mobile-nav-services a:hover { color: var(--gold-light); }
.mobile-close { position: absolute; top: 24px; right: 28px; font-size: 1.8rem; color: var(--white); background: none; border: none; line-height: 1; }

/* === FOOTER === */
.footer { background: var(--dark); border-top: 1px solid var(--border-gold); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 60px 40px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }
.footer-brand img { height: 90px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; max-width: 260px; }
.footer-brand .footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.75rem; transition: var(--t); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-family: 'Raleway', sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-col .footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-col .footer-contact-item svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-col .footer-contact-item span, .footer-col .footer-contact-item a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.3s; }
.footer-col .footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 40px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p, .footer-bottom a { font-size: 0.72rem; color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* === BREADCRUMB === */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold-light); font-weight: 600; }
.breadcrumb-sep { font-size: 0.6rem; opacity: 0.4; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  position: relative; min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 40px 60px;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.4) 60%, rgba(13,13,13,0.55) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero h1 { color: var(--white); font-weight: 400; margin-bottom: 0.5rem; }
.page-hero-sub { font-size: 1rem; color: rgba(240,236,228,0.72); font-weight: 300; }

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* === SECTION === */
.section { padding: var(--pad); }
.section-sm { padding: var(--pad-sm); }
.section-dark { background: var(--dark); }
.section-dark-2 { background: var(--dark-2); }
.section-cream { background: var(--cream); }
.section-cream-2 { background: var(--cream-2); }
.section-white { background: var(--white); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head.left { text-align: left; }
.section-head h2 { margin-bottom: 0.5rem; }
.section-head p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-head.left p { margin: 0; }
.section-dark .section-head h2,
.section-dark-2 .section-head h2 { color: var(--white); }
.section-dark .section-head p,
.section-dark-2 .section-head p { color: rgba(240,236,228,0.6); }

/* === HOME HERO === */
.hero { position: relative; height: 100vh; min-height: 680px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; animation: kb 8s ease-in-out infinite alternate; }
@keyframes kb { from { transform: scale(1.03); } to { transform: scale(1.09); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,13,13,0.75) 0%, rgba(13,13,13,0.4) 55%, rgba(13,13,13,0.6) 100%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 6vw; max-width: 800px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 1.4rem; }
.hero-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.hero-eyebrow span { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-light); }
.hero h1 { color: var(--white); font-weight: 300; margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1.05rem; color: rgba(240,236,228,0.75); font-weight: 300; margin-bottom: 2.4rem; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 36px; left: 6vw; display: flex; gap: 8px; z-index: 2; }
.hero-dot { width: 28px; height: 2px; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--t); }
.hero-dot.active { background: var(--gold); width: 48px; }

/* === STATS BAR === */
.stats-bar { background: var(--dark-2); border-bottom: 1px solid var(--border-gold); }
.stats-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: center; }
.stat-bar-item { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 24px 20px; border-right: 1px solid var(--border-gold); }
.stat-bar-item:last-child { border-right: none; }
.stat-bar-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--gold); line-height: 1; }
.stat-bar-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* === ABOUT SNIPPET === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-imgs { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-accent { position: absolute; bottom: -28px; right: -28px; width: 50%; aspect-ratio: 1; object-fit: cover; border: 6px solid var(--white); }
.about-badge { position: absolute; top: -18px; left: -18px; width: 84px; height: 84px; background: var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.about-badge strong { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 500; color: var(--dark); line-height: 1; }
.about-badge small { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); text-align: center; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 2rem; }
.stat-card { padding: 18px; border: 1px solid var(--border-light); background: var(--cream); }
.stat-card-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-card-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 3px; }

/* === SERVICES GRID === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.svc-card { position: relative; overflow: hidden; cursor: pointer; }
.svc-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.6s ease; display: block; }
.svc-card:hover img { transform: scale(1.06); }
.svc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.18) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px 22px; transition: background 0.4s ease; }
.svc-card:hover .svc-overlay { background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.5) 60%, rgba(13,13,13,0.1) 100%); }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 4px; }
.svc-card h3 { color: var(--white); font-weight: 400; font-size: 1.3rem; margin-bottom: 8px; }
.svc-desc { font-size: 0.82rem; color: rgba(240,236,228,0.65); max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.svc-card:hover .svc-desc { max-height: 100px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-top: 12px; opacity: 0; transform: translateY(8px); transition: opacity 0.4s ease, transform 0.4s ease; }
.svc-card:hover .svc-link { opacity: 1; transform: translateY(0); }

/* === WHY US === */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-img { position: relative; }
.why-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why-quote { position: absolute; bottom: 28px; right: -18px; background: var(--white); border-left: 3px solid var(--gold); padding: 18px 24px; max-width: 230px; box-shadow: var(--shadow-md); }
.why-quote p { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-style: italic; color: var(--text-dark); margin-bottom: 4px; }
.why-quote span { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.why-features { display: flex; flex-direction: column; gap: 22px; margin-top: 1.5rem; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--cream); border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.why-icon svg { width: 20px; height: 20px; }
.why-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 2px; }
.why-item p { font-size: 0.82rem; color: var(--text-muted); }
.section-dark .why-item h4 { color: var(--white); }
.section-dark .why-icon { background: rgba(201,168,76,0.08); }

/* === GALLERY GRID === */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(2,240px); gap: 4px; margin-top: 50px; }
.g-item { overflow: hidden; position: relative; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.g-item:hover img { transform: scale(1.07); }
.g-item::after { content: ''; position: absolute; inset: 0; background: rgba(201,168,76,0); transition: var(--t); }
.g-item:hover::after { background: rgba(201,168,76,0.1); }
.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.g-item:nth-child(4) { grid-column: span 2; }

/* === OFFERS CARDS === */
.offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.offer-card { background: var(--white); border: 1px solid var(--border-light); overflow: hidden; transition: var(--t); }
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.offer-card-img { position: relative; overflow: hidden; }
.offer-card-img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 0.6s ease; }
.offer-card:hover .offer-card-img img { transform: scale(1.05); }
.offer-tag { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--dark); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; }
.offer-card-body { padding: 24px; }
.offer-card-body h3 { font-size: 1.35rem; color: var(--text-dark); margin-bottom: 8px; }
.offer-card-body p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 20px; }

/* === REVIEWS === */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card { background: var(--white); border: 1px solid var(--border-light); padding: 28px; position: relative; }
.review-card::before { content: '"'; position: absolute; top: 12px; left: 20px; font-family: 'Cormorant Garamond', serif; font-size: 4rem; line-height: 1; color: rgba(201,168,76,0.1); }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 14px; }
.review-card p { font-size: 0.85rem; color: var(--text-muted); font-style: italic; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 11px; }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), #5b4a8a); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: var(--white); }
.reviewer-name { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }

/* === CTA BANNER === */
.cta-section { position: relative; padding: 100px 40px; text-align: center; overflow: hidden; background: url('../images/room3.webp') center/cover no-repeat; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,13,13,0.84), rgba(91,74,138,0.5), rgba(13,13,13,0.84)); }
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-section p { color: rgba(240,236,228,0.75); margin-bottom: 2rem; font-size: 0.95rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* For service pages inside /services/ folder */
.cta-section-svc { background-image: url('../images/room3.webp'); }

/* === CONTACT SECTION === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { color: var(--text-dark); margin-bottom: 0.8rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 1.8rem; }
.c-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 2rem; }
.c-item { display: flex; gap: 14px; align-items: flex-start; }
.c-icon { width: 44px; height: 44px; background: var(--cream); border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.c-icon svg { width: 19px; height: 19px; }
.c-item strong { display: block; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.c-item a, .c-item span { font-size: 0.92rem; color: var(--text-dark); }
.c-item a:hover { color: var(--gold); }
.map-wrap { border: 1px solid var(--border-light); overflow: hidden; }
.map-wrap iframe { display: block; width: 100%; height: 420px; filter: grayscale(15%); }

/* === FAQ === */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.section-dark .faq-item { border-color: var(--border-gold); }
.faq-q { width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--text-dark); text-align: left; transition: color 0.3s; }
.section-dark .faq-q { color: var(--white); }
.faq-q:hover { color: var(--gold); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--gold); transition: transform 0.3s; }
.faq-a { max-height: 0; overflow: hidden; font-size: 0.86rem; color: var(--text-muted); transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 180px; padding-bottom: 18px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* === SERVICE DETAIL PAGE === */
.service-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.service-detail-content h2 { margin-bottom: 1rem; }
.service-detail-content p { color: var(--text-muted); margin-bottom: 1rem; }
.benefits-list { display: flex; flex-direction: column; gap: 12px; margin: 1.5rem 0; }
.benefit-item { display: flex; gap: 12px; align-items: flex-start; }
.benefit-check { flex-shrink: 0; width: 22px; height: 22px; background: var(--gold); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.benefit-check svg { width: 12px; height: 12px; color: var(--dark); }
.benefit-item p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }
.service-sidebar { position: sticky; top: 90px; }
.service-booking-card { background: var(--cream); border: 1px solid var(--border-gold); padding: 32px; }
.service-booking-card h4 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.service-booking-card p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.booking-detail { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-light); font-size: 0.82rem; }
.booking-detail:last-of-type { border-bottom: none; margin-bottom: 1.5rem; }
.booking-detail strong { color: var(--text-dark); }
.booking-detail span { color: var(--text-muted); }
.related-services { display: flex; flex-direction: column; gap: 10px; margin-top: 1.5rem; }
.related-svc-link { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: var(--white); border: 1px solid var(--border-light); font-size: 0.82rem; font-weight: 600; color: var(--text-dark); transition: var(--t); }
.related-svc-link:hover { border-color: var(--gold); color: var(--gold); padding-left: 20px; }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .g-item:nth-child(4) { grid-column: span 1; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .about-img-accent { right: 0; }
  .why-quote { right: 0; }
}
@media (max-width: 768px) {
  :root { --pad: 60px 0; --pad-sm: 44px 0; }
  .navbar { padding: 0 20px; }
  .nav-center, .nav-tel { display: none; }
  .hamburger { display: flex; }
  .container, .container-wide { padding: 0 20px; }
  .page-hero { padding: 0 20px 44px; min-height: 340px; }
  .services-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 0 22px; }
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-bar-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--border-gold); }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 44px 20px 28px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 4px; text-align: center; }
  .cta-section { padding: 70px 20px; }
  .float-label { display: none; }
  .float-btn { padding: 13px 15px; }
  .about-badge { display: none; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .g-item:nth-child(1), .g-item:nth-child(4) { grid-column: span 1; }
}

/* ============================================================
   DESIGN REFRESH — INNER PAGE ENHANCEMENTS
   ============================================================ */

/* Taller, more dramatic inner-page hero */
.page-hero {
  min-height: 580px !important;
  padding: 0 60px 80px !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero-overlay {
  background: linear-gradient(to top, rgba(10,8,5,0.88) 0%, rgba(10,8,5,0.45) 55%, rgba(10,8,5,0.62) 100%) !important;
}
.page-hero-content { max-width: 760px !important; }
.page-hero h1 { font-size: clamp(2.6rem,5vw,4rem); font-weight: 300; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { font-size: 1.05rem; color: rgba(240,236,228,0.7); margin-top: 10px; font-weight: 300; }

/* Elegant horizontal gold rule used across sections */
.gold-rule { display: flex; align-items: center; gap: 16px; margin: 28px 0; }
.gold-rule::before, .gold-rule::after { content:''; flex:1; height:1px; background: linear-gradient(to right, transparent, var(--border-gold), transparent); }
.gold-rule span { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* Section label refinement */
.section-label { font-size: 0.6rem; letter-spacing: 0.38em; }

/* Darker, richer CTA section */
.cta-section {
  background: linear-gradient(rgba(8,6,3,0.87), rgba(8,6,3,0.87)), url('../images/room3.webp') center/cover !important;
  padding: 110px 40px;
}

/* Refined divider */
.divider { width: 48px; height: 2px; background: linear-gradient(to right, var(--gold), var(--gold-light)); margin: 18px 0 28px; }
.divider.center { margin: 18px auto 28px; }
.divider.left { margin: 18px 0 28px; }

/* ============================================================
   SERVICE PAGE HERO (full-viewport, distinct from page-hero)
   ============================================================ */
.svc-page-hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.svc-page-hero-img {
  position: absolute; inset: 0;
}
.svc-page-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kb 12s ease-in-out infinite alternate;
}
.svc-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,6,3,0.92) 0%, rgba(8,6,3,0.5) 50%, rgba(8,6,3,0.35) 100%);
}
.svc-page-hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 80px;
  max-width: 900px;
}
.svc-page-hero .breadcrumb { margin-bottom: 24px; }
.svc-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.svc-eyebrow::before { content:''; width: 32px; height: 1px; background: var(--gold); }
.svc-page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; color: var(--white);
  line-height: 1.05; margin-bottom: 16px;
}
.svc-page-hero h1 em { font-style: italic; color: var(--gold-light); }
.svc-page-hero .hero-sub {
  font-size: 1.1rem; color: rgba(240,236,228,0.7);
  font-weight: 300; margin-bottom: 32px; max-width: 520px;
}
.svc-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   SERVICE INFO BAR
   ============================================================ */
.svc-info-bar {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border-gold);
}
.svc-info-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.svc-info-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border-gold);
  display: flex; flex-direction: column; gap: 4px;
}
.svc-info-item:last-child { border-right: none; }
.svc-info-label {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
}
.svc-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--white);
}
@media(max-width:768px){ .svc-info-bar-inner { grid-template-columns: 1fr 1fr; } .svc-info-item { border-bottom: 1px solid var(--border-gold); } .svc-info-item:nth-child(2),.svc-info-item:nth-child(4) { border-right: none; } }

/* ============================================================
   SERVICE ABOUT SECTION
   ============================================================ */
.svc-about-grid {
  display: grid; grid-template-columns: 1fr 480px;
  gap: 80px; align-items: center;
}
.svc-about-content h2 { margin-bottom: 16px; }
.svc-about-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.85; }
.svc-about-content p:first-of-type { font-size: 1.05rem; color: var(--text-dark); }
.svc-about-img { position: relative; }
.svc-about-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.svc-about-img-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--gold); padding: 20px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--dark); line-height: 1.2;
  font-style: italic;
}
@media(max-width:1024px){ .svc-about-grid { grid-template-columns: 1fr; } .svc-about-img { max-width: 520px; } }

/* ============================================================
   SERVICE BENEFITS
   ============================================================ */
.svc-benefits-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border-gold);
  border: 1px solid var(--border-gold);
}
.svc-benefit-card {
  background: var(--white);
  padding: 36px 28px;
  transition: background 0.3s;
}
.svc-benefit-card:hover { background: var(--cream); }
.svc-benefit-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: border-color 0.3s;
}
.svc-benefit-card:hover .svc-benefit-icon { border-color: var(--gold); }
.svc-benefit-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.svc-benefit-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.svc-benefit-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
@media(max-width:900px){ .svc-benefits-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .svc-benefits-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICE PROCESS / STEPS
   ============================================================ */
.svc-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 48px; position: relative;
}
.svc-steps::before {
  content:''; position: absolute;
  top: 28px; left: calc(33.33% - 24px); right: calc(33.33% - 24px);
  height: 1px; background: var(--border-gold);
  pointer-events: none;
}
.svc-step { text-align: center; }
.svc-step-num {
  width: 56px; height: 56px; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--gold);
}
.svc-step h4 { font-size: 1.15rem; margin-bottom: 10px; }
.svc-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
@media(max-width:768px){ .svc-steps { grid-template-columns: 1fr; gap: 32px; } .svc-steps::before { display: none; } }

/* ============================================================
   SERVICE OFFER TEASER (dark section)
   ============================================================ */
.svc-offer-teaser {
  background: var(--dark-2);
  padding: var(--pad);
}
.svc-offer-teaser-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.svc-offer-img { overflow: hidden; }
.svc-offer-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s ease; }
.svc-offer-img:hover img { transform: scale(1.04); }
.svc-offer-content .section-label { color: var(--gold); }
.svc-offer-content h2 { color: var(--white); margin-bottom: 16px; }
.svc-offer-content p { color: rgba(240,236,228,0.65); margin-bottom: 28px; font-size: 0.95rem; line-height: 1.8; }
.svc-offer-tag {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 5px 14px; margin-bottom: 20px;
}
@media(max-width:900px){ .svc-offer-teaser-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   OTHER SERVICES GRID (5 cards in a row)
   ============================================================ */
.svc-other-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.svc-other-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--dark);
}
.svc-other-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform 0.6s ease; opacity: 0.8;
}
.svc-other-card:hover img { transform: scale(1.08); opacity: 1; }
.svc-other-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,6,3,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px 16px;
  transition: background 0.4s;
}
.svc-other-card:hover .svc-other-overlay { background: linear-gradient(to top, rgba(8,6,3,0.92) 0%, rgba(8,6,3,0.2) 60%); }
.svc-other-num {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.3em;
  color: var(--gold); margin-bottom: 6px;
}
.svc-other-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400; color: var(--white);
  margin-bottom: 8px; line-height: 1.2;
}
.svc-other-link {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s;
}
.svc-other-card:hover .svc-other-link { opacity: 1; transform: translateY(0); }
@media(max-width:1024px){ .svc-other-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:640px){ .svc-other-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   EXTRA PAGE COMPONENTS
   ============================================================ */

/* Contact cards row */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 60px; }
.contact-card { background: var(--cream); border: 1px solid var(--border-gold); border-radius: var(--r); padding: 36px 28px; text-align: center; }
.contact-card-icon { width: 52px; height: 52px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.contact-card-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.contact-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.contact-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; }
.contact-card-link { display: block; font-size: 0.95rem; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
@media(max-width:900px){ .contact-cards { grid-template-columns: 1fr; } }

/* Offers full layout */
.offers-list { display: flex; flex-direction: column; gap: 64px; }
.offer-full-card { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.offer-full-card.reverse { direction: rtl; }
.offer-full-card.reverse > * { direction: ltr; }
.offer-full-img { position: relative; border-radius: var(--r); overflow: hidden; }
.offer-full-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.offer-full-body { padding: 12px 0; }
.offer-full-body h2 { font-size: clamp(1.8rem,3vw,2.6rem); margin-bottom: 8px; }
.offer-tagline { font-size: 1rem; color: var(--gold); font-style: italic; margin-bottom: 16px; display: block; }
.offer-includes { margin: 20px 0 28px; list-style: none; }
.offer-includes li { padding: 7px 0; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; color: var(--text-dark); display: flex; align-items: center; gap: 10px; }
.offer-includes li::before { content:'✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
@media(max-width:900px){ .offer-full-card,.offer-full-card.reverse { grid-template-columns:1fr; direction:ltr; gap:28px; } }

/* Related services */
.related-services { margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--border-light); }
.related-services h3 { font-size: 1.4rem; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.related-card { display: flex; flex-direction: column; gap: 10px; text-align: center; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-dark); transition: color 0.3s; }
.related-card img { border-radius: var(--r); aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform 0.4s ease; }
.related-card:hover { color: var(--gold); }
.related-card:hover img { transform: scale(1.04); }
@media(max-width:600px){ .related-grid { grid-template-columns: 1fr 1fr; } }

/* Benefits list */
.benefits-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.benefit-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; }
.benefit-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Service detail layout */
.service-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; }
.service-detail-content { min-width: 0; }
.service-detail-content h3 { font-size: 1.4rem; margin: 32px 0 12px; }
.service-intro { font-size: 1.05rem; line-height: 1.8; margin-bottom: 16px; }
.service-booking-sidebar { position: sticky; top: 100px; }
.booking-card { background: var(--dark); color: var(--white); border-radius: var(--r); overflow: hidden; }
.booking-card-header { padding: 28px 28px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.booking-card-header h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 6px; }
.booking-card-header p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.booking-details { padding: 20px 28px; display: flex; flex-direction: column; gap: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.booking-detail-item { display: flex; align-items: center; gap: 12px; }
.booking-detail-item svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }
.booking-detail-item strong { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.booking-detail-item span, .booking-detail-item a { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.btn-full { display: block; text-align: center; width: calc(100% - 56px); margin: 0 28px; }
.booking-card .btn-full:last-child { margin-bottom: 28px; }
.sidebar-note { margin-top: 16px; padding: 16px; background: var(--cream); border-radius: var(--r); }
.sidebar-note p { font-size: 0.82rem; color: var(--text-muted); }
@media(max-width:1024px){ .service-detail-layout { grid-template-columns:1fr; } .service-booking-sidebar { position: static; } }
