/* =====================================================
   YAMANLANKA – Main Stylesheet (Reference UI Match)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --green: #2aa884;
  --green-dark: #37b08b;
  --green-deep: #258a69;
  --green-light: #44c49d;
  --white: #ffffff;
  --light-bg: #f8fbfa;
  --gray: #f2f4f3;
  --text: #222222;
  --text-muted: #666;
  --border: #dde8e2;
  --accent: #f5a623;
  --radius: 10px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .08);
  --shadow-md: 0 6px 28px rgba(0, 0, 0, .12);
  --transition: all .25s ease;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── UTILITIES ── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-experiences {
  background: #fff;
  position: relative;
  z-index: 5;
}

.text-center {
  text-align: center;
}

.section-sup {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 10px;
}

.section-sub {
  font-size: .97rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 26px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn-green {
  background: var(--green);
  color: #fff;
  border-radius: 40px;
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-outline-green {
  border: 2px solid var(--green);
  color: var(--green);
}

.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #333;
  border-radius: 40px;
  font-weight: 600;
}

.btn-white:hover {
  background: #f0f8f3;
}

/* ═══════════════════════════════════════════════════
   1. TOP GREEN NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  background: var(--green-dark);
  position: absolute;
  /* Keep it over the main layout if possible, or static */
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
  /* Wider padding for navbar */
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  /* Spaced out */
}

