/* ═══════════════════════════════════════════════════════════════════════════
   NEUMORPHISM  —  Home page only  (.page--home)
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --neu-bg:          #e4e9f0;
  --neu-light:       #ffffff;
  --neu-dark:        #c0c5cc;
  --neu-radius:      20px;
  --neu-radius-sm:   14px;
  --neu-accent:      #4B918E;
  --neu-accent-dark: #19494a;
  --neu-text:        #2d3748;
  --neu-text-muted:  #718096;
  --neu-shadow-raised:
      2px 2px 6px var(--neu-dark),
     -2px -2px 6px var(--neu-light);
  --neu-shadow-inset:
      inset 1px 1px 4px var(--neu-dark),
      inset -1px -1px 4px var(--neu-light);
  --neu-shadow-soft:
      1px 1px 3px var(--neu-dark),
     -1px -1px 3px var(--neu-light);
  --neu-shadow-btn:
      1px 1px 3px var(--neu-dark),
     -1px -1px 3px var(--neu-light);
  --neu-shadow-btn-pressed:
      inset 1px 1px 2px var(--neu-dark),
      inset -1px -1px 2px var(--neu-light);
}


/* ── Global page background ─────────────────────────────────────────────── */

.page--home .popular-tours-two,
.page--home .news-two,
.page--home .book-now {
  background-color: var(--neu-bg) !important;
}

.page--home .popular-tours-two::before,
.page--home .news-two::before {
  display: none !important;
}


/* ── Section titles ─────────────────────────────────────────────────────── */

.page--home .section-title__tagline {
  color: var(--neu-accent);
  letter-spacing: 0.04em;
  font-weight: 600;
}

.page--home .section-title__title {
  color: var(--neu-accent-dark);
}

.page--home .section-title__desc {
  color: var(--neu-text-muted);
  font-size: 15px;
  font-weight: 500;
  margin-top: 8px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR  —  neumorphic with original dark teal color
   ═══════════════════════════════════════════════════════════════════════════ */

.page--home .main-header.nav--scrolled .main-menu-wrapper,
.page--home .main-header.nav--scrolled nav.main-menu {
  background: #19494a !important;
  box-shadow:
    2px 2px 6px rgba(0,0,0,0.35),
   -2px -2px 6px rgba(255,255,255,0.06) !important;
  border-bottom: none !important;
}

/* Nav links — keep white, add subtle hover glow */
.page--home .main-header.nav--scrolled .main-menu__list > li > a {
  transition: text-shadow 0.3s ease;
}

.page--home .main-header.nav--scrolled .main-menu__list > li > a:hover {
  text-shadow: 0 0 8px rgba(255,255,255,0.3);
}

/* User menu button — neumorphic on dark */
.page--home .main-header.nav--scrolled .nav-user__btn:hover {
  background: rgba(255,255,255,0.08) !important;
  border-radius: 10px;
  box-shadow:
    inset 1px 1px 3px rgba(0,0,0,0.3),
    inset -1px -1px 3px rgba(255,255,255,0.05) !important;
}

/* User dropdown — light panel from custom.css */
.page--home .main-header.nav--scrolled .nav-user__dropdown li a:hover {
  background: rgba(25, 73, 74, 0.1) !important;
  color: #19494a !important;
}

/* Guest auth — keep light pill from custom.css; subtle press on hover */
.page--home .main-header.nav--scrolled .nav-auth__btn:hover {
  opacity: 0.94 !important;
  filter: none !important;
}

.page--home .main-header.nav--scrolled .nav-auth__link:hover {
  background: rgba(255,255,255,0.14) !important;
}


/* ═══════════════════════════════════════════════════════════════════════════
   SEARCH BAR  (hero banner)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Searchbar container ── */
.page--home .searchbar {
  background: var(--neu-bg) !important;
  border-radius: 50px !important;
  /*box-shadow: 0px 0px 0px #c4c9d4, 0px 0px 10px #ffffff !important;*/
  border: none !important;
  padding: 20px !important;
  gap: 0 !important;
  align-items: stretch !important;
}

/* Check-in + check-out: wrapper is invisible to flex on large screens (same row as before) */
.page--home .searchbar__dates-row {
  display: contents;
}

/* ── Each field: row layout, icon first in DOM = right in RTL ── */
.page--home .searchbar__field {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 0 50px !important;
  flex: 1 !important;
  min-width: 0;
  min-height: 68px;
}

/* Icon square — first in DOM so appears on right in RTL */
.page--home .searchbar__field-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--neu-bg);
  box-shadow: inset 2px 2px 5px #c0c5d0, inset -2px -2px 5px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--neu-accent);
  flex-shrink: 0;
  /* no order override — DOM order respected: icon first = right in RTL */
}

