/* Google Fonts Import - Plus Jakarta Sans & Outfit matching modern luxury travel guide typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --primary-gold: #b59e66;
  --primary-gold-hover: #9e8752;
  --bg-white: #ffffff;
  --bg-light-gray: #f9f9f9;
  --text-dark: #111111;
  --text-body: #2d3748;
  --text-muted: #666666;
  --border-light: #eaeaea;
  --main-font: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --nav-font: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  --script-font: 'Plus Jakarta Sans', sans-serif;
  --heading-font: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  --transition-fast: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--main-font);
  background-color: var(--bg-white);
  color: var(--text-body);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.65;
  font-family: var(--main-font);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

/* ==========================================================================
   NAVIGATION BAR (WHITE HEADER DESIGN MATCHING SCREENSHOT)
   ========================================================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s ease;
  background-color: transparent;
}

/* Transparent Header state on Hero */
.header-nav .brand-script {
  font-family: var(--script-font);
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 0.85;
  color: #ffffff;
  transition: color var(--transition-fast);
}

.header-nav .brand-subtitle {
  font-family: var(--nav-font);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  transition: color var(--transition-fast);
}

.brand-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-name-nav {
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: none;
  color: #ffffff;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
  white-space: nowrap;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.brand-logo:hover .brand-name-nav {
  color: var(--primary-gold);
}

.header-nav.scrolled .brand-name-nav,
.header-nav.white-nav .brand-name-nav {
  color: #111111;
  text-shadow: none;
}

.header-nav.scrolled .brand-logo:hover .brand-name-nav,
.header-nav.white-nav .brand-logo:hover .brand-name-nav {
  color: var(--primary-gold);
}

.brand-logo-circle {
  width: 68px;
  height: 68px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  border: 2px solid rgba(181, 158, 102, 0.4);
  transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
  overflow: hidden;
  padding: 4px;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-logo-circle {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border-color: var(--primary-gold);
}

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

.header-nav.scrolled .brand-logo-circle,
.header-nav.white-nav .brand-logo-circle {
  width: 52px;
  height: 52px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  border: 1.5px solid rgba(181, 158, 102, 0.35);
  padding: 3px;
}

.header-nav.scrolled .brand-logo-img,
.header-nav.white-nav .brand-logo-img {
  max-width: 44px;
  max-height: 44px;
}

.footer-brand-logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.4rem;
  text-decoration: none;
}

.footer-logo-circle {
  width: 68px;
  height: 68px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(181, 158, 102, 0.5);
  transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
  overflow: hidden;
  padding: 4px;
  flex-shrink: 0;
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.footer-brand-logo:hover .footer-logo-circle {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(181, 158, 102, 0.35);
  border-color: var(--primary-gold);
}

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

.footer-brand-logo .brand-subtitle {
  font-family: var(--nav-font);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #ffffff;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.footer-brand-logo:hover .brand-subtitle {
  color: var(--primary-gold);
}

.header-nav nav {
  margin-left: auto;
  margin-right: 2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-gold);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-book-now {
  text-decoration: none;
  background-color: var(--primary-gold);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-book-now:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-1px);
}

/* White Header State (On subpages or when scrolled down matching screenshot) */
.header-nav.white-nav,
.header-nav.scrolled {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 0.45rem 3.5rem;
  height: 64px;
}

.header-nav.white-nav .brand-subtitle,
.header-nav.scrolled .brand-subtitle {
  color: #111111;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.header-nav.white-nav .nav-menu,
.header-nav.scrolled .nav-menu {
  gap: 1.8rem;
}

.header-nav.white-nav .nav-link,
.header-nav.scrolled .nav-link {
  color: #222222;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.header-nav.white-nav .nav-link::after,
.header-nav.scrolled .nav-link::after {
  background-color: #111111;
  height: 2px;
  bottom: -6px;
}

.header-nav.white-nav .nav-link:hover,
.header-nav.scrolled .nav-link:hover,
.header-nav.white-nav .nav-link.active,
.header-nav.scrolled .nav-link.active {
  color: #111111;
}

.header-nav.white-nav .nav-link.active::after,
.header-nav.scrolled .nav-link.active::after,
.header-nav.white-nav .nav-link:hover::after,
.header-nav.scrolled .nav-link:hover::after {
  width: 100%;
}

.header-nav.white-nav .btn-book-now,
.header-nav.scrolled .btn-book-now {
  padding: 0.55rem 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  box-shadow: none;
}


/* ==========================================================================
   HERO SECTION (HOME PAGE)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 3rem;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.32) 100%),
    url('../../images/3.jpg') no-repeat center center / cover;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 150px 150px;
  opacity: 0.6;
}

.hero-vector-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--heading-font);
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-gold);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.hero-btn-primary:hover {
  background-color: var(--primary-gold-hover, #9e8550);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(181, 158, 102, 0.45);
  color: #ffffff;
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.8rem 1.9rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(6px);
}

.hero-btn-secondary:hover {
  border-color: var(--primary-gold);
  background-color: rgba(181, 158, 102, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-scroll-down {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 25px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.hero-scroll-down:hover {
  border-color: var(--primary-gold);
  transform: translateX(-50%) translateY(3px);
}

.scroll-arrow-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(6px);
  }

  60% {
    transform: translateY(3px);
  }
}


/* ==========================================================================
   CONTENT SECTIONS (WHITE BACKGROUND)
   ========================================================================== */
.section-wrapper {
  position: relative;
  background-color: var(--bg-white);
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border-light);
}

.section-wrapper h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.section-wrapper p {
  color: var(--text-body);
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}


/* ==========================================================================
   PACKAGES PAGE & FILTER BAR (WHITE BACKGROUND DESIGN)
   ========================================================================== */
.packages-header-spacer {
  height: 85px;
  background-color: var(--bg-white);
}

.packages-hero-title {
  text-align: center;
  padding: 3.5rem 1.5rem 1.5rem;
  background-color: var(--bg-white);
}

.packages-hero-title h1 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.packages-hero-title p {
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 1px;
}

.filter-bar-wrapper {
  background-color: var(--bg-white);
  padding: 1.2rem 2rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 75px;
  z-index: 90;
}

.filter-bar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.filter-select {
  padding: 0.75rem 1.5rem 0.75rem 1rem;
  font-family: var(--nav-font);
  font-size: 0.88rem;
  color: var(--text-dark);
  background-color: #fcfcfc;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
  min-width: 220px;
  transition: border-color var(--transition-fast);
}

.filter-select:focus,
.filter-select:hover {
  border-color: var(--primary-gold);
}

.btn-reset {
  padding: 0.75rem 1.5rem;
  font-family: var(--nav-font);
  font-size: 0.85rem;
  font-weight: 500;
  color: #555555;
  background-color: var(--bg-white);
  border: 1px solid #cccccc;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-reset:hover {
  background-color: #f0f0f0;
  color: #111111;
}

.packages-grid-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 6rem;
  background-color: var(--bg-white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  position: relative;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  text-decoration: none;
  color: #ffffff;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.package-card.card-bg-1 {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.05) 35%, transparent 100%),
    url('../../images/3.jpg') no-repeat center center / cover;
}

.package-card.card-bg-2 {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.05) 35%, transparent 100%),
    url('../../images/4.jpeg') no-repeat center center / cover;
}

