/* ==========================================================================
   TEVILY TRAVEL THEME - LOOMYWEB COMPATIBLE DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Covered+By+Your+Grace&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* 1. DESIGN TOKENS (BLACK & WHITE MONOCHROME) */
:root {
  --primary-color: #1D3100;
  --primary-hover: #344A12;
  --secondary-color: #344A12;
  --dark-color: #151515;
  --heading-color: #151515;
  --text-color: #777B72;
  --small-label-color: #506B1F;
  --light-bg: #F9F9F6;
  --white: #FFFFFF;
  --border-color: #E6E8E1;
  --footer-bg: #1D3100;
  --footer-text: #F9F9F6;

  --container-width: 1200px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --section-padding: 60px;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Covered By Your Grace', cursive;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* 2. BASE & RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Global Layout Grid & Padding Utilities */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

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

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

.py-section {
  padding: 90px 0;
}

.py-section-sm {
  padding: 90px 0;
}

.py-section-xs {
  padding: 45px 0;
}

.py-cta {
  padding: 90px 0;
}

/* 3. TYPOGRAPHY & BUTTONS */
.script-title {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--small-label-color);
  line-height: 1.2;
  margin-bottom: 6px;
  display: block;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 49, 0, 0.25);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
}

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

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

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* 4. TOP UTILITY BAR */
.top-bar {
  background-color: var(--dark-color);
  color: #a2a0b3;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.top-bar-info {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 10px 0;
}

.top-bar-info a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  white-space: nowrap;
}

.top-bar-info svg {
  color: var(--small-label-color);
  stroke: var(--small-label-color);
}

.top-bar-info a:hover {
  color: var(--white);
}

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

.top-bar-cta {
  background-color: var(--primary-hover);
  color: var(--white);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  transition: background-color var(--transition-fast);
}

.top-bar-cta:hover {
  background-color: var(--primary-hover);
  color: var(--white);
}

/* 5. MAIN HEADER & NAVIGATION */
.main-header {
  background-color: var(--white);
  height: 80px;
  position: relative;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}

.logo-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo-tagline {
  font-family: var(--font-script);
  font-size: 16px;
  color: var(--small-label-color);
  margin-top: 1px;
  white-space: nowrap;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  padding: 10px 0;
  position: relative;
}

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

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

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-contact {
  display: none;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  color: var(--heading-color);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible {
  color: var(--primary-color);
  background-color: var(--light-bg);
}

.mobile-nav-toggle svg {
  display: block;
  width: 24px;
  height: 24px;
}

/* 6. HERO SECTION */
.hero-section {
  position: relative;
  min-height: 460px;
  background: url('../images/hero-bg.webp') no-repeat center center / cover;
  display: flex;
  align-items: center;
  padding: 110px 0;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.hero-content .script-title {
  color: var(--white);
  font-size: 85px;
  margin-bottom: 12px;
  line-height: 1.2;
  text-align: center;
}

.hero-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--light-bg);
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
}

/* FLOATING TRAVEL SEARCH PANEL */
.hero-search-wrapper {
  position: relative;
  z-index: 3;
  margin-top: -50px;
}

.search-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px 30px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.search-field {
  display: flex;
  flex-direction: column;
  text-align: left;
  border-right: 1px solid var(--border-color);
  padding-right: 16px;
}

.search-field:last-of-type {
  border-right: none;
}

.search-field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.search-field input,
.search-field select {
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  background: transparent;
  width: 100%;
  cursor: pointer;
}