/* Label + input stacked, fills remaining space */
.page--home .searchbar__field-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.page--home .searchbar__field label {
  color: var(--neu-accent);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
  margin: 0 0 2px 0;
  white-space: nowrap;
  text-align: center;
}

.page--home .searchbar__field input:not(.persons__display) {
  background: transparent !important;
  border: none !important;
  color: var(--neu-text);
  font-weight: 600;
  font-size: .88rem !important;
  width: 100% !important;
  padding: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  text-align: center !important;
}

.page--home .searchbar__field input::placeholder {
  color: var(--neu-text-muted) !important;
  font-weight: 400;
}

/* Persons row */
.page--home .searchbar__field .persons {
  justify-content: center;
  align-items: center;
  gap: 6px !important;
  height: 28px;
}

/* Divider */
.page--home .searchbar__divider {
  width: 2px !important;
  background: linear-gradient(180deg, transparent, var(--neu-dark), transparent) !important;
  opacity: .50;
  align-self: stretch;
  margin: 10px 0 !important;
}

/* Button field wrapper — narrower than data fields */
.page--home .searchbar__field--btn {
  flex: 0 0 auto !important;
  padding: 8px 30px !important;
  min-width: 0;
}

/* Submit button — icon only, full-height */
.page--home .searchbar__icon {
  background: linear-gradient(145deg, #1d5254, #2a7072) !important;
  color: #fff !important;
  border-radius: 30px !important;
  box-shadow: 3px 3px 10px rgba(25,73,74,.35), -1px -1px 4px rgba(255,255,255,.15) !important;
  border: none !important;
  transition: box-shadow .25s ease, transform .2s ease !important;
  padding: 0 !important;
  width: 56px !important;
  align-self: stretch !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  flex-shrink: 0;
  margin-right: 4px;
}

.page--home .searchbar__icon-label {
  display: none !important;
}

.page--home .searchbar__icon:hover {
  box-shadow: 4px 4px 14px rgba(25,73,74,.45), -1px -1px 6px rgba(255,255,255,.2) !important;
}

.page--home .searchbar__icon:active {
  box-shadow: inset 2px 2px 6px rgba(0,0,0,.3) !important;
  transform: translateY(0);
}

/* Persons counter */
.page--home .persons__btn {
  background: var(--neu-bg) !important;
  border: none !important;
  border-radius: 7px !important;
  width: 26px !important;
  height: 26px !important;
  box-shadow: 2px 2px 4px #bfc4cf, -2px -2px 4px #ffffff !important;
  color: var(--neu-accent) !important;
  transition: box-shadow .2s ease, transform .15s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: .75rem !important;
  flex-shrink: 0;
  padding: 0 !important;
}

.page--home .persons__btn:hover {
  transform: scale(1.1);
  color: var(--neu-accent-dark) !important;
}

.page--home .persons__btn:active {
  box-shadow: inset 2px 2px 4px #b8bec8, inset -2px -2px 4px #ffffff !important;
  transform: scale(1);
}

.page--home .persons__display {
  background: var(--neu-bg) !important;
  border: none !important;
  border-radius: 6px !important;
  font-weight: 800;
  color: var(--neu-accent-dark) !important;
  font-size: .9rem !important;
  width: 35px !important;
  height: 26px !important;
  text-align: center;
  line-height: 26px;
  outline: none !important;
}


/* ═══════════════════════════════════════════════════════════════════════════
   ROOMS SECTION HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

.rooms-section {
  padding: 80px 0 60px;
  scroll-margin-top: clamp(120px, 22vh, 220px);
}

.rooms-section__header {
  text-align: center;
  margin-bottom: 48px;
  /* After search: scroll stops here; clears sticky nav + room-list search strip */
  scroll-margin-top: clamp(120px, 22vh, 220px);
}

