/* ============================================================
   SHREYA TRAVELS — Design System & Styles
   A premium, warm, trustworthy travel agency — Est. 1995
   ============================================================ */
/* ----- Google Fonts (loaded in HTML) -----
   Playfair Display 400/600/700 — headings
   Inter 400/500/600/700         — body
   ---------------------------------------- */
/* ===========================
   1. CSS RESET & BASE
   =========================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button { cursor: pointer; }

/* ===========================
   2. CUSTOM PROPERTIES
   =========================== */
:root {
  /* Brand Colors */
  --primary:       #0F3460;
  --primary-light: #1A467D;
  --primary-dark:  #091F3A;
  --accent:        #2EA3F2;
  --accent-light:  #5AB5F5;
  --accent-dark:   #1E82C4;
  --cta-gradient:  linear-gradient(135deg, #E31E24, #F7941D);
  --cta-red:       #E31E24;
  --cta-orange:    #F7941D;
  --bg:            #FFFFFF;
  --bg-alt:        #F7F8FA;
  --text:          #222831;
  --text-light:    #5A5A5A;
  --text-muted:    #8A8A8A;
  --white:         #FFFFFF;
  --border:        #E5DFD5;
  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(15, 52, 96, 0.06);
  --shadow-md:   0 4px 20px rgba(15, 52, 96, 0.08);
  --shadow-lg:   0 8px 40px rgba(15, 52, 96, 0.12);
  --shadow-card: 0 6px 24px rgba(15, 52, 96, 0.07);
  --shadow-cta:  0 4px 20px rgba(227, 30, 36, 0.25);
   --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  /* Container */
  --container-max: 1200px;
  --container-padding: 1.25rem;
}

/* ===========================
   3. TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--primary);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p {
  margin-bottom: 1rem;
  color: var(--text-light);
}
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-center { text-align: center; }

/* ===========================
   4. LAYOUT & UTILITIES
   =========================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.section {
  padding: var(--space-2xl) 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-padding {
  padding: var(--space-lg) 0;
}
@media (min-width: 768px) {
  .section-padding { padding: var(--space-xl) 0; }
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--cta-gradient);
  margin: 0.75rem auto 0;
  border-radius: var(--radius-full);
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
/* ===========================
   5. BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cta-gradient);
  color: var(--white);
  box-shadow: var(--shadow-cta);
  border: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #CC1B20, #E68515);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(227, 30, 36, 0.35);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--cta-orange);
  border: 2px solid var(--cta-orange);
}
.btn-outline-gold:hover {
  background: var(--cta-gradient);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-success {
  background: #25D366;
  color: var(--white);
}
.btn-success:hover {
  background: #128C7E;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}
.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}
/* ===========================
   6. HEADER & NAVIGATION
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  height: 76px;
  min-height: 76px;
  max-height: 76px;
  overflow: visible;
}
.header.nav-open {
  z-index: 10000;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.header.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  min-height: 76px;
  max-height: 76px;
  overflow: visible;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: clamp(56px, 6vw, 72px);
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-weight: 700;
  font-size: 1.375rem; /* ~22px */
  color: #0F3460;
  line-height: 1.1;
}
.logo-tagline {
  font-size: 0.75rem; /* ~12px */
  color: #2EA3F2;
  font-weight: 500;
}
.nav {
  display: none;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-full);
}
/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-arrow {
  width: 10px;
  height: 10px;
  transition: transform var(--transition);
}
.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--primary);
}
.dropdown-menu a .dropdown-icon {
  font-size: 1.1rem;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.header-phone:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.header-phone svg {
  width: 16px;
  height: 16px;
}
/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* =====================================================
   PREMIUM MOBILE DRAWER — Shreya Travels
   Right-slide, luxury travel agency experience
   ===================================================== */

/* --- Overlay Backdrop --- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease-in-out;
}
.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* --- Drawer Panel --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  border-radius: 28px 0 0 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  opacity: 0;
  transition: transform 350ms ease-in-out, opacity 350ms ease-in-out;
  overflow: hidden;
}
.mobile-drawer.open {
  transform: translateX(0);
  opacity: 1;
}

/* --- Drawer Scroll Container --- */
.mobile-drawer-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 0 90px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mobile-drawer-scroll::-webkit-scrollbar { display: none; }


/* --- Drawer Header --- */
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 18px;
  border-bottom: 1px solid #ECECEC;
  flex-shrink: 0;
  background: #fff;
}
.drawer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.drawer-logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #17375E, #244A7D);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(23,55,94,0.2);
}
.drawer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.drawer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #17375E;
  letter-spacing: 0.01em;
}
.drawer-logo-est {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #D8A441;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.drawer-close-btn {
  width: 42px;
  height: 42px;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.drawer-close-btn:hover {
  background: #D8A441;
  border-color: #D8A441;
  box-shadow: 0 4px 16px rgba(216,164,65,0.35);
  transform: rotate(90deg);
}
.drawer-close-btn svg {
  width: 18px;
  height: 18px;
  color: #17375E;
  transition: color 0.3s ease;
}
.drawer-close-btn:hover svg {
  color: #FFFFFF;
}

/* --- Welcome Card --- */
.drawer-welcome {
  margin: 16px 16px 0;
  background: #F8F5EF;
  border-radius: 18px;
  padding: 16px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.mobile-drawer.open .drawer-welcome {
  opacity: 1;
  transform: translateY(0);
}
.drawer-welcome-text .welcome-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #D8A441;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.drawer-welcome-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #5A5A5A;
  line-height: 1.55;
  margin: 0;
}
.drawer-welcome-icon {
  font-size: 2.2rem;
  opacity: 0.35;
  flex-shrink: 0;
  line-height: 1;
}

/* --- Navigation Section --- */
.drawer-nav {
  padding: 16px 16px 0;
}
.drawer-nav-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #B0B0B0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 4px;
}
.drawer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --- Nav Card Items --- */
.drawer-nav-item {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-drawer.open .drawer-nav-item:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.08s; }
.mobile-drawer.open .drawer-nav-item:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.13s; }
.mobile-drawer.open .drawer-nav-item:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.18s; }
.mobile-drawer.open .drawer-nav-item:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.23s; }
.mobile-drawer.open .drawer-nav-item:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.28s; }