/* 7. DESTINATIONS SECTION */
.destinations-section {
  padding: var(--section-padding) 0;
  background-color: var(--white);
  text-align: center;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.destination-card.wide {
  grid-column: span 1.5;
}

.destination-card-grid-2row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.dest-col-2 {
  grid-column: span 2;
}

.dest-col-3 {
  grid-column: span 3;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: none;
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(41, 40, 61, 0.1) 40%, rgba(41, 40, 61, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  text-align: left;
  color: var(--white);
}

.tour-badge {
  align-self: flex-start;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.dest-name {
  font-size: 22px;
  font-weight: 700;
}

/* Unique Destination Cards & Background Image Utility Classes */
.dest-card-wayanad {}

.dest-card-goa {}

.dest-card-hampi {}

.dest-card-coorg {}

.dest-card-ooty {}

.dest-card-kanyakumari {}

/* Unique Destination Overlay Classes */
.dest-overlay-wayanad {}

.dest-overlay-goa {}

.dest-overlay-hampi {}

.dest-overlay-coorg {}

.dest-overlay-ooty {}

.dest-overlay-kanyakumari {}

.dest-bg-wayanad {
  background-image: url('../images/Wayanad.webp');
}

.dest-bg-goa {
  background-image: url('../images/goa.webp');
}

.dest-bg-hampi {
  background-image: url('../images/Hampi.webp');
}

.dest-bg-coorg {
  background-image: url('../images/coorg.webp');
}

.dest-bg-ooty {
  background-image: url('../images/Ooty.webp');
}

.dest-bg-kanyakumari {
  background-image: url('../images/Kanyakumari.webp');
}

/* 8. DISCOUNT + ABOUT SECTION */
.about-discount-section {
  padding: var(--section-padding) 0;
  background-color: var(--light-bg);
}

.about-discount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.discount-image-collage {
  position: relative;
}

.discount-image-collage img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.discount-badge-callout {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 20px;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transform: rotate(-10deg);
}

.discount-badge-callout span:first-child {
  font-size: 24px;
  line-height: 1;
}

.discount-badge-callout span:last-child {
  font-size: 12px;
  font-weight: 600;
}

.about-content .feature-list {
  margin: 24px 0 32px 0;
}

.about-content .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--heading-color);
}

.about-content .feature-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.08);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

/* 9. POPULAR TOURS CAROUSEL & GRID */
.tours-section {
  padding: 60px 20px;
  background-color: var(--white);
  text-align: center;
}

.tours-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  padding: 10px 0 40px 0;
}

.tour-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  width: 100%;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: left;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.tour-track .tour-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  box-sizing: border-box;
}

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

.tour-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
}

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

.tour-favorite {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.9);
  color: #8c92a0;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  z-index: 5;
}

.tour-favorite:hover {
  background: var(--white);
  color: #e25339;
  transform: scale(1.08);
}

.tour-card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #ffa801;
  margin-bottom: 8px;
}

.tour-rating span {
  color: #747d8c;
}

.tour-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.tour-card-content h3 a {
  color: inherit;
  transition: color var(--transition-fast);
}

.tour-card-content h3 a:hover {
  color: var(--primary-color);
}

.tour-price {
  margin-bottom: 16px;
}

.price-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-color);
}

.price-label {
  font-size: 13px;
  color: #747d8c;
}

.tour-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.tour-meta-pill {
  background: var(--light-bg);
  color: var(--text-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--primary-color);
  width: 24px;
  border-radius: 10px;
}

/* 10. TRAVEL VIDEO SECTION */
.video-section {
  position: relative;
  background: url('../images/video-section.webp') no-repeat center center / cover;
  padding: var(--section-padding) 0;
  color: var(--white);
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 40, 61, 0.85);
}

.video-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.video-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: none;
  cursor: pointer;
  margin-bottom: 24px;
  box-shadow: 0 0 0 12px rgba(242, 107, 82, 0.25);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 107, 82, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(242, 107, 82, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(242, 107, 82, 0);
  }
}

.category-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.category-icon-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: background var(--transition-normal);
}

.category-icon-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}

/* 11. PARTNERS SECTION */
.partners-section {
  background-color: var(--primary-color);
  padding: 30px 0;
  color: var(--white);
}

.partners-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.partners-wrapper::-webkit-scrollbar {
  display: none;
}

.partner-logo {
  font-size: 20px;
  font-weight: 800;
  opacity: 0.85;
  white-space: nowrap;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .partners-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .partner-logo {
    font-size: 15px;
  }
}