.package-card.card-bg-3 {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.05) 35%, transparent 100%),
    url('../../images/8.jpeg') no-repeat center center / cover;
}

.package-card.card-bg-4 {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.05) 35%, transparent 100%),
    url('../../images/1.jpg') no-repeat center center / cover;
}

.package-card.card-bg-5 {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.05) 35%, transparent 100%),
    url('../../images/5.jpeg') no-repeat center center / cover;
}

.package-card.card-bg-6 {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.05) 35%, transparent 100%),
    url('../../images/14.jpg') no-repeat center center / cover;
}

.package-card.card-bg-7 {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.05) 35%, transparent 100%),
    url('../../images/15.jpg') no-repeat center center / cover;
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  z-index: 2;
  position: relative;
}

.card-badge {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-details {
  z-index: 2;
  position: relative;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.4rem;
}

.card-location-icon {
  width: 14px;
  height: 14px;
  fill: var(--primary-gold);
  flex-shrink: 0;
}

.card-title {
  font-family: var(--nav-font);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


/* ==========================================================================
   ABOUT US PAGE (WHITE BACKGROUND DESIGN)
   ========================================================================== */
.about-hero-section {
  padding: 6rem 2rem 3rem;
  background-color: var(--bg-white);
  text-align: center;
}

.about-hero-title {
  font-family: var(--heading-font);
  font-size: 3.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-hero-title span {
  color: var(--primary-gold);
}

.about-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-story-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.about-story-card {
  background: var(--bg-light-gray);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2.5rem;
}

.about-story-card h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 1.2rem;
}

.about-story-card p {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-pillars-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.pillar-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  stroke: var(--primary-gold);
  fill: none;
  stroke-width: 1.8;
  margin-bottom: 1.2rem;
}

.pillar-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.stats-banner {
  background-color: #f7f5f0;
  border-top: 1px solid #e8e3d5;
  border-bottom: 1px solid #e8e3d5;
  padding: 4.5rem 2rem;
  position: relative;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1);
  padding: 0.8rem 0.5rem;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1.1;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  min-height: 1.1em;
}

.stat-label {
  font-family: var(--nav-font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}


/* ==========================================================================
   REVIEWS PAGE (WHITE BACKGROUND DESIGN)
   ========================================================================== */
.reviews-hero {
  padding: 6rem 2rem 2rem;
  background-color: var(--bg-white);
  text-align: center;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 6rem;
  background-color: var(--bg-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--bg-light-gray);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stars-row {
  color: var(--primary-gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
}

.review-quote {
  font-style: italic;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.2rem;
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-gold);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.reviewer-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ==========================================================================
   CONTACT PAGE (WHITE BACKGROUND DESIGN)
   ========================================================================== */
.contact-hero {
  padding: 6rem 2rem 2rem;
  background-color: var(--bg-white);
  text-align: center;
}

.contact-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  background-color: var(--bg-white);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-card-box {
  background: var(--bg-light-gray);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 1.8rem;
}

.contact-card-box h3 {
  font-size: 1.1rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-card-box p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

.contact-form-panel {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--nav-font);
  font-size: 0.9rem;
  color: var(--text-dark);
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-gold);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b59e66' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
  padding-right: 2.6rem;
  cursor: pointer;
  color: #1e293b !important;
  background-color: #ffffff !important;
}

select.form-control option {
  background-color: #ffffff !important;
  color: #1e293b !important;
  padding: 0.6rem 1rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit-contact {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-gold);
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.btn-submit-contact:hover {
  background-color: var(--primary-gold-hover);
}


/* ==========================================================================
   FOOTER SECTION (WITH 3 JPEG BACKGROUND IMAGES & PURE WHITE TEXT)
   ========================================================================== */
.site-footer {
  background: #09140c;
  color: #ffffff !important;
  border-top: 1px solid rgba(181, 158, 102, 0.3);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

/* Footer Background Image (images/3.jpg) - Crisp & Clear */
.site-footer-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.site-footer-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  opacity: 1;
}

.site-footer-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: 2;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 3.5rem;
  display: grid;
  grid-template-columns: 1.8fr 2.2fr 1.6fr;
  gap: 3.5rem;
  position: relative;
  z-index: 3;
}

.footer-links-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.footer-col-about .brand-logo {
  margin-bottom: 1.2rem;
}

.footer-about-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #ffffff !important;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.footer-heading {
  font-family: var(--nav-font);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff !important;
  margin-bottom: 1.5rem;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.footer-heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--primary-gold);
  margin-top: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.footer-links a:hover {
  color: var(--primary-gold) !important;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  stroke: var(--primary-gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  text-decoration: none;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.social-icon-instagram svg {
  fill: none !important;
  stroke: currentColor !important;
}

.social-icon:hover {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #ffffff !important;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.8rem 2rem;
  font-size: 0.85rem;
  color: #ffffff !important;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
}

.footer-bottom p {
  color: #ffffff !important;
  margin: 0;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: relative;
}

.footer-admin-lock {
  color: rgba(255, 255, 255, 0.45) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  min-height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  position: relative !important;
  margin-left: 0.4rem !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
}

.footer-admin-lock svg {
  width: 13px !important;
  height: 13px !important;
  min-width: 13px !important;
  min-height: 13px !important;
  max-width: 13px !important;
  max-height: 13px !important;
  stroke: currentColor !important;
  fill: none !important;
  transition: stroke 0.3s ease, transform 0.3s ease !important;
  display: block !important;
}

.footer-admin-lock:hover {
  color: var(--primary-gold) !important;
  background: rgba(181, 158, 102, 0.15) !important;
  border-color: rgba(181, 158, 102, 0.5) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.footer-lock-tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(17, 17, 17, 0.95);
  color: var(--primary-gold);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  border: 1px solid rgba(181, 158, 102, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.footer-admin-lock:hover .footer-lock-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}


/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {

  .header-nav,
  .header-nav.white-nav,
  .header-nav.scrolled {
    padding: 1.2rem 2rem;
    gap: 1rem;
  }

  .nav-menu {
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .footer-container,
  .packages-grid,
  .about-story-container,
  .contact-section-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-pillars-grid,
  .reviews-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .header-nav,
  .header-nav.white-nav,
  .header-nav.scrolled {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 1.2rem;
  }

  .nav-menu {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.8rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
  }

  .btn-book-now {
    padding: 0.7rem 1.2rem;
    font-size: 0.75rem;
  }

  .footer-container,
  .packages-grid,
  .about-story-container,
  .contact-section-container,
  .about-pillars-grid,
  .reviews-grid,
  .stats-grid,
  .discover-container,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   HOMEPAGE DISCOVER & WHY SRI LANKA SECTIONS
   ========================================================================== */
.section-subtitle-gold {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 0.8rem;
  display: block;
}

/* Section 1: Discover Island of Endless Wonders */
.discover-section {
  background-color: var(--bg-white);
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border-light);
}

.discover-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.discover-content h2 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.8rem;
}

.discover-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.discover-visual-box {
  position: relative;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #ffffff;
}

.discover-visual-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: transform 0.5s ease;
}

.discover-visual-box:hover .discover-visual-img {
  transform: scale(1.05);
}

.discover-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 40px 60px, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 120px 150px, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 180px 180px;
  pointer-events: none;
}

.discover-visual-caption {
  position: relative;
  z-index: 2;
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Section 2: What Makes Sri Lanka Special */
.why-srilanka-section {
  background-color: var(--bg-white);
  padding: 6rem 2rem 7rem;
}

.why-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-header h2 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 2.8rem;
}

.why-item {
  display: flex;
  flex-direction: column;
}

.why-item-title {
  font-family: var(--nav-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.why-item-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Common Gold Button */
.btn-gold-action {
  display: inline-block;
  text-decoration: none;
  background-color: var(--primary-gold);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

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

/* ==========================================================================
   1. ATTRACTIONS SECTION
   ========================================================================== */
.attractions-section {
  background-color: var(--bg-white);
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-light);
}

.attractions-container {
  max-width: 1200px;
  margin: 0 auto;
}

.attractions-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 3.5rem;
}

.attractions-header h2 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  color: var(--text-dark);
  line-height: 1.25;
}

.attractions-header p {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.attractions-grid-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
  position: relative;
}

.slider-arrows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
  z-index: 5;
}

.slider-arrow-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #d4d4d4;
  background: #ffffff;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.slider-arrow-btn:hover {
  border-color: var(--primary-gold);
  color: #ffffff;
  background: var(--primary-gold);
  box-shadow: 0 6px 18px rgba(181, 158, 102, 0.35);
  transform: scale(1.06);
}

.slider-arrow-btn:active {
  transform: scale(0.95);
}

.attractions-carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  border-radius: 6px;
  user-select: none;
  cursor: grab;
}