.drawer-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  height: 56px;
  min-height: 48px;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 16px;
  text-decoration: none;
  color: #17375E;
  font-family: 'Inter', sans-serif;
  font-size: 0.975rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.drawer-nav-link:hover,
.drawer-nav-link.active {
  background: #17375E;
  color: #FFFFFF;
  border-color: #17375E;
  box-shadow: 0 4px 16px rgba(23,55,94,0.22);
  transform: scale(1.015);
}
.drawer-nav-link.active {
  transform: scale(1);
}
.drawer-nav-icon {
  width: 34px;
  height: 34px;
  background: rgba(216,164,65,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.drawer-nav-link:hover .drawer-nav-icon,
.drawer-nav-link.active .drawer-nav-icon {
  background: rgba(216,164,65,0.22);
  transform: rotate(-5deg) scale(1.08);
}
.drawer-nav-text {
  flex: 1;
  text-align: left;
}
.drawer-nav-arrow {
  width: 18px;
  height: 18px;
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity 0.25s, transform 0.25s;
}
.drawer-nav-link:hover .drawer-nav-arrow {
  opacity: 0.8;
  transform: translateX(3px);
}


/* --- Services Accordion --- */
.drawer-services-item {
  border: none;
  background: transparent;
  box-shadow: none;
  width: 100%;
}
.drawer-services-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  height: 56px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 16px;
  cursor: pointer;
  color: #17375E;
  font-family: 'Inter', sans-serif;
  font-size: 0.975rem;
  font-weight: 600;
  transition: all 0.25s ease;
  text-align: left;
  box-sizing: border-box;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.drawer-services-toggle:hover {
  background: rgba(23,55,94,0.04);
}
.drawer-services-item.open .drawer-services-toggle {
  background: #17375E;
  color: #FFFFFF;
  border-color: #17375E;
  box-shadow: 0 4px 16px rgba(23,55,94,0.18);
}
.drawer-services-item.open .drawer-nav-icon {
  background: rgba(216,164,65,0.22);
}
.drawer-chevron {
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  opacity: 0.5;
}
.drawer-services-item.open .drawer-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.drawer-services-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
  opacity: 0;
  padding: 0;
}
.drawer-services-item.open .drawer-services-panel {
  max-height: 500px;
  opacity: 1;
  padding: 8px 0 0 0;
}
.drawer-service-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer-service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px 13px 32px; /* Indented left padding for alignment */
  background: #F8F5EF;
  border: 1px solid #ECECEC;
  border-radius: 16px;
  text-decoration: none;
  color: #17375E;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  min-height: 48px;
  width: 100%;
  box-sizing: border-box;
}
.drawer-service-card:hover {
  background: #17375E;
  color: #FFFFFF;
  border-color: #17375E;
  transform: scale(1.015);
  box-shadow: 0 4px 12px rgba(23,55,94,0.15);
}
.drawer-service-card:hover .drawer-svc-icon {
  background: rgba(216,164,65,0.25);
}
.drawer-svc-icon {
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.drawer-svc-name {
  flex: 1;
}
.drawer-svc-arrow {
  width: 14px;
  height: 14px;
  opacity: 0.4;
  flex-shrink: 0;
}

/* --- CTA Bottom Section --- */
.drawer-cta-section {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: #FFFFFF;
  border-top: 1px solid #F0EDEA;
}
.drawer-cta-card {
  background: linear-gradient(135deg, #17375E 0%, #244A7D 100%);
  border-radius: 20px;
  padding: 18px 18px 16px;
}
.drawer-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 3px;
}
.drawer-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 14px;
}
.drawer-cta-buttons {
  display: flex;
  gap: 10px;
}
.drawer-cta-btn {
  flex: 1;
  height: 44px;
  min-height: 44px;
  border: none;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-cta-btn.gold {
  background: #D8A441;
  color: #17375E;
  box-shadow: 0 4px 14px rgba(216,164,65,0.4);
}
.drawer-cta-btn.gold:hover {
  background: #C4912D;
  transform: scale(1.03);
}
.drawer-cta-btn.white {
  background: rgba(255,255,255,0.14);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.3);
}
.drawer-cta-btn.white:hover {
  background: rgba(255,255,255,0.24);
  transform: scale(1.03);
}

/* --- Social Icons --- */
.drawer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
  padding: 0 4px;
}

.drawer-social-btn {
  width: 40px;
  height: 40px;
  background: #F8F5EF;
  border: 1px solid #ECECEC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.drawer-social-btn:hover {
  background: #D8A441;
  border-color: #D8A441;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 4px 12px rgba(216,164,65,0.35);
}

/* --- Keep old hamburger working, hide old nav on mobile --- */
@media (max-width: 1023px) {
  .nav {
    display: none !important;
  }
}




/* ===========================
   7. HERO SECTION (HOME)
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,58,92,0.88) 0%,
    rgba(27,58,92,0.65) 50%,
    rgba(18,40,64,0.75) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--space-xl) 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(212,162,76,0.15);
  border: 1px solid rgba(212,162,76,0.3);
  border-radius: var(--radius-full);
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.15;
}
.hero h1 .highlight {
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
  background: var(--accent);
  padding: 0 0.5rem;
  border-radius: var(--radius-sm);
  margin: 0 0.2rem;
  box-shadow: 0 4px 15px rgba(212,162,76,0.3);
}
.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-lg);
  max-width: 540px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
/* Decorative floating elements */
.hero-decor {
  position: absolute;
  z-index: 1;
  opacity: 0.08;
  font-size: 6rem;
}
.hero-decor-1 { top: 20%; right: 5%; }
.hero-decor-2 { bottom: 15%; right: 15%; font-size: 4rem; }
/* ===========================
   8. TRUST BAR
   =========================== */
