/* =============================
   Ceylon Roar Base Styles
   ============================= */



   :root {
  --navy-950: #0b1a2b;
  --navy-900: #0f2338;
  --navy-800: #16324c;
  --emerald-600: #0f7a5c;
  --emerald-500: #139b73;
  --gold-500: #f4a23b;
  --gold-600: #e08a1f;
  --sand-50: #fbf7f1;
  --sand-100: #f4efe6;
  --white: #ffffff;
  --ink: #1c2430;
  --muted: #5d6b7a;
  --shadow-sm: 0 8px 20px rgba(15, 35, 56, 0.08);
  --shadow-md: 0 20px 45px rgba(15, 35, 56, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --section-pad: 60px;
  --section-pad-lg: 80px;
}



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

body {
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

p {
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  color: var(--navy-900);
  
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 600;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

.section-lg {
  padding: var(--section-pad-lg) 0;
}

.section-header {
  margin-bottom: 40px;
  text-align: left;
}

.section-header .eyebrow {
  margin-bottom: 8px;
}

.section-header p {
  max-width: 680px;
  margin-top: 12px;
  font-size: 0.95rem;
}

/* =============================
   Welcome Section
   ============================= */
.welcome-section {
  position: relative;
  overflow: hidden;
}

.welcome-section::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 59, 0.18), transparent 70%);
  right: -180px;
  top: -200px;
  pointer-events: none;
}

.welcome-section::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 122, 92, 0.14), transparent 70%);
  left: -160px;
  bottom: -220px;
  pointer-events: none;
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 44px;
  align-items: center;
}

.welcome-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}

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

.stat {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(15, 35, 56, 0.08);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 140px;
  box-shadow: 0 10px 22px rgba(15, 35, 56, 0.08);
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.welcome-card {
  position: relative;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(160deg, #f8f3ea 0%, #eaf3ee 100%);
  border: 1px solid rgba(15, 35, 56, 0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.welcome-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(244, 162, 59, 0.2), transparent 45%),
    radial-gradient(circle at 20% 90%, rgba(15, 122, 92, 0.18), transparent 50%);
  opacity: 0.85;
  pointer-events: none;
}

.welcome-card > * {
  position: relative;
  z-index: 1;
}

.welcome-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.welcome-card-header h3 {
  margin: 0;
}

.welcome-highlights {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.highlight-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 35, 56, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 35, 56, 0.08);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 26, 43, 0.08);
  color: var(--navy-900);
}

.highlight-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight-text strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.highlight-text span {
  color: var(--muted);
  font-size: 0.88rem;
}

.welcome-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mini-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 26, 43, 0.08);
  color: var(--navy-800);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--emerald-600);
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sand-100);
  color: var(--navy-800);
  font-size: 0.82rem;
  font-weight: 600;
}

/* =============================
   Buttons & Links
   ============================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  font-size: 0.95rem;
  min-height: 44px;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
}

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

.btn-secondary {
  background: var(--emerald-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--emerald-500);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-outline.dark {
  border-color: rgba(15, 35, 56, 0.3);
  color: var(--navy-900);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.text-link {
  color: var(--emerald-600);
  font-weight: 600;
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.btn-icon:hover {
  background: var(--gold-600);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 700;
  font-size: 0.82rem;
}

/* =============================
   Header & Navigation
   ============================= */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 6px 18px rgba(12, 26, 43, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: auto;
  height: 62px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(15, 35, 56, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  color: var(--navy-900);
}

.nav-menu a:hover {
  color: var(--emerald-600);
  transition: color 0.2s ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.dropdown-panel {
  position: absolute;
  top: 42px;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: 14px;
  padding: 14px;
  min-width: 220px;
  display: grid;
  gap: 10px;
  z-index: 20;
}

.nav-dropdown[open] .dropdown-panel {
  animation: fadeUp 0.2s ease;
}

/* =============================
   Featured Blog Header
   ============================= */
.featured-blog-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(15, 35, 56, 0.15);
  background: var(--white);
  min-height: 500px;
}

.featured-blog-content {
  position: relative;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(11, 26, 43, 0.95) 0%, rgba(15, 35, 56, 0.85) 100%);
  color: var(--white);
}

.featured-blog-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../images/hero/hero-main.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.3;
}