/* 12. TESTIMONIALS SECTION */
.testimonials-section {
  padding: var(--section-padding) 0;
  background-color: var(--light-bg);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  margin-top: 0;
  text-align: center;
}

.testimonial-text {
  font-size: 14px;
  font-style: italic;
  margin: 16px 0;
  color: var(--text-color);
}

.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
}

.testimonial-role {
  font-size: 12px;
  color: var(--primary-color);
}

/* 13. GALLERY STRIP */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.gallery-item {
  height: 220px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* 14. WHY CHOOSE US SECTION */
.why-choose-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.why-choose-left {
  position: relative;
}

.why-choose-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-right {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: var(--section-padding) 60px;
}

.why-choose-right .script-title {
  color: var(--primary-color);
}

.why-choose-right .section-title {
  color: var(--white);
}

.why-feature {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
}

/* 15. BLOG SECTION */
.blog-section {
  padding: var(--section-padding) 0;
  background-color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  background: var(--white);
}

.blog-card-img {
  height: 220px;
  position: relative;
}

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

.blog-date-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* 16. FOOTER */
.main-footer {
  background-color: var(--dark-color);
  color: var(--footer-text);
  padding: 80px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(249, 249, 246, 0.15);
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--footer-text);
  opacity: 0.9;
}

.footer-links a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-contact li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--footer-text);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: var(--footer-text);
  opacity: 0.85;
}

/* 17. VIDEO MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 90%;
  max-width: 800px;
  background: #000;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  color: #fff;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* 18. INNER PAGE HERO BANNER */
.inner-hero {
  background: url('../images/hero-banner.webp') no-repeat center center / cover;
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 34, 52, 0.65);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
}

/* 19. CONTACT PAGE STYLING */
.py-contact {
  padding: 60px 0;
  background-color: var(--white);
}

.card-box-lg {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}

.card-box-lg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.card-box-lg h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
  line-height: 1.2;
}

.card-box-lg p {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
  line-height: 1.4;
}

.card-box-lg p a {
  color: inherit;
  transition: color var(--transition-fast);
}

.card-box-lg p a:hover {
  color: var(--primary-color);
}

.icon-box-lg {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--light-bg);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-normal), color var(--transition-normal);
  flex-shrink: 0;
}

.card-box-lg:hover .icon-box-lg {
  background-color: var(--primary-color);
  color: var(--white);
}

.sidebar-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.contact-form-box,
.contact-form-block {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-top: 30px;
}

.form-group {
  text-align: left;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  text-align: left;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--text-color);
  background-color: var(--light-bg);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-color);
  background-color: var(--white);
  outline: none;
}

.form-btn {
  width: 100%;
  padding: 14px 28px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

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

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.label-style {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  text-align: left;
}

.input-styled,
.textarea-styled {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--text-color);
  background-color: var(--light-bg);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.input-styled:focus,
.textarea-styled:focus {
  border-color: var(--primary-color);
  background-color: var(--white);
  outline: none;
}

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

.mb-24 {
  margin-bottom: 24px !important;
}

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

.mb-8 {
  margin-bottom: 8px !important;
}

.w-full {
  width: 100% !important;
}

/* 20. CABS & FLEET PAGE STYLING */
.cab-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: left;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cab-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.cab-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  width: 100%;
  background: var(--light-bg);
}

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

.cab-type-pill {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.cab-rate-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(21, 21, 21, 0.85);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(4px);
}

.cab-rate-tag span {
  color: var(--white);
  font-size: 15px;
}

.cab-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cab-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.cab-subtitle {
  font-size: 13px;
  color: var(--text-color);
  margin-bottom: 16px;
}

.cab-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 14px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
}

.cab-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

.cab-spec-item svg {
  flex-shrink: 0;
  color: var(--small-label-color);
}

.cab-features-list {
  margin-bottom: 20px;
  margin-top: auto;
}