.rooms-section__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.rooms-section__tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--neu-bg);
  box-shadow: inset 2px 2px 5px #c0c5d0, inset -2px -2px 5px #ffffff;
  color: var(--neu-accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 19px;
  border-radius: 50px;
  margin-bottom: 0px;
}

.rooms-section__chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--neu-bg);
  box-shadow: 2px 2px 6px #c8cdd6, -2px -2px 6px #ffffff;
  color: var(--neu-text);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  direction: ltr;
}

.rooms-section__chip i {
  color: var(--neu-accent);
  font-size: 13px;
}

.rooms-section__title {
  font-size: 28px;
  font-weight: 900;
  color: var(--neu-accent-dark);
  margin: 15px 0 15px 0;
}

.rooms-section__desc {
  color: var(--neu-text-muted);
  font-size: 14px;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   ROOM CARDS
   ═══════════════════════════════════════════════════════════════════════════ */

.room-card__inner {
  background: var(--neu-bg);
  border-radius: 20px;
  box-shadow: 5px 5px 14px #c4c9d4, -5px -5px 14px #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.room-card__inner:hover {
  box-shadow: 7px 7px 18px #bec3ce, -7px -7px 18px #ffffff;
  transform: translateY(-4px);
}

/* Image */
.room-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.room-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94);
}

.room-card__inner:hover .room-card__img-wrap img {
  transform: scale(1.06);
}

.room-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neu-bg);
  color: var(--neu-text-muted);
  font-size: 2.5rem;
}

/* VIP badge */
.room-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 11px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  z-index: 2;
}

.room-badge--vip {
  background: linear-gradient(135deg, #d4a853, #c4933e);
  color: #fff;
  box-shadow: 0 2px 8px rgba(196,147,62,0.4);
}

.room-badge--vip i { font-size: 10px; }

/* Price badge over image bottom */
.room-card__price-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 16px 10px;
  background: linear-gradient(to top, rgba(20,40,40,0.75) 0%, transparent 100%);
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-direction: row-reverse;
}

.room-card__price-amount {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.room-card__price-unit {
  font-size: 11px;
  color: rgba(255,255,255,.8);
  font-weight: 600;
}

/* Body */
.room-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-card__name {
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--neu-accent-dark);
  margin: 0 0 12px 0;
}

.room-card__name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.room-card__name a:hover {
  color: var(--neu-accent);
}

/* Detail chips */
.room-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.room-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--neu-bg);
  box-shadow: inset 1px 1px 3px #c8cdd6, inset -1px -1px 3px #ffffff;
  color: var(--neu-text);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
}

.room-card__chip i {
  color: var(--neu-accent);
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.room-card__chip--fee {
  color: #c0553a;
}

.room-card__chip--fee i {
  color: #c0553a;
}

/* CTA */
.room-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 10px 16px;
  background: linear-gradient(135deg, #1d5254, #2a7072);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 2px 2px 8px rgba(25,73,74,.3);
  transition: box-shadow 0.25s ease, opacity 0.2s ease;
}

.room-card__cta:hover {
  color: #fff;
  opacity: .92;
  box-shadow: 3px 3px 12px rgba(25,73,74,.4);
}

.room-card__cta i {
  font-size: 16px;
}

/* Empty state */
.rooms-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: var(--neu-bg);
  border-radius: 20px;
  box-shadow: inset 3px 3px 8px #c8cdd6, inset -3px -3px 8px #ffffff;
}