.featured-blog-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.featured-blog-meta a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.featured-blog-meta a:hover {
  color: var(--gold-500);
}

.featured-blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.featured-blog-meta .divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
}

.featured-blog-date {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.featured-blog-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 14px;
  background: rgba(244, 162, 59, 0.2);
  border: 1px solid rgba(244, 162, 59, 0.4);
  border-radius: 999px;
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-blog-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 16px 0 0 0;
}

.featured-blog-source {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-blog-source-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.featured-blog-source-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.featured-blog-source-name {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.featured-blog-source-category {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.featured-blog-image {
  position: relative;
  overflow: hidden;
}

.featured-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-blog-image:hover img {
  transform: scale(1.05);
}

/* =============================
   Blog Detail Hero
   ============================= */
.blog-hero {
  padding: 36px 0 70px;
  background: var(--sand-50);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  min-height: 520px;
}

.blog-hero-content {
  position: relative;
  padding: 56px;
  display: flex;
  align-items: center;
  color: var(--white);
}

.blog-hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--blog-hero-bg, url("../images/hero/hero-secondary.jpg"));
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  filter: saturate(0.9) contrast(1.05);
}

.blog-hero-content::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(127, 197, 255, 0.22), transparent 45%),
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.16), transparent 48%),
    radial-gradient(circle at 25% 75%, rgba(18, 152, 115, 0.2), transparent 50%),
    linear-gradient(125deg, rgba(8, 17, 31, 0.92), rgba(9, 18, 32, 0.74));
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.blog-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.blog-hero-back:hover {
  color: var(--gold-500);
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.blog-hero-meta a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.blog-hero-meta a:hover {
  color: var(--gold-500);
}

.blog-hero-meta .divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.35);
}

.blog-hero-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-hero-date {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.blog-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.15;
  margin: 0;
}

.blog-hero p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-size: 1rem;
}

.blog-hero-source {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-hero-source-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-hero-source-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-source-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-hero-source-name {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.blog-hero-source-category {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.blog-hero-image {
  position: relative;
  overflow: hidden;
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 43, 0.05), rgba(11, 26, 43, 0.25));
}

/* =============================
   Hero Sections
   ============================= */
.hero {
  position: relative;
  color: var(--white);
  padding: 100px 0 110px;
  background: linear-gradient(120deg, rgba(11, 26, 43, 0.9), rgba(11, 26, 43, 0.7)), url("../images/hero/hero-main.jpg");
  background-size: cover;
  background-position: center;
}

.hero.alt {
  background: linear-gradient(120deg, rgba(11, 26, 43, 0.88), rgba(11, 26, 43, 0.68)), url("../images/hero/hero-secondary.jpg");
}

.hero.hero-cricket-page {
  background:
    linear-gradient(120deg, rgba(11, 26, 43, 0.9), rgba(11, 26, 43, 0.72)),
    url("../images/hero/cricket-tours-hero-web.jpg");
  background-size: cover;
  background-position: center;
}

.hero.hero-supporter-page {
  background:
    linear-gradient(120deg, rgba(11, 26, 43, 0.9), rgba(11, 26, 43, 0.72)),
    url("../images/hero/supporter-tours-hero-web.jpg");
  background-size: cover;
  background-position: center;
}

.hero.hero-venues-page {
  background:
    linear-gradient(120deg, rgba(11, 26, 43, 0.9), rgba(11, 26, 43, 0.72)),
    url("../images/hero/venues-facilities-hero-web.jpg");
  background-size: cover;
  background-position: center;
}

.hero.hero-blog-page {
  background:
    linear-gradient(120deg, rgba(11, 26, 43, 0.9), rgba(11, 26, 43, 0.72)),
    url("../images/blog/blog-cricket-galle.jpg");
  background-size: cover;
  background-position: center;
}

.hero .hero-content {
  max-width: 1200px;
}

.hero-slider {
  padding: 0;
  background: none;
}

.hero-slider .slider {
  position: relative;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 130px 0 140px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hero-slider .slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 700;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  font-size: 1rem;
}

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

.hero-meta {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-meta .badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.8rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: -30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--gold-500);
  border-color: var(--gold-500);
}

/* =============================
   News Ticker
   ============================= */
