/* ============================================================
   GOURDIA LODGE — Main Stylesheet
   Moroccan Bed & Breakfast | Skoura, Morocco
   ============================================================ */

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

/* === CSS VARIABLES === */
:root {
  --primary:        #9B5E2E;
  --primary-dark:   #7A4820;
  --primary-light:  #C4783A;
  --secondary:      #D4A853;
  --secondary-dark: #B8872F;
  --accent:         #4A7C59;
  --dark:           #2D1B00;
  --light:          #FDF5E6;
  --cream:          #F5E6C8;
  --cream-dark:     #EDD9A3;
  --text:           #3D2B1F;
  --text-light:     #7A6050;
  --text-muted:     #A89585;
  --white:          #FFFFFF;
  --wa-green:       #25D366;
  --wa-dark:        #128C7E;
  --shadow-sm:      0 2px 10px rgba(45,27,0,0.08);
  --shadow:         0 4px 20px rgba(45,27,0,0.12);
  --shadow-lg:      0 8px 40px rgba(45,27,0,0.18);
  --shadow-hover:   0 12px 40px rgba(45,27,0,0.22);
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --transition:     all 0.3s ease;
  --transition-slow:all 0.5s ease;
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Nunito', 'Segoe UI', sans-serif;
  --font-arabic:    'Noto Sans Arabic', sans-serif;
  --max-width:      1200px;
  --nav-height:     72px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
body.lang-ar {
  font-family: var(--font-arabic);
  direction: rtl;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--dark);
}
.lang-ar h1, .lang-ar h2, .lang-ar h3, .lang-ar h4 {
  font-family: var(--font-arabic);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--text-light); }

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 600px; margin: 16px auto 0; font-size: 1.05rem; }
.section-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid var(--cream-dark);
}
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.bg-light { background: var(--light); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--dark); color: var(--white); }
.hidden { display: none !important; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: #c9a56a;
  color: #2c1a0e;
  box-shadow: 0 4px 16px rgba(180,140,80,0.28);
}
.btn-primary:hover {
  background: #b8914f;
  color: #1a0e06;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160,120,60,0.32);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-wa {
  background: #8B5E3C;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(139,94,60,0.32);
}
.btn-wa:hover {
  background: #6e4a2c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,94,60,0.42);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  animation: wa-pulse 2s infinite;
}
.lang-ar .wa-float { right: auto; left: 28px; }
.wa-float:hover {
  background: var(--wa-dark);
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  animation: none;
}
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
}
.navbar.transparent { background: transparent; }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo img { height: 54px; width: auto; }
.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .logo-text { color: var(--dark); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link:hover, .nav-link.active {
  color: var(--secondary);
  background: rgba(212,168,83,0.12);
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--primary);
  background: var(--cream);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 4px 6px;
  backdrop-filter: blur(4px);
}
.navbar.scrolled .lang-switcher { background: var(--cream); }
.lang-btn {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.navbar.scrolled .lang-btn { color: var(--text-light); }
.lang-btn.active,
.lang-btn:hover {
  background: var(--secondary);
  color: var(--dark);
}
/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45,27,0,0.72) 0%,
    rgba(45,27,0,0.45) 50%,
    rgba(74,124,89,0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 120px 0 80px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,83,0.2);
  border: 1px solid rgba(212,168,83,0.5);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  color: var(--white);
  max-width: 640px;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--secondary); display: block; }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.hero-badge svg { width: 16px; height: 16px; opacity: 0.85; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll .arrow { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* === ABOUT STRIP === */
.about-strip {
  background: var(--primary);
  color: var(--white);
  padding: 24px 0;
}
.about-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  align-items: center;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}
.strip-item svg { width: 20px; height: 20px; opacity: 0.85; }

/* === ABOUT SECTION === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-placeholder {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  border: 2px dashed var(--cream-dark);
}
.about-img-placeholder svg { width: 48px; height: 48px; margin-bottom: 12px; opacity: 0.5; }
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge .number { font-size: 2rem; font-weight: 700; font-family: var(--font-heading); display: block; }
.about-badge .label  { font-size: 0.78rem; opacity: 0.85; font-weight: 500; }
.about-content { padding: 16px 0; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; font-size: 1.02rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.about-feature svg { color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; }

/* === ROOMS SECTION === */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(212,168,83,0.2);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.room-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.room-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  gap: 8px;
  border: 2px dashed transparent;
  transition: var(--transition);
}
.room-card:hover .room-img-placeholder { border-color: var(--secondary); }
.room-img-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }
.room-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.room-body { padding: 24px; }
.room-body h3 { margin-bottom: 8px; font-size: 1.3rem; }
.room-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }
.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.room-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}
.room-meta-item svg { width: 15px; height: 15px; color: var(--primary); }
.room-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}
.room-price .from { font-size: 0.8rem; color: var(--text-muted); }
.room-price .amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}
.room-price .night { font-size: 0.82rem; color: var(--text-muted); }
.room-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.room-actions .btn { flex: 1; justify-content: center; min-width: 120px; }