.rooms-empty__icon {
  font-size: 3rem;
  color: var(--neu-accent);
  margin-bottom: 16px;
  opacity: .6;
}

.rooms-empty__text {
  font-size: 16px;
  font-weight: 700;
  color: var(--neu-text);
  margin: 0 0 6px 0;
}

.rooms-empty__sub {
  font-size: 13px;
  color: var(--neu-text-muted);
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   LOAD MORE BUTTON
   ═══════════════════════════════════════════════════════════════════════════ */

.rooms-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neu-bg);
  color: var(--neu-accent-dark);
  border: none;
  border-radius: 14px;
  box-shadow: 4px 4px 10px #c4c9d4, -4px -4px 10px #ffffff;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: box-shadow 0.25s ease;
}

.rooms-load-more-btn:hover {
  box-shadow: 5px 5px 14px #bec3ce, -5px -5px 14px #ffffff;
  color: var(--neu-accent);
}

.rooms-load-more-btn:active {
  box-shadow: inset 2px 2px 5px #c4c9d4, inset -2px -2px 5px #ffffff;
}

.rooms-load-more-btn__count {
  opacity: .65;
  font-size: 12px;
}

.page--home .popular-tours__meta {
  display: none;
}


/* ═══════════════════════════════════════════════════════════════════════════
   VIDEO SECTION — keep dramatic but add subtle neumorphic framing
   ═══════════════════════════════════════════════════════════════════════════ */

.page--home .video-two {
  position: relative;
}

.page--home .video-one__video-icon {
  background: var(--neu-bg) !important;
  border-radius: 50% !important;
  box-shadow: var(--neu-shadow-raised) !important;
  color: var(--neu-accent) !important;
  transition: box-shadow 0.3s ease, transform 0.3s ease !important;
}

.page--home .video-one__video-icon:hover {
  box-shadow: var(--neu-shadow-soft) !important;
  transform: scale(1.08);
}

.page--home .video-one__tagline,
.page--home .video-one__title {
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}


/* ═══════════════════════════════════════════════════════════════════════════
   BLOG / NEWS CARDS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Disable the theme's ::after hover overlay on all neumorphic buttons */
.page--home .thm-btn::after {
  display: none !important;
}

/* ── Blog section ── */
.blog-section {
  padding: 70px 0 !important;
}

/* Left info panel */
.blog-panel {
  background: var(--neu-bg);
  border-radius: 22px;
  box-shadow: 5px 5px 14px #c4c9d4, -5px -5px 14px #ffffff;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  height: 100%;
}

.blog-panel__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  width: 100%;
  justify-content: flex-start;
}

.blog-panel__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--neu-bg);
  box-shadow: inset 2px 2px 6px #c0c5d0, inset -2px -2px 6px #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--neu-accent);
  flex-shrink: 0;
}

.blog-panel__tagline {
  display: inline-block;
  background: var(--neu-bg);
  box-shadow: inset 1px 1px 3px #c8cdd6, inset -1px -1px 3px #ffffff;
  color: var(--neu-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 20px;
}

.blog-panel__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--neu-accent-dark);
  margin: 0 0 12px 0;
  line-height: 1.4;
  text-align: right;
  width: 100%;
}

.blog-panel__desc {
  font-size: 13px;
  color: var(--neu-text-muted);
  line-height: 1.8;
  margin: 0 0 24px 0;
  flex: 1;
}

.blog-panel__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1d5254, #2a7072);
  color: #fff;
  border-radius: 12px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 2px 2px 8px rgba(25,73,74,.3);
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-end;
}

.blog-panel__btn:hover {
  color: #fff;
  opacity: .88;
  box-shadow: 3px 3px 12px rgba(25,73,74,.4);
}