.news-ticker {
  background: var(--navy-950);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.ticker-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ticker-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--emerald-600);
  color: var(--white);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-viewport {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.ticker-move {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.ticker-track li {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ticker-track li::before {
  content: "*";
  color: var(--gold-500);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-move {
    animation: none;
  }
}

/* =============================
   Layout Helpers
   ============================= */
.grid {
  display: grid;
  gap: 24px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.venues-hero {
  margin: 24px 0 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.venues-hero img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.venues-credit {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: right;
}

.venues-credit a {
  color: var(--emerald-600);
  font-weight: 600;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(15, 35, 56, 0.08);
  padding: 24px;
  border: 1px solid rgba(15, 35, 56, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(15, 35, 56, 0.12);
  transform: translateY(-2px);
}

.services-card {
  position: relative;
  padding: 30px 32px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f7f4 100%);
  box-shadow: 0 18px 40px rgba(15, 35, 56, 0.12);
  border: 1px solid rgba(15, 35, 56, 0.08);
  overflow: hidden;
}

.services-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-500), #0f7a5c);
}

.services-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.services-card:hover {
  box-shadow: 0 24px 56px rgba(15, 35, 56, 0.16);
  transform: translateY(-3px);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.card .btn {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.venue-card {
  padding: 0;
  overflow: hidden;
}

.venue-card .venue-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.venue-card .venue-body {
  padding: 22px 24px 24px;
}

.venue-card p {
  margin-bottom: 0;
}

.topic-card .topic-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(244, 162, 59, 0.2), rgba(15, 122, 92, 0.18));
  border: 1px solid rgba(15, 35, 56, 0.08);
  color: var(--navy-900);
}

.topic-card .topic-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card .step-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 16px;
  background: linear-gradient(135deg, rgba(244, 162, 59, 0.22), rgba(15, 122, 92, 0.16));
  border: 1px solid rgba(15, 35, 56, 0.1);
  color: var(--navy-900);
  box-shadow: 0 10px 18px rgba(15, 35, 56, 0.08);
}

.step-card .step-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-sand {
  background: var(--sand-50);
}

/* =============================
   Journey Cards
   ============================= */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.journey-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 35, 56, 0.08);
  display: grid;
  grid-template-rows: 190px 1fr;
}

.journey-media {
  position: relative;
}

.journey-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 32, 0.15), rgba(9, 18, 32, 0.45));
}

.journey-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.journey-content {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.journey-content h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}

.journey-content p {
  margin: 0;
}

.journey-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.journey-actions .btn {
  padding: 10px 20px;
}

.journey-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journey-list span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand-100);
  color: var(--navy-800);
  font-size: 0.72rem;
  font-weight: 600;
}

/* =============================
   About Page
   ============================= */
.about-hero {
  background: var(--sand-50);
  padding: 40px 0 70px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
}

.about-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-stat {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(15, 35, 56, 0.08);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 10px 22px rgba(15, 35, 56, 0.08);
  min-width: 130px;
}

.about-stat span {
  font-weight: 700;
  color: var(--navy-900);
}

.about-stat small {
  font-size: 0.75rem;
  color: var(--muted);
}

.about-hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 14px;
}

.about-hero-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(15, 35, 56, 0.16);
  border: 1px solid rgba(15, 35, 56, 0.06);
}

.about-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 32, 0.05), rgba(9, 18, 32, 0.55));
}

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

.about-hero-card.tall {
  grid-row: span 2;
}

.about-hero-card.wide {
  grid-column: span 2;
}

.about-hero-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 40px;
  align-items: stretch;
}

.about-story-card {
  background: var(--white);
  border-radius: 20px;
  padding: 38px;
  border: 1px solid rgba(15, 35, 56, 0.08);
  box-shadow: 0 16px 34px rgba(15, 35, 56, 0.12);
  display: grid;
  gap: 22px;
}

.about-story-card > p {
  max-width: 41ch;
}

.about-story-list {
  display: grid;
  gap: 14px;
}

.about-story-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245, 239, 231, 0.55), rgba(245, 239, 231, 0.95));
  border: 1px solid rgba(15, 35, 56, 0.08);
  box-shadow: 0 12px 26px rgba(15, 35, 56, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-story-item:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 122, 92, 0.2);
  box-shadow: 0 18px 34px rgba(15, 35, 56, 0.1);
}