.trust-bar {
  position: relative;
  z-index: 3;
  margin-top: -3rem;
  padding: 0 var(--container-padding);
}

.trust-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
}
.trust-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
}

.trust-text h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
}
.trust-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
/* ===========================
   9. SERVICE CARDS
   =========================== */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--terracotta));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--primary);
  border: 2px solid rgba(15, 52, 96, 0.5);
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .card-link {
  color: var(--white);
}
.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(27,58,92,0.08), rgba(27,58,92,0.03));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--accent);
  transform: scale(1.05);
}
.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}
.service-card p {
  font-size: 0.925rem;
  margin-bottom: var(--space-md);
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent-dark);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.service-card .card-link:hover {
  color: var(--primary);
  gap: 0.75rem;
}
/* ===========================
   10. DESTINATION CARDS
   =========================== */
.destinations-scroll {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-sm);
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-alt);
}

.destinations-scroll::-webkit-scrollbar {
  height: 6px;
}
.destinations-scroll::-webkit-scrollbar-track {
  background: var(--bg-alt);
  border-radius: var(--radius-full);
}
.destinations-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: var(--radius-full);
}
.destination-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 380px;
  cursor: pointer;
  transition: all var(--transition);
}
.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.destination-card:hover img {
  transform: scale(1.08);
}
.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(transparent, rgba(18,40,64,0.9));
  color: var(--white);
}
.destination-info h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.destination-info p {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}
/* ===========================
   11. WHY CHOOSE US
   =========================== */
.why-choose-us .container {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) {
  .why-choose-us .container {
    padding: var(--space-xl) var(--space-lg);
  }
}

.why-card {
  text-align: center;
  padding: var(--space-md);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.why-card:hover {
  background: var(--primary);
  border: 2px solid rgba(15, 52, 96, 0.5);
  transform: translateY(-4px);
}
.why-card:hover h3,
.why-card:hover p {
  color: var(--white);
}
.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, rgba(212,162,76,0.12), rgba(212,162,76,0.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
}
.why-card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}
.why-card p {
  font-size: 0.925rem;
  color: var(--text-light);
}
/* ===========================
   12. TESTIMONIALS
   =========================== */
.testimonials-header-info {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--border);
}

.google-icon {
  height: 24px;
}
.rating-stars {
  color: var(--cta-orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.rating-text {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}
.testimonials-slider {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem var(--space-md);
  margin: 0 calc(var(--space-md) * -1);
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-alt);
}

.testimonials-slider::-webkit-scrollbar {
  height: 6px;
}
.testimonials-slider::-webkit-scrollbar-track {
  background: var(--bg-alt);
  border-radius: var(--radius-full);
}
.testimonials-slider::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: var(--radius-full);
}
.testimonial-card {
  flex: 0 0 85%;
  max-width: 360px;
  scroll-snap-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}
.testimonial-card .stars {
  color: var(--cta-orange);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-author-info h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--text);
}
.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===========================
   13. CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0D1B2A 100%);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,162,76,0.1), transparent 70%);
  border-radius: 50%;
}
.cta-banner .container {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  max-width: 550px;
  margin: 0 auto var(--space-lg);
  font-size: 1.1rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
/* ===========================
   14. FORMS
   =========================== */
.form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.form-section h3 {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.form-row .form-group {
  margin-bottom: 0;
}
.form-row .form-group.half {
  flex: 1 1 calc(50% - (var(--space-md) / 2));
  min-width: 200px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.form-group label .required {
  color: var(--terracotta);
}
.form-control {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  color: var(--text);
  background: var(--bg);
  transition: all var(--transition);
}
.form-control:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,162,76,0.12);
}
.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B8872E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
  padding-right: 3rem;
  cursor: pointer;
}
.form-submit {
  margin-top: var(--space-sm);
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* ===========================
   15. FOOTER
   =========================== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-2xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.footer-col h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  color: var(--accent-light);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.footer-col p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-col .footer-brand-tagline {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 0.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact-item .fc-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(212,162,76,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
}
.footer-contact-item p {
  margin: 0;
  font-size: 0.875rem;
}
.footer-contact-item a {
  color: var(--accent-light);
  font-weight: 600;
}
.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-md) 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
/* ===========================
   16. WHATSAPP FAB
   =========================== */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: fab-pulse 2s infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  color: var(--white);
}
.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}
/* ===========================
   17. INNER PAGE HERO
   =========================== */
.page-hero {
  padding: 8rem 0;
  background: linear-gradient(rgba(16, 43, 78, 0.9), rgba(30, 69, 110, 0.95)), 
              url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232, 195, 106, 0.12), transparent 70%);
  filter: blur(20px);
  border-radius: 50%;
  animation: floatOrb1 15s infinite alternate ease-in-out;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(224, 122, 95, 0.08), transparent 70%);
  filter: blur(25px);
  border-radius: 50%;
  animation: floatOrb2 20s infinite alternate ease-in-out;
  pointer-events: none;
}


@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}
@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.1); }
}
.page-hero .container {
  position: relative;
  z-index: 10;
  max-width: 800px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 var(--container-padding) !important;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #E8C36A 0%, #D6A84D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.page-hero-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-bottom: 1.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: color var(--transition);
}
.page-hero .breadcrumb a:hover {
  color: #E8C36A;
}
.page-hero .breadcrumb span {
  color: #E8C36A;
  font-weight: 600;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 5;
  pointer-events: none;
}
.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 40px;
}
.hero-wave .shape-fill {
  fill: var(--bg);
}
/* ===========================
   18. ABOUT PAGE
   =========================== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-story-content h2 {
  margin-bottom: var(--space-md);
}
.about-story-content p {
  font-size: 1.025rem;
  line-height: 1.8;
}
.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-story-image .experience-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.experience-badge .years {
  display: block;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.experience-badge .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* Team Member */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(27, 58, 92, 0.08);
  border: 1px solid var(--border);
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
  transition: all var(--transition);
  position: relative;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(27, 58, 92, 0.14);
  border-color: var(--accent);
}

