/* =============================
   COMPANIONS OPTIONS
   ============================= */
.companions-options-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}


.companion-option-card {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid var(--color-border);
  box-shadow: 0 4px 18px var(--shadow-dark);
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s, transform 0.2s;
  user-select: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0.5rem;
  background: #eee;
}
.companion-option-card.selected,
.companion-option-card:hover {
  border: 3px solid var(--color-primary);
  box-shadow: 0 12px 30px rgba(225, 6, 0, 0.25);
  transform: translateY(-8px) scale(1.04);
}
.option-img-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.option-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(1.1);
  transition: filter 0.2s;
}
.companion-option-card.selected .option-img-wrap img,
.companion-option-card:hover .option-img-wrap img {
  filter: brightness(0.92) saturate(1.2);
}
.option-label {
  position: relative;
  z-index: 2;
  font-size: 1.25rem;
  color: #fff;
  font-weight: var(--font-weight-extrabold);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
  text-align: center;
  width: 100%;
  padding: 0 0.5rem;
}
/* ================================
   ThatTrip - Main Stylesheet
   Purple-Pink Gradient Theme
   ================================ */

/* =============================
   CSS CUSTOM PROPERTIES
   ============================= */
:root {
  /* Primary Colors */
  --color-primary: #E10600;          /* ThatTrip Red - CTAs, links, active states */
  --color-secondary: #000000;        /* Black - secondary accents */
  --color-red-light: #FF3B30;        /* Lighter Red - hover effects */
  --color-red-dark: #B20500;         /* Darker Red - brand depth */

  /* Text Colors */
  --color-heading: #1A1A1A;          /* Near Black - headings */
  --color-body: #4A4A4A;             /* Dark Grey - body text */

  /* Background & Neutral */
  --color-white: #FFFFFF;            /* Clean background */
  --color-light: #F9FAFB;            /* Subtle off-white for cards/sections */
  --color-border: #E5E7EB;           /* Light grey borders */

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #E10600 0%, #B20500 100%);
  --gradient-button: linear-gradient(90deg, #E10600 0%, #FF3B30 100%);

  /* Shadows */
  --shadow-primary: rgba(225, 6, 0, 0.25);
  --shadow-dark: rgba(0, 0, 0, 0.08);
  --shadow-hover: rgba(225, 6, 0, 0.35);
  --shadow-lavender: rgba(0, 0, 0, 0.08);
  --shadow-purple: rgba(225, 6, 0, 0.2);

  /* Typography */
  --font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 5rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 16px;
  --radius-full: 50px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* =============================
   CSS RESET & BASE STYLES
   ============================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--color-body);
  background-color: var(--color-white);
  overflow-x: hidden;
}

/* =============================
   TYPOGRAPHY
   ============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 0.5em;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 800;
}

h4 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-body);
  margin-bottom: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--color-red-light);
  text-decoration: underline;
}

/* =============================
   UTILITY CLASSES
   ============================= */
.container {
    width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  }

.section {
  padding: var(--spacing-3xl) 0;
  transition: opacity 0.4s var(--transition-normal), visibility 0.4s var(--transition-normal);
  opacity: 1;
  visibility: visible;
}

.section.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.section-title {
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--color-heading);
  margin-bottom: var(--spacing-xl);
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, #E10600 0%, #FF9500 50%, #FFCC00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
  font-weight: var(--font-weight-extrabold);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* =============================
   BUTTONS
   ============================= */