.about-story-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 122, 92, 0.12);
  color: var(--emerald-600);
}

.about-story-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-story-text strong {
  display: block;
  color: var(--navy-900);
  font-size: 1rem;
  margin-bottom: 4px;
}

.about-story-text span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.about-story-media {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  height: 100%;
  min-height: 520px;
  align-self: stretch;
}

.about-story-media .about-hero-card {
  min-height: 0;
}

.about-story-media.about-story-media--duo {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 520px;
}

.about-story-section .about-story-media .about-hero-card img {
  filter: saturate(1.05) contrast(1.04);
}

.about-story-section .about-story-media.about-story-media--duo .about-hero-card:nth-child(1) img {
  object-position: center 38%;
}

.about-story-section .about-story-media.about-story-media--duo .about-hero-card:nth-child(2) img {
  object-position: center 55%;
}

.about-story-media .about-hero-card::after {
  background: linear-gradient(180deg, rgba(9, 18, 32, 0.04), rgba(9, 18, 32, 0.42));
}

.about-story-media .about-hero-card.tall {
  grid-row: span 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.trust-panel {
  background: linear-gradient(140deg, #0b1a2b 0%, #0f2a46 100%);
  color: var(--white);
  border-radius: 22px;
  padding: 30px;
  display: grid;
  gap: 16px;
  box-shadow: 0 20px 44px rgba(11, 26, 43, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-panel h3,
.trust-panel p {
  color: var(--white);
}

.trust-pill {
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.trust-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.trust-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

/* =============================
   FAQ Page Hero
   ============================= */
.faq-hero {
  background: var(--sand-50);
  padding: 36px 0 70px;
}

.faq-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
}

.faq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.faq-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-hero-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 140px;
  gap: 14px;
}

.faq-hero-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(15, 35, 56, 0.16);
  border: 1px solid rgba(15, 35, 56, 0.06);
}

.faq-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.faq-hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 32, 0.05), rgba(9, 18, 32, 0.55));
}

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

.faq-hero-card.tall {
  grid-row: span 2;
}

.faq-hero-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.section-navy {
  background: var(--navy-950);
  color: var(--white);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-navy p {
  color: rgba(255, 255, 255, 0.7);
}

/* =============================
   Tour Cards & Listings
   ============================= */
.tour-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(15, 35, 56, 0.08);
  border: 1px solid rgba(15, 35, 56, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tour-card:hover {
  box-shadow: 0 8px 24px rgba(15, 35, 56, 0.12);
  transform: translateY(-2px);
}

.tour-card img {
  border-radius: 0;
  height: 200px;
  object-fit: cover;
  display: block;
}

.tour-card > *:not(img) {
  padding: 0 14px;
}

.tour-card > *:last-child {
  padding-bottom: 14px;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

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

.tour-card.modern {
  gap: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(15, 35, 56, 0.12);
  border: 1px solid rgba(15, 35, 56, 0.08);
}

.tour-card.modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 35, 56, 0.16);
}

.tour-card.modern > *:not(img),
.tour-card.modern > *:last-child {
  padding: 0;
}

.tour-card.modern .tour-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-card.modern .tour-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-card.modern .tour-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 32, 0.05), rgba(9, 18, 32, 0.5));
}

.tour-card.modern .tour-badges {
  position: absolute;
  left: 18px;
  bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 1;
}

.tour-card.modern .tour-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.tour-card.modern .tour-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tour-card.modern h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
}

.tour-card.modern p {
  margin: 0;
  font-size: 0.95rem;
}

.tour-card.modern .tour-actions {
  margin-top: auto;
  gap: 12px;
}

.tour-card.modern .tour-actions .btn {
  padding: 10px 18px;
}

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.filter-pill {
  border: 1px solid rgba(15, 35, 56, 0.15);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover {
  border-color: rgba(15, 35, 56, 0.3);
  background: var(--sand-100);
}

.filter-pill.active {
  background: var(--emerald-600);
  color: var(--white);
  border-color: transparent;
}

/* =============================
   Blog Articles
   ============================= */
.blog-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
}

.blog-article {
  max-width: none;
}