.team-card-image {
  height: 380px;
  background: #0b1726;
  position: relative;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-card-image img {
  transform: scale(1.04);
}

.team-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(18, 40, 64, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent-light);
  border: 1px solid rgba(212, 162, 76, 0.4);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.team-card-body {
  padding: var(--space-lg) var(--space-md);
}

.team-card-body h3 {
  font-size: 1.65rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.team-card-body .role {
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.team-card-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

.team-card-body .team-contact {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.team-card-body .team-contact .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
}

.team-card-body .team-contact .btn svg {
  flex-shrink: 0;
}
/* Mission Values */
.value-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, rgba(212,162,76,0.15), rgba(212,162,76,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-dark);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.value-card h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 700;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===========================
   19. SERVICE DETAIL PAGES
   =========================== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.service-detail-content h2 {
  margin-bottom: var(--space-md);
}
.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: var(--space-md);
}
.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.service-feature-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}

.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212,162,76,0.12), rgba(212,162,76,0.04));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.service-feature-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.service-feature-item p {
  font-size: 0.875rem;
  margin: 0;
}
/* Trust Points Row */
.trust-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.trust-point:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.trust-point-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212,162,76,0.15), rgba(212,162,76,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-dark);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.trust-point-content h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.trust-point-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}
/* ===========================
   20. PACKAGE CARDS
   =========================== */
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card:hover .package-image img {
  transform: scale(1.08);
}
.package-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.package-body {
  padding: var(--space-md);
}

.package-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.package-highlights span {
  padding: 0.25rem 0.625rem;
  background: var(--bg);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}
.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cta-orange);
}

.price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}
/* ===========================
   21. FLEET / CAR CARDS
   =========================== */
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.fleet-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
}

.fleet-card h3 {
  margin-bottom: 0.25rem;
}
.fleet-card .fleet-type {
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}
.fleet-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}
.fleet-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}
.fleet-features li .check {
  color: #22C55E;
  font-weight: 700;
}

/* ===========================
   22. CONTACT PAGE
   =========================== */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
}
.contact-card h4 {
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.25rem;
}
.contact-card p {
  font-size: 0.9rem;
  margin: 0;
}
.contact-card a {
  color: var(--accent-dark);
  font-weight: 600;
}
.contact-card a:hover {
  color: var(--primary);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-bottom: var(--space-xl);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

/* ===========================
   22b. CONTACT PAGE — Premium Redesign
   =========================== */
.contact-page {
  --contact-primary: #163B69;
  --contact-gold: #D9A441;
  --contact-gold-dark: #C4922E;
  --contact-bg: #FAF8F5;
  --contact-gray: #666666;
  --contact-border: #ECECEC;
  --contact-input-border: #DDDDDD;
  background-color: var(--contact-bg);
}
.contact-page .contact-container {
  max-width: 1280px;
}
/* --- Hero --- */
.contact-hero {
  position: relative;
  height: 420px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  animation: contactHeroZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(22, 59, 105, 0.88) 0%,
    rgba(22, 59, 105, 0.72) 50%,
    rgba(12, 35, 64, 0.92) 100%
  );
  z-index: 1;
}
.contact-hero-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.05);
  z-index: 2;
  pointer-events: none;
}
.contact-hero-route .route-path {
  animation: contactRouteDash 30s linear infinite;
}
.contact-hero-route .route-dot {
  animation: contactRoutePulse 3s ease-in-out infinite;
}
.contact-hero-content {
  position: relative;
  z-index: 10;
}

.contact-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--contact-gold);
  line-height: 1.15;
  margin-bottom: 1rem;
  animation: contactFadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}
.contact-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 1.25rem;
  animation: contactFadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}
.contact-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  animation: contactFadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}
.contact-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}
.contact-breadcrumb a:hover {
  color: var(--contact-gold);
}
.contact-breadcrumb .breadcrumb-current {
  color: var(--contact-gold);
  font-weight: 600;
}
.contact-hero .hero-wave {
  z-index: 5;
}
.contact-hero .hero-wave .shape-fill {
  fill: var(--contact-bg);
}
@keyframes contactHeroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.03); }
}
@keyframes contactFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes contactRouteDash {
  to { stroke-dashoffset: -200; }
}
@keyframes contactRoutePulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}
/* --- Contact Info Cards --- */
.contact-cards-section {
  padding: 4rem 0;
  background: var(--contact-bg);
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  height: 100%;
  padding: 2.25rem 1.25rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(229, 223, 213, 0.8);
  box-shadow: 0 4px 16px rgba(27, 58, 92, 0.04);
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.contact-info-card--static {
  cursor: default;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border-color: var(--primary);
}
.contact-info-card--static:hover {
  transform: translateY(-4px);
}
.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 162, 76, 0.12);
  border: 1px solid rgba(212, 162, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  stroke: var(--primary);
  transition: all 0.2s ease;
}
.contact-info-card:hover .contact-info-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.contact-info-card:hover .contact-info-icon svg {
  color: var(--accent);
  stroke: var(--accent);
}
.contact-info-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  transition: color 0.2s ease;
}
.contact-info-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  transition: color 0.2s ease;
}
/* --- Map & Form Section --- */
.contact-map-form-section {
  padding: 5rem 0 6rem;
  background: #F3F0EB;
}
.contact-map-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
.contact-map-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(22, 59, 105, 0.1);
  border: 1px solid var(--contact-border);
  min-height: 420px;
  height: 100%;
  transition: box-shadow 0.35s ease;
}