.attractions-carousel-container.is-dragging {
  cursor: grabbing;
}

.attractions-carousel-track {
  display: flex;
  gap: 1.8rem;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.attractions-carousel-track.no-transition {
  transition: none !important;
}

.attraction-card {
  position: relative;
  flex: 0 0 calc((100% - (2 * 1.8rem)) / 3);
  min-width: calc((100% - (2 * 1.8rem)) / 3);
  height: 380px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-sizing: border-box;
}

.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.attraction-card.attraction-1 {
  background: url('../../images/9.jpg') no-repeat center center / cover;
}

.attraction-card.attraction-2 {
  background: url('../../images/10.jpg') no-repeat center center / cover;
}

.attraction-card.attraction-3 {
  background: url('../../images/11.jpg') no-repeat center center / cover;
}

.attraction-card.attraction-4 {
  background: url('../../images/12.jpg') no-repeat center center / cover;
}

.attraction-card.attraction-5 {
  background: url('../../images/13.jpg') no-repeat center center / cover;
}

.attraction-card.attraction-6 {
  background: url('../../images/1.jpg') no-repeat center center / cover;
}

.attraction-card.attraction-7 {
  background: url('../../images/7.jpeg') no-repeat center center / cover;
}

.attraction-card.attraction-8 {
  background: url('../../images/8.jpeg') no-repeat center center / cover;
}

.attraction-card-title {
  font-family: var(--nav-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}


/* ==========================================================================
   2. TOP DESTINATIONS & INTERACTIVE MAP SECTION
   ========================================================================== */
.destinations-map-section {
  background-color: #fcfcfc;
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-light);
}

.destinations-container {
  max-width: 1240px;
  margin: 0 auto;
}

.destinations-header {
  margin-bottom: 3.5rem;
}

.destinations-header h2 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  color: var(--text-dark);
}

.map-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Map Outline container with Vintage Sri Lanka Image Map */
.map-vector-box {
  position: relative;
  width: 100%;
  height: 520px;
  background: #6a9697;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.sri-lanka-img-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 1;
  filter: contrast(1.02) brightness(0.98);
}

.map-nodes-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.map-node {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #c2b280;
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #1a1a1a;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.map-node.active,
.map-node:hover {
  background: var(--primary-gold);
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 6px 15px rgba(181, 158, 102, 0.6);
  transform: scale(1.06);
}

/* Position pins tuned to classic Sri Lanka vintage map */
.node-jaffna {
  top: 12%;
  left: 34%;
  transform: translateX(-50%);
}

.node-anuradhapura {
  top: 40%;
  left: 43%;
  transform: translateX(-50%);
}

.node-trincomalee {
  top: 37%;
  left: 68%;
  transform: translateX(-50%);
}

.node-sigiriya {
  top: 46%;
  left: 46%;
  transform: translateX(-50%);
}

.node-polonnaruwa {
  top: 44%;
  left: 64%;
  transform: translateX(-50%);
}

.node-kandy {
  top: 62%;
  left: 48%;
  transform: translateX(-50%);
}

.node-colombo {
  top: 72%;
  left: 24%;
  transform: translateX(-50%);
}

.node-nuwaraeliya {
  top: 74%;
  left: 52%;
  transform: translateX(-50%);
}

.node-galle {
  top: 88%;
  left: 33%;
  transform: translateX(-50%);
}

.node-yala {
  top: 86%;
  left: 66%;
  transform: translateX(-50%);
}

/* Destination Detail Box */
.dest-detail-content h3 {
  font-family: var(--nav-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.dest-detail-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 1.2rem;
}

.dest-detail-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.dest-visual-card {
  height: 380px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%),
    url('../../images/3.jpg') no-repeat center center / cover;
  display: flex;
  align-items: flex-end;
  padding: 1.8rem;
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 1.5rem;
  transition: background-image 0.5s ease;
}


/* ==========================================================================
   3. TOP EXPERIENCES SECTION
   ========================================================================== */
.experiences-section {
  background-color: var(--bg-white);
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-light);
}

.experiences-container {
  max-width: 1200px;
  margin: 0 auto;
}

.experiences-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 3.5rem;
}

.experiences-header h2 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.experiences-header p {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.exp-card {
  position: relative;
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.exp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
}

.exp-card.exp-1 {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%),
    url('../../images/4.jpeg') no-repeat center center / cover;
}

.exp-card.exp-2 {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%),
    url('../../images/3.jpg') no-repeat center center / cover;
}

.exp-card.exp-3 {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%),
    url('../../images/5.jpeg') no-repeat center center / cover;
}

.exp-card-title {
  font-family: var(--nav-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}


/* ==========================================================================
   4. HOTELS FOR EVERY TRAVELLER SECTION
   ========================================================================== */
.hotels-section {
  background-color: var(--bg-white);
  padding: 6rem 2rem 7rem;
  border-top: 1px solid var(--border-light);
}

.hotels-container {
  max-width: 1240px;
  margin: 0 auto;
}

.hotels-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
}

.hotels-header-title h2 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  color: var(--text-dark);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.hotel-card {
  position: relative;
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
}

.hotel-card.hotel-1 {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%),
    url('../../images/H1.jpg') no-repeat center center / cover;
}

.hotel-card.hotel-2 {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%),
    url('../../images/H2.jpg') no-repeat center center / cover;
}

.hotel-card.hotel-3 {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%),
    url('../../images/H3.jpg') no-repeat center center / cover;
}

.hotel-card.hotel-4 {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%),
    url('../../images/H4.jpg') no-repeat center center / cover;
}

.hotel-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.4rem;
}

