/**
 * Andaman Escapes Theme Stylesheet
 * 100% Fully Responsive, Fluid & Modern Island Travel Theme Design System
 */

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

:root {
  --primary-teal: #0A7E8C;
  --primary-teal-dark: #075F6A;
  --primary-teal-light: #E0F2F4;
  --primary-teal-glow: rgba(10, 126, 140, 0.25);
  --dark-navy: #032B3A;
  --dark-navy-deep: #021B24;
  --dark-navy-card: #073B4C;
  --accent-gold: #F59E0B;
  --accent-gold-dark: #D97706;
  --accent-gold-light: #FEF3C7;
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg-light: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-section-alt: #F0F7F9;
  --border-color: #E2E8F0;
  --border-light: #EDF2F7;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(3, 43, 58, 0.05);
  --shadow-md: 0 8px 24px rgba(3, 43, 58, 0.08);
  --shadow-lg: 0 16px 36px rgba(3, 43, 58, 0.12);
  --shadow-xl: 0 24px 48px rgba(3, 43, 58, 0.16);
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-script: 'Caveat', cursive;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1240px;
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-light);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
  overflow-wrap: break-word;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Script Font Accents */
.script-highlight {
  font-family: var(--font-script);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.25em;
  display: inline-block;
  transform: rotate(-1.5deg);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-teal-light);
  color: var(--primary-teal);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  max-width: 620px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal), var(--accent-gold));
  margin: 12px auto 0;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(10, 126, 140, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-teal-dark) 0%, #054850 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 126, 140, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary-teal);
  border: 1.5px solid var(--primary-teal);
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: var(--transition);
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.site-header.is-scrolled .site-nav a {
  color: var(--text-dark);
}

.site-header.is-scrolled .site-logo-text span:first-child {
  color: var(--dark-navy);
}

.site-header.is-scrolled .mobile-menu-toggle {
  color: var(--dark-navy);
  border-color: var(--border-color);
  background: rgba(3, 43, 58, 0.06);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo-icon {
  width: 36px;
  height: 36px;
  color: var(--primary-teal);
  flex-shrink: 0;
}

.site-logo-text {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

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

.header-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-teal);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(10, 126, 140, 0.3);
}

.header-cta-btn:hover {
  background: var(--primary-teal-dark);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

/* Off-Canvas Slide-In Navigation Drawer */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 43, 58, 0.65);
  backdrop-filter: blur(6px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: min(320px, 85vw);
  height: 100vh;
  background: #ffffff;
  z-index: 10001;
  padding: 24px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.is-open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.mobile-drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-section-alt);
  border: none;
  font-size: 1.25rem;
  color: var(--dark-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin-bottom: 28px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-navy);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: var(--primary-teal-light);
  color: var(--primary-teal);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 680px;
  padding: 140px 0 100px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(3, 43, 58, 0.85) 0%, rgba(5, 36, 51, 0.6) 50%, rgba(3, 43, 58, 0.88) 100%);
  z-index: 1;
}

.hero-wave-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.hero-wave-shape svg {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.trust-badge-icon {
  font-size: 1.35rem;
  color: var(--accent-gold);
}

.trust-badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
}

/* Hero Floating Quote Form Card */
.hero-quote-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-xl);
  color: var(--text-dark);
  position: relative;
  width: 100%;
}

.quote-card-header {
  margin-bottom: 20px;
}

.quote-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 4px;
}

.quote-card-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

.form-input {
  width: 100%;
  padding: 13px 14px 13px 42px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #ffffff;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px var(--primary-teal-glow);
}

.form-input::placeholder {
  color: var(--text-light);
}

.quote-submit-btn {
  margin-top: 6px;
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

.quote-card-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.quote-card-footer i {
  color: var(--primary-teal);
}

/* ==========================================================================
   TOURING PACKAGES & CATALOG CARD DESIGN
   ========================================================================== */
.packages-section {
  padding: 90px 0;
  background: var(--bg-light);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

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

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-teal-light);
}