.btn {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  color: var(--color-white);
  background: linear-gradient(90deg, #E10600 0%, #FF3B30 100%);
  box-shadow: 0 4px 15px rgba(225, 6, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(90deg, #A80400 0%, #C00500 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(160, 4, 0, 0.55), 0 2px 8px rgba(225, 6, 0, 0.3);
  text-decoration: none;
  color: var(--color-white);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  color: var(--color-primary);
  background: transparent;
  padding: 10px 26px;
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 12px rgba(225, 6, 0, 0.15);
}

.btn-secondary:hover {
  background: linear-gradient(90deg, #A80400 0%, #C00500 100%);
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(160, 4, 0, 0.55), 0 2px 8px rgba(225, 6, 0, 0.3);
  text-decoration: none;
}

.btn-secondary:active {
  transform: scale(0.98);
}

/* =============================
   NAVIGATION
   ============================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

img.logo,
.nav-logo img,
.logo img {
  display: block;
  height: 70px;
  width: 280px;
  object-fit: contain;
  object-position: left center;
  margin-left: -30px;
  line-height: 0;
  visibility: visible;
  opacity: 1;
  flex-shrink: 0;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 1)) drop-shadow(0 0 16px rgba(255, 255, 255, 0.6));
}

.logo-icon {
  font-size: 2rem;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 0.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: var(--font-weight-extrabold);
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-logo i {
  font-size: 1.75rem;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: 1rem;
  transition: color var(--transition-normal), text-shadow var(--transition-normal);
  position: relative;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--color-red-light);
  text-decoration: none;
  text-shadow: 0 2px 8px var(--shadow-primary);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 1.75rem;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-normal);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Mobile Navigation */
@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-200%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-heading);
    text-shadow: none;
  }

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

  .nav-link::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* =============================
   HERO SECTION
   ============================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: var(--color-light);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-light);
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-shapes .shape {
  position: absolute;
  font-size: 2rem;
  color: var(--color-primary);
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.hero-shapes .shape:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.hero-shapes .shape:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.hero-shapes .shape:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
.hero-shapes .shape:nth-child(4) { top: 70%; right: 10%; animation-delay: 3s; }
.hero-shapes .shape:nth-child(5) { top: 40%; left: 5%; animation-delay: 1.5s; }
.hero-shapes .shape:nth-child(6) { top: 80%; right: 25%; animation-delay: 2.5s; }
.hero-shapes .shape:nth-child(7) { top: 30%; right: 30%; animation-delay: 0.5s; }
.hero-shapes .shape:nth-child(8) { top: 50%; left: 40%; animation-delay: 3.5s; }

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--color-body);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--color-primary);
  z-index: 3;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* =============================
   ABOUT SECTION
   ============================= */
.about-section {
  background: var(--color-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h3 {
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--color-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px var(--shadow-dark);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px var(--shadow-hover);
}

.stat-card i {
  font-size: 2.5rem;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.stat-card .stat-number {
  font-size: 3rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 1rem;
  color: var(--color-body);
  margin: 0;
}

@media (max-width: 767px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* =============================
   DESTINATIONS SECTION
   ============================= */
.destinations-section {
  background: linear-gradient(rgba(225, 6, 0, 0.03), rgba(225, 6, 0, 0.01));
}

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

.destination-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px var(--shadow-dark);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(225, 6, 0, 0.2);
}

.destination-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.destination-card:hover .destination-card-image {
  transform: scale(1.05);
}

.destination-card-content {
  padding: 1.5rem;
}

.destination-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
}

.destination-card-description {
  font-size: 1rem;
  color: var(--color-body);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.destination-card .btn {
  width: 100%;
}

@media (max-width: 1023px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================
   SERVICES SECTION
   ============================= */
.services-section {
  background: var(--color-white);
}

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

.service-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px var(--shadow-dark);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px var(--shadow-hover);
}

.service-card i {
  font-size: 3rem;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  color: var(--color-body);
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================
   WHY CHOOSE US SECTION
   ============================= */
.why-choose-section {
  background: var(--color-light);
}

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

.feature-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px var(--shadow-dark);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px var(--shadow-hover);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.938rem;
  color: var(--color-body);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1023px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================
   TESTIMONIALS SECTION
   ============================= */
.testimonials-section {
  background: var(--color-white);
}

.testimonials-carousel {
  padding: 2rem 0;
}

.testimonials-carousel .swiper-wrapper {
  align-items: stretch;
}

.testimonials-carousel .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px var(--shadow-dark);
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-primary);
}

.testimonial-author {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-heading);
  margin: 0;
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--color-body);
  margin: 0;
}