.hotel-title {
  font-family: var(--nav-font);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Responsive adjustments */
@media (max-width: 1024px) {

  .attractions-header,
  .experiences-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .attraction-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    min-width: calc((100% - 1.5rem) / 2);
  }

  .map-layout-grid {
    grid-template-columns: 1fr;
  }

  .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .attractions-grid-wrapper {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }

  .slider-arrows {
    flex-direction: row;
    justify-content: center;
  }

  .attraction-card {
    flex: 0 0 100%;
    min-width: 100%;
    height: 320px;
  }

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

  .hotels-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   5. TROPICAL GEM END CALLOUT BANNER SECTION (MATCHING SCREENSHOT)
   ========================================================================== */
.tropical-gem-section {
  position: relative;
  width: 100%;
  padding: 7.5rem 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, #0b1a10 0%, #12281a 50%, #0b1a10 100%);
  border-top: 1px solid rgba(181, 158, 102, 0.2);
}

.tropical-gem-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 30px 40px, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90px 120px, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0));
  background-size: 150px 150px;
  pointer-events: none;
  opacity: 0.6;
}

.gem-heading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.gem-text-prefix,
.gem-text-suffix {
  font-family: var(--nav-font);
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.5px;
}

.gem-script-callout {
  font-family: var(--script-font);
  font-size: 5rem;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
  line-height: 0.9;
  margin: 0 0.4rem;
}

.gem-description {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  line-height: 1.8;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   SUBPAGE HERO BANNER SECTION (MATCHING HERO SIZE & AESTHETIC)
   ========================================================================== */
.subpage-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6.5rem 1.5rem 2rem;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%),
    url('../../images/4.jpeg') no-repeat center center / cover;
  color: #ffffff;
}

.subpage-hero.packages-hero {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%),
    url('../../images/4.jpeg') no-repeat center center / cover;
}

.subpage-hero.about-hero {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%),
    url('../../images/5.jpeg') no-repeat center center / cover;
}

.subpage-hero.reviews-hero-bg {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%),
    url('../../images/1.jpg') no-repeat center center / cover;
}

.subpage-hero.contact-hero-bg {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%),
    url('../../images/8.jpeg') no-repeat center center / cover;
}

.subpage-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 80px 100px, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0));
  background-size: 150px 150px;
  pointer-events: none;
  opacity: 0.6;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.subpage-hero-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 0.8rem;
}

.subpage-hero-title {
  font-family: var(--heading-font);
  font-size: 3.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.6rem;
}

.subpage-hero-title .title-script {
  font-family: var(--script-font);
  font-size: 4.8rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 0.8;
  margin: 0 0.2rem;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.subpage-hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .subpage-hero {
    height: auto;
    padding: 7.5rem 1.5rem 3rem;
  }

  .subpage-hero-title {
    font-size: 2.2rem;
  }

  .subpage-hero-title .title-script {
    font-size: 3.8rem;
  }
}

/* ==========================================================================
   FLOATING ACTION WIDGETS (WHATSAPP & REVIEWS)
   ========================================================================== */
.floating-widgets-wrapper {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.floating-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-btn-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-btn-icon svg {
  width: 100%;
  height: 100%;
}

/* WhatsApp Floating Button */
.floating-whatsapp-btn {
  background-color: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp-btn::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.8;
  animation: pulse-whatsapp 2s infinite ease-in-out;
  pointer-events: none;
}

@keyframes pulse-whatsapp {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.25);
    opacity: 0;
  }

  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* Review Floating Button */
.floating-review-btn {
  background-color: #172c1c;
  border: 1.5px solid var(--primary-gold);
  color: var(--primary-gold);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.floating-review-btn:hover {
  background-color: var(--primary-gold);
  color: #ffffff;
  border-color: #ffffff;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.08);
}

/* Tooltip on Hover */
.floating-tooltip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(17, 17, 17, 0.9);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(17, 17, 17, 0.9);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .floating-widgets-wrapper {
    bottom: 1.5rem;
    right: 1.2rem;
    gap: 0.75rem;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .floating-btn-icon {
    width: 22px;
    height: 22px;
  }
}

/* ==========================================================================
   WRITE A REVIEW FORM SECTION
   ========================================================================== */
.write-review-section {
  padding: 4rem 1.5rem;
  background: var(--bg-light-gray);
  display: flex;
  justify-content: center;
}

.write-review-card {
  width: 100%;
  max-width: 850px;
  background: #ffffff;
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
}

.write-review-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.write-review-header h2 {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  color: var(--text-dark);
  margin: 0.4rem 0 0.6rem;
}

.write-review-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.review-form .form-group {
  margin-bottom: 1.5rem;
}

.review-form .form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.review-form .form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--nav-font);
  font-size: 0.92rem;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background-color: #fcfcfc;
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.review-form .form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(181, 158, 102, 0.15);
}

/* Star Rating Picker */
.star-rating-picker {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.4rem 0;
}

.star-rating-picker .star-item {
  font-size: 1.8rem;
  color: #dddddd;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.star-rating-picker .star-item.active,
.star-rating-picker .star-item.hover {
  color: var(--primary-gold);
}

.star-rating-picker .star-item:hover {
  transform: scale(1.2);
}

.btn-submit-review {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-gold);
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  box-shadow: 0 4px 15px rgba(181, 158, 102, 0.3);
}

.btn-submit-review:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-2px);
}

.review-success-alert {
  background: rgba(35, 85, 50, 0.08);
  border: 1px solid rgba(35, 85, 50, 0.3);
  color: #172c1c;
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-success-alert svg {
  color: #235532;
  flex-shrink: 0;
}

.review-success-alert h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.review-success-alert p {
  font-size: 0.88rem;
  margin: 0;
}

@media (max-width: 768px) {
  .write-review-card {
    padding: 1.8rem;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   REVIEW POPUP MODAL CARD STYLES
   ========================================================================== */
.review-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.review-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.review-modal-card {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 2.8rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-light);
  transform: scale(0.85) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-modal-overlay.active .review-modal-card {
  transform: scale(1) translateY(0);
}

.review-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.review-modal-close:hover {
  background: var(--primary-gold);
  color: #ffffff;
  transform: rotate(90deg);
}

.review-modal-card .write-review-header {
  margin-bottom: 1.8rem;
}

.review-modal-card .write-review-header h2 {
  font-size: 1.9rem;
}

/* ==========================================================================
   REVIEWS PAGE HEADER BAR & CTA BANNER
   ========================================================================== */
.reviews-header-bar {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.reviews-summary-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.reviews-summary-badge .score {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.reviews-summary-badge .stars {
  color: var(--primary-gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.reviews-summary-badge .count {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.btn-write-review-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  background: var(--primary-gold);
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(181, 158, 102, 0.3);
}

.btn-write-review-cta:hover {
  background: var(--primary-gold-hover);
  transform: translateY(-2px);
}

.review-cta-section {
  padding: 4rem 1.5rem;
  background: var(--bg-light-gray);
  display: flex;
  justify-content: center;
}

.review-cta-card {
  width: 100%;
  max-width: 850px;
  text-align: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-cta-card h2 {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  color: var(--text-dark);
  margin: 0.5rem 0 0.8rem;
}

.review-cta-card p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .reviews-header-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   ADMIN LOGIN PORTAL & DASHBOARD STYLES
   ========================================================================== */
.admin-login-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d1a11 0%, #172c1c 50%, #060e08 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.admin-login-wrapper {
  width: 100%;
  max-width: 440px;
}

.admin-login-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--primary-gold);
}

.admin-brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.admin-brand-logo .brand-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--text-dark);
}

.admin-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--primary-gold);
  color: #ffffff;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-top: 0.3rem;
}

.admin-login-card h2 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.3rem;
}