.package-thumbnail {
  position: relative;
  height: 210px;
  overflow: hidden;
}

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

.package-card:hover .package-thumbnail img {
  transform: scale(1.06);
}

.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.package-badge.bestseller { background: #10B981; }
.package-badge.popular { background: #F97316; }
.package-badge.family { background: #8B5CF6; }
.package-badge.adventure { background: #06B6D4; }
.package-badge.luxury { background: #92400E; }
.package-badge.budget { background: #2563EB; }

.package-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.package-wishlist:hover {
  background: #ffffff;
  color: #EF4444;
  transform: scale(1.12);
}

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

.package-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 4px;
}

.package-duration {
  font-size: 0.85rem;
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-route {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

/* 2x2 Feature Grid inside Card */
.package-features-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
  margin-bottom: 18px;
  padding: 10px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.package-feature-cell {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-body);
}

.package-feature-cell i {
  color: var(--primary-teal);
  font-size: 0.82rem;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.package-card-footer {
  margin-top: auto;
  padding-top: 12px;
}

.package-pricing {
  margin-bottom: 14px;
}

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

.price-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-navy);
}

.price-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: normal;
}

.packages-sub-cta {
  background: var(--accent-gold-light);
  border: 1px solid #FDE68A;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.packages-sub-cta p {
  font-weight: 600;
  color: #92400E;
  font-size: 0.95rem;
}

/* ==========================================================================
   PACKAGES CATALOG PAGE (SIDEBAR + GRID)
   ========================================================================== */
.catalog-page-wrapper {
  padding: 40px 0 80px;
  background: var(--bg-light);
}

.mobile-filter-trigger {
  display: none;
  width: 100%;
  margin-bottom: 20px;
  background: #ffffff;
  border: 1.5px solid var(--primary-teal);
  color: var(--primary-teal);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: flex-start;
}

.catalog-sidebar {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-group {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.filter-group-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-body);
  margin-bottom: 10px;
  cursor: pointer;
  user-select: none;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  accent-color: var(--primary-teal);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.range-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-range-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}

.budget-slider {
  width: 100%;
  accent-color: var(--primary-teal);
  cursor: pointer;
}

.catalog-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.catalog-count-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.catalog-sort-select {
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: #ffffff;
  outline: none;
  cursor: pointer;
}

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

.custom-trip-cta-box {
  background: #ffffff;
  border: 1.5px dashed var(--primary-teal);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  box-shadow: var(--shadow-sm);
}

.custom-trip-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.custom-trip-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary-teal-light);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.custom-trip-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 4px;
}

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

/* ==========================================================================
   NEWSLETTER SUBSCRIBE SECTION
   ========================================================================== */
.newsletter-section {
  background: linear-gradient(135deg, #E0F2F4 0%, #D1EBEF 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.newsletter-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 4px;
}

.newsletter-desc {
  font-size: 0.9rem;
  color: var(--text-body);
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  width: 100%;
}

.newsletter-input-group {
  position: relative;
  flex: 1;
}

.newsletter-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

.newsletter-input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--primary-teal);
}

.newsletter-btn {
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

/* ==========================================================================
   USER VIDEO REVIEWS SECTION
   ========================================================================== */
.video-reviews-section {
  padding: 90px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.video-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 36px;
}

.video-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-md);
  color: var(--dark-navy);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  z-index: 10;
}

.video-nav-arrow:hover {
  background: var(--primary-teal);
  color: #ffffff;
  border-color: var(--primary-teal);
  transform: scale(1.08);
}

.video-reviews-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 14px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
}

.video-reviews-slider-track::-webkit-scrollbar {
  display: none;
}

.video-review-card {
  position: relative;
  min-width: 220px;
  width: 220px;
  height: 385px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  scroll-snap-align: start;
  flex-shrink: 0;
  background: var(--dark-navy);
}

.video-review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 45%, rgba(3, 43, 58, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 14px;
  color: #ffffff;
  box-sizing: border-box;
}

.video-duration-badge {
  align-self: flex-end;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
}

