:root {
  --green-dark: #06392f;
  --green: #0a4b3d;
  --green-mid: #0b5b47;
  --gold: #b99144;
  --gold-soft: #f3dfa6;
  --cream: #fcf8ee;
  --cream-2: #f6ead0;
  --text: #18352f;
  --muted: #5b6f68;
  --white: #ffffff;
  --line: rgba(185, 145, 68, 0.22);
  --green-line: rgba(6, 57, 47, 0.13);
  --shadow: 0 26px 70px rgba(6, 57, 47, 0.14);
  --soft-shadow: 0 14px 34px rgba(6, 57, 47, 0.10);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  direction: rtl;
  font-family: "Cairo", sans-serif;
  background: var(--cream);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .07;
  background-image:
    radial-gradient(circle at 16px 16px, var(--green-dark) 1px, transparent 1px);
  background-size: 34px 34px;
  z-index: -1;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 248, 238, 0.90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-content {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  width: 128px;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(6, 57, 47, .08));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-inline-start: auto;
  font-size: 15px;
  font-weight: 800;
  color: var(--green-dark);
}

.main-nav a {
  transition: .2s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.header-cta {
  background: var(--green-dark);
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--soft-shadow);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--green-dark);
  width: 46px;
  height: 46px;
  border-radius: 15px;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  padding: 78px 0 70px;
  background:
    radial-gradient(circle at 82% 12%, rgba(185, 145, 68, .18), transparent 28%),
    radial-gradient(circle at 10% 70%, rgba(6, 57, 47, .12), transparent 30%),
    linear-gradient(135deg, #fffdf7 0%, #fcf8ee 48%, #f4e8cb 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 90px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.hero-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(185, 145, 68, .28);
  border-radius: 50%;
  opacity: .45;
}

.orb-one {
  right: -180px;
  top: -160px;
}

.orb-two {
  left: -170px;
  bottom: -190px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 54px;
  align-items: center;
}

.hero-logo {
  width: min(430px, 90%);
  margin-bottom: 16px;
}

.hero-logo img {
  filter: drop-shadow(0 16px 22px rgba(6, 57, 47, .10));
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 14px;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: "Noto Kufi Arabic", "Cairo", sans-serif;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.32;
  letter-spacing: -1.2px;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 2;
  color: var(--muted);
  font-weight: 600;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(6,57,47,.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--green);
}

.btn-secondary {
  background: rgba(255,255,255,.82);
  color: var(--green-dark);
  border-color: rgba(185,145,68,.55);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--gold-soft);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.hero-mini {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 650px;
}

.hero-mini div {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(185,145,68,.25);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(6,57,47,.05);
}

.hero-mini strong {
  display: block;
  color: var(--green-dark);
  font-size: 21px;
}

.hero-mini span {
  color: var(--muted);
  font-weight: 700;
  font-size: 13.5px;
}

.hero-showcase {
  position: relative;
}

.showcase-card {
  position: relative;
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(185,145,68,.55), rgba(255,255,255,.86));
  box-shadow: var(--shadow);
}

.showcase-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 26px;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
  pointer-events: none;
}

.booking-card {
  position: absolute;
  z-index: 3;
  max-width: 280px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(185,145,68,.35);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 18px 20px;
}

.booking-card span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 5px;
}

.booking-card strong {
  color: var(--green-dark);
  line-height: 1.7;
}

.top-card {
  top: 28px;
  right: -22px;
}

.bottom-card {
  bottom: 36px;
  left: -22px;
}

.logo-marquee {
  overflow: hidden;
  background: var(--white);
  border-block: 1px solid rgba(185,145,68,.20);
  padding: 18px 0;
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: marqueeMove 32s linear infinite;
}

.logo-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  min-width: 176px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0 20px;
  background: #fbfbf8;
  border: 1px solid rgba(6,57,47,.10);
  border-radius: 18px;
  color: rgba(6,57,47,.62);
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(6,57,47,.04);
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

.why-section {
  padding: 80px 0;
}