.blog-article img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 24px 0 32px 0;
  box-shadow: 0 4px 16px rgba(15, 35, 56, 0.1);
}

.article-body {
  line-height: 1.8;
}

.article-body h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--sand-100);
}

.article-body h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.article-body h3 {
  margin-top: 20px;
  margin-bottom: 12px;
  color: var(--emerald-600);
}

.article-body p {
  margin-bottom: 16px;
  color: var(--ink);
}

.article-body ul,
.article-body ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

.article-body li {
  margin-bottom: 8px;
  color: var(--ink);
}

/* =============================
   Blog Sidebar
   ============================= */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--sand-50);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(15, 35, 56, 0.08);
}

.sidebar-widget h4 {
  font-size: 0.95rem;
  color: var(--navy-900);
  margin-bottom: 14px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--emerald-600);
}

.sidebar-widget ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.sidebar-widget li {
  margin: 0;
}

.sidebar-widget a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
  display: block;
}

.sidebar-widget a:hover {
  color: var(--emerald-600);
}

.sidebar-widget.cta {
  background: linear-gradient(120deg, rgba(15, 122, 92, 0.1), rgba(244, 162, 59, 0.1));
  border-color: rgba(15, 122, 92, 0.2);
}

.sidebar-widget.cta h4 {
  color: var(--emerald-600);
}

.sidebar-widget.cta p {
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.5;
}

.sidebar-widget.cta .btn {
  width: 100%;
  justify-content: center;
  padding: 10px 12px;
  font-size: 0.85rem;
}

.sidebar-category-tag {
  display: inline-block;
  background: var(--white);
  border: 1px solid rgba(15, 35, 56, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--navy-800);
  margin: 4px 4px 4px 0;
  transition: all 0.2s ease;
}

.sidebar-category-tag:hover {
  background: var(--emerald-600);
  color: var(--white);
  border-color: transparent;
}

/* =============================
   Blog Articles
   ============================= */
.blog-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 35, 56, 0.08);
  border: 1px solid rgba(15, 35, 56, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 28px rgba(15, 35, 56, 0.12);
  transform: translateY(-2px);
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.blog-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

/* =============================
   Feature Lists & Highlights
   ============================= */
.icon-list {
  display: grid;
  gap: 14px;
}

.icon-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--navy-800);
}

.highlight-banner {
  background: linear-gradient(120deg, rgba(15, 122, 92, 0.12), rgba(244, 162, 59, 0.12));
  padding: 26px;
  border-radius: var(--radius-md);
}

/* =============================
   Benefit Split
   ============================= */
.benefits-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.benefit-hero {
  border-radius: var(--radius-lg);
  padding: 44px;
  color: var(--white);
  display: grid;
  gap: 16px;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15, 35, 56, 0.12);
}

.benefit-hero h2,
.benefit-hero p {
  color: var(--white);
}

.benefit-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 160px;
  gap: 16px;
}

.gallery-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(15, 35, 56, 0.16);
  border: 1px solid rgba(15, 35, 56, 0.06);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 32, 0.05), rgba(9, 18, 32, 0.55));
}

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

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.benefit-stack {
  display: grid;
  gap: 16px;
}

.benefit-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(15, 35, 56, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 8px 24px rgba(15, 35, 56, 0.12);
  transform: translateY(-2px);
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* =============================
   FAQ & Accordion
   ============================= */
.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list.modern {
  counter-reset: faq;
}

.faq-item {
  border: 1px solid rgba(15, 35, 56, 0.12);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  background: var(--white);
  transition: all 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(15, 35, 56, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.faq-item p {
  margin-top: 12px;
  font-size: 0.9rem;
}

.faq-list.modern .faq-item {
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(15, 35, 56, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
}

.faq-list.modern .faq-item[open] {
  box-shadow: 0 4px 16px rgba(15, 35, 56, 0.08);
}

.faq-list.modern .faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-list.modern .faq-item summary::before {
  counter-increment: faq;
  content: counter(faq);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 122, 92, 0.12);
  color: var(--emerald-600);
  font-weight: 700;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-list.modern .faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--emerald-600);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 122, 92, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-list.modern .faq-item[open] summary::after {
  content: "–";
}

.faq-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}

.faq-aside-card {
  position: relative;
  background: linear-gradient(140deg, #0b1a2b 0%, #0f2a46 100%);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 18px;
  min-height: 380px;
  justify-items: start;
  box-shadow: 0 24px 50px rgba(11, 26, 43, 0.25);
  overflow: hidden;
}

.faq-aside-card::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 162, 59, 0.35), transparent 70%);
  right: -90px;
  top: -100px;
  opacity: 0.9;
}