.testimonial-rating {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  flex: 1;
  font-size: 1rem;
  color: var(--color-body);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-trip {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  margin: 0;
}

.testimonials-cta {
  text-align: center;
  margin-top: 2rem;
}

.testimonials-cta-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* Star Rating Input */
.star-rating-input {
  display: flex;
  gap: 0.4rem;
  font-size: 1.75rem;
  cursor: pointer;
  margin-top: 0.25rem;
}

.star-rating-input i {
  color: #D1D5DB;
  transition: color 0.15s ease;
}

.star-rating-input i.active {
  color: #F59E0B;
}

/* Form Row (two columns) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Swiper Customization */
.swiper-button-prev,
.swiper-button-next {
  color: var(--color-primary);
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

/* =============================
   CONTACT SECTION
   ============================= */
.contact-section {
  background: var(--color-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3,
.enquiry-form h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--color-primary);
  min-width: 2rem;
}

.contact-item h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.contact-item p {
  font-size: 1rem;
  color: var(--color-body);
  line-height: 1.6;
  margin: 0;
}

.social-links {
  margin-top: 2rem;
}

.social-links h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-button);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform var(--transition-normal);
  text-decoration: none;
}

.social-icons a:hover {
  transform: scale(1.1);
}

/* Form Styles */
.enquiry-form {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px var(--shadow-dark);
}

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

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.required {
  color: var(--color-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: var(--font-family);
  color: var(--color-heading);
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--color-secondary);
}

.form-group input.success {
  border-color: var(--color-red-light);
}

.error-message {
  display: none;
  font-size: 0.875rem;
  color: var(--color-secondary);
  margin-top: 0.5rem;
}

.error-message.visible {
  display: block;
}

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

.btn-submit {
  width: 100%;
  margin-top: 1rem;
}

.form-notification {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  display: none;
}

.form-notification.success {
  background: #D1FAE5;
  color: #065F46;
  display: block;
}

.form-notification.error {
  background: #FEE2E2;
  color: #991B1B;
  display: block;
}

@media (max-width: 767px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

/* =============================
   FOOTER
   ============================= */
.footer {
  background: var(--color-heading);
  color: var(--color-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
}

.footer-logo i {
  font-size: 1.75rem;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo img {
  mix-blend-mode: screen;
  filter: none;
  /* object-position: 42% 52%; */
  margin-left: -5rem;
}

.footer-tagline {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--color-light);
}

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

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

.footer-links a {
  color: var(--color-light);
  text-decoration: none;
  font-weight: var(--font-weight-regular);
  transition: color var(--transition-normal);
}

.footer-links a:hover {
  color: var(--color-red-light);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 1.125rem;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gradient-button);
  transform: scale(1.1);
}

.payment-methods {
  display: flex;
  gap: 1rem;
  font-size: 2rem;
  color: var(--color-light);
}

@media (max-width: 1023px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =============================
   ANIMATIONS (from animations.css will override)
   ============================= */
.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================
   ENQUIRY POPUP MODAL
   ============================= */
body.popup-open {
  overflow: hidden;
}

.enquiry-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.enquiry-popup.show {
  display: flex;
  opacity: 1;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 17, 50, 0.85);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.popup-content {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(225, 6, 0, 0.3);
  animation: popupSlideIn 0.4s ease-out;
  z-index: 1;
}

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

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--color-body);
  cursor: pointer;
  transition: color var(--transition-fast);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
}

.popup-close:hover {
  color: var(--color-primary);
  background: var(--color-light);
}

.popup-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.popup-header i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.popup-header h3 {
  font-size: 1.5rem;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.popup-header p {
  color: var(--color-body);
  font-size: 0.95rem;
  margin: 0;
}

#popup-enquiry-form .form-group {
  margin-bottom: 1rem;
}

#popup-enquiry-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-heading);
  font-size: 0.9rem;
}

#popup-enquiry-form .form-group input,
#popup-enquiry-form .form-group select,
#popup-enquiry-form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--color-body);
  transition: border-color var(--transition-fast);
}

#popup-enquiry-form .form-group input:focus,
#popup-enquiry-form .form-group select:focus,
#popup-enquiry-form .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

#popup-enquiry-form .btn-submit {
  width: 100%;
  margin-top: 0.5rem;
}

#popup-form-notification {
  margin-top: 1rem;
}

/* Custom destination field animation */
#custom-destination-group,
#popup-custom-destination-group {
  animation: slideDown 0.3s ease-out;
  overflow: hidden;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 100px;
    transform: translateY(0);
  }
}