.why-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.why-layout h2,
.section-head h2,
.journey-card h2,
.contact-box h2,
.page-hero h1,
.details-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.45;
}

p {
  color: var(--muted);
  line-height: 1.95;
  font-size: 17px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-cards article {
  min-height: 250px;
  background: var(--white);
  border: 1px solid rgba(185,145,68,.18);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--soft-shadow);
  transition: .22s ease;
}

.why-cards article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.why-cards span {
  color: var(--gold);
  font-size: 28px;
  font-family: "Noto Kufi Arabic", "Cairo", sans-serif;
  font-weight: 900;
}

.why-cards h3 {
  margin-top: 20px;
  font-size: 22px;
}

.section {
  padding: 76px 0;
}

.hotels-preview.alt {
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 520px;
  margin: 0;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.hotel-card {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(185,145,68,.18);
  box-shadow: var(--soft-shadow);
  transition: .25s ease;
}

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

.hotel-img {
  position: relative;
  display: block;
  height: 228px;
  overflow: hidden;
}

.hotel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}

.hotel-card:hover .hotel-img img {
  transform: scale(1.05);
}

.hotel-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,57,47,.52), transparent 58%);
}

.city-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(252,248,238,.94);
  color: var(--green-dark);
  border: 1px solid rgba(185,145,68,.35);
  padding: 6px 13px;
  border-radius: 999px;
  font-weight: 900;
}

.hotel-body {
  padding: 24px;
}

.hotel-title-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.hotel-title-row h3 {
  font-size: 22px;
  line-height: 1.45;
}

.hotel-title-row span {
  color: var(--gold);
  font-size: 13px;
  white-space: nowrap;
  margin-top: 5px;
}

.hotel-body p {
  font-size: 15px;
  margin: 10px 0 16px;
}

.hotel-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
}

.hotel-meta span {
  color: var(--muted);
  font-weight: 800;
}

.hotel-meta strong {
  color: var(--green);
}

.hotel-actions {
  display: flex;
  gap: 10px;
}

.small-btn {
  flex: 1;
  text-align: center;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--gold);
  color: var(--green-dark);
  font-weight: 900;
  transition: .2s ease;
}

.small-btn:hover {
  background: var(--gold-soft);
}

.small-btn.filled {
  background: var(--green-dark);
  color: var(--white);
}

.section-more {
  text-align: center;
  margin-top: 34px;
}

.journey-section {
  padding: 76px 0;
  background:
    radial-gradient(circle at top left, rgba(185,145,68,.16), transparent 34%),
    var(--green-dark);
}

.journey-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 38px;
  align-items: center;
  color: var(--white);
}

.section-label.light {
  color: var(--gold-soft);
}

.journey-card h2 {
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps div {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(243,223,166,.18);
  border-radius: 22px;
  padding: 22px;
}

.steps strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--green-dark);
  background: var(--gold-soft);
  border-radius: 15px;
  margin-bottom: 18px;
  font-family: "Noto Kufi Arabic", "Cairo", sans-serif;
}

.steps span {
  color: var(--white);
  font-weight: 900;
  line-height: 1.8;
}

.contact-section {
  padding: 78px 0;
  background: linear-gradient(135deg, #fffaf0, #f4e9cf);
}

.contact-box {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  background: #042920;
  color: var(--white);
  padding: 46px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr .7fr 1fr;
  gap: 38px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 14px;
  filter: none;
  opacity: 1;
}

.footer-grid h3 {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  color: rgba(255,255,255,.72);
  margin: 8px 0;
}

.footer-grid a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  margin-top: 34px;
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(243,223,166,.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 14px;
}

.small-footer {
  padding-top: 10px;
}

.no-margin {
  margin-top: 0;
}

.floating-whatsapp {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 90;
  background: var(--green-dark);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 96px 0 70px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(185,145,68,.18), transparent 34%),
    linear-gradient(135deg, #fffdf7, #f4e9cf);
}

.page-hero p {
  max-width: 720px;
  margin: 14px auto 0;
}

.hotels-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 11px 24px;
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--gold);
}