.video-play-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.video-play-btn i {
  margin-left: 3px;
}

.video-review-card:hover .video-play-btn {
  transform: scale(1.15);
  background: var(--primary-teal);
  border-color: var(--primary-teal);
}

.video-review-info {
  margin-top: auto;
}

.video-stars {
  color: var(--accent-gold);
  font-size: 0.8rem;
  margin-bottom: 6px;
  display: flex;
  gap: 3px;
}

.video-review-quote {
  font-size: 0.88rem;
  line-height: 1.4;
  margin-bottom: 6px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  word-break: break-word;
}

.video-review-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
}

.video-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  margin-bottom: 24px;
}

.video-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.video-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.video-dot.active {
  width: 24px;
  border-radius: var(--radius-full);
  background: var(--primary-teal);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-section {
  padding: 90px 0;
  background: var(--bg-section-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.feature-item-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.feature-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary-teal-light);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: var(--transition);
}

.feature-item-card:hover .feature-icon-circle {
  background: var(--primary-teal);
  color: #ffffff;
  transform: scale(1.08);
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.feature-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   TRAVEL PROCESS SECTION
   ========================================================================== */
.travel-process-section {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
}

.process-steps-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-bottom: 48px;
}

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 16px;
}

.step-icon-outer {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px dashed var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: #ffffff;
}

.step-number-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 30px;
  height: 30px;
  background: var(--primary-teal);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.step-icon-inner {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--primary-teal-light);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 280px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background: var(--bg-light);
}

.faq-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

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

.faq-item:hover {
  border-color: var(--primary-teal-light);
}

.faq-question {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-navy);
  user-select: none;
}

.faq-question i {
  color: var(--primary-teal);
  transition: transform 0.3s ease;
  font-size: 0.85rem;
  flex-shrink: 0;
}

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

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0, 1, 0, 1);
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 22px 18px;
  max-height: 500px;
  transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-sub-bar {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================================================
   AGENCY DETAILS SECTION
   ========================================================================== */
.agency-details-section {
  padding: 90px 0;
  background: #ffffff;
}

.agency-split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.agency-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

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

.agency-content {
  padding-left: 10px;
}

.agency-title {
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 14px;
}

.agency-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.agency-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.agency-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--primary-teal);
  margin-bottom: 6px;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.agency-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
  list-style: none;
}

.agency-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.agency-checklist li i {
  color: var(--primary-teal);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ==========================================================================
   BOTTOM INLINE LEAD CAPTURE BANNER
   ========================================================================== */
.lead-banner-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.lead-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(3, 43, 58, 0.88) 0%, rgba(7, 59, 76, 0.82) 100%);
  z-index: 1;
}

.lead-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.lead-banner-title {
  font-size: clamp(1.75rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.lead-inline-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  max-width: 1100px;
  margin: 0 auto 16px;
  color: var(--text-dark);
}

.lead-inline-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.lead-inline-form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 14px;
}

.lead-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 14px;
}

.lead-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lead-trust-row i {
  color: var(--accent-gold);
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.about-story-section {
  padding: 90px 0;
  background: #ffffff;
}

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

.about-boat-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-boat-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-vision-banner {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-card) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: #ffffff;
  margin: 60px 0;
  box-shadow: var(--shadow-xl);
}

.mission-vision-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 40px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mission-card {
  text-align: center;
  padding: 0 14px;
}

.mission-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.mission-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.mission-card-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* Testimonials Slider Track */
.testimonials-section {
  padding: 90px 0;
  background: var(--bg-light);
}

.testimonials-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-navy);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex-shrink: 0;
}

.testimonial-nav-btn:hover {
  background: var(--primary-teal);
  color: #ffffff;
  border-color: var(--primary-teal);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 4px;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-bubble-card {
  min-width: 320px;
  flex: 1 0 320px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
}

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

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-teal-light);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-navy);
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--dark-navy);
  color: #ffffff;
  padding: 70px 0 30px;
  position: relative;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 14px 0 20px;
  line-height: 1.6;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--primary-teal);
  transform: translateY(-2px);
}