.cab-features-list li {
  font-size: 13px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.cab-features-list li svg {
  color: var(--small-label-color);
  flex-shrink: 0;
}

.feature-card-lg {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.feature-card-lg:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.feature-card-lg:hover .icon-box-lg {
  background-color: var(--primary-color);
  color: var(--white);
}

.feature-card-lg h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-card-lg p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
}

/* 21. RESPONSIVE BREAKPOINTS & COMPREHENSIVE QA PASS */

/* Hide utility for JS filters */
.is-hidden {
  display: none !important;
}

.color-yellow {
  color: #000000;
}

svg[stroke="#f26b52"],
.tour-location svg,
.tour-meta svg,
.icon-box-sm svg,
.icon-box-lg svg,
.footer-contact svg,
.top-bar-info svg {
  stroke: currentColor !important;
}

/* Static Grid Card Overrides */
.grid-3 .tour-card,
.grid-3-gap24 .tour-card,
.grid-3-gap24 .destination-card {
  min-width: 100%;
  width: 100%;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.map-placeholder {
  height: 350px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-weight: 600;
}

.map-wrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.stats-banner {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  white-space: nowrap;
}

.border-none {
  border: none !important;
  padding-bottom: 0 !important;
}

.font-sm {
  font-size: 14px;
}

.font-lg {
  font-size: 18px;
}

.font-bold {
  font-weight: 700;
}

.pb-80 {
  padding-bottom: 80px !important;
}

/* Fluid section headings */
.section-title {
  font-size: clamp(22px, 4vw, 38px);
  line-height: 1.25;
}

.hero-title {
  font-size: 40px;
  line-height: 1.2;
}

/* 1200px Desktop Breakpoint */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 24px;
  }
}

/* 1024px Small Desktop & Tablet Landscape */
@media (max-width: 1024px) {
  .tour-track .tour-card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }

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

  .search-panel {
    grid-template-columns: 1fr 1fr;
  }

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

  .destination-card.wide,
  .dest-col-2,
  .dest-col-3 {
    grid-column: span 1;
  }

  .about-discount-grid,
  .video-grid,
  .why-choose-section,
  .grid-2-1 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

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

  .sidebar-box,
  .sticky-sidebar {
    position: static;
  }
}

/* 900px - 820px Mid Tablets */
@media (max-width: 900px) {
  .top-bar-info {
    gap: 12px;
  }

  .inner-hero {
    padding: 60px 0;
  }
}