.search-box {
  min-width: 310px;
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-weight: 900;
}

.search-box input {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 0 16px;
  font-family: inherit;
  background: var(--white);
  outline: none;
}

.search-box input:focus {
  border-color: var(--gold);
}

.results-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 800;
}

.results-line strong {
  color: var(--green-dark);
}

.empty-state {
  display: none;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 42px;
  box-shadow: var(--soft-shadow);
}

.details-hero {
  padding: 78px 0;
  background:
    radial-gradient(circle at top, rgba(185,145,68,.18), transparent 34%),
    linear-gradient(135deg, #fffdf7, #f4e9cf);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}

.details-image {
  border-radius: 32px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(185,145,68,.50), rgba(255,255,255,.88));
  box-shadow: var(--shadow);
}

.details-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 24px;
}

.details-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.details-badges span {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
}

.details-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.details-section {
  padding: 70px 0;
}

.details-info-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 28px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  border-radius: 28px;
  padding: 30px;
}

.features-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.features-list span {
  padding: 14px;
  border-radius: 16px;
  background: var(--cream);
  color: var(--green-dark);
  font-weight: 900;
}

@media (max-width: 1000px) {
  .header-content {
    min-height: 72px;
  }

  .brand-logo img {
    width: 108px;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(6,57,47,.08);
  }

  .header-cta {
    margin-inline-start: auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 42px;
  }

  .hero-grid,
  .why-layout,
  .journey-card,
  .details-grid,
  .details-info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-logo {
    margin-inline: auto;
  }

  .eyebrow,
  .section-label {
    justify-content: center;
  }

  .hero p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-mini,
  .why-cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    max-width: 720px;
    margin: 0 auto;
  }

  .showcase-card img {
    height: 340px;
  }

  .booking-card {
    display: none;
  }

  .why-layout,
  .section-head,
  .contact-box,
  .details-grid {
    text-align: center;
  }

  .section-head,
  .contact-box,
  .hotels-toolbar {
    display: block;
  }

  .section-head p {
    margin: 12px auto 0;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
  }

  .filters,
  .contact-actions,
  .details-actions {
    justify-content: center;
  }

  .search-box {
    min-width: 0;
    margin-top: 18px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-cta {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15.5px;
    line-height: 1.9;
  }

  .hero-logo {
    width: min(330px, 96%);
  }

  .hero-actions,
  .contact-actions,
  .details-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .showcase-card {
    padding: 7px;
    border-radius: 22px;
  }

  .showcase-card img {
    height: 235px;
    border-radius: 17px;
  }

  .marquee-track span {
    min-width: 150px;
    height: 48px;
    font-size: 13px;
  }

  .why-section,
  .section,
  .journey-section,
  .contact-section,
  .details-section {
    padding: 56px 0;
  }

  .why-layout h2,
  .section-head h2,
  .journey-card h2,
  .contact-box h2,
  .page-hero h1,
  .details-title {
    font-size: 29px;
  }

  .hotel-img {
    height: 210px;
  }

  .hotel-title-row {
    display: block;
  }

  .hotel-title-row span {
    display: block;
    margin-top: 5px;
  }

  .hotel-meta {
    display: block;
  }

  .hotel-meta strong,
  .hotel-meta span {
    display: block;
    margin-top: 5px;
  }

  .results-line {
    display: block;
    text-align: center;
  }

  .details-image img {
    height: 260px;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
    text-align: center;
  }

  .site-footer {
    padding-bottom: 62px;
  }
}


/* Final local-logo consistency patch */
.brand-logo img,
.hero-logo img,
.footer-logo {
  background: transparent !important;
}

.compact-grid {
  padding-top: 12px;
}

.main-nav a {
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .site-header .header-content {
    position: relative;
  }
}

.agency-credit {
  margin-top: 8px !important;
  color: rgba(255,255,255,.55) !important;
  font-size: 13px !important;
}

.agency-credit a,
.seo-footer-links a {
  color: var(--gold-light);
  font-weight: 900;
}