/* === SERVICES SECTION === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,168,83,0.15);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--secondary);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(155,94,46,0.3);
}
.service-icon svg { width: 30px; height: 30px; color: var(--white); }
.service-card h4 { margin-bottom: 10px; font-size: 1.05rem; }
.service-card p { font-size: 0.88rem; }

/* === WHY US === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-num {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  border: 2px solid var(--cream-dark);
}
.why-text h4 { margin-bottom: 6px; }
.why-text p  { font-size: 0.9rem; }
.why-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-img, .why-img-placeholder {
  height: 200px;
  border-radius: var(--radius);
  object-fit: cover;
}
.why-img-placeholder {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  flex-direction: column;
  gap: 6px;
  border: 2px dashed var(--cream-dark);
}
.why-img-placeholder svg { width: 28px; height: 28px; opacity: 0.4; }
.why-img-placeholder:first-child,
.why-img:first-child { grid-column: 1 / -1; height: 240px; }

/* === TESTIMONIALS === */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,168,83,0.2);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.stars { color: var(--secondary); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-country { font-size: 0.78rem; color: var(--text-muted); }

/* === BOOKING PLATFORMS === */
.booking-bar {
  background: var(--dark);
  padding: 40px 0;
}
.booking-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.booking-bar h3 { color: var(--white); font-size: 1.3rem; }
.booking-bar p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.booking-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
.platform-btn.airbnb {
  background: #FF5A5F;
  color: var(--white);
}
.platform-btn.airbnb:hover { background: #e0393e; transform: translateY(-2px); }
.platform-btn.booking {
  background: #003580;
  color: var(--white);
}
.platform-btn.booking:hover { background: #002a6b; transform: translateY(-2px); }

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-phone {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta-phone a { color: var(--secondary); font-weight: 700; }

/* === BLOG SECTION === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,168,83,0.15);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-img, .blog-img-placeholder {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-img-placeholder {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  gap: 8px;
  border-bottom: 1px solid var(--cream-dark);
}
.blog-img-placeholder svg { width: 32px; height: 32px; opacity: 0.4; }
.blog-body { padding: 24px; }
.blog-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.blog-body h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-body h3 a:hover { color: var(--primary); }
.blog-body p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-meta svg { width: 13px; height: 13px; }
.read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.read-more:hover { gap: 8px; }
.read-more svg { width: 14px; height: 14px; transition: var(--transition); }
.read-more:hover svg { transform: translateX(3px); }

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item img,
.gallery-placeholder {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-slow);
}
.gallery-placeholder {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  gap: 8px;
  border: 2px dashed var(--cream-dark);
}
.gallery-placeholder svg { width: 32px; height: 32px; opacity: 0.4; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--wide img,
.gallery-item--wide .gallery-placeholder { height: 300px; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,27,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  background: rgba(45,27,0,0.4);
}
.gallery-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay svg {
  opacity: 1;
  transform: scale(1);
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === MAP SECTION === */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-wrapper iframe { display: block; width: 100%; height: 450px; }
.location-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.location-info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,168,83,0.15);
}
.location-info-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-info-icon svg { width: 22px; height: 22px; color: var(--primary); }
.location-info-text h5 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; font-family: var(--font-body); font-weight: 700; }
.location-info-text p, .location-info-text a { font-size: 0.92rem; color: var(--text); font-weight: 600; }
.location-info-text a:hover { color: var(--primary); }

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 10px; }
.contact-info-card > p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 0.95rem; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; color: var(--secondary); }
.contact-item-text label { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.contact-item-text span, .contact-item-text a { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.contact-item-text a:hover { color: var(--secondary); }
.contact-social { margin-top: 32px; }
.contact-social label { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; color: var(--white); }
/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { margin-bottom: 28px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(155,94,46,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.wa-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #166534;
}
.wa-note svg { width: 20px; height: 20px; color: var(--wa-green); flex-shrink: 0; margin-top: 1px; }

/* === PAGE HEADER === */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-header h1 { color: var(--white); }
.page-header p  { color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--secondary); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* === BLOG POST === */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.blog-post-content { max-width: 720px; }
.blog-post-content h1 { font-size: 2.2rem; margin-bottom: 20px; }
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.blog-post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.blog-post-meta svg { width: 15px; height: 15px; }
.blog-featured-img,
.blog-featured-placeholder {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin-bottom: 36px;
}
.blog-featured-placeholder {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 10px;
  border: 2px dashed var(--cream-dark);
}
.blog-featured-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
.blog-post-content article h2 { font-size: 1.6rem; margin: 36px 0 16px; }
.blog-post-content article h3 { font-size: 1.25rem; margin: 28px 0 12px; }
.blog-post-content article p { font-size: 1rem; margin-bottom: 18px; color: var(--text); line-height: 1.9; }
.blog-post-content article ul, .blog-post-content article ol { padding-left: 24px; margin-bottom: 18px; }
.blog-post-content article li { font-size: 1rem; color: var(--text); margin-bottom: 8px; line-height: 1.7; }
.blog-post-content article blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text);
}
.blog-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,168,83,0.2);
  margin-bottom: 24px;
}
.sidebar-widget h4 { font-size: 1rem; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--cream-dark); }
.sidebar-post {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream);
}
.sidebar-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-post-thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--cream);
  flex-shrink: 0;
}
.sidebar-post-info h5 { font-size: 0.85rem; font-family: var(--font-heading); margin-bottom: 4px; line-height: 1.4; }
.sidebar-post-info h5 a:hover { color: var(--primary); }
.sidebar-post-info span { font-size: 0.76rem; color: var(--text-muted); }

