/* 
   Chandra Shekhar Tour Planner & Advisor - Central Stylesheet
   Design Language: Premium Spiritual Pilgrim Tourism Website
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --primary: #721c24; /* Temple Deep Red / Maroon */
  --primary-rgb: 114, 28, 36;
  --secondary: #e65c00; /* Warm Saffron / Orange */
  --secondary-rgb: 230, 92, 0;
  --accent: #c5a059; /* Premium Gold Accents */
  --accent-rgb: 197, 160, 89;
  
  --bg-site: #fbf9f5; /* Elegant Warm Ivory */
  --bg-card: #ffffff;
  --bg-dark: #2c0e12; /* Rich dark maroon-black for headers/footers */
  --bg-dark-rgb: 44, 14, 18;
  
  --text-dark: #262626; /* Dark gray for maximum legibility */
  --text-muted: #5e5e5e;
  --text-light: #f5f5f5;
  
  --border-color: #ebdcb9; /* Subtle gold-tinted borders */
  
  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(114, 28, 36, 0.04);
  --shadow-md: 0 8px 24px rgba(114, 28, 36, 0.08);
  --shadow-lg: 0 16px 40px rgba(114, 28, 36, 0.12);
  
  /* Borders */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-round: 50%;
  
  /* Typography */
  --font-heading: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout sizes */
  --max-width: 1200px;
  --header-height: 80px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles & Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-site);
  color: var(--text-dark);
  font-family: var(--font-body);
}

body {
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 0; /* will be adjusted dynamically or via mobile media queries for fixed bar */
}

/* Accessibility Focus States */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

/* Typography Custom Rules */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  text-align: center;
  position: relative;
  margin-bottom: 2.5rem;
}

/* Decorative Section Header Line */
h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), var(--accent), var(--secondary), transparent);
  margin: 0.8rem auto 0;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-site);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light, #962832);
  border: 2px solid var(--bg-site);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--accent);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-info a {
  color: var(--accent);
  font-weight: 600;
}

.top-bar-info a:hover {
  color: #fff;
}

.top-bar-promo {
  font-style: italic;
  color: var(--accent);
}

/* Sticky Header */
.main-header {
  height: var(--header-height);
  background-color: var(--bg-dark);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  display: flex;
  align-items: center;
}

.main-header.scrolled {
  height: 70px;
  background-color: rgba(44, 14, 18, 0.95);
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: radial-gradient(circle, var(--accent) 0%, var(--primary) 100%);
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
}

.logo-icon svg {
  fill: #fff;
  width: 25px;
  height: 25px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.logo-subtitle {
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.5px;
}

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

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

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

.header-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, #cc5200 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(230, 92, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 92, 0, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-tel {
  background-color: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-tel:hover {
  background-color: #b59049;
  transform: translateY(-2px);
  color: #fff;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 101;
}

.mobile-nav-toggle span,
.mobile-nav-toggle span::before,
.mobile-nav-toggle span::after {
  content: '';
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  position: absolute;
  left: 2.5px;
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-nav-toggle span {
  top: 13.5px;
}

.mobile-nav-toggle span::before {
  top: -8px;
}

.mobile-nav-toggle span::after {
  top: 8px;
}

.mobile-nav-toggle.active span {
  background-color: transparent;
}

.mobile-nav-toggle.active span::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-nav-toggle.active span::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 4rem 0;
  overflow: hidden;
}

/* Use responsive hero image background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(44, 14, 18, 0.9) 0%, rgba(44, 14, 18, 0.6) 50%, rgba(44, 14, 18, 0.4) 100%);
  z-index: -1;
}

/* Spiritual pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(197, 160, 89, 0.1) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: -1;
}

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

.hero-tagline {
  font-family: var(--font-body);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: var(--accent);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-title-main {
  display: block;
}

.hero-title-sub {
  display: block;
  font-size: 0.6em;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.3rem;
}

.hero-desc {
  color: #ebdcb9;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Trust Bar / Trust Highlights */
.trust-bar {
  background-color: var(--bg-card);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: var(--radius-md);
  max-width: calc(var(--max-width) - 3rem);
  margin-left: auto;
  margin-right: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1rem;
}

.trust-item:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.trust-icon {
  width: 32px;
  height: 32px;
  color: var(--secondary);
  margin-bottom: 0.2rem;
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
}

.trust-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* About Intro Section */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-text h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.about-intro-text p {
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.about-feature-icon {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.about-feature-title {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.about-feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-intro-image-container {
  position: relative;
}

.about-intro-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--border-color);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary);
  color: var(--accent);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Featured Tour Card & Card System */
.featured-section {
  background-color: #f5eedc; /* Golden ivory backdrop */
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.featured-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: repeating-linear-gradient(45deg, var(--accent), var(--accent) 10px, transparent 10px, transparent 20px);
  opacity: 0.2;
}

.featured-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 2px solid var(--border-color);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.featured-card-img-wrap {
  position: relative;
  min-height: 350px;
}

.featured-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--secondary);
  color: #fff;
  padding: 0.4rem 1rem;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-card-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.featured-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.featured-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.featured-desc {
  margin-bottom: 1.5rem;
}

.featured-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  background-color: var(--bg-site);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed var(--accent);
}