.nav-links a {
  font-family: inherit;
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-post-btn {
  color: #222 !important;
  border-radius: 40px;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  font-size: 0.9rem;
}

.nav-post-btn:hover {
  background: #f1f1f1 !important;
}

/* Solid background for non-index pages */
.navbar-solid {
  background: var(--green) !important;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-solid .nav-links a {
  color: #fff !important;
}

.navbar.navbar-solid .btn-green {
  background: #fff !important;
  color: var(--green) !important;
  border: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ═══════════════════════════════════════════════════
   2. HERO SECTION
═══════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  padding-top: 50px;
  margin-bottom: 80px;
  /* Navbar space */
}

.hero {
  position: relative;
  height: auto;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 4px 12px rgba(0, 0, 0, .4);
  margin-bottom: 18px;
  max-width: 900px;
}

.hero-content p {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  max-width: 600px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

/* ── SEARCH BOX ── */
.search-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px 40px;
  width: 100%;
  max-width: 1100px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
  margin: 0 auto;
  transform: translateY(20px);
}

.search-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}

.search-tab,
.s-tab {
  padding: 10px 22px;
  border-radius: 40px;
  font-size: .95rem;
  font-weight: 500;
  color: #555;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.search-tab.active,
.search-tab:hover,
.s-tab.active,
.s-tab:hover {
  background: var(--green);
  color: #fff;
}

.search-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.search-field label {
  font-size: .95rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
  display: block;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap i {
  position: absolute;
  left: 14px;
  color: #444;
}

.search-field select,
.search-field input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: none;
  background: #f4f5f6;
  border-radius: 30px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: #444;
  outline: none;
  cursor: pointer;
  appearance: none;
}

.search-field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.search-tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.search-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sf-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(42, 138, 74, .1);
}

.search-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filters-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.filter-label {
  font-size: .95rem;
  font-weight: 600;
  color: #222;
}

.quick-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quick-tag {
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid #e0e0e0;
  font-size: .85rem;
  font-weight: 500;
  color: #555;
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.quick-tag:hover {
  border-color: #ccc;
  background: #f9f9f9;
}

/* ═══════════════════════════════════════════════════
   3. EXPLORE EXPERIENCES (icon cards)
═══════════════════════════════════════════════════ */
.experiences-bg {
  background: var(--light-bg);
}

.exp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.feat-cards-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feat-box-new {
  background: #fbfdff;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.feat-icon-new {
  width: 70px;
  height: 70px;
  background: #f4faf8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
  position: relative;
}

.feat-box-new h3 {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.feat-box-new p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

.exp-title {
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.exp-desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 3 CTA boxes */
.cta-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 8px;
}

.cta-trio-box {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.cta-trio-box:nth-child(1) {
  background: var(--green-dark);
}

.cta-trio-box:nth-child(2) {
  background: var(--green);
}

.cta-trio-box:nth-child(3) {
  background: var(--green-light);
}

.cta-trio-box:hover {
  filter: brightness(1.08);
}

.cta-trio-icon {
  font-size: 2rem;
  flex-shrink: 0;
  opacity: .85;
}

.cta-trio-title {
  font-family: 'Inter', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.cta-trio-sub {
  font-size: .8rem;
  opacity: .85;
}

/* ═══════════════════════════════════════════════════
   3.5 GREEN SOLID BANNER
═══════════════════════════════════════════════════ */
.banner-container-margin {
  margin-bottom: 60px;
}

.trust-banner {
  background: linear-gradient(to right, #25a87b, #1d9d6f);
  border-radius: 16px;
  padding: 35px 40px;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-cell-new {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 15px;
}

.trust-cell-new:nth-child(2) {
  padding-left: 10px;
}

.trust-cell-new.no-border,
.trust-cell-new:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 10px;
}

.t-icon-new i {
  font-size: 1.8rem;
  opacity: 0.9;
}

.t-text-new h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.t-text-new p {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════
   4. ATTRACTIONS GRID (photo mosaic)
═══════════════════════════════════════════════════ */
.attractions-bg {
  background: var(--light-bg);
}

.photo-grid-new {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
}

.photo-card-new {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.photo-card-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-card-new:hover img {
  transform: scale(1.05);
}

.photo-card-new:nth-child(-n+4) {
  grid-column: span 3;
}

.photo-card-new:nth-child(n+5) {
  grid-column: span 4;
}

.photo-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}

.photo-caption-new {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: #fff;
  text-align: left;
  width: 100%;
  z-index: 2;
}

.photo-caption-new h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: inherit;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.photo-caption-new span {
  font-size: 0.75rem;
  opacity: 0.9;
}

.att-card.wide .att-card-inner {
  height: 220px;
}

.att-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.att-card:hover .att-card-inner img {
  transform: scale(1.06);
}

.att-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.att-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.att-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--green);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
  width: fit-content;
}

.att-title {
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════
   5. TRAVEL GUIDES / BLOG
═══════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card-new {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-img-new {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.blog-img-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-card-new:hover .blog-img-new img {
  transform: scale(1.05);
}

.blog-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 60%);
}

.blog-img-text {
  position: absolute;
  padding: 30px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  z-index: 2;
  bottom: 0px;
  left: 0px;
}

.blog-img-text.top-left {
  top: 0px;
  bottom: auto;
}

.blog-img-text.center-left {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.blog-body-new {
  padding: 24px;
}

.blog-tag-new {
  font-size: 0.8rem;
  color: #555;
  background: #f0f2f5;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  display: inline-block;
}

.blog-title-new {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Blog Grid Responsiveness */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-img-text {
    font-size: 1.8rem;
    padding: 20px;
  }

  .article-title {
    font-size: 2.2rem;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-hero {
    height: 300px;
  }
}

/* ═══════════════════════════════════════════════════
   6. FAQ
═══════════════════════════════════════════════════ */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
  background: #fff;
}

.faq-item.open {
  border-color: var(--green);
}

.faq-item.open:first-child,
.faq-item.open {
  box-shadow: 0 2px 16px rgba(42, 138, 74, .1);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  gap: 14px;
  transition: var(--transition);
}

.faq-item.open .faq-q {
  color: var(--green);
  background: rgba(42, 138, 74, .04);
}

.faq-icon-wrap {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(42, 138, 74, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: .8rem;
  transition: var(--transition);
}

.faq-item.open .faq-icon-wrap {
  background: var(--green);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.72;
  transition: max-height .35s ease, padding .3s ease;
}

.faq-a.open {
  max-height: 180px;
  padding: 0 22px 18px;
}

/* First item open by default highlight */
.faq-item:first-child {
  background: rgba(42, 138, 74, .04);
  border-color: var(--green);
}

.faq-item:first-child .faq-q {
  color: var(--green);
}

/* ═══════════════════════════════════════════════════
   7. FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: #101e14;
  color: rgba(255, 255, 255, .7);
  padding: 52px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand .logo-text {
  color: #fff;
  font-size: 1.2rem;
}

.footer-desc {
  font-size: .87rem;
  line-height: 1.75;
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, .55);
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  transition: var(--transition);
}

.soc-btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.ftr-head {
  font-family: 'Poppins', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.ftr-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ftr-links a {
  font-size: .86rem;
  color: rgba(255, 255, 255, .6);
  transition: var(--transition);
}

.ftr-links a:hover {
  color: var(--green-light);
  padding-left: 3px;
}

.ftr-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ftr-ci {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
}

.ftr-ci i {
  color: var(--green-light);
  margin-top: 2px;
  min-width: 14px;
}

.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .5);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--green-light);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

/* ═══════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════════ */
.btt {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 42px;
  height: 42px;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(42, 138, 74, .45);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.btt.show {
  opacity: 1;
  visibility: visible;
}

.btt:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   MOBILE NAV OVERLAY
═══════════════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 990;
  background: rgba(14, 40, 22, .97) !important;
  backdrop-filter: blur(12px);
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .3s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  padding: 14px 16px;
  color: rgba(255, 255, 255, .85);
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav a:hover {
  background: rgba(42, 138, 74, .2);
  color: #fff;
}

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: .1s;
}

.reveal-d2 {
  transition-delay: .2s;
}

.reveal-d3 {
  transition-delay: .3s;
}

/* ═══════════════════════════════════════════════════
   8. RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .exp-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .att-card.wide {
    grid-column: span 1;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 52px 0;
  }

  .nav-links,
  .nav-right-group,
  .nav-btn-group {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 16px 60px;
    text-align: center;
    background-position: center;
  }

  .hero-content {
    padding: 0;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* Search Box Mobile */
  .search-box {
    padding: 24px 16px;
    margin-top: 0;
    border-radius: 16px;
  }

  .search-tabs {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    justify-content: flex-start;
    gap: 10px;
  }

  .s-tab {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 20px;
  }

  .search-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  .search-footer {
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    border-top: none;
  }

  .search-btn-main {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
    border-radius: 30px;
  }

  .search-filters {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-trio {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-banner {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 20px;
  }

  .trust-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    width: 100%;
  }

  .trust-cell:last-child {
    border-bottom: none;
  }

  .exp-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .photo-grid-new {
    grid-template-columns: 1fr;
  }

  .att-card {
    height: 260px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-header .title {
    font-size: 1.6rem;
  }

  .search-tabs {
    gap: 5px;
  }

  .s-tab {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* --- Hotel Search Page --- */
.hotels-page {
  background: #f8fbfa;
  min-height: 100vh;
  padding-top: 15px;
}

.top-search-section {
  background: #fff;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
  margin-top: 60px;
}

.top-search-bar {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 10px;
  border-radius: 50px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ts-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border-right: 1px solid #eee;
}

.ts-field:last-of-type {
  border-right: none;
}

.ts-field input,
.ts-field select {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.9rem;
  color: #333;
  background: transparent;
  padding-left: 5px;
  /* Added small space after icon */
}

.ts-btn {
  background: var(--green);
  color: #fff;
  padding: 12px 25px;
  border-radius: 40px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.ts-btn:hover {
  background: var(--green-deep);
}

.results-container {
  display: flex;
  gap: 30px;
  padding: 40px 0;
}

/* Sidebar Refinement */
.filter-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.filter-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 24px;
  margin-bottom: 20px;
}

.filter-section {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.filter-section:first-child {
  padding-top: 0;
}

.filter-section:last-child {
  border-bottom: none;
}

.filter-h {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.step-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.step-btn:hover {
  background: var(--green);
  color: #fff;
}

.step-val {
  font-weight: 600;
  font-size: 0.95rem;
  width: 25px;
  text-align: center;
}

/* Histogram */
.histogram {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-bottom: 15px;
  padding: 0 5px;
}

.hist-bar {
  flex: 1;
  background: #eee;
  border-radius: 2px 2px 0 0;
  transition: 0.3s;
}

.hist-bar.active {
  background: var(--green);
  opacity: 0.4;
}

.range-slider {
  position: relative;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  margin: 0 5px;
}

.range-progress {
  position: absolute;
  height: 100%;
  background: var(--green);
  border-radius: 2px;
}

.range-handle {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.input-wrap-mini label {
  display: block;
  margin-bottom: 4px;
}

.input-wrap-mini input {
  transition: border-color 0.3s;
}

.input-wrap-mini input:focus {
  border-color: var(--green) !important;
  outline: none;
}

/* Experience Tags */
.exp-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exp-tag {
  border: 1px solid #ddd;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #555;
  cursor: pointer;
  transition: 0.2s;
  background: #fff;
}

.exp-tag.active,
.exp-tag:hover {
  border-color: var(--green);
  color: var(--green);
  background: #f0fdf9;
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  cursor: pointer;
}

.checkbox-item input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

/* Rating */
.rating-stars-gold {
  color: #f5a623;
  display: flex;
  gap: 2px;
  font-size: 0.75rem;
}

.rating-count {
  margin-left: auto;
  color: #999;
  font-size: 0.8rem;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

/* Toggle Switch */
.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-toggle {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider-toggle:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.slider-toggle {
  background-color: var(--green);
}

input:checked+.slider-toggle:before {
  transform: translateX(20px);
}

/* Hotel Cards & Grid Refined */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.hotel-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.hotel-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.hotel-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hotel-heart {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  color: #222;
  font-size: 1.1rem;
}

.h-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.h-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #111;
  margin: 0;
  flex: 1;
}

.rating-badge {
  background: #f1f3f5;
  padding: 5px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.85rem;
  color: #111;
}

.rating-badge i {
  color: #f5a623;
  font-size: 0.8rem;
}

.h-loc {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.h-experience-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.h-tag-pill {
  background: #f1f3f5;
  color: #555;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.h-stats-row {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.h-stat-pill {
  background: #f8fbfa;
  padding: 8px 12px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #444;
  font-weight: 600;
  flex: 1;
  justify-content: center;
}

.h-stat-pill i {
  font-size: 0.95rem;
  color: #555;
}

.h-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h-price-info {
  display: flex;
  flex-direction: column;
}

.h-price-label {
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 3px;
}

.h-price-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111;
}

.btn-details {
  background: #2aa884;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn-details:hover {
  background: #238e6e;
}

/* Results Main */
.results-main {
  flex: 1;
}

.results-header {
  margin-bottom: 25px;
}

.results-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
}

/* Extracted Inline Styles */
.footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 80px 0 40px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

/* =====================================================
   RESPONSIVE DESIGN (Expanded)
   ===================================================== */

/* --- High-end Laptop & Desktop --- */
@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

/* --- Laptop & Smaller Desktop --- */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .search-box {
    max-width: 95%;
  }

  .exp-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-cards-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-grid-new {
    grid-template-columns: repeat(4, 1fr);
  }

  .photo-card-new:nth-child(n) {
    grid-column: span 1;
  }
}

/* --- Tablet (Landscape) --- */
@media (max-width: 1024px) {
  .container {
    max-width: 720px;
  }

  .results-container {
    flex-direction: column;
  }

  .filter-sidebar {
    width: 100%;
  }

  .top-search-bar {
    flex-direction: column;
    border-radius: 16px;
    align-items: stretch;
    gap: 0;
  }

  .ts-field {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 15px;
  }

  .ts-btn {
    width: 100%;
    border-radius: 0 0 16px 16px;
    padding: 15px;
  }
}

/* --- Tablet (Portrait) --- */
@media (max-width: 992px) {

  .nav-links,
  .nav-btn-group {
    display: none;
  }

  .hamburger {
    display: flex !important;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .cta-trio {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-right {
    align-items: flex-start;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 50px 0;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-top: 60px; /* Space for navbar */
    line-height: 1.2;
  }

  .hero-content {
    padding: 120px 20px 60px; /* Increase top padding drastically on mobile */
  }

  .search-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .search-box {
    padding: 24px 20px;
    transform: translateY(10px);
  }

  .search-tabs {
    gap: 10px;
    border-bottom: 2px solid #fcfcfc;
    padding-bottom: 15px;
    justify-content: space-between;
  }

  .search-tab,
  .s-tab {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    padding: 12px 10px;
    font-size: 0.85rem;
    white-space: nowrap;
    text-align: center;
  }

  .search-footer {
    flex-direction: column-reverse;
  }

  .search-btn-main {
    width: 100%;
    margin-bottom: 25px;
    padding: 16px 24px;
    font-size: 1rem;
  }

  .filters-wrap {
    width: 100%;
    justify-content: center;
  }

  .filter-label {
    display: none;
  }

  .quick-tags {
    justify-content: center;
    gap: 10px;
  }

  .exp-cards {
    grid-template-columns: 1fr;
  }

  .feat-cards-wrap {
    grid-template-columns: 1fr;
  }

  .feat-line {
    display: none;
  }

  .trust-banner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25px 20px;
  }

  .trust-cell-new {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 0;
    padding-bottom: 20px;
  }

  .trust-cell-new:nth-child(2),
  .trust-cell-new.no-border,
  .trust-cell-new:last-child {
    padding-left: 0;
  }

  .trust-cell-new:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .banner-container-margin {
    margin-bottom: 40px;
  }

  .photo-grid-new {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .offer-cards {
    grid-template-columns: 1fr;
  }

  .blog-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer {
    padding: 50px 0 30px;
    margin-top: 50px;
  }

  .hotel-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hotel-card {
    flex-direction: column;
    height: auto;
  }

  .hotel-img {
    width: 100%;
    height: 220px;
  }

  .h-stats-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .h-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .btn-details {
    width: 100%;
    justify-content: center;
  }

  .search-tabs {
    gap: 10px;
    border-bottom: none;
  }

  .search-footer {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .search-tab,
  .s-tab {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .cta-trio-box {
    padding: 15px 20px;
  }
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  /* Double ensure no overflow */
}

/* --- Mobile Navigation Styles --- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  /* Higher z-index to be above everything */
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transform: translateX(105%);
  /* Hide off-screen */
  visibility: hidden;
  /* Hide from screen readers & interaction */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav a {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #f6f6f6;
  text-decoration: none;
}

.mobile-nav a i {
  width: 24px;
  color: var(--green);
  font-size: 1.2rem;
}

.mobile-nav a.active {
  color: var(--green);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10001;
  /* Above mobile-nav when needed */
  position: relative;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar-solid .hamburger span {
  background: #fff;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: #222;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: #222;
}

/* ═══════════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════════ */
.container-faq {
  max-width: 900px !important;
  margin-top: 50px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.15rem;
  color: #222;
  transition: all 0.3s ease;
}

.faq-item.faq-green {
  background: #2aa884;
}

.faq-item.faq-green .faq-question {
  color: #fff;
}

.faq-answer {
  padding: 0 30px 24px;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.faq-green .faq-answer {
  color: rgba(255, 255, 255, 0.85);
}

.faq-question i {
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: #ccc;
}

.faq-item.faq-green .faq-question i {
  color: #fff;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}