.admin-login-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
}

.btn-admin-submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--primary-gold);
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(181, 158, 102, 0.3);
  margin-top: 0.5rem;
}

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

.admin-login-footer {
  text-align: center;
  margin-top: 1.8rem;
}

.admin-login-footer a {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.admin-login-footer a:hover {
  color: var(--primary-gold);
}

.admin-lock-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(181, 158, 102, 0.12);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 15px rgba(181, 158, 102, 0.2);
}

.password-input-wrapper {
  position: relative;
  width: 100%;
}

.password-input-wrapper .form-control {
  padding-right: 2.8rem;
}

.btn-toggle-password {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.btn-toggle-password:hover,
.btn-toggle-password.active {
  color: var(--primary-gold);
}

/* ADMIN DASHBOARD LAYOUT */
.admin-dashboard-body {
  background: #f4f6f8;
  min-height: 100vh;
}

.admin-nav-bar {
  background: #111111;
  border-bottom: 2px solid var(--primary-gold);
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.admin-nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-nav-brand .brand-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffffff;
}

.admin-nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.admin-user-tag {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.admin-user-tag strong {
  color: var(--primary-gold);
}

.btn-admin-nav {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.btn-admin-nav:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.btn-admin-logout {
  background: #d9534f;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.btn-admin-logout:hover {
  background: #c9302c;
}

.admin-dashboard-container {
  max-width: 1280px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}

/* Metrics Overview Grid */
.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.metric-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.6rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-light);
}

.metric-card .metric-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-pending .metric-icon {
  background: rgba(240, 173, 78, 0.15);
  color: #f0ad4e;
}

.metric-approved .metric-icon {
  background: rgba(35, 85, 50, 0.12);
  color: #235532;
}

.metric-rating .metric-icon {
  background: rgba(181, 158, 102, 0.18);
  color: var(--primary-gold);
}

.metric-total .metric-icon {
  background: rgba(51, 122, 183, 0.15);
  color: #337ab7;
}

.metric-card h3 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.metric-card p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Admin Panel Card */
.admin-panel-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-light);
}

.panel-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-light);
}

.panel-card-header h2 {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  color: var(--text-dark);
}

.panel-card-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.status-badge {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
}

.badge-pending-count {
  background: #fff8e1;
  color: #b78103;
  border: 1px solid #ffe082;
}

.badge-approved-count {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

/* Admin Table */
.table-responsive {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  background: #f9f9f9;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 1rem 1.2rem;
  border-bottom: 2px solid var(--border-light);
}

.admin-table td {
  padding: 1.2rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: #fcfcfc;
}

.text-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stars-gold {
  color: var(--primary-gold);
  letter-spacing: 1px;
}

.col-quote {
  max-width: 320px;
  line-height: 1.5;
  color: var(--text-body);
  font-style: italic;
}

.status-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 12px;
}

.pill-pending {
  background: #fff3cd;
  color: #856404;
}

.pill-approved {
  background: #d4edda;
  color: #155724;
}

.pill-rejected {
  background: #f8d7da;
  color: #721c24;
}

.table-action-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.btn-action {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.btn-action-approve {
  background: #235532;
  color: #ffffff;
}

.btn-action-approve:hover {
  background: #183d23;
}

.btn-action-reject {
  background: #f0ad4e;
  color: #ffffff;
}

.btn-action-reject:hover {
  background: #ec971f;
}

.btn-action-delete {
  background: #f8f9fa;
  color: #d9534f;
  border: 1px solid #d9534f;
}

.btn-action-delete:hover {
  background: #d9534f;
  color: #ffffff;
}

.empty-state-box {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
}

.empty-state-box svg {
  color: var(--primary-gold);
  margin-bottom: 0.8rem;
}

.admin-alert {
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.admin-alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.admin-alert-warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

.admin-alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ==========================================================================
   ADMIN SIDEBAR ("SLIDE BAR") & DASHBOARD LAYOUT STYLES
   ========================================================================== */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background-color: #f4f6f8;
  font-family: var(--nav-font);
}

/* LEFT SIDEBAR ("SLIDE BAR") */
.admin-sidebar {
  width: 280px;
  background-color: #0d131a;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: width 0.3s ease;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 120;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-brand-box {
  padding: 1.5rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-logo-wrap {
  display: flex;
  flex-direction: column;
}

.brand-logo-wrap .brand-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary-gold);
}

.brand-logo-wrap .admin-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #8a99a8;
  margin-top: 2px;
}

.sidebar-collapse-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #a0aec0;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-collapse-btn:hover {
  background: var(--primary-gold);
  color: #0d131a;
}

.sidebar-nav {
  padding: 1.2rem 0.8rem;
  flex: 1;
  overflow-y: auto;
}

.sidebar-group-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #52637a;
  padding: 0.5rem 0.8rem;
  text-transform: uppercase;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1rem;
  color: #b0bec5;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  transition: all 0.25s ease;
  position: relative;
}

.sidebar-nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.sidebar-nav-item.active {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #8a733f 100%);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(181, 158, 102, 0.25);
}

.sidebar-nav-item .nav-icon {
  flex-shrink: 0;
}

.sidebar-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
}

.badge-pending-cnt {
  background: #e53e3e;
  color: #ffffff;
}

.badge-slides-cnt {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.nav-logout {
  color: #fc8181;
}

.nav-logout:hover {
  background: rgba(245, 101, 101, 0.15);
  color: #feb2b2;
}

.sidebar-user-footer {
  padding: 1rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: rgba(0, 0, 0, 0.2);
}

.user-avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-gold);
  color: #0d131a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.user-role {
  font-size: 0.72rem;
  color: #718096;
}

/* MAIN PANEL CONTAINER */
.admin-main-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.admin-top-bar {
  background-color: #ffffff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: #4a5568;
  cursor: pointer;
}

.page-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a202c;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-user-pill {
  font-size: 0.85rem;
  color: #4a5568;
}

.btn-admin-small-gold {
  text-decoration: none;
  background-color: var(--primary-gold);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-admin-small-gold:hover {
  background-color: var(--primary-gold-hover);
}

.btn-admin-small-outline {
  text-decoration: none;
  border: 1px solid #cbd5e0;
  color: #4a5568;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  background: #ffffff;
  transition: all 0.2s;
}

.btn-admin-small-outline:hover {
  background: #edf2f7;
}

.admin-content-inner {
  padding: 2rem;
  flex: 1;
}

/* COLLAPSED SIDEBAR STATE */
.admin-layout.sidebar-collapsed .admin-sidebar {
  width: 78px;
}

.admin-layout.sidebar-collapsed .brand-logo-wrap,
.admin-layout.sidebar-collapsed .sidebar-group-title,
.admin-layout.sidebar-collapsed .nav-label,
.admin-layout.sidebar-collapsed .sidebar-badge,
.admin-layout.sidebar-collapsed .user-details {
  display: none;
}

.admin-layout.sidebar-collapsed .sidebar-brand-box {
  justify-content: center;
}

.admin-layout.sidebar-collapsed .sidebar-collapse-btn svg {
  transform: rotate(180deg);
}

.admin-layout.sidebar-collapsed .sidebar-nav-item {
  justify-content: center;
  padding: 0.8rem;
}

.admin-layout.sidebar-collapsed .sidebar-user-footer {
  justify-content: center;
}

/* SLIDE BAR MANAGER SPECIFIC STYLES */
.order-badge {
  background: #edf2f7;
  color: #2d3748;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.slide-thumb-box {
  width: 90px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

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

.slide-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-gold);
  text-transform: uppercase;
}