/* Responsive adjustments for popup */
@media (max-width: 767px) {
  .popup-content {
    padding: 1.5rem;
    max-width: 95%;
  }

  .popup-header i {
    font-size: 2.5rem;
  }

  .popup-header h3 {
    font-size: 1.3rem;
  }
}

/* Travelers selector (before Monthly Picks) */
.travelers-section {
  padding: 2.5rem 0;
  background: transparent;
}

.travelers-section {
  padding: 2.5rem 0;
  background: transparent;
}

.travelers-wrap {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw; /* full-bleed technique /
margin-right: -50vw;
width: 100vw;
max-width: 100vw;
padding: 2.25rem 2rem;
box-sizing: border-box;
background: var(--gradient-hero); / site theme gradient (purple → pink) */
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(11, 7, 23, 0.12);
  overflow: visible;
  z-index: 2;
}

/* dashed/stitched outline inset */
.travelers-wrap::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  pointer-events: none;
  border: 3px dashed rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.02) inset;
}

/* Title on dark background */
.travelers-wrap .section-title {
  color: #fbf8ff;
  margin-bottom: 1.25rem;
}

/* Grid and cards (keeps previous card styling but adapts for theme) */
.travelers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.traveler-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  padding: 0.75rem;
  border-radius: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
  color: inherit;
}

.traveler-media {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  margin-bottom: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.04);
}

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

.traveler-label {
  color: #fbf8ff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.traveler-card:hover,
.traveler-card:focus {
  transform: translateY(-8px);
  outline: none;
}

/* Responsive */
@media (max-width: 1023px) {
  .travelers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .traveler-media {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 520px) {
  .travelers-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .travelers-wrap {
    padding: 1rem;
    border-radius: 14px;
  }
  .travelers-wrap::before {
    inset: 8px;
    border-radius: 12px;
  }
  .traveler-media {
    width: 110px;
    height: 110px;
  }
}

/* Monthly Picks */
.monthly-section {
  padding: 4rem 0;
  background: linear-gradient(
    180deg,
    rgba(225, 6, 0, 0.04),
    transparent 60%
  );
}

#monthly-title {
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-red-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2.5rem;
}
.monthly-section .monthly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.monthly-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--color-border);
}

.monthly-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(225, 6, 0, 0.22);
  border-color: rgba(225, 6, 0, 0.2);
}

.monthly-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.monthly-card:hover img {
  transform: scale(1.08);
}
.monthly-card .monthly-body {
  padding: 0.9rem 1rem;
}
.monthly-card .monthly-title {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: -0.02em;
}

.monthly-book-btn {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.8rem;
  background: var(--gradient-button);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.monthly-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 6, 0, 0.3);
  filter: brightness(1.05);
}

.monthly-card .monthly-desc {
  font-size: 0.88rem;
  color: var(--color-body);
  margin-bottom: 0.75rem;
  line-height: 1.5;
  height: 2.7em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.monthly-card .monthly-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.9rem;
}
@media (max-width: 520px) {
  .monthly-card img {
    height: 120px;
  }
}

/* customize page */
/* Custom topbar for customize page */

@media (max-width: 767px) {
  main, .section:first-of-type {
    margin-top: 64px;
  }
}

.customize-topbar {
  width: 100vw;
  background: #101828;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 100;
}

.customize-topbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem 0.5rem 1.5rem;
}

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

.customize-nav-link {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.18s;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.customize-nav-link.active {
  color: #E10600;
  background: rgba(34, 197, 94, 0.08);
  opacity: 1;
  font-weight: 700;
}

.customize-nav-link:hover:not(.active) {
  opacity: 1;
  background: rgba(255, 255, 255, 0.06);
}

.customize-close-btn {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.18s;
  margin-left: 2rem;
  border-radius: 50%;
  padding: 0.1rem 0.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customize-close-btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 700px) {
  .customize-topbar-inner {
    padding: 0.5rem 0.5rem;
  }

  .customize-nav {
    gap: 0.7rem;
    font-size: 0.98rem;
  }

  .customize-close-btn {
    font-size: 1.5rem;
    margin-left: 1rem;
  }
}

/* Customize Search Bar (matches screenshot style) */
.customize-searchbar-wrap {
  width: 100%;
  max-width: 600px;
  margin: 2.5rem auto 2rem auto;
  position: relative;
  z-index: 10;
}

.customize-searchbar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2.5px solid #E10600;
  border-radius: 2.5rem;
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.07);
  padding: 0.25rem 1.2rem 0.25rem 1rem;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.18s;
}