.featured-spec-item {
  display: flex;
  flex-direction: column;
}

.featured-spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

.featured-spec-value {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.featured-pricing-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.featured-price-block {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--secondary);
  font-weight: 800;
}

.price-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Tour Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.tour-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.tour-card-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.tour-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.tour-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent);
}

.tour-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.tour-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.tour-card-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.tour-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tour-tag {
  background-color: var(--bg-site);
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}

.tour-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: auto;
}

.tour-card-price {
  display: flex;
  flex-direction: column;
}

.tour-card-price-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tour-card-price-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 700;
}

/* Destinations Section */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dest-card {
  position: relative;
  aspect-ratio: 9/12;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
}

.dest-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.dest-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 14, 18, 0.95) 0%, rgba(44, 14, 18, 0.5) 40%, transparent 100%);
  z-index: 1;
}

.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 2;
  color: #fff;
}

.dest-card-title {
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.dest-card-desc {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

/* Why Choose Us Cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background-color: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--secondary);
}

.why-card-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  background-color: var(--bg-site);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-color);
}

.why-card-icon svg {
  width: 25px;
  height: 25px;
}

.why-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.why-card-desc {
  font-size: 0.9rem;
}

/* Sightseeing / Experience Grid */
.sight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.sight-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.sight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.sight-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  z-index: 1;
}

.sight-title {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.1rem;
}

.sight-desc {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* Timeline/Itinerary Component (Used in Tour Details) */
.itinerary-container {
  position: relative;
  padding: 1rem 0;
  margin: 2.5rem 0;
}

.itinerary-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  width: 3px;
  background: linear-gradient(var(--secondary), var(--accent), var(--secondary));
  border-radius: 2px;
}

.itinerary-day {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 5rem;
}

.itinerary-day:last-child {
  margin-bottom: 0;
}

.itinerary-day-badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 64px;
  background-color: var(--primary);
  color: var(--accent);
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.itinerary-day-badge .num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1;
}

.itinerary-day-badge .label {
  font-size: 0.6rem;
  text-transform: uppercase;
  font-weight: 700;
}

.itinerary-day-content {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}

.itinerary-day-content::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: var(--bg-card);
  border-left: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transform: rotate(45deg);
}

.itinerary-day-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.itinerary-day-dest {
  font-size: 0.8rem;
  background-color: var(--bg-site);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  color: var(--secondary);
  border: 1px solid var(--border-color);
}

.itinerary-day-body p {
  margin-bottom: 1rem;
}

.itinerary-day-sightseeing {
  background-color: var(--bg-site);
  border-left: 3px solid var(--accent);
  padding: 0.8rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
}

.itinerary-day-sightseeing strong {
  color: var(--primary);
}

/* Tour Info Tabs/Layout Grid for Details Page */
.tour-details-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.tour-details-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-box-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.8rem;
}

.sidebar-pricing {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #150507 100%);
  color: #fff;
  border-color: var(--accent);
  position: relative;
  overflow: hidden;
}

.sidebar-pricing::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background-color: rgba(197, 160, 89, 0.1);
  border-radius: 50%;
}

.sidebar-pricing .sidebar-box-title {
  color: var(--accent);
  border-bottom-color: rgba(197, 160, 89, 0.2);
}

.sidebar-pricing .price-val {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.sidebar-pricing .price-subtext {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* Inclusions & Exclusions List */
.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.policy-card {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.policy-card-title {
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-card-title.inclusions {
  color: #2e7d32;
}

.policy-card-title.exclusions {
  color: #c62828;
}

.policy-list {
  list-style: none;
}

.policy-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.policy-card-title.inclusions + .policy-list li::before {
  background-color: #2e7d32;
}

.policy-card-title.exclusions + .policy-list li::before {
  background-color: #c62828;
}

/* Form Styling */
.form-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-site);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary);
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 92, 0, 0.15);
}

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

/* Gallery Filtering & Lightbox */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--primary);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 14, 18, 0.8);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-align: center;
  padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox-content-wrap {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 3px solid var(--accent);
}

.lightbox-caption {
  color: var(--accent);
  font-family: var(--font-heading);
  margin-top: 1rem;
  font-size: 1.2rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--accent);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