.contact-map-wrap:hover {
  box-shadow: 0 14px 52px rgba(22, 59, 105, 0.14);
}
.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
.contact-map-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(22, 59, 105, 0.12);
  border: 1px solid var(--contact-border);
  max-width: calc(100% - 2.5rem);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.contact-map-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(22, 59, 105, 0.16);
}
.contact-map-badge-icon svg {
  width: 22px;
  height: 22px;
  color: var(--contact-gold);
  stroke: var(--contact-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-map-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.875rem;
  color: var(--contact-gray);
  line-height: 1.4;
}

.contact-map-badge-text strong {
  font-size: 1rem;
  color: var(--contact-primary);
  font-weight: 700;
}
.contact-map-badge-link {
  color: var(--contact-gold);
  font-weight: 600;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}
/* --- Contact Form --- */
.contact-form-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(22, 59, 105, 0.08);
  border: 1px solid var(--contact-border);
  height: 100%;
}
.contact-form-header {
  margin-bottom: 2rem;
}

.contact-form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2rem);
  color: var(--contact-primary);
  margin-bottom: 0.625rem;
  line-height: 1.25;
}
.contact-form-header p {
  font-size: 1rem;
  color: var(--contact-gray);
  line-height: 1.6;
  margin: 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form-field label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--contact-primary);
  letter-spacing: 0.01em;
}
.contact-page .contact-input {
  height: 58px;
  padding: 0 1.125rem;
  border: 1.5px solid var(--contact-input-border);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-page .contact-input:focus {
  border-color: var(--contact-primary);
  box-shadow: 0 0 0 4px rgba(22, 59, 105, 0.1);
  outline: none;
}

.contact-page .contact-textarea {
  height: 180px;
  min-height: 180px;
  padding: 1.125rem;
  resize: vertical;
}
.contact-page select.contact-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23163B69' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  background-size: 16px;
  padding-right: 3rem;
  appearance: none;
}
.contact-page .form-submit {
  margin-top: 0.25rem;
}


.contact-submit-btn {
  width: 100%;
  height: 58px;
  justify-content: center;
  border-radius: 12px;
  background: var(--contact-gold);
  color: var(--contact-primary);
  font-size: 1.0625rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 20px rgba(217, 164, 65, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.contact-submit-btn:hover {
  transform: translateY(-3px);
  background: var(--contact-gold-dark);
  box-shadow: 0 8px 28px rgba(217, 164, 65, 0.4);
}
.contact-submit-btn:focus-visible {
  outline: 3px solid var(--contact-primary);
  outline-offset: 3px;
}

/* --- Trust Strip --- */
.contact-trust-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--contact-border);
}
.contact-trust-strip li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--contact-primary);
  line-height: 1.4;
}
.contact-trust-strip li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--contact-gold);
  stroke: var(--contact-gold);
}

/* --- CTA Section --- */
.contact-cta-section {
  position: relative;
  padding: 5rem 0 6rem;
  background: var(--contact-bg);
  overflow: hidden;
}
.contact-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  background: linear-gradient(135deg, #163B69 0%, #0F2A4A 50%, #163B69 100%);
  border-radius: 28px;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 16px 60px rgba(22, 59, 105, 0.25);
  overflow: hidden;
}
.contact-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.contact-cta-inner > p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.contact-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.contact-cta-btn {
  min-width: 180px;
  height: 54px;
  justify-content: center;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.contact-cta-btn:hover {
  transform: scale(1.02) translateY(-2px);
}

.contact-cta-btn--gold {
  background: var(--contact-gold);
  color: var(--contact-primary);
  box-shadow: 0 4px 20px rgba(217, 164, 65, 0.35);
}
.contact-cta-btn--gold:hover {
  background: var(--contact-gold-dark);
  box-shadow: 0 8px 28px rgba(217, 164, 65, 0.45);
}
.contact-cta-btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.contact-cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.contact-cta-btn:focus-visible {
  outline: 3px solid var(--contact-gold);
  outline-offset: 3px;
}


/* --- Particles --- */
.contact-cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.contact-cta-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.25);
  animation: contactParticleFloat 8s ease-in-out infinite;
}
.contact-cta-particles span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.contact-cta-particles span:nth-child(2) { top: 25%; right: 15%; animation-delay: 1.5s; width: 4px; height: 4px; }
.contact-cta-particles span:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 3s; }
.contact-cta-particles span:nth-child(4) { top: 40%; right: 25%; animation-delay: 0.8s; width: 8px; height: 8px; }
.contact-cta-particles span:nth-child(5) { bottom: 20%; right: 10%; animation-delay: 2.2s; }
.contact-cta-particles span:nth-child(6) { top: 60%; left: 8%; animation-delay: 4s; width: 5px; height: 5px; }


@keyframes contactParticleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  50%      { transform: translateY(-20px) translateX(10px); opacity: 0.7; }
}
/* --- Scroll Animations (Contact-specific) --- */
.contact-page .animate-on-scroll.animate-from-right {
  transform: translateX(40px);
}
.contact-page .animate-on-scroll.animate-from-right.animated {
  transform: translateX(0);
}
.contact-info-card:focus-visible,
.contact-map-badge:focus-visible,
.contact-cta-btn:focus-visible {
  outline: 3px solid var(--contact-gold);
  outline-offset: 3px;
}

/* --- Contact Responsive --- */
@media (min-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .contact-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-map-form-grid {
    gap: 3rem;
  }
  .contact-map-wrap iframe {
    min-height: 500px;
  }
}

@media (min-width: 1024px) {
  .contact-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  .contact-map-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
  }
  .contact-map-wrap {
    min-height: 100%;
  }
  .contact-map-wrap iframe {
    min-height: 560px;
  }
  .contact-trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}