.footer-column-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent-gold);
}

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

.footer-links-list a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-top: 4px;
}

.footer-bottom-bar {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* Floating WhatsApp Action Button */
.floating-quick-action {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-action-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  text-decoration: none;
}

.floating-action-btn.whatsapp {
  background: #25D366;
}

.floating-action-btn.whatsapp:hover {
  background: #20BA59;
  transform: scale(1.1);
}

/* Video Lightbox Modal */
.video-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal-backdrop.is-open {
  display: flex;
  opacity: 1;
}

.video-modal-container {
  width: min(800px, 92vw);
  position: relative;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS (DESKTOP, TABLET & MOBILE)
   ========================================================================== */

/* Large Tablets & Small Laptops (992px to 1200px) */
@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .catalog-packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (768px to 1024px) */
@media (max-width: 1024px) {
  .site-nav {
    gap: 16px;
  }
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text {
    max-width: 100%;
    text-align: center;
  }
  .hero-trust-badges {
    justify-content: center;
  }
  .hero-quote-card {
    max-width: 520px;
    margin: 0 auto;
  }
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .catalog-sidebar {
    position: fixed;
    top: 0;
    left: -340px;
    width: min(320px, 85vw);
    height: 100vh;
    z-index: 10002;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transition: left 0.35s ease;
  }
  .catalog-sidebar.is-open {
    left: 0;
  }
  .mobile-filter-trigger {
    display: flex;
  }
  .agency-split-wrap,
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile & Small Tablets (< 768px) */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-nav {
    display: none;
  }
  .header-actions .header-cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-section {
    padding: 105px 0 50px;
    min-height: auto;
  }
  .hero-trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: left;
  }
  .hero-quote-card {
    padding: 24px 18px;
  }
  .section-title-wrap {
    margin-bottom: 28px;
  }
  .packages-section,
  .video-reviews-section,
  .why-choose-section,
  .travel-process-section,
  .faq-section,
  .agency-details-section,
  .about-story-section,
  .testimonials-section {
    padding: 55px 0;
  }

  /* Video Slider Mobile Optimization */
  .video-slider-container .video-nav-arrow {
    display: none;
  }
  .video-slider-controls .video-nav-arrow {
    display: flex !important;
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  .video-reviews-slider-track {
    gap: 16px;
    padding: 10px 4px;
  }
  .video-review-card {
    min-width: 250px;
    width: 76vw;
    max-width: 280px;
    height: 380px;
  }
  .video-card-overlay {
    padding: 16px 14px;
  }
  .video-review-quote {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .feature-item-card {
    padding: 20px 14px;
  }
  .process-steps-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }
  .faq-grid-2col {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 24px;
  }
  .agency-content {
    padding-left: 0;
  }
  .agency-stats-grid,
  .about-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .agency-checklist {
    grid-template-columns: 1fr;
  }
  .lead-banner-section {
    padding: 60px 0;
  }
  .lead-inline-card {
    padding: 20px 16px;
  }
  .lead-inline-form-grid,
  .lead-inline-form-row2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .lead-trust-row {
    flex-direction: column;
    gap: 8px;
  }
  .catalog-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .catalog-packages-grid {
    grid-template-columns: 1fr;
  }
  .custom-trip-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 18px;
  }
  .custom-trip-info {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  .newsletter-btn {
    width: 100%;
  }
  .mission-vision-banner {
    padding: 32px 18px;
    margin: 36px 0;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .testimonial-bubble-card {
    min-width: 270px;
    flex: 1 0 270px;
    padding: 22px 18px;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .floating-quick-action {
    bottom: 20px;
    right: 18px;
  }
  .floating-action-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* Extra Small Phones (< 480px) */
@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .video-review-card {
    min-width: 240px;
    width: 78vw;
    max-width: 270px;
    height: 375px;
  }
  .hero-quote-card {
    padding: 20px 14px;
  }
  .packages-sub-cta {
    flex-direction: column;
    text-align: center;
  }
}