/* Blog post cards */
.blog-post-card {
  background: var(--neu-bg);
  border-radius: 18px;
  box-shadow: 4px 4px 12px #c4c9d4, -4px -4px 12px #ffffff;
  overflow: hidden;
  margin: 8px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-post-card:hover {
  box-shadow: 6px 6px 16px #bec3ce, -6px -6px 16px #ffffff;
  transform: translateY(-4px);
}

.blog-post-card__img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  height: 190px;
  text-decoration: none;
  flex-shrink: 0;
}

.blog-post-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94);
}

.blog-post-card:hover .blog-post-card__img-wrap img {
  transform: scale(1.06);
}

.blog-post-card__img-placeholder {
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, #1d4547, #2a6566);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,.3);
}

.blog-post-card__cat {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #1d5254, #2a7072);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.blog-post-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-post-card__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.blog-post-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--neu-text-muted);
  font-weight: 600;
}

.blog-post-card__meta i {
  color: var(--neu-accent);
  font-size: 12px;
}

.blog-post-card__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--neu-accent-dark);
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.blog-post-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-post-card__title a:hover {
  color: var(--neu-accent);
}

.blog-post-card__excerpt {
  font-size: 12.5px;
  color: var(--neu-text-muted);
  line-height: 1.7;
  margin: 0 0 12px 0;
  flex: 1;
}

.blog-post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--neu-accent);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s;
}

.blog-post-card__link:hover {
  color: var(--neu-accent-dark);
}


/* ═══════════════════════════════════════════════════════════════════════════
   BOOK NOW (CTA) SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.page--home .book-now {
  background-color: var(--neu-bg) !important;
  padding: 56px 0 68px !important;
}

.page--home .book-now-shape {
  display: none !important;
}

.page--home .book-now__inner {
  position: relative;
  background: var(--neu-bg) !important;
  border-radius: 22px !important;
  box-shadow: 4px 4px 12px #d4d8e0, -4px -4px 12px #ffffff !important;
  padding: 32px 40px 32px 36px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
}

/* Teal accent strip (RTL: visual right) */
.page--home .book-now__inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 5px;
  background: linear-gradient(180deg, #2a7072, #19494a);
  border-radius: 0 22px 22px 0;
}

.page--home .book-now__left {
  flex: 1;
  min-width: 0;
  text-align: right;
  padding-left: 8px;
}

.page--home .book-now__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neu-bg);
  box-shadow: inset 1px 1px 3px #d4d8e0, inset -1px -1px 3px #ffffff;
  color: var(--neu-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.page--home .book-now__eyebrow i {
  font-size: 13px;
}

.page--home .book-now__headline {
  color: var(--neu-accent-dark) !important;
  font-weight: 900 !important;
  font-size: clamp(1.15rem, 2.5vw, 1.65rem) !important;
  line-height: 1.45 !important;
  margin: 0 0 10px 0 !important;
}

.page--home .book-now__lead {
  color: var(--neu-text-muted) !important;
  font-size: 14px !important;
  line-height: 1.75 !important;
  margin: 0 !important;
  max-width: 520px;
}

.page--home .book-now__right {
  flex-shrink: 0;
}

.page--home .book-now__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #1d5254, #2a7072) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 14px !important;
  box-shadow: 2px 2px 8px rgba(25,73,74,.28) !important;
  padding: 14px 28px !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  white-space: nowrap;
  transition: box-shadow 0.25s ease, opacity 0.2s ease, background 0.3s ease !important;
}

.page--home .book-now__btn:hover {
  opacity: .94 !important;
  box-shadow: 3px 3px 12px rgba(25,73,74,.35) !important;
  color: #fff !important;
}

.page--home .book-now__btn:active {
  box-shadow: inset 1px 1px 5px rgba(0,0,0,.22) !important;
}

.page--home .book-now__btn::after {
  display: none !important;
}

.page--home .book-now__btn i {
  font-size: 1.15rem;
}