@media (max-width: 767px) {
  .contact-hero {
    height: 360px;
    min-height: 360px;
  }
  .contact-cards-section,
  .contact-map-form-section {
    padding: 3.5rem 0;
  }
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
  .contact-info-card {
    height: auto;
    padding: 1.75rem 1.25rem;
  }
  .contact-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-cta-btn {
    width: 100%;
  }
  
  .contact-trust-strip {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   23. FAQ ACCORDION
   =========================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover {
  border-color: var(--accent);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  width: 100%;
  text-align: left;
  transition: all var(--transition);
}
.faq-question:hover {
  color: var(--primary);
}
.faq-arrow {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--accent);
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ===========================
   24. ANIMATIONS
   =========================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Scroll-triggered animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
/* Hero animation */
.hero-content {
  animation: slideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

/* ===========================
   25. RESPONSIVE
   =========================== */
/* Tablet (768px+) */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner {
    grid-template-columns: repeat(4, 1fr);
    padding: var(--space-lg) var(--space-xl);
  }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-group.full-width { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .trust-points { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 3fr 2fr; }
  .map-container iframe { height: 450px; }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
  .hamburger {
    display: none;
  }
  .header-phone {
    display: inline-flex;
  }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.25fr; }
  .destination-card { flex: 0 0 260px; }
  .trust-points { grid-template-columns: repeat(3, 1fr); }
  .service-detail-grid { grid-template-columns: 1.2fr 1fr; }
  .form-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .hero-content {
    max-width: 650px;
  }
  .destination-card {
    flex: 0 0 280px;
  }
  .map-container iframe { height: 500px; }
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: 7rem 0 4rem;
  }
  .hero-content {
    text-align: center;
    padding: 1rem 0 2rem;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas, .hero-buttons {
    justify-content: center;
  }
  .trust-bar {
    margin-top: -1.5rem;
  }
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.25rem 0.75rem;
    gap: 0.75rem;
    border-radius: var(--radius-md);
  }
  .trust-item {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.25rem;
  }
  .trust-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    border-radius: 12px;
  }
  .trust-text {
    text-align: center;
  }
  .trust-text strong,
  .trust-text h4 {
    font-size: 0.95rem;
    line-height: 1.25;
    margin-bottom: 0.1rem;
    display: block;
  }
  .trust-text span,
  .trust-text p {
    font-size: 0.75rem;
    line-height: 1.2;
    margin: 0;
    display: block;
  }
  .section {
    padding: var(--space-xl) 0;
  }
  .cta-banner {
    padding: var(--space-xl) 0;
  }
  .page-hero {
    padding: 7.5rem 0 3rem;
  }
  .form-section {
    padding: var(--space-lg);
  }
  .whatsapp-fab {
    width: 52px;
    height: 52px;
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
}

/* ===========================================
   FLIGHT BOOKING PREMIUM SECTION (fbs-*)
   =========================================== */
/* Outer section padding */
.fbs-section {
  padding: 100px 0;
  background: var(--bg);
}
/* Max-width container, centred */
.fbs-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 72px;
}
/* Left column = 60% */
.fbs-left {
  flex: 0 0 58%;
  max-width: 58%;
}
/* Right column = 40%, sticky */
.fbs-right {
  flex: 0 0 38%;
  max-width: 38%;
  position: sticky;
  top: 100px;
}

/* Heading */
.fbs-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #163B69;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
/* Intro paragraph */
.fbs-subtext {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 3.5rem;
  max-width: 620px;
}
/* Cards wrapper */
.fbs-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Individual horizontal feature card */
.fbs-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #E8E8E8;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(22, 59, 105, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.fbs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(22, 59, 105, 0.12);
}
/* Emoji icon square */
.fbs-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(26, 82, 160, 0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: background 250ms ease;
}

.fbs-card:hover .fbs-icon {
  background: rgba(26, 82, 160, 0.14);
}
/* Card text block */
.fbs-card-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #163B69;
  margin-bottom: 0.4rem;
}
.fbs-card-text p {
  font-size: 0.975rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
/* ---- QUOTE FORM ---- */
.fbs-form-card {
  background: #ffffff;
  border: 1px solid #E8E8E8;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(22, 59, 105, 0.09);
}

.fbs-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #163B69;
  margin-bottom: 1.5rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(212, 162, 76, 0.25);
}
/* Field wrapper */
.fbs-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 18px;
}
.fbs-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #163B69;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
/* Side-by-side row of two fields */
.fbs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fbs-row .fbs-field {
  margin-bottom: 0;
}
/* Input / Select / Textarea */
.fbs-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #DCDCDC;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}
.fbs-input:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.14);
}
.fbs-input::placeholder {
  color: #b0b0b0;
}

select.fbs-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B8872E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
  padding-right: 3rem;
  cursor: pointer;
}
/* ---- TRUST CARDS BELOW ---- */
.fbs-trust-section {
  padding: 80px 0;
  background: #F4F7FC;
}
.fbs-trust-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fbs-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 28px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E8E8E8;
  border-top: 3px solid var(--accent);
  box-shadow: 0 2px 12px rgba(22, 59, 105, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.fbs-trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(22, 59, 105, 0.12);
}
.fbs-trust-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212,162,76,0.15), rgba(212,162,76,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.fbs-trust-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #163B69;
  margin-bottom: 0.4rem;
}
.fbs-trust-card p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}


/* ---- RESPONSIVENESS ---- */
@media (max-width: 1024px) {
  .fbs-container {
    flex-direction: column;
    gap: 60px;
    padding: 0 24px;
  }
  .fbs-left,
  .fbs-right {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }
  .fbs-right {
    position: static;
  }
  .fbs-trust-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .fbs-section {
    padding: 60px 0;
  }
  .fbs-container {
    padding: 0 16px;
    gap: 40px;
  }
  .fbs-subtext {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .fbs-form-card {
    padding: 24px 16px;
  }
  .fbs-row {
    grid-template-columns: 1fr;
  }
  .fbs-trust-section {
    padding: 48px 0;
  }
  .fbs-trust-grid {
    padding: 0 16px;
  }
}
/* ===========================================
   HOLIDAY PACKAGES PREMIUM (pkg-*)
   =========================================== */
/* Sections */
.pkg-section {
  padding: 100px 0;
}
.pkg-bg-ivory {
  background: var(--bg);
}
.pkg-bg-gray {
  background: #FAF8F5;
}
/* Container */
.pkg-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Heading */
.pkg-header {
  text-align: center;
  margin-bottom: 50px;
}

.pkg-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); /* 56px on desktop */
  font-weight: 700;
  color: #163B69;
  margin-bottom: 16px;
  line-height: 1.2;
}
.pkg-header p {
  font-size: 1.125rem; /* 18px */
  color: #666;
  margin: 0;
}
/* Grid */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  width: 100%;
}
/* Card */
.pkg-card {
  background: #ffffff;
  border: 1px solid #ECECEC;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(22, 59, 105, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(22, 59, 105, 0.12);
}
/* Image wrapper */
.pkg-image {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.pkg-image img, .pkg-carousel, .pkg-carousel-inner, .pkg-carousel-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pkg-image img {
  transition: transform 300ms ease;
}
.pkg-card:hover .pkg-image img {
  transform: scale(1.05);
}
/* Image overlay */
.pkg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
  z-index: 1;
}