.faq-aside-card::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 122, 92, 0.35), transparent 70%);
  left: -80px;
  bottom: -90px;
  opacity: 0.7;
}

.faq-aside-card h3,
.faq-aside-card p {
  color: var(--white);
}

.avatar-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.faq-aside-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-aside-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 10px 12px;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-stat span {
  font-weight: 700;
  color: var(--white);
}

.faq-stat small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

/* =============================
   Forms
   ============================= */
form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 35, 56, 0.15);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(15, 35, 56, 0.25);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 3px rgba(15, 122, 92, 0.1);
}

label {
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
  display: block;
  font-size: 0.95rem;
}

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

/* =============================
   Testimonials
   ============================= */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -180px;
  top: -200px;
  background: radial-gradient(circle, rgba(244, 162, 59, 0.2), transparent 70%);
  pointer-events: none;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  left: -150px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(15, 122, 92, 0.18), transparent 70%);
  pointer-events: none;
}

.testimonial-card {
  position: relative;
  padding: 26px;
  border-radius: 22px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(15, 122, 92, 0.25), rgba(244, 162, 59, 0.35)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 40px rgba(15, 35, 56, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  right: -40px;
  top: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 70%);
  opacity: 0.6;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(15, 35, 56, 0.16);
}

.testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-icon {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--emerald-600);
  font-family: "Playfair Display", serif;
}

.rating {
  display: inline-flex;
  gap: 5px;
}

.rating span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 1px rgba(244, 162, 59, 0.2);
}

.testimonial-text {
  margin: 0;
  font-style: italic;
  color: var(--navy-900);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 122, 92, 0.18), rgba(244, 162, 59, 0.2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy-900);
}

.testimonial-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
}

.testimonial-role {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =============================
   Tourism Listing
   ============================= */
.cr-section {
  position: relative;
  padding: 100px 0;
}

.cr-section--soft {
  background:
    radial-gradient(circle at top right, rgba(244, 162, 59, 0.12), transparent 32%),
    linear-gradient(180deg, #fffaf2 0%, #f7fbf8 100%);
}

.cr-page-hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(11, 26, 43, 0.9), rgba(15, 35, 56, 0.7)),
    url("../images/hero/hero-tourism.jpg");
  background-size: cover;
  background-position: center;
}

.cr-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(244, 162, 59, 0.26), transparent 26%),
    radial-gradient(circle at 82% 82%, rgba(19, 155, 115, 0.22), transparent 24%);
  pointer-events: none;
}

.cr-page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cr-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cr-page-hero h1 {
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5vw, 4.7rem);
  color: var(--white);
}

.cr-page-hero p {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.cr-section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
}

.cr-section-heading:not(.text-center) {
  margin-left: 0;
}

.cr-section-heading span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--emerald-600);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cr-section-heading h2 {
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.cr-section-heading p {
  max-width: 680px;
  font-size: 1rem;
}

.cr-tour-grid,
.cr-highlight-grid,
.cr-service-grid {
  display: grid;
  gap: 28px;
}

.cr-tour-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cr-highlight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cr-service-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: stretch;
}

.cr-tour-card,
.cr-highlight-card,
.cr-service-card {
  background: var(--white);
  border: 1px solid rgba(15, 35, 56, 0.08);
  box-shadow: var(--shadow-sm);
}

.cr-tour-card {
  overflow: hidden;
  border-radius: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.cr-tour-card__image {
  position: relative;
}

.cr-tour-card__image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.cr-tour-card__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.cr-tour-card__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--sand-100);
  color: var(--navy-900);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cr-tour-card h3 {
  margin: 0;
  font-size: 1.45rem;
}

.cr-tour-card p {
  margin: 0;
}

.cr-tour-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 35, 56, 0.08);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-800);
}