/* ═══════════════════════════════════════════════════════════════════════════
   HERO TEXT  (banner headline)
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-text {
  margin-bottom: 30px;
}

.hero-text__title {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 3px 20px rgba(0,0,0,0.4);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  animation: heroFadeDown 1s ease both;
}

.hero-text__accent {
  color: var(--neu-accent);
  position: relative;
}

.hero-text__sub {
  font-size: 22px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin: 0 0 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  animation: heroFadeDown 1s 0.2s ease both;
}

.hero-text__line {
  width: 60px;
  height: 3px;
  background: var(--neu-accent);
  margin: 0 auto;
  border-radius: 2px;
  animation: heroLineExpand 0.8s 0.5s ease both;
}

@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroLineExpand {
  from { width: 0; opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

/* Scroll hint arrow */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid rgba(255,255,255,0.7);
  border-right: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  animation: heroScrollBounce 2s infinite;
}

@keyframes heroScrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
  40% { transform: rotate(45deg) translateY(10px); }
  60% { transform: rotate(45deg) translateY(5px); }
}

@media (max-width: 768px) {
  .hero-text__title { font-size: 32px; }
  .hero-text__sub   { font-size: 17px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES STRIP  (icon row between hero & rooms)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Features strip (pulls under overlapping hero/search; scales on smaller widths) ─ */
.features-strip {
  background: var(--neu-bg);
  margin-top: clamp(-260px, -20vw, -150px);
  padding: clamp(152px, 22vw, 270px) 0 clamp(40px, 4vw, 56px);
}

/* Room list: extra top padding under overlapping search */
@media (min-width: 992px) {
  .room-list-search-strip + .features-strip {
    padding: clamp(200px, 26vw, 330px) 0 clamp(40px, 4vw, 56px);
  }
}

/* Same idea on tablet (avoid 768px exactly so phone breakpoint .features-strip still wins) */
@media (min-width: 769px) and (max-width: 991px) {
  .room-list-search-strip + .features-strip {
    padding: clamp(148px, 34vw, 212px) 16px 44px;
  }
}

.features-strip__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.features-strip__item {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 28px 16px 24px;
  background: var(--neu-bg);
  border-radius: var(--neu-radius);
  box-shadow: var(--neu-shadow-raised);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.features-strip__item:hover {
  box-shadow:
    4px 4px 10px var(--neu-dark),
   -4px -4px 10px var(--neu-light);
  transform: translateY(-4px);
}

.features-strip__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--neu-bg);
  box-shadow: var(--neu-shadow-inset);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.features-strip__item:hover .features-strip__icon {
  background: var(--neu-accent-dark);
}

.features-strip__icon i {
  font-size: 22px;
  color: var(--neu-accent);
  transition: color 0.3s ease;
}

.features-strip__item:hover .features-strip__icon i {
  color: #fff;
}

.features-strip__text h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--neu-accent-dark);
  margin: 0 0 5px;
  line-height: 1.3;
}