/* Badge on Image */
.pkg-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
}
/* Card Body */
.pkg-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.pkg-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #163B69;
  margin-bottom: 8px;
}

/* Feature tags */
.pkg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  margin-top: auto;
}
.pkg-tag {
  background: #FAF2E6; /* Light beige */
  color: var(--primary); /* Dark blue text */
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
/* Price & Button Footer */
.pkg-price-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid #ECECEC;
  margin-bottom: 24px;
}

.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem; /* Large and bold */
  font-weight: 700;
  color: var(--cta-orange);
}
.pkg-price span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #888;
  margin-top: 2px;
}

/* Footer Button */
.pkg-btn {
  width: 100%;
  height: 54px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: background 250ms ease, transform 250ms ease;
  margin-top: auto;
  border-radius: 0 0 22px 22px;
}
.pkg-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
/* ---- PREMIUM CUSTOM HOLIDAY FORM SECTION ---- */
.pkg-form-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.pkg-form-left {
  flex: 1;
}
.pkg-form-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #163B69;
  margin-bottom: 16px;
}
.pkg-form-left p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 36px;
}
/* Badges */
.pkg-badges-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pkg-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #163B69;
}
.pkg-badge-item span {
  color: var(--accent-dark);
  font-size: 1.2rem;
}
/* Form card on right */
.pkg-form-right {
  flex: 1;
  max-width: 620px;
}
.pkg-form-card {
  background: #ffffff;
  border: 1px solid #ECECEC;
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 6px 28px rgba(22, 59, 105, 0.08);
}

/* Input styles */
.pkg-input {
  width: 100%;
  border: 1.5px solid #DDDDDD;
  border-radius: 14px;
  height: 56px;
  padding: 18px;
  box-sizing: border-box;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.pkg-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(22, 59, 105, 0.08);
}
select.pkg-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B8872E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
  padding-right: 3rem;
  cursor: pointer;
}

.pkg-textarea {
  width: 100%;
  border: 1.5px solid #DDDDDD;
  border-radius: 14px;
  height: 160px;
  padding: 18px;
  box-sizing: border-box;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  resize: vertical;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.pkg-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(22, 59, 105, 0.08);
}
.pkg-form-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pkg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Submit button */
.pkg-form-btn {
  width: 100%;
  height: 58px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 1.125rem; /* 18px */
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 250ms ease, transform 200ms ease, box-shadow 250ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pkg-form-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(212, 162, 76, 0.3);
}

/* ---- RESPONSIVENESS ---- */
@media (max-width: 1024px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .pkg-container {
    padding: 0 24px;
  }
  .pkg-form-container {
    flex-direction: column;
    gap: 48px;
  }
  .pkg-form-right {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .pkg-grid {
    grid-template-columns: 1fr;
  }
  .pkg-container {
    padding: 0 16px;
  }
  .pkg-section {
    padding: 60px 0;
  }
  .pkg-header h2 {
    font-size: 2.2rem;
  }
  .pkg-form-card {
    padding: 24px 16px;
  }
  .pkg-form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===========================================
   CAR RENTAL PREMIUM (cr-*)
   =========================================== */
/* Sections */
.cr-section {
  padding: 120px 0;
}
.cr-bg-white {
  background: #ffffff;
}
.cr-bg-ivory {
  background: #FAF8F5;
}
/* Container */
.cr-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
/* Heading */
.cr-header {
  text-align: center;
  margin-bottom: 50px;
}

.cr-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem); /* 56px */
  font-weight: 700;
  color: #163B69;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cr-header p {
  font-size: 1.125rem; /* 18px */
  color: #666;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}
/* Grid */
.cr-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.cr-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Vehicle Showcase Card */
.cr-card {
  background: #ffffff;
  border: 1px solid #ECECEC;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(22, 59, 105, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 300ms ease, box-shadow 300ms ease;
  height: 100%;
}
.cr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(22, 59, 105, 0.12);
}
/* Image wrapper */
.cr-img-wrapper {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.cr-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.cr-card:hover .cr-img-wrapper img {
  transform: scale(1.05);
}
/* Card Body */
.cr-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.cr-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; /* Aligned with standard card titles */
  font-weight: 700;
  color: #163B69;
  margin-bottom: 4px;
}
.cr-card-subtitle {
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Features list */
.cr-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  margin-top: auto;
  padding: 0;
}
.cr-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem; /* Aligned with standard body text size */
  color: #555;
  text-align: left;
}
.cr-feature-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-dark); /* Gold strokes */
  fill: none;
  flex-shrink: 0;
}

/* Gold Divider */
.cr-divider {
  border: none;
  border-top: 1px solid var(--accent);
  margin: 0;
  padding: 0;
}
/* CTA Button */
.cr-btn {
  width: 100%;
  height: 56px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: background 250ms ease, transform 200ms ease;
  margin-top: auto;
  border-radius: 0 0 22px 22px;
}
.cr-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.02);
}

/* ---- PREMIUM SERVICES FEATURE CARDS ---- */
.cr-service-card {
  background: #ffffff;
  border: 1px solid #ECECEC;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(22, 59, 105, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 4px solid transparent;
  transition: all 300ms ease;
  text-align: left;
}
.cr-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(22, 59, 105, 0.1);
  border-top-color: var(--accent);
}
.cr-service-icon-wrapper {
  width: 64px;
  height: 64px;
  background: #FFF9E6; /* Light gold background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: transform 300ms ease;
}