.cr-tour-card__meta a {
  color: var(--emerald-600);
}

.cr-tour-card__meta a:hover {
  color: var(--emerald-500);
}

.cr-highlight-card {
  padding: 28px;
  border-radius: 20px;
}

.cr-highlight-card h3,
.cr-service-card h3 {
  margin-bottom: 10px;
}

.cr-service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cr-inline-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cr-inline-list li {
  position: relative;
  padding: 18px 18px 18px 54px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
  border: 1px solid rgba(15, 35, 56, 0.08);
  color: var(--navy-900);
  font-weight: 600;
}

.cr-inline-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--emerald-500));
  box-shadow: 0 0 0 6px rgba(19, 155, 115, 0.12);
}

.cr-service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(11, 26, 43, 0.96), rgba(15, 122, 92, 0.92));
}

.cr-service-card__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cr-service-card h3,
.cr-service-card p {
  color: var(--white);
}

.cr-tour-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px 54px;
  border-radius: 28px;
  background:
    linear-gradient(115deg, rgba(15, 35, 56, 0.96), rgba(15, 122, 92, 0.88)),
    url("../images/hero/hero-secondary.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}

.cr-tour-cta__box h2,
.cr-tour-cta__box p {
  color: var(--white);
}

.cr-tour-cta__box p {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.cr-single-tour-hero {
  position: relative;
  padding: 130px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(244, 162, 59, 0.12), transparent 26%),
    linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}

.cr-single-tour-hero__grid,
.cr-tour-info-grid,
.cr-gallery-grid {
  display: grid;
  gap: 32px;
}

.cr-single-tour-hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
}

.cr-single-tour-hero__content h1 {
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.cr-single-tour-hero__content p {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.cr-single-tour-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.cr-single-tour-hero__meta div,
.cr-tour-info-card,
.cr-highlight-box {
  border: 1px solid rgba(15, 35, 56, 0.08);
  box-shadow: var(--shadow-sm);
}

.cr-single-tour-hero__meta div {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--white);
}

.cr-single-tour-hero__meta small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cr-single-tour-hero__meta strong {
  color: var(--navy-900);
  font-size: 0.98rem;
  line-height: 1.4;
}

.cr-single-tour-hero__image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.cr-highlight-box {
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  color: var(--navy-900);
  font-weight: 700;
}

.cr-itinerary-section {
  background: linear-gradient(180deg, #fffaf3 0%, #f7fbf9 100%);
}

.cr-itinerary-list {
  display: grid;
  gap: 18px;
}

.cr-itinerary-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 26px 30px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(15, 35, 56, 0.08);
  box-shadow: var(--shadow-sm);
}

.cr-itinerary-day {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.cr-itinerary-content h3 {
  margin-bottom: 10px;
}

.cr-itinerary-content p {
  margin: 0;
}

.cr-tour-info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cr-tour-info-card {
  padding: 30px;
  border-radius: 24px;
  background: var(--white);
}

.cr-tour-info-card > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--emerald-600);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cr-tour-info-card h3 {
  margin-bottom: 12px;
}

.cr-tour-info-card .cr-inline-list {
  margin-top: 18px;
}

.cr-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cr-gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.cr-cricket-tour-hero {
  background:
    radial-gradient(circle at top left, rgba(244, 162, 59, 0.14), transparent 26%),
    linear-gradient(180deg, #eef6fb 0%, #ffffff 100%);
}

.cr-itinerary-timeline {
  display: grid;
  gap: 18px;
}

/* =============================
   Cricket Itinerary Page
   ============================= */
.itinerary-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 88px;
  background:
    linear-gradient(120deg, rgba(255, 250, 243, 0.96), rgba(238, 248, 246, 0.96)),
    url("../images/itinerary/galle-international-stadium.jpg");
  background-size: cover;
  background-position: center;
}

.itinerary-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.itinerary-hero__copy h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.itinerary-hero__copy p {
  max-width: 660px;
  margin-bottom: 26px;
  font-size: 1.05rem;
}

.itinerary-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}

.itinerary-hero__stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 35, 56, 0.08);
  box-shadow: var(--shadow-sm);
}

