/* ─── TOKENS ─── */
:root {
  --primary:      #0f3460;
  --primary-soft: #1a4f8a;
  --accent:       #c8a96e;
  --accent-hover: #b8935a;
  --secondary:    #e8830a;
  --bg:           #f8f9fc;
  --surface:      #ffffff;
  --text:         #1a2236;
  --muted:        #6b7a99;
  --border:       #e2e8f5;
  --shadow-sm:    0 2px 12px rgba(15,52,96,0.07);
  --shadow:       0 12px 40px rgba(15,52,96,0.10);
  --shadow-lg:    0 24px 80px rgba(15,52,96,0.14);
  --radius:       20px;
  --radius-sm:    12px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); line-height: 1.65; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
abbr { text-decoration: none; color: var(--accent); }
a { color: inherit; }

/* ─── LAYOUT ─── */
.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section { padding: 5rem 0; }
.alt { background: var(--surface); }

.section-head { max-width: 640px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 0.5rem 0; }
.section-sub { color: var(--muted); margin-top: 0.5rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

/* ─── BUTTONS ─── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.button:hover  { transform: translateY(-2px); box-shadow: var(--shadow); }
.button:active { transform: translateY(0); }

.button.primary  { background: var(--primary);   color: #fff; }
.button.primary:hover { background: var(--primary-soft); }
.button.secondary { background: var(--secondary); color: #fff; }
.button.secondary:hover { background: #d07008; }
.button.accent   { background: var(--accent);    color: #fff; }
.button.accent:hover { background: var(--accent-hover); }
.button.outline  {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.65);
}
.button.outline:hover { background: rgba(255,255,255,0.15); }
.button.full-width { width: 100%; }

/* ─── HEADER ─── */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand-moon { font-size: 1.4rem; color: var(--accent); }

/* Logo image */
.logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.logo-img:hover { opacity: 0.88; }
.footer-logo { height: 42px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.9rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--primary); background: rgba(15,52,96,0.06); }
.nav-cta { margin-left: 0.5rem; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(10,24,60,0.82) 30%, rgba(15,52,96,0.60) 100%),
    url("https://images.unsplash.com/photo-1563901935883-cb61f5d49be4?auto=format&fit=crop&w=1800&q=80")
    center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy { color: #fff; }
.hero-copy .eyebrow { color: var(--accent); }
.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  margin: 0.75rem 0 1.25rem;
  font-weight: 800;
}
.hero-copy > p { color: rgba(255,255,255,0.80); max-width: 38rem; font-size: 1.1rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.search-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.search-card-head { margin-bottom: 1.5rem; }
.search-card-head h2 { font-size: 1.4rem; color: var(--primary); margin-bottom: 0.25rem; }
.search-card-head p  { color: var(--muted); font-size: 0.9rem; }

.search-form { display: grid; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

.search-form label,
.booking-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}
.search-form select,
.search-form input,
.booking-form select,
.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #f7f9ff;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.search-form select:focus,
.search-form input:focus,
.booking-form select:focus,
.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--primary);
  padding: 1.75rem 0;
}
.trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 2.5rem;
  color: #fff;
}
.trust-number { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.trust-label  { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* ─── CITY TABS ─── */
.city-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.tab {
  padding: 0.65rem 1.4rem;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  border-radius: 0;
  transition: color 0.2s, border-color 0.2s;
}
.tab:hover  { color: var(--primary); }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ─── ROOMS GRID ─── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.room-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.room-img-wrap { position: relative; overflow: hidden; }
.room-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.room-card:hover .room-img-wrap img { transform: scale(1.04); }

.room-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.room-badge.haram { background: var(--accent); color: #fff; }

.room-stars { font-size: 0.85rem; color: var(--accent); letter-spacing: 0.05em; }

.room-content {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.room-content h3 { font-size: 1.1rem; color: var(--text); }

.room-chip {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(15,52,96,0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  width: fit-content;
}

.room-meta { color: var(--muted); font-size: 0.875rem; }
.room-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.5; flex: 1; }

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.room-amenity-tag {
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
}
.room-price strong { font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.room-price span   { font-size: 0.78rem; color: var(--muted); display: block; }

/* No results */
.no-results {
  text-align: center;
  padding: 4rem 1rem;
  grid-column: 1 / -1;
}
.no-results-icon { font-size: 3rem; margin-bottom: 1rem; }
.no-results h3   { font-size: 1.4rem; margin-bottom: 0.5rem; }
.no-results p    { color: var(--muted); margin-bottom: 1.5rem; }
.hidden { display: none !important; }

/* ─── AMENITIES ─── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.amenity-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.amenity-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.amenity-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.amenity-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--primary); }
.amenity-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-card.featured-review {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.15), var(--shadow);
  transform: scale(1.02);
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.testimonial-card > p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }
.reviewer { display: flex; align-items: center; gap: 0.85rem; }
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.9rem; color: var(--text); }
.reviewer-info span   { font-size: 0.78rem; color: var(--muted); }

/* ─── GALLERY ─── */
.gallery-section { overflow: hidden; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
  margin-top: 2rem;
}
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,24,60,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 600; font-size: 0.9rem; }

/* ─── FAQ ─── */
.faq-container { max-width: 780px; }
.faq-list { margin-top: 2rem; display: grid; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-align: left;
  gap: 1rem;
  transition: background 0.2s;
}
.faq-question:hover { background: #f5f7ff; }
.faq-chevron { font-size: 1.4rem; color: var(--primary); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(90deg); }
.faq-answer { padding: 0 1.25rem 1.25rem; background: var(--surface); }
.faq-answer p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ─── NEWSLETTER ─── */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  padding: 4rem 0;
}
.newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.newsletter-copy { color: #fff; }
.newsletter-copy .eyebrow { color: var(--accent); }
.newsletter-copy h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 0.4rem 0 0.6rem; }
.newsletter-copy p  { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.newsletter-form { display: flex; gap: 0.75rem; flex-shrink: 0; }
.newsletter-form input {
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 999px;
  min-width: 270px;
  outline: none;
  font-size: 0.95rem;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.contact-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--primary); }
.contact-card a  { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.contact-card a:hover { color: var(--primary); }

/* ─── FOOTER ─── */
.site-footer { background: #0a1830; color: rgba(255,255,255,0.65); padding: 4rem 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { color: #fff; margin-bottom: 1rem; display: inline-flex; }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; max-width: 280px; margin-top: 0.75rem; }

.social-links { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col h4 { color: #fff; font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-col a  { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom { padding: 1.25rem 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── MODAL ─── */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(10,24,60,0.55);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  z-index: 200;
  backdrop-filter: blur(4px);
}
.modal.hidden { display: none !important; }

.modal-dialog {
  width: min(580px, 100%);
  background: var(--surface);
  border-radius: 28px;
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90svh;
  overflow-y: auto;
}
.modal-dialog h2 { font-size: 1.4rem; color: var(--primary); margin-bottom: 1.25rem; }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg);
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--muted);
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--border); }

.booking-form { display: grid; gap: 0.9rem; margin-top: 0.5rem; }
.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

.room-summary {
  background: linear-gradient(135deg, rgba(15,52,96,0.05), rgba(200,169,110,0.08));
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15,52,96,0.12);
  margin-bottom: 1.25rem;
}
.room-summary-row { display: flex; justify-content: space-between; align-items: center; }
.room-summary h3  { font-size: 1rem; color: var(--primary); margin-bottom: 0.35rem; }
.room-summary p   { font-size: 0.85rem; color: var(--muted); }

.price-summary {
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.7;
}
.price-row { display: flex; justify-content: space-between; }
.price-row.total { font-weight: 700; border-top: 1px solid rgba(200,169,110,0.3); margin-top: 0.4rem; padding-top: 0.4rem; }

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  box-shadow: 0 16px 40px rgba(15,52,96,0.25);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  z-index: 300;
  animation: toastIn 0.3s ease;
}
.toast.hidden { display: none !important; }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .rooms-grid        { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid    { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured-review { transform: none; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 820px) {
  .hero { min-height: auto; padding: 6rem 0 3rem; }
  .hero-layout    { grid-template-columns: 1fr; }
  .hero-copy h1   { font-size: 2.25rem; }
  .search-card    { margin-top: 1.5rem; }
  .form-row       { grid-template-columns: 1fr; }
  .gallery-grid   {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.tall { grid-row: auto; }
  .contact-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-link { border-radius: var(--radius-sm); padding: 0.75rem 1rem; }
  .nav-cta  { text-align: center; margin: 0.5rem 0 0; border-radius: 999px; }
  .site-header { position: sticky; }

  .trust-divider { display: none; }
  .trust-item    { padding: 0.5rem 1.25rem; }
  .trust-grid    { gap: 0.5rem; }

  .rooms-grid        { grid-template-columns: 1fr; }
  .amenities-grid    { grid-template-columns: 1fr 1fr; }

  .newsletter-inner  { flex-direction: column; }
  .newsletter-form   { flex-direction: column; width: 100%; }
  .newsletter-form input { min-width: 0; width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .booking-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: 1fr; }
  .modal-dialog   { padding: 1.5rem; border-radius: var(--radius); }
  .hero-actions   { flex-direction: column; }
  .hero-actions .button { width: 100%; text-align: center; }
}

/* Islamic Color Refresh */
:root {
  --primary: #0b5a4a;
  --primary-soft: #0f6b58;
  --accent: #d4a32f;
  --accent-hover: #bf8f23;
  --secondary: #d94856;
  --bg: #f7f3ea;
  --surface: #fffdf8;
  --text: #1f2a2b;
  --muted: #5d6b6d;
  --border: #dfd5bf;
  --shadow-sm: 0 6px 18px rgba(20, 52, 44, 0.08);
  --shadow: 0 16px 36px rgba(20, 52, 44, 0.12);
  --shadow-lg: 0 24px 58px rgba(20, 52, 44, 0.18);
  font-family: "El Messiri", "Segoe UI", sans-serif;
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(212, 163, 47, 0.16) 0, rgba(212, 163, 47, 0) 33%),
    radial-gradient(circle at 86% 82%, rgba(11, 90, 74, 0.13) 0, rgba(11, 90, 74, 0) 38%),
    var(--bg);
}

.section h2,
.hero-copy h1,
.search-card-head h2,
.modal-dialog h2,
.footer-col h4 {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.02em;
}

.site-header {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.95), rgba(255, 248, 230, 0.92));
  backdrop-filter: blur(8px);
}

.nav-link:hover {
  background: rgba(11, 90, 74, 0.10);
  color: var(--primary);
}

.hero {
  background:
    linear-gradient(130deg, rgba(3, 34, 30, 0.80), rgba(9, 72, 60, 0.64)),
    url("https://images.unsplash.com/photo-1584285405429-13624ec6d62c?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(212,163,47,0.14) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(212,163,47,0.14) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.search-card {
  border: 1px solid rgba(212, 163, 47, 0.38);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,249,236,0.96));
}