.cr-service-card:hover .cr-service-icon-wrapper {
  transform: scale(1.1);
}
.cr-service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; /* Aligned with standard service titles */
  font-weight: 700;
  color: #163B69;
  margin-bottom: 12px;
}
.cr-service-desc {
  font-size: 0.925rem; /* Aligned with standard body text size */
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}
.cr-service-arrow {
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 200ms;
  text-align: left;
}
.cr-service-card:hover .cr-service-arrow {
  transform: translateX(5px);
}

/* ---- PREMIUM BOOKING FORM SECTION ---- */
.cr-form-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.cr-form-left {
  flex: 1;
  text-align: left;
}
.cr-form-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem); /* 56px */
  font-weight: 700;
  color: #163B69;
  margin-bottom: 16px;
}
.cr-form-left p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* Trust features list */
.cr-trust-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cr-trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #163B69;
}
.cr-trust-check {
  color: var(--accent-dark);
  font-size: 1.25rem;
}
/* Form card on right */
.cr-form-right {
  flex: 1;
  max-width: 620px;
}
.cr-form-card {
  background: #ffffff;
  border: 1px solid #ECECEC;
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 6px 28px rgba(22, 59, 105, 0.08);
}

/* Input styles */
.cr-input {
  width: 100%;
  border: 1.5px solid #DDDDDD;
  border-radius: 14px;
  height: 58px;
  padding: 18px;
  box-sizing: border-box;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.cr-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(22, 59, 105, 0.08);
}
select.cr-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B8872E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
  padding-right: 3rem;
  cursor: pointer;
}

.cr-textarea {
  width: 100%;
  border: 1.5px solid #DDDDDD;
  border-radius: 14px;
  height: 170px;
  padding: 18px;
  box-sizing: border-box;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  resize: vertical;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.cr-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(22, 59, 105, 0.08);
}
.cr-form-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Submit button */
.cr-form-btn {
  width: 100%;
  height: 58px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 250ms ease, transform 200ms ease, box-shadow 250ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cr-form-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(212, 162, 76, 0.3);
}

/* ---- RESPONSIVENESS ---- */
@media (max-width: 1024px) {
  .cr-grid-3, .cr-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .cr-container {
    padding: 0 24px;
  }
  .cr-form-container {
    flex-direction: column;
    gap: 48px;
  }
  .cr-form-right {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cr-grid-3, .cr-grid-4 {
    grid-template-columns: 1fr;
  }
  .cr-container {
    padding: 0 16px;
  }
  .cr-section {
    padding: 60px 0;
  }
  .cr-header h2 {
    font-size: 2.2rem;
  }
  .cr-form-card {
    padding: 24px 16px;
  }
  .cr-form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===========================
   GLOBAL SELECT OVERRIDE
   Ensure ALL select elements across the
   entire site are styled consistently,
   matching the premium form input look.
   =========================== */
/* 1. Strip ALL native browser OS select appearance */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* 2. Wrapper trick: provide a consistent custom arrow for
      ANY select that is a direct child of a .form-group,
      .fbs-field, .pkg-field, .cr-field, or .cr-form-row.
      This catches selects that may not have a specific class. */
.form-group select,
.fbs-field select,
.pkg-field select,
.cr-field select,
.cr-form-row select,
.fbs-row select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B8872E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
  padding-right: 3rem;
  cursor: pointer;
}

/* 3. Option element styling (limited browser support, but helps in Firefox) */
select option {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 0.925rem;
  color: #2B2B2B;
  background: #ffffff;
  padding: 8px 12px;
}
select option:checked,
select option:hover {
  background: linear-gradient(135deg, #FFF6E6, #FFF0D0);
  color: #163B69;
}
select option:first-child {
  color: #b0b0b0; /* Placeholder color for disabled first option */
}
/* 4. Focus ring for all selects */
select:focus {
  outline: none;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.15) !important;
  background-color: #ffffff;
}
/* ===========================
   HAPPY TRAVELLERS GALLERY
   =========================== */
.travel-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(15,52,96,0.85), transparent);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}
.gallery-location {
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .travel-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item-large { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 480px) {
  .travel-gallery { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: span 1; }
}

/* ===========================
   13. PACKAGE CAROUSEL & ACCORDION
   =========================== */
.pkg-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pkg-carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.pkg-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}
.pkg-carousel-item.active {
  opacity: 1;
  z-index: 2;
}
.pkg-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.pkg-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.pkg-carousel-dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

/* Expandable Places Component */
.pkg-places-container {
  margin-top: 12px;
  margin-bottom: 24px;
}
.pkg-places-toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color var(--transition);
}
.pkg-places-toggle:hover {
  color: var(--accent-dark);
}
.pkg-places-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  color: #555;
  font-size: 0.85rem;
  line-height: 1.6;
}
.pkg-places-container.expanded .pkg-places-list {
  max-height: 300px;
  margin-top: 8px;
}

/* ===========================
   SEARCH BAR & SHOW ALL
   =========================== */
.pkg-search-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 2rem;
  position: relative;
}
.pkg-search-wrap input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  border: 2px solid #e0e4ea;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #163B69;
  background: #fff;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.pkg-search-wrap input::placeholder {
  color: #999;
}
.pkg-search-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(22, 59, 105, 0.1);
}
.pkg-search-wrap .pkg-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #999;
  pointer-events: none;
}
.pkg-search-wrap input:focus ~ .pkg-search-icon {
  color: var(--primary);
}

.pkg-card.pkg-card-hidden {
  display: none !important;
}

.pkg-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.pkg-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.pkg-toggle-btn:hover {
  background: #0d2a50;
  transform: translateY(-2px);
}
.pkg-toggle-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.pkg-toggle-btn.expanded svg {
  transform: rotate(180deg);
}

.pkg-no-results {
  text-align: center;
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #888;
  width: 100%;
  display: none;
  grid-column: 1 / -1;
}
.pkg-no-results.visible {
  display: block;
}