.slide-title-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a202c;
  margin: 2px 0;
}

.slide-desc-text {
  font-size: 0.8rem;
  color: #718096;
  max-width: 380px;
  white-space: normal;
}

.btn-action-edit {
  background: #edf2f7;
  color: #2b6cb0;
  border: 1px solid #cbd5e0;
}

.btn-action-edit:hover {
  background: #ebf8ff;
  color: #2b6cb0;
}

/* ADMIN MODALS */
.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 19, 26, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.admin-modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 650px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-card-header {
  padding: 1.2rem 1.8rem;
  background: #0d131a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.modal-close-btn {
  background: none;
  border: none;
  color: #a0aec0;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-form {
  padding: 1.8rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.col-12 {
  flex: 0 0 100%;
}

.col-6 {
  flex: 0 0 calc(50% - 0.5rem);
}

.form-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.4rem;
}

.admin-input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: var(--nav-font);
  transition: border-color 0.2s;
}

.admin-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(181, 158, 102, 0.15);
}

.modal-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

/* ==========================================================================
   HOMEPAGE DYNAMIC HERO SLIDER STYLES
   ========================================================================== */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-item.active-slide {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-item .hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
}

.hero-slide-item.active-slide .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls Dots & Arrows */
.hero-slider-nav {
  position: absolute;
  bottom: 4.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active-dot {
  background: var(--primary-gold);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(181, 158, 102, 0.8);
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(13, 19, 26, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-arrow:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #0d131a;
}

.hero-slider-arrow.arrow-prev {
  left: 2rem;
}

.hero-slider-arrow.arrow-next {
  right: 2rem;
}

.admin-sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media (max-width: 992px) {
  .admin-sidebar {
    position: fixed;
    left: -290px;
    top: 0;
    width: 280px;
    height: 100vh;
    z-index: 1000;
    transition: left 0.35s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.5);
  }

  .admin-layout.mobile-sidebar-open .admin-sidebar {
    left: 0;
  }

  .admin-layout.mobile-sidebar-open~.admin-sidebar-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .mobile-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    width: 38px;
    height: 38px;
    color: #1e293b;
    cursor: pointer;
  }

  .admin-top-bar {
    padding: 0.75rem 1.2rem;
    gap: 0.8rem;
  }

  .admin-content-area {
    padding: 1.2rem 1rem;
  }

  .admin-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.8rem 0.9rem;
    white-space: nowrap;
  }

  .col-quote {
    white-space: normal;
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  .admin-panel-card {
    padding: 1.2rem 1rem;
    margin-bottom: 1.5rem;
  }

  .panel-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .panel-card-header h2 {
    font-size: 1.3rem;
  }

  /* Table to Mobile Card Stack */
  .admin-table thead {
    display: none;
  }

  .admin-table,
  .admin-table tbody,
  .admin-table tr,
  .admin-table td {
    display: block;
    width: 100%;
  }

  .admin-table tr {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  }

  .admin-table td {
    padding: 0.4rem 0;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    text-align: left !important;
    white-space: normal;
  }

  .admin-table td strong {
    font-size: 0.98rem;
    color: #1e293b;
  }

  .admin-table td.col-quote {
    max-width: 100%;
    margin: 0.5rem 0;
    padding: 0.75rem 0.9rem;
    background: #ffffff;
    border-radius: 6px;
    border-left: 3px solid var(--primary-gold);
    font-size: 0.84rem;
    line-height: 1.5;
    color: #475569;
    display: block;
  }

  .admin-table td:last-child {
    margin-top: 0.6rem;
    padding-top: 0.7rem;
    border-top: 1px solid #e2e8f0;
    justify-content: flex-end;
  }

  .table-action-btns {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .table-action-btns .btn-action {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .admin-metrics-grid {
    grid-template-columns: 1fr;
  }

  .top-bar-right {
    display: none;
  }

  .page-title {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   5 CORE PACKAGES FILTERING & PACKAGE DETAILS PAGE STYLES
   ========================================================================== */
.pkg-category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.pkg-tab-btn {
  padding: 0.75rem 1.6rem;
  font-family: var(--nav-font);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pkg-tab-btn.active,
.pkg-tab-btn:hover {
  background: var(--primary-gold);
  color: #ffffff;
  border-color: var(--primary-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(181, 158, 102, 0.3);
}

.card-duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(181, 158, 102, 0.95);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
  backdrop-filter: blur(4px);
}

.card-best-for {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  margin-bottom: 0.6rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.card-highlights-preview {
  list-style: none;
  margin: 0.8rem 0 1.2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.card-highlights-preview li {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.card-highlights-preview li svg {
  color: var(--primary-gold);
  flex-shrink: 0;
}

.card-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--primary-gold);
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.package-card:hover .card-action-btn {
  background: var(--primary-gold-hover);
}

/* Package Details Layout */
.pkg-details-main-section {
  background-color: var(--bg-white);
  padding: 4rem 1.5rem 6rem;
}

.pkg-details-container {
  max-width: 1200px;
  margin: 0 auto;
}

.package-details-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.8rem;
  align-items: start;
}

.pkg-specs-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--bg-light-gray);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 1.4rem;
  margin-bottom: 2rem;
}

.spec-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.spec-box svg {
  color: var(--primary-gold);
  flex-shrink: 0;
}

.spec-box .label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.spec-box .val {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pkg-section-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 2.2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.pkg-section-card h2 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.pkg-section-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: var(--primary-gold);
}

.pkg-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
}

.pkg-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

.pkg-highlights-list .check-icon {
  color: var(--primary-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Itinerary Timeline */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
  margin-top: 1rem;
}

.timeline-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  position: relative;
}

.timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 47px;
  width: 2px;
  height: calc(100% + 1.8rem);
  background: linear-gradient(to bottom, var(--primary-gold), rgba(181, 158, 102, 0.25));
  z-index: 1;
}

.step-num-wrapper {
  flex: 0 0 96px;
  width: 96px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.step-num {
  min-width: 82px;
  height: 34px;
  padding: 0 0.9rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-gold), #8c7336);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(181, 158, 102, 0.35);
  white-space: nowrap;
}

.step-content {
  flex: 1;
  background: #fdfbf7;
  border: 1px solid rgba(181, 158, 102, 0.25);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-content:hover {
  transform: translateX(4px);
  border-color: var(--primary-gold);
  box-shadow: 0 8px 25px rgba(181, 158, 102, 0.15);
}

.step-content h3 {
  font-family: var(--nav-font);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Sticky Booking Sidebar */
.package-sidebar {
  position: sticky;
  top: 95px;
}

.booking-sticky-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.booking-sticky-card h3 {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.booking-sticky-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.inquiry-success-msg {
  background: rgba(181, 158, 102, 0.15);
  border: 1px solid var(--primary-gold);
  border-radius: 4px;
  padding: 1.2rem;
  color: var(--text-dark);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.inquiry-success-msg svg {
  color: var(--primary-gold);
  flex-shrink: 0;
}

.inquiry-success-msg h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.inquiry-success-msg p {
  font-size: 0.82rem;
  color: var(--text-body);
  margin: 0;
}

.sidebar-direct-contact {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.sidebar-direct-contact span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.btn-whatsapp-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 3px;
  transition: background-color var(--transition-fast);
}

.btn-whatsapp-direct:hover {
  background-color: #1ebd56;
}

@media (max-width: 1024px) {
  .package-details-layout {
    grid-template-columns: 1fr;
  }

  .pkg-specs-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pkg-specs-bar {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FOUNDER 2-COLUMN SECTION (MATCHING REFERENCE UI)
   ========================================================================== */
.about-founder-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: center;
  margin: 4rem auto 3rem;
  max-width: 1200px;
  padding: 0 1.5rem;
}

.founder-text-content {
  display: flex;
  flex-direction: column;
}

.founder-subtitle-tag {
  color: var(--primary-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
}

.founder-main-title {
  font-size: 2.2rem;
  color: #111111;
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.founder-bio-p {
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.founder-bio-p strong {
  color: #111111;
}

.founder-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  margin-top: 0.8rem;
}

.founder-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #ffffff;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
  transition: all 0.3s ease;
}

.founder-btn-wa:hover {
  background: #1ebd56;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.founder-btn-email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary-gold);
  border: 1px solid rgba(181, 158, 102, 0.5);
  background: rgba(181, 158, 102, 0.05);
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.founder-btn-email:hover {
  background: var(--primary-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Right Side Offset Frame Logo Card */
.founder-logo-frame-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.founder-logo-outer-border {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-gold);
  border-radius: 24px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.founder-logo-inner-card {
  position: relative;
  z-index: 2;
  background: rgba(18, 38, 26, 0.95);
  border: 1px solid rgba(181, 158, 102, 0.35);
  border-radius: 24px;
  padding: 3.5rem 2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 380px;
  transition: transform 0.3s ease;
}

.founder-logo-inner-card:hover {
  transform: translateY(-4px);
}

.founder-logo-img-box {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 12px;
}

.founder-logo-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.founder-card-name {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.founder-card-sub {
  color: var(--primary-gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .about-founder-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .founder-logo-frame-container {
    max-width: 360px;
  }
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER & RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

/* Hamburger Button */
.nav-hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 105;
}

@media (min-width: 993px) {

  .nav-hamburger-btn,
  .mobile-nav-drawer,
  .mobile-nav-backdrop {
    display: none !important;
  }
}

.nav-hamburger-btn span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.header-nav.scrolled .nav-hamburger-btn span,
.header-nav.white-nav .nav-hamburger-btn span {
  background-color: #111111;
}

/* Mobile Drawer Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Drawer Panel */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #0b1a10;
  border-left: 1px solid rgba(181, 158, 102, 0.25);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid rgba(181, 158, 102, 0.15);
}

.drawer-brand-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.mobile-drawer-header .drawer-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.drawer-brand-title {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: none;
  color: #ffffff;
  transition: color var(--transition-fast);
}

.drawer-brand-link:hover .drawer-brand-title {
  color: var(--primary-gold);
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(181, 158, 102, 0.3);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-drawer-close:hover {
  background: var(--primary-gold);
  color: #ffffff;
}

.mobile-drawer-menu {
  list-style: none;
  padding: 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  font-family: var(--nav-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: #e5e7eb;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #ffffff;
  background: rgba(181, 158, 102, 0.2);
  border-left: 3px solid var(--primary-gold);
  padding-left: 1.2rem;
}

.mobile-drawer-footer {
  margin-top: auto;
  padding: 1.8rem;
  border-top: 1px solid rgba(181, 158, 102, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.btn-drawer-book {
  display: block;
  text-align: center;
  background: var(--primary-gold);
  color: #ffffff;
  padding: 0.85rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--nav-font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: background 0.3s ease;
}

.btn-drawer-book:hover {
  background: var(--primary-gold-hover);
}

.drawer-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #25D366;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ==========================================================================
   PAGE-WIDE COMPREHENSIVE RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Large Tablets & Small Desktops (<= 1024px) */
@media (max-width: 1024px) {
  .header-nav {
    padding: 1rem 2rem;
  }

  .header-nav.scrolled,
  .header-nav.white-nav {
    padding: 0.45rem 2rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pkg-details-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-section-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Mobile & Tablets (<= 992px) */
@media (max-width: 992px) {

  .nav-desktop,
  .btn-book-now.desktop-only {
    display: none !important;
  }

  .nav-hamburger-btn {
    display: flex;
  }

  .header-nav {
    padding: 0.8rem 1.5rem;
  }

  .header-nav.scrolled,
  .header-nav.white-nav {
    padding: 0.45rem 1.5rem;
    height: 60px;
  }

  .header-nav .brand-logo-circle {
    width: 52px;
    height: 52px;
  }

  .header-nav .brand-logo-img {
    max-width: 44px;
    max-height: 44px;
  }

  .header-nav .brand-name-nav {
    font-size: 1.15rem;
    letter-spacing: 1px;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 6.5vw, 3.8rem);
  }

  .discover-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .discover-content h2 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    line-height: 1.25;
  }

  .discover-visual-box {
    height: 360px;
    width: 100%;
  }

  .why-srilanka-section {
    padding: 4rem 1.5rem;
  }

  .why-header h2 {
    font-size: 2.2rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .attractions-header,
  .experiences-header,
  .hotels-header {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .attractions-header h2,
  .experiences-header h2,
  .hotels-header-title h2,
  .why-section-header h2 {
    font-size: 2.2rem;
  }

  .map-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reviews-stats-summary {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
}

/* Small Tablets & Mobile Phones (<= 768px) */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .discover-section,
  .why-srilanka-section,
  .why-section,
  .attractions-section,
  .destinations-map-section,
  .experiences-section,
  .hotels-section,
  .tropical-gem-section,
  .packages-hero-title,
  .packages-grid-container,
  .reviews-hero,
  .reviews-container,
  .contact-section-container,
  .site-footer {
    padding: 3.5rem 1.2rem;
  }

  .discover-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .discover-content h2 {
    font-size: 1.9rem;
  }

  .discover-visual-box {
    height: 300px;
    padding: 1.5rem;
  }

  .discover-visual-caption {
    font-size: 1.3rem;
  }

  .why-grid,
  .packages-grid,
  .experiences-grid,
  .hotels-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-header {
    margin-bottom: 2.5rem;
  }

  .why-header h2 {
    font-size: 1.8rem;
  }

  /* Package Details Page Responsive Layout */
  .pkg-details-main-section {
    padding: 2.5rem 1rem 4rem;
  }

  .package-details-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pkg-section-card {
    padding: 1.4rem 1.1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
  }

  .pkg-section-card h2 {
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
    word-break: break-word;
  }

  .pkg-specs-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.1rem;
  }

  /* Itinerary Timeline Mobile Compact Architecture */
  .itinerary-timeline {
    gap: 1.2rem;
    margin-top: 0.5rem;
  }

  .timeline-step {
    gap: 0.8rem;
    align-items: flex-start;
  }

  .step-num-wrapper {
    flex: 0 0 68px;
    width: 68px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .step-num {
    min-width: 64px;
    width: auto;
    height: 30px;
    padding: 0 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: 15px;
    box-shadow: 0 3px 8px rgba(181, 158, 102, 0.35);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-gold), #8c7336);
    color: #ffffff;
  }

  .timeline-step:not(:last-child)::before {
    top: 30px;
    left: 34px;
    height: calc(100% + 1.2rem);
  }

  .step-content {
    flex: 1;
    min-width: 0;
    padding: 1rem 1.1rem;
    border-radius: 8px;
  }

  .step-content h3 {
    font-size: 1.02rem;
    line-height: 1.35;
    margin-bottom: 0.35rem;
  }

  .step-content p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .filter-select,
  .btn-reset {
    width: 100%;
    min-width: unset;
  }

  .attractions-grid-wrapper {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }

  .slider-arrows {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .attraction-card {
    flex: 0 0 100%;
    min-width: 100%;
    height: 320px;
  }

  .hotel-card,
  .package-card,
  .exp-card {
    height: 340px;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .site-footer-dark-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.55) 100%);
  }

  .footer-container {
    padding: 3.5rem 1.4rem 2rem;
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer-col-about {
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.8rem;
  }

  .footer-col-about .brand-logo {
    justify-content: flex-start;
    margin-bottom: 1rem;
  }

  .footer-col-about .brand-subtitle {
    font-size: 1.2rem;
    letter-spacing: 1.5px;
  }

  .footer-about-text {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .social-links {
    margin-top: 1rem;
    gap: 0.8rem;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }

  .footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-heading {
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
  }

  .footer-heading::after {
    margin-top: 0.35rem;
    width: 25px;
  }

  .footer-links {
    gap: 0.75rem;
  }

  .footer-links a {
    font-size: 0.86rem;
    display: inline-block;
    padding: 0.2rem 0;
  }

  .footer-col-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.8rem;
  }

  .footer-contact-item {
    font-size: 0.86rem;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    align-items: flex-start;
    word-break: break-word;
  }

  .footer-bottom {
    padding: 1.5rem 1.2rem 6.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom p {
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8) !important;
  }

  #reviewModal .modal-card {
    width: 94%;
    padding: 1.5rem;
    max-height: 92vh;
  }
}

/* Very Small Mobile Phones (<= 480px) */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .pkg-specs-bar {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .founder-btn-wa,
  .founder-btn-email {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   CUSTOM LUXURY DELETE CONFIRMATION POPUP MODAL UI
   ========================================================================== */
.custom-delete-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 19, 26, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.custom-delete-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.custom-delete-modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-delete-modal-overlay.active .custom-delete-modal-card {
  transform: translateY(0) scale(1);
}

.delete-modal-top {
  background: #0f172a;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.delete-icon-pulse {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
  animation: deleteIconPulse 2s infinite ease-in-out;
}

@keyframes deleteIconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.2); }
}

.delete-modal-title-box {
  flex: 1;
}

.delete-modal-title-box h3 {
  font-family: var(--nav-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.15rem;
  letter-spacing: -0.01em;
}

.delete-modal-title-box p {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 0;
}

.delete-modal-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-size: 1.4rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.delete-modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: rotate(90deg);
}

.delete-modal-body {
  padding: 1.6rem;
}

.delete-confirm-prompt {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.45;
}

.delete-review-preview {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary-gold);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
}

.preview-author-name {
  font-family: var(--nav-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.preview-quote-snippet {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.delete-warning-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  color: #c53030;
  line-height: 1.45;
}

.delete-warning-note svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.delete-modal-actions {
  padding: 1.2rem 1.6rem;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.btn-cancel-action {
  background: #ffffff;
  color: #475569;
  border: 1px solid #cbd5e1;
  padding: 0.7rem 1.3rem;
  border-radius: 8px;
  font-family: var(--nav-font);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cancel-action:hover {
  background: #f1f5f9;
  color: #1e293b;
  border-color: #94a3b8;
}

.btn-confirm-delete-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-family: var(--nav-font);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
  transition: all 0.25s ease;
}

.btn-confirm-delete-action:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
}

@media (max-width: 480px) {
  .custom-delete-modal-card {
    border-radius: 12px;
  }

  .delete-modal-top {
    padding: 1.1rem 1.2rem;
  }

  .delete-modal-body {
    padding: 1.2rem;
  }

  .delete-modal-actions {
    flex-direction: column-reverse;
    padding: 1.1rem 1.2rem;
    gap: 0.6rem;
  }

  .btn-cancel-action,
  .btn-confirm-delete-action {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.8rem;
  }
}

/* ==========================================================================
   ADMIN SECURITY & PASSWORD RESET SECTION STYLES
   ========================================================================== */
.password-reset-container {
  padding-top: 1rem;
}

.pwd-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.pwd-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.pwd-input-wrap .admin-input {
  padding-right: 2.8rem;
  width: 100%;
}

.pwd-toggle-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.65;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 4px;
}

.pwd-toggle-btn:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.label-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: normal;
  margin-left: 4px;
}

.required-star {
  color: #ef4444;
  font-weight: bold;
}

.pwd-match-indicator {
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 0.4rem;
  min-height: 18px;
  transition: all 0.2s ease;
}

.pwd-match-indicator.match-success {
  color: #16a34a;
}

.pwd-match-indicator.match-error {
  color: #dc2626;
}

.pwd-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.pwd-security-tip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: #64748b;
  max-width: 500px;
  line-height: 1.4;
}

.pwd-security-tip svg {
  color: var(--primary-gold);
  flex-shrink: 0;
}

.btn-update-password {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-gold);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  font-family: var(--nav-font);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(181, 158, 102, 0.35);
  transition: all var(--transition-fast);
}

.btn-update-password:hover {
  background: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(181, 158, 102, 0.45);
}

@media (max-width: 768px) {
  .pwd-form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pwd-form-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .btn-update-password {
    width: 100%;
    justify-content: center;
    padding: 0.85rem;
  }
}

/* ==========================================================================
   SEO FAQ Accordion Section Styling
   ========================================================================== */
.seo-faq-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #0b1a10 0%, #112517 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.seo-faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(181, 158, 102, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-header .section-subtitle-gold {
  display: inline-block;
  color: var(--primary-gold);
  font-family: var(--nav-font);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.faq-header h2 {
  font-family: var(--nav-font);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.faq-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-accordion-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(181, 158, 102, 0.22);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.faq-accordion-item:hover {
  border-color: rgba(181, 158, 102, 0.55);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.faq-accordion-item.active {
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.08);
}

.faq-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.6rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--nav-font);
  font-size: 1.08rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.25s ease;
}

.faq-accordion-btn:hover {
  color: var(--primary-gold);
}

.faq-accordion-item.active .faq-accordion-btn {
  color: var(--primary-gold);
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(181, 158, 102, 0.15);
  color: var(--primary-gold);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-accordion-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary-gold);
  color: #0b1a10;
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  padding: 0 1.6rem;
}

.faq-accordion-item.active .faq-accordion-body {
  max-height: 400px;
  opacity: 1;
  padding: 0 1.6rem 1.4rem 1.6rem;
}

.faq-accordion-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

.faq-accordion-body a {
  color: var(--primary-gold);
  text-decoration: underline;
  font-weight: 600;
}

.faq-accordion-body a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .seo-faq-section {
    padding: 3.5rem 1rem;
  }
  .faq-header h2 {
    font-size: 1.75rem;
  }
  .faq-accordion-btn {
    padding: 1.1rem 1.2rem;
    font-size: 0.98rem;
  }
  .faq-accordion-item.active .faq-accordion-body {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }
}