/* 768px Mobile & Tablet Portrait */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .mobile-nav-contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 18px;
    width: 100%;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
  }

  .mobile-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--heading-color);
    white-space: nowrap;
  }

  .mobile-contact-item svg {
    color: var(--primary-color);
    stroke: var(--primary-color);
    flex-shrink: 0;
  }

  .mobile-nav-cta {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: var(--radius-sm, 4px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background-color var(--transition-fast);
    text-align: center;
  }

  .mobile-nav-cta:hover {
    background-color: var(--primary-hover);
    color: var(--white);
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    padding-right: 0;
  }

  .tour-track .tour-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .tours-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .destination-grid,
  .testimonials-grid,
  .blog-grid,
  .footer-grid,
  .grid-3,
  .grid-3-gap24,
  .grid-2-col {
    grid-template-columns: 1fr;
  }

  .destination-card-grid-2row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .destination-card-grid-2row .destination-card,
  .destination-card-grid-2row .dest-col-2,
  .destination-card-grid-2row .dest-col-3,
  .destination-card.wide {
    grid-column: auto !important;
    height: 180px !important;
  }

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

  .contact-form-box {
    padding: 24px 16px;
  }

  .py-section,
  .py-section-sm {
    padding: 50px 0;
  }

  .py-contact {
    padding: 40px 0 20px 0;
  }

  .stats-banner {
    padding: 40px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .stat-number {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 13px;
    white-space: normal;
  }

  .grid-4-gap24 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .feature-card-lg {
    padding: 24px 16px;
  }

  .feature-card-lg h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .feature-card-lg p {
    font-size: 13px;
  }

  .icon-box-lg {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px auto;
  }

  .py-contact {
    padding: 40px 0;
  }

  .py-contact .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-box-lg {
    padding: 22px 18px;
    width: 100%;
  }

  .card-box-lg h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .card-box-lg p {
    font-size: 13px;
  }

  .card-box-lg .icon-box-lg {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px auto;
  }

  .card-box-lg .icon-box-lg svg {
    width: 22px;
    height: 22px;
  }
}

/* 480px - 360px Small Mobile Devices */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .py-contact {
    padding: 30px 0;
  }

  .card-box-lg {
    padding: 20px 16px;
  }

  .grid-4-gap24 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card-lg {
    padding: 20px 16px;
  }

  .stats-banner {
    padding: 32px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .mobile-nav-contact {
    gap: 10px 14px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .mobile-contact-item {
    font-size: 12px;
  }

  .mobile-nav-cta {
    padding: 7px 14px;
    font-size: 11px;
  }

  .hero-section {
    padding: 70px 0 50px 0;
    min-height: auto;
  }

  .inner-hero-content {
    padding: 20px 0;
  }

  .tour-card-content {
    padding: 12px;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.main-header {
  width: 100%;
}

.topbar {
  background-color: #151515;
  color: #B2B2B5;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 20px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E0E0E0;
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: 12px 0;
}

.topbar-contact:hover {
  color: var(--white);
}

.topbar-right {
  display: flex;
  align-items: stretch;
}

.topbar-btn {
  background-color: var(--primary-hover);
  color: var(--white);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  transition: background-color var(--transition-fast);
}

.topbar-btn:hover {
  background-color: var(--primary-hover);
}

.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.logo-tagline {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--small-label-color);
  margin-top: 4px;
}

.nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  transition: color var(--transition-fast);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
  width: 36px;
  height: 28px;
  z-index: 101;
}

.mobile-nav-toggle .hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
  .topbar-inner {
    flex-direction: column;
    padding: 10px 20px;
    gap: 10px;
    text-align: center;
  }

  .topbar-left {
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .topbar-right {
    display: none;
  }

  .navbar {
    position: relative;
  }

  .navbar-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
  }

  .logo-title {
    font-size: 20px;
  }

  .logo-tagline {
    font-size: 14px;
  }

  .destination-card-grid-2row {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }

  .dest-col-2 {
    grid-column: span 3;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 99;
    border-top: 1px solid #eee;
  }

  .nav-menu.active {
    display: block !important;
    animation: fadeInDown 0.25s ease forwards;
  }

  .nav-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
  }

  .nav-list a,
  .nav-menu > a {
    display: block;
    padding: 8px 16px;
    font-size: 16px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-content .script-title {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 70px 0;
    min-height: 360px;
  }

  .hero-content .script-title {
    font-size: 48px;
  }

  .hero-title {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .navbar-inner {
    padding: 10px 15px;
  }

  .logo-title {
    font-size: 18px;
  }

  .logo-tagline {
    font-size: 12px;
  }

  .dest-col-2 {
    grid-column: span 6;
  }

  .section-title {
    font-size: 26px;
  }

  .script-title {
    font-size: 22px;
  }

  .hero-content .script-title {
    font-size: 42px;
  }

  .topbar-contact {
    font-size: 12px;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* ==========================================================================
   LOOMYWEB FOOTER SOCIAL SLOT STYLES
   ========================================================================== */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 16px;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* LOOMYWEB PLUGIN SLOTS - ZERO SPACING WHEN EMPTY */
[data-slot]:empty {
  display: none !important;
}

/* ENQUIRY THANK YOU POPUP MODAL STYLES */
.enquiry-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.enquiry-modal-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-xl);
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: enquiryPopIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.enquiry-modal-icon {
  margin: 0 auto 18px auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.enquiry-modal-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.enquiry-modal-card p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 24px;
}

.enquiry-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.enquiry-modal-close:hover {
  color: var(--heading-color);
}

.enquiry-modal-btn {
  width: 100%;
}

@keyframes enquiryPopIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}