.features-strip__text p {
  font-size: 12px;
  color: var(--neu-text-muted);
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

/* ── Section spacing ─────────────────────────────────────────── */
.page--home .popular-tours-two {
  padding-top: 64px !important;
  padding-bottom: 72px !important;
}

.page--home .news-two {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.page--home .book-now {
  padding-top: 56px !important;
  padding-bottom: 68px !important;
}

@media (max-width: 991px) {
  /* Tablet: pull up under hero + stacked search (same idea as desktop, smaller values) */
  .features-strip {
    margin-top: clamp(-168px, -18vw, -72px);
    padding: clamp(112px, 28vw, 160px) 16px 44px;
  }
  .page--home .popular-tours-two,
  .page--home .news-two { padding-top: 48px !important; padding-bottom: 52px !important; }
}

@media (max-width: 768px) {
  .features-strip {
    margin-top: clamp(-340px, -54vw, -120px);
    padding: clamp(200px, 64vw, 288px) 12px 36px;
  }
  .features-strip__inner { justify-content: center; gap: 14px; }
  .features-strip__item  { min-width: 140px; flex: 0 0 calc(50% - 10px); padding: 20px 12px 18px; gap: 10px; }
  .features-strip__icon  { width: 48px; height: 48px; }
  .features-strip__icon i { font-size: 18px; }
  .page--home .popular-tours-two,
  .page--home .news-two { padding-top: 40px !important; padding-bottom: 44px !important; }
}

@media (max-width: 400px) {
  .features-strip {
    margin-top: clamp(-304px, -60vw, -88px);
    padding: clamp(192px, 68vw, 264px) 10px 32px;
  }
  .features-strip__item { flex: 0 0 100%; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 992px) {
  .page--home .searchbar {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    padding: 15px !important;
    gap: 4px !important;
  }

  /* Two date fields side by side */
  .page--home .searchbar__dates-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    width: 100% !important;
    flex: 0 0 auto !important;
    gap: 0 !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .page--home .searchbar__dates-row .searchbar__field {
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 0 8px !important;
    gap: clamp(14px, 3vmin, 22px) !important;
  }

  .page--home .searchbar__dates-row .searchbar__divider--between-dates {
    display: block !important;
    width: 2px !important;
    flex-shrink: 0 !important;
    align-self: stretch !important;
    margin: 10px 0 !important;
  }

  /* One field per row on mobile / small tablet */
  .page--home .searchbar__field {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0 14px !important;
    min-height: 62px;
    box-sizing: border-box;
    gap: clamp(16px, 3.5vmin, 26px) !important;
  }

  .page--home .searchbar__field--persons {
    justify-content: center !important;
  }

  .page--home .searchbar__field--persons .searchbar__field-body {
    flex: 0 1 auto !important;
    align-items: center !important;
  }

  .page--home .searchbar__field--btn {
    flex: 0 0 auto !important;
    width: 100% !important;
    padding: 8px 14px !important;
    justify-content: center !important;
  }

  /* Horizontal line between stacked rows; vertical between-dates stays above */
  .page--home .searchbar__divider:not(.searchbar__divider--between-dates) {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    min-height: 2px !important;
    flex: 0 0 auto !important;
    align-self: stretch !important;
    margin: 4px 0 !important;
    opacity: 0.55 !important;
    background: linear-gradient(
      90deg,
      transparent,
      var(--neu-dark),
      transparent
    ) !important;
  }

  .page--home .searchbar__icon {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 46px !important;
    align-self: stretch !important;
    border-radius: 12px !important;
    margin: 0 !important;
    font-size: 1.1rem !important;
    box-shadow: var(--neu-shadow-btn) !important;
  }

  .page--home .book-now__inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px 26px !important;
    gap: 22px;
  }

  .page--home .book-now__inner::before {
    width: 100%;
    height: 4px;
    top: 0;
    right: 0;
    left: 0;
    bottom: auto;
    border-radius: 22px 22px 0 0;
  }

  .page--home .book-now__left {
    padding-left: 0;
  }

  .page--home .book-now__lead {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .page--home .book-now__btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 576px) {
  .page--home .popular-tours__single {
    border-radius: var(--neu-radius-sm) !important;
  }

  .page--home .popular-tours__img,
  .page--home .popular-tours__img img {
    border-radius: var(--neu-radius-sm) var(--neu-radius-sm) 0 0 !important;
  }

  .page--home .popular-tours__content {
    border-radius: 0 0 var(--neu-radius-sm) var(--neu-radius-sm) !important;
    padding: 16px 18px 16px !important;
  }

  .page--home .news-one__single {
    border-radius: var(--neu-radius-sm) !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL-TO-TOP BUTTON
   ═══════════════════════════════════════════════════════════════════════════ */

.page--home .scroll-to-top {
  background: var(--neu-bg) !important;
  box-shadow: var(--neu-shadow-btn) !important;
  color: var(--neu-accent) !important;
  border-radius: 14px !important;
  transition: box-shadow 0.25s ease, transform 0.2s ease !important;
}

.page--home .scroll-to-top:hover {
  box-shadow: var(--neu-shadow-soft) !important;
  transform: translateY(-2px);
}