.seo-footer-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.seo-footer-links a {
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.seo-page {
  padding: 78px 0;
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
}

.seo-content .card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--soft-shadow);
  margin-bottom: 22px;
}

.seo-content ul {
  color: var(--muted);
  line-height: 2;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  display: block;
  height: 230px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(185,145,68,.18);
  background: var(--white);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-section { background: var(--cream); }


/* =========================
   Final visual polish
   ========================= */

body {
  text-rendering: optimizeLegibility;
}

.site-header {
  box-shadow: 0 10px 28px rgba(6, 57, 47, 0.04);
}

.brand-logo img {
  transition: transform .25s ease;
}

.brand-logo:hover img {
  transform: scale(1.03);
}

.hero {
  background:
    radial-gradient(circle at 86% 10%, rgba(185, 145, 68, .20), transparent 28%),
    radial-gradient(circle at 12% 76%, rgba(6, 57, 47, .13), transparent 30%),
    linear-gradient(135deg, #fffdf7 0%, #fcf8ee 45%, #f0e2bd 100%);
}

.hero h1 {
  text-shadow: 0 12px 32px rgba(6,57,47,.06);
}

.showcase-card {
  position: relative;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(185,145,68,.16), rgba(6,57,47,.08));
  z-index: -1;
  filter: blur(2px);
}

.hotel-card {
  position: relative;
}

.hotel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65);
}

.hotel-title-row h3 {
  letter-spacing: -.2px;
}

.hotel-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 50% 12%, transparent, rgba(6,57,47,.14));
  pointer-events: none;
}

.small-btn,
.btn {
  will-change: transform;
}

.contact-box,
.info-card,
.stat,
.card {
  position: relative;
}

.contact-box::before,
.info-card::before,
.card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.48);
}

.gallery-section {
  background:
    radial-gradient(circle at 84% 0%, rgba(185,145,68,.12), transparent 28%),
    linear-gradient(180deg, var(--cream), #fffaf0);
}

.gallery-slider {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(185,145,68,.62), rgba(255,255,255,.88));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gallery-main-link {
  display: block;
  height: 520px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--green-dark);
}

.gallery-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, opacity .25s ease;
}

.gallery-main-link:hover .gallery-main-image {
  transform: scale(1.025);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(185,145,68,.50);
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(252,248,238,.90);
  color: var(--green-dark);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(6,57,47,.16);
  transition: .2s ease;
}

.gallery-nav:hover {
  background: var(--green-dark);
  color: var(--white);
}

.gallery-prev {
  right: 22px;
}

.gallery-next {
  left: 22px;
}

.gallery-counter {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  background: rgba(6,57,47,.88);
  color: var(--white);
  border: 1px solid rgba(185,145,68,.55);
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 900;
  direction: ltr;
}

.gallery-thumbs {
  max-width: 980px;
  margin: 18px auto 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
}

.gallery-thumb {
  flex: 0 0 112px;
  height: 82px;
  border: 2px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  background: var(--white);
  cursor: pointer;
  opacity: .72;
  box-shadow: 0 10px 22px rgba(6,57,47,.08);
  transition: .2s ease;
}

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

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.details-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(185,145,68,.20), transparent 30%),
    linear-gradient(135deg, #fffdf7, #f4e9cf);
}

.details-image {
  transform: translateZ(0);
}

.details-badges span {
  box-shadow: 0 8px 18px rgba(6,57,47,.05);
}

.seo-content .card {
  transition: .2s ease;
}

.seo-content .card:hover {
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .gallery-main-link {
    height: 360px;
  }

  .gallery-thumb {
    flex-basis: 92px;
    height: 70px;
  }

  .gallery-nav {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 560px) {
  .gallery-slider {
    border-radius: 24px;
    padding: 7px;
  }

  .gallery-main-link {
    height: 260px;
    border-radius: 18px;
  }

  .gallery-prev {
    right: 14px;
  }

  .gallery-next {
    left: 14px;
  }

  .gallery-counter {
    right: 16px;
    bottom: 16px;
  }
}