.button.primary {
  background: linear-gradient(135deg, #0b5a4a, #1e7a66);
}
.button.secondary {
  background: linear-gradient(135deg, #d94856, #c53846);
}
.button.outline {
  border-color: rgba(212, 163, 47, 0.9);
  color: #fff3cf;
}

.trust-bar {
  background: linear-gradient(90deg, #0a4539, #0f6b58, #0a4539);
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 247, 231, 0.95), rgba(255, 252, 245, 0.95));
}

.city-tabs .tab {
  border: 1px solid rgba(212, 163, 47, 0.42);
  background: #fffdf7;
}
.city-tabs .tab.active {
  background: linear-gradient(135deg, #0b5a4a, #0f6b58);
  color: #fff;
}

.room-card {
  position: relative;
  border: 1px solid rgba(212, 163, 47, 0.40);
  background: linear-gradient(180deg, #fffefb, #fffaf0);
}
.room-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d4a32f, #0f6b58, #d94856);
}

.amenity-card {
  border: 1px solid rgba(11, 90, 74, 0.16);
  background: #fffdf8;
}
.amenity-card:nth-child(3n+1) { box-shadow: inset 0 0 0 2px rgba(11,90,74,0.12); }
.amenity-card:nth-child(3n+2) { box-shadow: inset 0 0 0 2px rgba(212,163,47,0.22); }
.amenity-card:nth-child(3n+3) { box-shadow: inset 0 0 0 2px rgba(217,72,86,0.16); }

.testimonial-card {
  background: linear-gradient(160deg, #fffdf7, #fff8ea);
  border: 1px solid rgba(212, 163, 47, 0.36);
}

.faq-item,
.contact-card,
.modal-dialog,
.newsletter,
.gallery-item {
  border-color: rgba(11, 90, 74, 0.16);
}

.site-footer {
  background:
    linear-gradient(180deg, #062620, #0a3c32 55%, #061f1a);
}

@media (max-width: 768px) {
  .hero::before { opacity: 0.55; }
  .room-card::before { height: 3px; }
}