.customize-searchbar:focus-within {
  border-color: #E10600;
  box-shadow: 0 0 0 2px #bbf7d0;
}

.customize-search-icon {
  color: #E10600;
  font-size: 1.35rem;
  margin-right: 0.7rem;
  opacity: 0.85;
}

.customize-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.25rem;
  color: #22223b;
  width: 100%;
  padding: 0.7rem 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.customize-search-input::placeholder {
  color: #a3a3a3;
  opacity: 1;
  font-weight: 400;
  font-size: 1.15rem;
}

.destination-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1.5px solid #e9d5ff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 16px rgba(225, 6, 0, 0.08);
  margin-top: 4px;
  width: 100%;
  z-index: 20;
  list-style: none;
  padding: 0;
  max-height: 220px;
  overflow-y: auto;
  display: none;
}

.destination-suggestions li {
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  font-size: 1.08rem;
  color: #5a4f6d;
  border-bottom: 1px solid #f3f3f3;
  transition: background 0.13s, color 0.13s;
}

.destination-suggestions li:last-child {
  border-bottom: none;
}

.destination-suggestions li:hover {
  background: #f0fdf4;
  color: #22c55e;
}

.destination-cards-row {
  display: flex;
  gap: 1.5rem;
  margin: 2.5rem 0 1.5rem 0;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  position: relative;
}

.destination-card-thumb {
  flex: 0 0 200px;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 6px 24px rgba(225, 6, 0,0.10);
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  min-width: 200px;
  max-width: 220px;
}

.destination-card-thumb:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.destination-card-thumb img {
  width: 100%;
  height: 180px; /* Increased height */
  object-fit: cover;
  border-radius: 1.2rem 1.2rem 0 0;
  display: block;
}

.destination-card-thumb .dest-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-heading);
  margin: 0.5rem 0 0.2rem 0;
  letter-spacing: 0.01em;
}

.destination-card-thumb .dest-sub {
  font-size: 0.92rem;
  color: #E10600;
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Next button styles */
.destination-scroll-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #fff;
  border: 2px solid #E10600;
  color: #E10600;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(225, 6, 0,0.10);
  transition: background 0.15s, color 0.15s;
}

.destination-scroll-btn:hover {
  background: #E10600;
  color: #fff;
}

/* =============================
   MOBILE FIXES - COMPREHENSIVE
   ============================= */

/* --- Logo --- */
@media (max-width: 767px) {
  img.logo,
  .nav-logo img,
  .logo img {
    height: 55px;
    width: 180px;
    margin-left: -20px;
  }

  .nav-container {
    padding: 0.5rem 1rem;
  }

  /* --- Hero --- */
  .hero {
    padding: 5rem 1rem 3rem;
    min-height: 90vh;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-shapes .shape {
    font-size: 1.2rem;
    opacity: 0.08;
  }

  /* --- Section headings --- */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* --- About stats --- */
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card h3 {
    font-size: 1.5rem;
  }

  /* --- Cards padding --- */
  .service-card,
  .feature-card {
    padding: 1.25rem;
  }

  .service-card i {
    font-size: 2.2rem;
  }

  .service-card h3,
  .feature-card h3 {
    font-size: 1rem;
  }

  .service-card p,
  .feature-card p {
    font-size: 0.875rem;
  }

  /* --- Destination card image --- */
  .destination-card-image {
    height: 180px;
  }

  /* --- Contact form --- */
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 0.95rem;
    padding: 0.65rem 0.85rem;
  }

  /* --- Footer --- */
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .payment-methods {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
  }

  /* --- Popup --- */
  .popup-content {
    padding: 1.25rem;
    margin: 1rem;
    max-width: 100%;
  }

  .popup-content input,
  .popup-content select,
  .popup-content textarea {
    font-size: 0.95rem;
  }

  /* --- Buttons --- */
  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* Extra small screens */
@media (max-width: 375px) {
  img.logo,
  .nav-logo img,
  .logo img {
    height: 45px;
    width: 150px;
    margin-left: -15px;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
  }

  .popup-content {
    padding: 1rem;
  }
}
