:root{
  --color-navy: #0b1f3a;
  --color-navy-dark: #071528;
  --color-navy-light: #16335c;
  --color-gold: #c9a227;
  --color-gold-light: #e0bf4f;
  --color-offwhite: #faf7f0;
  --color-white: #ffffff;
  --color-text: #1c2333;
  --color-text-light: #5c6478;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-soft: 0 10px 30px rgba(11, 31, 58, 0.12);
  --shadow-strong: 0 20px 45px rgba(11, 31, 58, 0.18);
  --radius: 14px;
  --container-width: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body, h1, h2, h3, p, ul, figure{ margin: 0; }
ul{ list-style: none; padding: 0; }
img{ max-width: 100%; display: block; }
a{ text-decoration: none; color: inherit; }
button{ font: inherit; cursor: pointer; border: none; background: none; }
input, select{ font: inherit; }

body{
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3{ font-family: var(--font-heading); color: var(--color-navy); line-height: 1.2; }

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

section[id]{ scroll-margin-top: 76px; }

.icon{ width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.eyebrow{
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.section-heading{ text-align: center; max-width: 620px; margin: 0 auto 40px; }
.section-heading h2{ font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 12px; }
.section-heading__sub{ color: var(--color-text-light); }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn--gold{ background: var(--color-gold); color: var(--color-navy-dark); }
.btn--gold:hover{ background: var(--color-gold-light); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--navy{ background: var(--color-navy); color: var(--color-white); }
.btn--navy:hover{ background: var(--color-navy-light); transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.navbar{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.97);
  box-shadow: 0 2px 14px rgba(11,31,58,0.06);
}
.navbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar__logo{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-navy);
  letter-spacing: 0.03em;
}
.navbar__logo span{ color: var(--color-gold); }

.navbar__right{ display: flex; align-items: center; gap: 10px; }

.hamburger{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
}
.hamburger span{
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2){ opacity: 0; }
.hamburger.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.navbar__menu{
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--color-offwhite);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.navbar__menu.is-open{ transform: translateX(0); }

.navbar__links{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.nav-link{ font-weight: 600; font-size: 1.2rem; color: var(--color-navy); }
.nav-link:hover{ color: var(--color-gold); }

.navbar__call{ padding: 12px 24px; }

.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,21,40,0.65) 0%, rgba(7,21,40,0.55) 50%, rgba(7,21,40,0.85) 100%);
}
.hero__content{
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 24px;
  max-width: 780px;
}
.hero__eyebrow{
  color: var(--color-gold-light);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}
.hero__content h1{
  color: var(--color-white);
  font-size: clamp(2rem, 7vw, 3.6rem);
  margin-bottom: 20px;
}
.hero__subtitle{
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
}

.booking-bar{
  position: relative;
  z-index: 5;
  margin-top: -60px;
  padding-bottom: 10px;
}
.booking-bar__form{
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-bar__field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-bar__field label{
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.booking-bar__field input,
.booking-bar__field select{
  border: 1.5px solid #e5e1d6;
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--color-text);
  background: var(--color-offwhite);
}
.booking-bar__field input:focus,
.booking-bar__field select:focus{ outline: 2px solid var(--color-gold); }

.booking-bar__submit{ width: 100%; margin-top: 4px; }

.about{ padding: 90px 0 70px; }
.about__inner{
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.about__image img{
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.about__text h2{ font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 18px; }
.about__text p{ color: var(--color-text-light); margin-bottom: 14px; }

.rooms{ padding: 70px 0; }
.rooms__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.room-card{
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.room-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.room-card--featured{ border: 2px solid var(--color-gold); }
.room-card__badge{
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  z-index: 2;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.room-card__image{ height: 220px; }
.room-card__image img{ width: 100%; height: 100%; object-fit: cover; }
.room-card__body{ padding: 24px; }
.room-card__body h3{ font-size: 1.35rem; margin-bottom: 16px; }

.room-card__features{ display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.room-card__features li{ display: flex; align-items: center; gap: 10px; color: var(--color-text-light); font-size: 0.92rem; }
.room-card__features .icon{ color: var(--color-gold); }

.room-card__footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid #eee7d8;
  padding-top: 18px;
}
.room-card__price-amount{ font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: var(--color-navy); }
.room-card__price-label{ color: var(--color-text-light); font-size: 0.85rem; }
.room-card__cta{ padding: 11px 20px; font-size: 0.88rem; }

.amenities{ padding: 70px 0; background: var(--color-navy); }
.amenities .eyebrow{ color: var(--color-gold-light); }
.amenities .section-heading h2{ color: var(--color-white); }

.amenities__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
.amenity{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.amenity__icon{ width: 34px; height: 34px; fill: none; stroke: var(--color-gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.amenity h3{ color: var(--color-white); font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; }

.reviews{ padding: 70px 0; }
.reviews__grid{ display: grid; grid-template-columns: 1fr; gap: 24px; }
.review-card{
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 28px 24px;
}
.review-card__stars{ color: var(--color-gold); letter-spacing: 3px; margin-bottom: 16px; }
.review-card__text{ color: var(--color-text); margin-bottom: 22px; font-style: italic; }
.review-card__author{ display: flex; align-items: center; gap: 12px; }
.review-card__avatar{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-gold-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.review-card__name{ font-weight: 700; font-size: 0.92rem; color: var(--color-navy); }
.review-card__role{ font-size: 0.82rem; color: var(--color-text-light); }

.footer{ background: var(--color-navy-dark); color: rgba(255,255,255,0.85); padding-top: 60px; }
.footer__inner{
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__logo{ font-size: 1.5rem; margin-bottom: 12px; display: inline-block; }
.footer__logo, .footer__logo span{ color: var(--color-white); }
.footer__logo span{ color: var(--color-gold); }
.footer__tagline{ color: rgba(255,255,255,0.6); margin-bottom: 22px; }

.footer__contact-list{ display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.footer__contact-list li{ display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; }
.footer__contact-list .icon{ color: var(--color-gold); margin-top: 2px; }
.footer__contact-list a:hover{ color: var(--color-gold-light); }

.footer__social{ display: flex; gap: 14px; }
.footer__social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer__social a:hover{ background: var(--color-gold); border-color: var(--color-gold); }
.footer__social .icon{ width: 17px; height: 17px; }

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

@media (min-width: 640px){
  .booking-bar__form{ flex-direction: row; align-items: flex-end; }
  .booking-bar__field{ flex: 1; }
  .booking-bar__submit{ width: auto; padding-inline: 32px; }

  .rooms__grid{ grid-template-columns: repeat(2, 1fr); }
  .amenities__grid{ grid-template-columns: repeat(3, 1fr); }
  .reviews__grid{ grid-template-columns: repeat(2, 1fr); }

  .footer__inner{ flex-direction: row; }
  .footer__map{ flex: 1.1; }
  .footer__info{ flex: 1; }
}

@media (min-width: 1024px){
  .hamburger{ display: none; }

  .navbar__menu{
    position: static;
    transform: none;
    flex-direction: row;
    background: transparent;
    inset: auto;
    gap: 40px;
  }
  .navbar__links{ flex-direction: row; gap: 32px; }
  .nav-link{ font-size: 1rem; }

  .about__inner{ flex-direction: row; align-items: center; }
  .about__image{ flex: 1; }
  .about__image img{ height: 420px; }
  .about__text{ flex: 1; }

  .rooms__grid{ grid-template-columns: repeat(3, 1fr); }
  .amenities__grid{ grid-template-columns: repeat(6, 1fr); }
  .reviews__grid{ grid-template-columns: repeat(3, 1fr); }
}

.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

.reveal-delay-1{ transition-delay: 0.08s; }
.reveal-delay-2{ transition-delay: 0.16s; }
.reveal-delay-3{ transition-delay: 0.24s; }
.reveal-delay-4{ transition-delay: 0.32s; }
.reveal-delay-5{ transition-delay: 0.4s; }
.reveal-delay-6{ transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  .hero__eyebrow, .hero__content h1, .hero__subtitle, .hero #heroCta{ animation: none !important; }
}

.navbar{ transition: box-shadow 0.3s ease, background 0.3s ease; }
.navbar.is-scrolled{ box-shadow: 0 6px 24px rgba(11,31,58,0.14); background: rgba(250, 247, 240, 0.98); }

.nav-link{ position: relative; }
.nav-link.active{ color: var(--color-gold); }
@media (min-width: 1024px){
  .nav-link.active::after{
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -8px;
    height: 2px;
    background: var(--color-gold);
  }
}

@keyframes heroFadeUp{
  from{ opacity: 0; transform: translateY(22px); }
  to{ opacity: 1; transform: translateY(0); }
}
.hero__eyebrow{ animation: heroFadeUp 0.8s ease both 0.1s; }
.hero__content h1{ animation: heroFadeUp 0.9s ease both 0.25s; }
.hero__subtitle{ animation: heroFadeUp 0.9s ease both 0.4s; }
.hero #heroCta{ animation: heroFadeUp 0.9s ease both 0.55s; }
.hero__bg{ will-change: transform; }

.page-banner{
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-banner__bg{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-banner__overlay{ position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,21,40,0.72) 0%, rgba(7,21,40,0.6) 100%); }
.page-banner__content{ position: relative; z-index: 2; color: var(--color-white); padding: 90px 24px 40px; }
.page-banner__content h1{ color: var(--color-white); font-size: clamp(1.9rem, 5vw, 2.8rem); margin-bottom: 12px; }
.page-banner__breadcrumb{ font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.page-banner__breadcrumb a{ color: var(--color-gold-light); }
.page-banner__breadcrumb a:hover{ text-decoration: underline; }

.teaser-more{ display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; font-weight: 600; color: var(--color-navy); border-bottom: 1.5px solid var(--color-gold); padding-bottom: 2px; transition: color 0.2s ease, gap 0.2s ease; }
.teaser-more:hover{ color: var(--color-gold); gap: 12px; }

.rooms-teaser__grid{ display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
.room-mini{
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.room-mini:hover{ transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.room-mini__image{ height: 170px; }
.room-mini__image img{ width: 100%; height: 100%; object-fit: cover; }
.room-mini__body{ padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.room-mini__body h3{ font-size: 1.05rem; margin-bottom: 4px; }
.room-mini__price{ color: var(--color-text-light); font-size: 0.85rem; }
.room-mini__price strong{ color: var(--color-navy); font-family: var(--font-heading); font-size: 1.05rem; }
.rooms-teaser__all{ text-align: center; }

.cta-banner{
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 70px 24px;
}
.cta-banner .eyebrow{ color: var(--color-gold-light); }
.cta-banner h2{ color: var(--color-white); font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 14px; }
.cta-banner p{ color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 28px; }
.cta-banner__buttons{ display: flex; flex-direction: column; gap: 14px; align-items: center; }

.stats{ padding: 60px 0; }
.stats__grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; text-align: center; }
.stat__number{ font-family: var(--font-heading); font-weight: 800; font-size: clamp(2rem, 5vw, 2.8rem); color: var(--color-navy); }
.stat__number span{ color: var(--color-gold); }
.stat__label{ color: var(--color-text-light); font-size: 0.88rem; margin-top: 6px; }

.gallery{ padding: 70px 0; }
.gallery__grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gallery-item{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  display: block;
  width: 100%;
  padding: 0;
}
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img{ transform: scale(1.1); }
.gallery-item__overlay{
  position: absolute; inset: 0;
  background: rgba(7,21,40,0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item__overlay{ opacity: 1; }
.gallery-item__overlay svg{ width: 30px; height: 30px; stroke: var(--color-white); fill: none; stroke-width: 1.6; }

.lightbox{
  position: fixed; inset: 0;
  background: rgba(7,21,40,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  padding: 20px;
}
.lightbox.is-open{ opacity: 1; visibility: visible; }
.lightbox__img{ max-width: 92vw; max-height: 78vh; border-radius: 10px; box-shadow: var(--shadow-strong); animation: lightboxZoom 0.25s ease; }
@keyframes lightboxZoom{ from{ transform: scale(0.94); opacity: 0.6; } to{ transform: scale(1); opacity: 1; } }
.lightbox__close, .lightbox__prev, .lightbox__next{
  position: absolute;
  color: var(--color-white);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover{ background: var(--color-gold); color: var(--color-navy-dark); }
.lightbox__close{ top: 20px; inset-inline-end: 20px; }

.lightbox__prev{ left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next{ right: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__close .icon, .lightbox__prev .icon, .lightbox__next .icon{ width: 22px; height: 22px; }
.lightbox__counter{ position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.85rem; }

.contact{ padding: 70px 0; }
.contact__inner{ display: flex; flex-direction: column; gap: 40px; }
.contact__info-list{ display: flex; flex-direction: column; gap: 16px; margin: 22px 0; }
.contact__info-list li{ display: flex; align-items: flex-start; gap: 12px; color: var(--color-text-light); }
.contact__info-list .icon{ color: var(--color-gold); margin-top: 3px; }

.contact-form{ background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 28px 24px; display: flex; flex-direction: column; gap: 16px; }
.contact-form__field{ display: flex; flex-direction: column; gap: 6px; }
.contact-form__field label{ font-size: 0.78rem; font-weight: 600; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 0.04em; }
.contact-form__field input, .contact-form__field textarea{
  border: 1.5px solid #e5e1d6;
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--color-offwhite);
  color: var(--color-text);
  resize: vertical;
  font-family: var(--font-body);
}
.contact-form__field input:focus, .contact-form__field textarea:focus{ outline: 2px solid var(--color-gold); }
.contact-form__submit{ position: relative; }
.contact-form__submit.is-loading{ opacity: 0.75; pointer-events: none; }

@media (min-width: 640px){
  .rooms-teaser__grid{ grid-template-columns: repeat(3, 1fr); }
  .stats__grid{ grid-template-columns: repeat(4, 1fr); }
  .gallery__grid{ grid-template-columns: repeat(3, 1fr); }
  .cta-banner__buttons{ flex-direction: row; justify-content: center; }
  .contact__inner{ flex-direction: row; }
  .contact__info{ flex: 1; }
  .contact__form-wrap{ flex: 1.1; }
}

@media (min-width: 1024px){
  .gallery__grid{ grid-template-columns: repeat(4, 1fr); }
  .page-banner{ min-height: 38vh; }
}

.topbar{
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.8);
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  font-size: 0.76rem;
}
.weather-widget{ display: flex; align-items: center; gap: 8px; font-weight: 500; white-space: nowrap; }
.weather-widget__icon{ width: 15px; height: 15px; stroke: var(--color-gold-light); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.weather-widget__location{ color: rgba(255,255,255,0.6); }
.weather-widget__divider{ color: rgba(255,255,255,0.3); }
.weather-widget__temp{ font-weight: 700; color: var(--color-gold-light); }

.lang-dropdown{ position: relative; }
.lang-dropdown__btn{
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--color-navy);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-dropdown__btn:hover{ background: var(--color-navy); color: var(--color-white); }
.lang-dropdown__flag{ font-size: 1rem; line-height: 1; }
.lang-dropdown__caret{ width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.25s ease; }
.lang-dropdown.is-open .lang-dropdown__caret{ transform: rotate(180deg); }

.lang-dropdown__menu{
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  min-width: 170px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-strong);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}
.lang-dropdown.is-open .lang-dropdown__menu{ opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown__option{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: start;
}
.lang-dropdown__option:hover{ background: var(--color-offwhite); }
.lang-dropdown__option.is-active{ background: rgba(201,162,39,0.1); color: var(--color-gold); }

.reviews__rating-summary{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-weight: 700;
  color: var(--color-navy);
  flex-wrap: wrap;
}
.reviews__rating-summary .stars{ color: var(--color-gold); letter-spacing: 2px; }
.reviews__rating-summary .count{ color: var(--color-text-light); font-weight: 500; font-size: 0.85rem; }

.reviews-carousel{ display: flex; align-items: center; gap: 10px; }
.reviews-carousel__track{
  flex: 1;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 22px;
}
.reviews-carousel__track::-webkit-scrollbar{ height: 5px; }
.reviews-carousel__track::-webkit-scrollbar-thumb{ background: var(--color-gold); border-radius: 999px; }

.reviews-carousel__track .review-card{
  flex: 0 0 85%;
  scroll-snap-align: start;
}
.review-card__google{ display: flex; align-items: center; gap: 6px; margin-bottom: 12px; font-size: 0.76rem; font-weight: 600; color: var(--color-text-light); }
.review-card__google svg{ width: 15px; height: 15px; flex-shrink: 0; }

.reviews-carousel__arrow{
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-navy);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.reviews-carousel__arrow:hover{ background: var(--color-navy); color: var(--color-white); }
.reviews-carousel__arrow .icon{ width: 18px; height: 18px; }

.reviews-carousel__dots{ display: flex; justify-content: center; gap: 8px; margin-top: 4px; }
.reviews-carousel__dot{ width: 8px; height: 8px; border-radius: 50%; background: #e5e1d6; transition: background 0.2s ease, transform 0.2s ease; }
.reviews-carousel__dot.is-active{ background: var(--color-gold); transform: scale(1.3); }

.map-placeholder{
  background: #eae6d9;
  border: 2px dashed #c7bf9e;
  border-radius: var(--radius);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 30px 20px;
  color: #8a7f5f;
}
.map-placeholder__icon{ width: 38px; height: 38px; stroke: #8a7f5f; fill: none; stroke-width: 1.5; }
.map-placeholder__text{ font-weight: 600; font-size: 0.9rem; max-width: 300px; }

.location{ padding: 70px 0; }
.location__inner{ display: flex; flex-direction: column; gap: 32px; }
.location__highlights{ display: flex; flex-direction: column; gap: 16px; }
.location__highlight{
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 16px 18px;
}
.location__highlight .icon{ color: var(--color-gold); width: 26px; height: 26px; flex-shrink: 0; }
.location__highlight strong{ display: block; color: var(--color-navy); font-size: 1rem; }
.location__highlight span{ color: var(--color-text-light); font-size: 0.85rem; }

.faq{ padding: 70px 0; }
.faq__list{ display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin: 0 auto; }
.faq-item{
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item__question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--color-navy);
  text-align: start;
}
.faq-item__icon{ width: 20px; height: 20px; stroke: var(--color-gold); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.is-open .faq-item__icon{ transform: rotate(45deg); }
.faq-item__answer{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item__answer-inner{ overflow: hidden; }
.faq-item__answer-inner p{ padding: 0 22px 22px; color: var(--color-text-light); }
.faq-item.is-open .faq-item__answer{ grid-template-rows: 1fr; }

.contact-form__success{
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(52, 143, 89, 0.1);
  border: 1.5px solid #348f59;
  color: #256b41;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 600;
}
.contact-form__success.is-visible{ display: flex; }
.contact-form__success .icon{ width: 20px; height: 20px; flex-shrink: 0; color: #348f59; }

.teaser-more::after{ content: '→'; transition: transform 0.2s ease; }
html[dir="rtl"] .teaser-more::after{ content: '←'; }

html[lang="ar"] body,
html[lang="ar"] input,
html[lang="ar"] select,
html[lang="ar"] textarea,
html[lang="ar"] button{ font-family: 'Cairo', var(--font-body); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3,
html[lang="ar"] .navbar__logo, html[lang="ar"] .footer__logo{ font-family: 'Cairo', var(--font-heading); }

@media (min-width: 640px){
  .reviews-carousel__track .review-card{ flex: 0 0 46%; }
  .location__inner{ flex-direction: row; }
  .location__map-wrap{ flex: 1.1; }
  .location__highlights{ flex: 1; justify-content: center; }
}

@media (min-width: 1024px){
  .reviews-carousel__track .review-card{ flex: 0 0 31%; }
}