/* === FOOTER === */
.footer {
  background: var(--dark);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand .brand-sub { font-size: 0.78rem; color: var(--secondary); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.8; max-width: 260px; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); }
.footer-social a svg { width: 16px; height: 16px; color: var(--white); }
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--secondary); padding-left: 4px; }
.footer-col ul li a svg { width: 13px; height: 13px; opacity: 0.6; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-contact-item a:hover { color: var(--secondary); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--secondary); }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }
.lang-ar .back-to-top { right: auto; left: 28px; }

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* === PAGE-SPECIFIC: ROOMS === */
.room-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.room-detail:last-child { border-bottom: none; }
.room-detail:nth-child(even) { direction: rtl; }
.room-detail:nth-child(even) > * { direction: ltr; }
.lang-ar .room-detail { direction: ltr; }
.lang-ar .room-detail:nth-child(even) { direction: rtl; }
.room-img-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.room-img-gallery .main-img,
.room-img-gallery .main-placeholder {
  grid-column: 1 / -1;
  height: 260px;
  border-radius: var(--radius);
  object-fit: cover;
}
.room-img-gallery .main-placeholder {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.8rem; gap: 8px;
  border: 2px dashed var(--cream-dark);
}
.room-img-gallery .main-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }
.room-img-gallery .sub-img,
.room-img-gallery .sub-placeholder {
  height: 130px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.room-img-gallery .sub-placeholder {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--cream-dark);
}
.room-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}
.room-amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
}
.room-amenity svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .why-grid { gap: 40px; }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .about-grid, .why-grid { grid-template-columns: 1fr; }
  .about-badge { bottom: 16px; right: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .room-detail { grid-template-columns: 1fr; }
  .room-detail:nth-child(even) { direction: ltr; }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 60px 0; }
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow);
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { color: var(--text) !important; padding: 12px 16px; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--wide img,
  .gallery-item--wide .gallery-placeholder { height: 220px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-bar-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .about-features { grid-template-columns: 1fr; }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .room-amenities { grid-template-columns: 1fr; }
}