.itinerary-hero__stats small,
.itinerary-package__header span,
.itinerary-inclusion-grid span {
  display: block;
  color: var(--emerald-600);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.itinerary-hero__stats strong {
  display: block;
  margin-top: 6px;
  color: var(--navy-900);
  line-height: 1.35;
}

.itinerary-hero__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  align-items: stretch;
}

.itinerary-hero__main-image,
.itinerary-hero__image-stack img,
.itinerary-gallery img {
  width: 100%;
  object-fit: cover;
}

.itinerary-hero__main-image {
  height: 540px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.itinerary-hero__image-stack {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}

.itinerary-hero__image-stack img {
  height: 100%;
  min-height: 0;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.itinerary-section {
  padding: 92px 0;
}

.itinerary-section--intro {
  padding: 70px 0;
}

.itinerary-section--soft {
  background: linear-gradient(180deg, #f7fbf9 0%, #fff8ef 100%);
}

.itinerary-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.itinerary-intro-grid h2 {
  margin: 12px 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.itinerary-route-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px;
  border-radius: 24px;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.itinerary-route-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.itinerary-package-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}

.itinerary-package {
  padding: 30px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(15, 35, 56, 0.08);
  box-shadow: var(--shadow-sm);
}

.itinerary-package--featured {
  border-color: rgba(15, 122, 92, 0.22);
  box-shadow: var(--shadow-md);
}

.itinerary-package__header h3 {
  margin: 10px 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.itinerary-package__header p {
  margin: 0;
}

.itinerary-package__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.itinerary-package__meta strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--sand-100);
  color: var(--navy-900);
  font-size: 0.9rem;
}

.itinerary-day-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.itinerary-day-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border: 1px solid rgba(15, 35, 56, 0.08);
}

.itinerary-day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 38px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.itinerary-day-list h4 {
  margin: 0 0 4px;
  color: var(--navy-900);
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.itinerary-day-list p {
  margin: 0;
  font-size: 0.9rem;
}

.itinerary-inclusion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.itinerary-inclusion-grid article {
  min-height: 210px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(15, 35, 56, 0.08);
  box-shadow: var(--shadow-sm);
}

.itinerary-inclusion-card__image {
  display: block;
  width: 100%;
  height: 170px;
  margin-top: 16px;
  border-radius: 18px;
  object-fit: cover;
}

.itinerary-inclusion-grid h3 {
  margin: 20px 0 10px;
  font-size: 1.35rem;
}

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

.itinerary-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  background: var(--navy-900);
}

.itinerary-gallery img {
  height: 100%;
  min-height: 310px;
  transition: transform 0.25s ease;
}

.itinerary-gallery figure:hover img {
  transform: scale(1.04);
}

.itinerary-gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(11, 26, 43, 0.78);
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.itinerary-source-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

/* =============================
   CTA Strips
   ============================= */
.cta-strip {
  background: linear-gradient(120deg, rgba(15, 35, 56, 0.95), rgba(15, 122, 92, 0.9));
  color: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 8px 24px rgba(15, 35, 56, 0.12);
}

.cta-strip h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

/* =============================
   Footer
   ============================= */
.site-footer {
  background: linear-gradient(120deg, rgba(11, 26, 43, 0.98), rgba(15, 35, 56, 0.92)),
    url("../images/hero/footer-map.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.footer-cta h2 {
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-grid li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--gold-500);
}

/* =============================
   Utility
   ============================= */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* =============================
   Animations
   ============================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cr-section {
  padding: 100px 0;
}

.cr-page-hero,
.cr-single-tour-hero {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #081420 0%, #0d2233 55%, #17354c 100%);
  overflow: hidden;
}

.cr-page-hero::before,
.cr-single-tour-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 182, 72, 0.18), transparent 25%);
}

.cr-page-hero__content,
.cr-single-tour-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.cr-page-hero__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #f0b35b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cr-page-hero h1,
.cr-single-tour-hero h1 {
  color: #ffffff;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cr-page-hero p,
.cr-single-tour-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 0;
}

.cr-section-heading {
  max-width: 780px;
  margin: 0 auto 50px;
}

.cr-section-heading span {
  display: inline-block;
  color: #d79538;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(18, 140, 126, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 40px rgba(18, 140, 126, 0.42);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(240, 179, 91, 0.9);
  outline-offset: 3px;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}