/* FAQ Accordion Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  transition: var(--transition);
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
}

.faq-answer-content {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact Details Cards */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-detail-icon {
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-detail-title {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.contact-detail-val {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-detail-val a:hover {
  color: var(--secondary);
}

/* Maps Integration styling */
.maps-container {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.maps-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer Section */
.main-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem;
  border-top: 3px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo .logo-title {
  color: var(--accent);
  font-size: 1.4rem;
}

.footer-logo .logo-subtitle {
  color: #fff;
}

.footer-about-text {
  color: #ebdcb9;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #ebdcb9;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 0.4rem;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #ebdcb9;
}

.footer-contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-list a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(197, 160, 89, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #ebdcb9;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--secondary);
}

/* Floating Elements & Fixed Bottom Mobile Action Bar */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 999;
  font-size: 1.8rem;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

/* Fixed Bottom Mobile Action Bar */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--bg-dark);
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--accent);
}

.mobile-action-bar a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mobile-action-btn.call {
  background-color: var(--primary);
  border-right: 1px solid rgba(197, 160, 89, 0.2);
}

.mobile-action-btn.whatsapp {
  background-color: #25d366;
}

.mobile-action-btn.enquire {
  background-color: var(--secondary);
  border-left: 1px solid rgba(197, 160, 89, 0.2);
}

.mobile-action-btn svg {
  width: 20px;
  height: 20px;
  margin-bottom: 0.2rem;
  fill: currentColor;
}

/* Page Header component for subpages */
.page-header {
  position: relative;
  background-color: var(--bg-dark);
  padding: 4rem 0;
  color: #fff;
  text-align: center;
  border-bottom: 2px solid var(--accent);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(197, 160, 89, 0.05) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.3;
}

.page-header-title {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
}

.breadcrumb a {
  color: #ebdcb9;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb span {
  opacity: 0.5;
}

/* Reviews Page & Testimonials custom style */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.review-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 6rem;
  color: var(--border-color);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.review-rating {
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-author-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.review-author-loc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .about-intro-grid, .tour-details-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-intro-image-container {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .destinations-grid, .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .tour-details-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  body {
    padding-bottom: 60px; /* Space for the bottom action bar */
  }
  
  .top-bar {
    display: none; /* Hide top bar on mobile for compactness */
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 80%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 2rem;
    gap: 2rem;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 99;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .header-ctas {
    display: none; /* Handled by mobile action bar */
  }
  
  .hero {
    height: 280px;
    min-height: 280px;
    text-align: left;
    padding: 2rem 0 0 0;
    display: flex;
    align-items: flex-start;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  
  .page-header {
    padding: 2.5rem 0;
  }
  
  .hero-content {
    margin: 0;
    width: 100%;
    max-width: 1080px;
  }
  
  .hero-tagline {
    font-size: 0.65rem;
    margin-bottom: 0.3rem;
  }
  
  .hero-title {
    margin-bottom: 0.4rem;
    line-height: 1.25;
  }
  
  .hero-title-main {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
  }
  
  .hero-title-sub {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: -0.2px;
  }
  
  .hero-desc {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    line-height: 1.35;
    max-width: 95%;
  }
  
  .hero-ctas {
    justify-content: flex-start;
    gap: 0.5rem;
  }
  
  .hero-ctas .btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    letter-spacing: 0;
  }
  
  .trust-bar {
    margin-top: 0;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 1.2rem 0;
  }
  
  .trust-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
  }
  
  .featured-card {
    grid-template-columns: 1fr;
  }
  
  .featured-card-img-wrap {
    min-height: 250px;
  }
  
  .featured-card-body {
    padding: 2rem 1.5rem;
  }
  
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .itinerary-container::before {
    left: 20px;
  }
  
  .itinerary-day {
    padding-left: 3.5rem;
  }
  
  .itinerary-day-badge {
    width: 44px;
    height: 44px;
    left: 0;
    top: 5px;
    border-width: 2px;
  }
  
  .itinerary-day-badge .num {
    font-size: 1rem;
  }
  
  .itinerary-day-badge .label {
    display: none;
  }
  
  .itinerary-day-content {
    padding: 1.2rem;
  }
  
  .itinerary-day-content::before {
    top: 15px;
    left: -6px;
    width: 12px;
    height: 12px;
  }
  
  .mobile-action-bar {
    display: grid;
  }
  
  .floating-whatsapp {
    bottom: 80px; /* Avoid overlapping mobile action bar */
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .lightbox-prev, .lightbox-next {
    display: none; /* Hide navigation arrows on mobile, rely on close */
  }
}

@media (max-width: 576px) {
  .destinations-grid, .why-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .about-badge {
    right: 0;
    bottom: -10px;
    padding: 1rem;
  }
}

/* Tour Poster Section Styles */
.tour-poster-wrapper {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--border-color);
  cursor: pointer;
  background-color: var(--bg-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tour-poster-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(114, 28, 36, 0.15);
}

.tour-poster-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.tour-poster-wrapper:hover .tour-poster-img {
  transform: scale(1.02);
}

.tour-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 14, 18, 0.85); /* Primary theme color with transparency */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition);
  padding: 2rem;
  text-align: center;
  z-index: 2;
}

.tour-poster-wrapper:hover .tour-poster-overlay {
  opacity: 1;
}

.tour-poster-overlay-btn {
  background-color: var(--secondary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  box-shadow: var(--shadow-sm);
  margin-top: 1rem;
  transform: translateY(15px);
  transition: transform var(--transition);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-poster-wrapper:hover .tour-poster-overlay-btn {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .tour-poster-wrapper {
    max-width: 100%;
  }
}

.posters-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 450px));
  gap: 2.5rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 960px;
}

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