/* ==========================================================================
   Air Bookings Online - Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Variables
   -------------------------------------------------------------------------- */
:root {
  --primary-color: #3375cb;
  --primary-hover: #045cb4;
  --secondary-color: #202e9b;
  --dark-color: #1e293b;
  --dark-navy: #003d79;
  --light-bg: #f8fafc;
  --section-bg: #f0f5fa;
  --text-dark: #1e293b;
  --text-body: #334155;
  --text-muted: #64748b;
  --white: #ffffff;
  --border-color: #cbd5e1;
  --border-light: #e2e8f0;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Global Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

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

a:hover {
  color: var(--primary-hover);
}

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

/* --------------------------------------------------------------------------
   3. Header / Navbar
   -------------------------------------------------------------------------- */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  height: 80px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo {
  height: 42px;
  width: auto;
}

.brand-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 0;
}

.header-contact {
  display: flex;
  align-items: center;
}

.btn-phone-header {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 8px rgba(51, 117, 203, 0.3);
  transition: var(--transition);
}

.btn-phone-header:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(4, 92, 180, 0.4);
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: url('../img/banner.jpg') no-repeat center center / cover;
  padding: 80px 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

.hero-title {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  color: #f1f5f9;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-cta-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-hero-cta {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 20px rgba(51, 117, 203, 0.4);
  transition: var(--transition);
}

.btn-hero-cta:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(4, 92, 180, 0.5);
}

.hero-support-tag {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   5. Feature Tabs & Support Icons Section
   -------------------------------------------------------------------------- */
.support-tabs-section {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.support-tabs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.support-tab-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background-color: var(--light-bg);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.support-tab-item:hover {
  background-color: var(--white);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.support-tab-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary-color);
}

.support-tab-icon i {
  font-size: 34px;
}

.support-tab-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 0;
}

/* --------------------------------------------------------------------------
   6. Search Widget Section
   -------------------------------------------------------------------------- */
.search-section {
  background-color: #f1f5f9;
  position: relative;
}

.search-widget-container {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.search-top-controls {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.search-select {
  width: auto;
  min-width: 150px;
  padding: 8px 36px 8px 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6" fill="none"><path d="M1.17285 0.963501L4.86033 4.64151L8.43529 1.05734" stroke="black" stroke-width="1.86207"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  appearance: none;
  cursor: pointer;
}

select.search-select {
  height: 40px;
}

.search-select:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* --- Custom Travelers Dropdown --- */
.travelers-dropdown {
  position: relative;
}

.travelers-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  cursor: pointer;
  height: 40px;
  font-family: var(--font-family);
  white-space: nowrap;
}

.travelers-trigger i {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.travelers-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 300px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  z-index: 100;
  animation: panelSlideIn 0.2s ease-out;
}

@keyframes panelSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.travelers-panel.open {
  display: block;
}

.travelers-panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.travelers-panel-row:first-child {
  padding-top: 0;
}

.travelers-panel-row:last-of-type {
  border-bottom: none;
}

.travelers-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.travelers-type-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.travelers-type-age {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.travelers-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.stepper-btn {
  width: 36px;
  height: 36px;
  border: none;
  background-color: var(--light-bg);
  color: var(--text-dark);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

.stepper-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.stepper-btn:disabled:hover {
  background-color: var(--light-bg);
  color: var(--text-dark);
}

.stepper-count {
  min-width: 36px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  user-select: none;
}

.travelers-done-btn {
  display: block;
  width: 100%;
  padding: 10px 0;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-family);
  cursor: pointer;
  transition: var(--transition);
}

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

.search-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 180px;
  gap: 12px;
  align-items: center;
}

.input-group-custom {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.input-group-custom:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(51, 117, 203, 0.15);
}

.input-group-custom label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.input-group-custom input {
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0;
  width: 100%;
  background: transparent;
  font-family: var(--font-family);
}

/* --- Custom Calendar Datepicker Popover --- */
.ig-date-picker {
  position: relative;
  cursor: pointer;
}

.ig-date-picker input {
  cursor: pointer;
}

.datepicker-popover {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 280px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  z-index: 1000;
  animation: panelSlideIn 0.2s ease-out;
}

.datepicker-popover.open {
  display: block;
}

.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dp-month-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dp-nav-btn {
  background: var(--light-bg);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}

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

.dp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.dp-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.dp-day {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.dp-day:hover:not(.dp-empty):not(.dp-disabled) {
  background-color: #e0edff;
  color: var(--primary-color);
}

.dp-day.dp-selected {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

.dp-day.dp-today {
  border: 1px solid var(--primary-color);
}

.dp-day.dp-disabled {
  color: var(--border-color);
  cursor: not-allowed;
  opacity: 0.4;
}

.dp-day.dp-empty {
  cursor: default;
}

.return-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.btn-search-flights {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 0;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  height: 54px;
  transition: var(--transition);
  width: 100%;
}

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


/* --------------------------------------------------------------------------
   7. Pillars & Leaf Decor Section
   -------------------------------------------------------------------------- */
.pillars-section {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.pillars-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.leaf-decor {
  width: 70px;
  height: auto;
  opacity: 0.85;
}

.pillars-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0.85;
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(51, 117, 203, 0.12);
  border-color: rgba(51, 117, 203, 0.3);
}

.pillar-card:hover::before {
  opacity: 1;
  height: 5px;
}

.pillar-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.pillar-icon-box {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(51, 117, 203, 0.12) 0%, rgba(51, 117, 203, 0.04) 100%);
  color: var(--primary-color);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.pillar-card:hover .pillar-icon-box {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 6px 16px rgba(51, 117, 203, 0.3);
}

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

.pillar-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. Highlights 3-Card Grid Section
   -------------------------------------------------------------------------- */
.highlights-section {
  background-color: var(--white);
}

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

.highlight-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);

}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.highlight-card-header {
  padding: 20px 20px 14px;
}

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

.highlight-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.highlight-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.highlight-card:hover .highlight-img-wrap img {
  transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   9. Crew Banner Section
   -------------------------------------------------------------------------- */
.crew-section {
  padding: 20px 0 60px;
  background-color: var(--white);
}

.crew-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.crew-img-wrap img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   10. Call to Action (CTA) Banner Section
   -------------------------------------------------------------------------- */
.cta-banner-section {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #0f172a 100%);
  color: var(--white);
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-banner-title {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.btn-cta-banner {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(51, 117, 203, 0.4);
  transition: var(--transition);
  white-space: nowrap;
}

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

/* --------------------------------------------------------------------------
   11. Features List & Live Agent Status Section
   -------------------------------------------------------------------------- */
.features-list-section {
  background-color: var(--section-bg);
}

.features-main-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.features-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.features-intro-text {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 28px;
  line-height: 1.65;
  font-weight: 500;
}

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

.feature-item-card {
  background-color: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.feature-item-card:hover {
  background-color: var(--white);
  border-color: rgba(51, 117, 203, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(51, 117, 203, 0.1);
}

.feature-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(51, 117, 203, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.feature-item-card:hover .feature-item-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}

.feature-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.3;
}

.features-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 20px;
}

.features-phone-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-phone-features {
  font-size: 1.2rem;
  padding: 12px 28px;
  box-shadow: 0 4px 14px rgba(51, 117, 203, 0.35);
}

.features-tagline {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark-navy);
  letter-spacing: 0.5px;
}

.agent-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-pill);
}

.agent-status-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #15803d;
}

.agent-pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.agent-pulse-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid #22c55e;
  border-radius: 50%;
  animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* --------------------------------------------------------------------------
   12. Privacy & Terms Summary Section
   -------------------------------------------------------------------------- */
.policy-summary-section {
  padding: 50px 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
}

.policy-block {
  margin-bottom: 30px;
}

.policy-block:last-child {
  margin-bottom: 0;
}

.policy-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.policy-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   13. Contact Information Section
   -------------------------------------------------------------------------- */
.contact-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}

.contact-item-card {
  background-color: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.contact-item-card:hover {
  background-color: var(--white);
  border-color: rgba(51, 117, 203, 0.4);
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(51, 117, 203, 0.08);
}

.contact-icon-badge {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: rgba(51, 117, 203, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.contact-item-card:hover .contact-icon-badge {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}

.contact-item-content {
  display: flex;
  flex-direction: column;
}

.contact-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 0 0 2px;
}

.contact-item-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
}

.contact-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
  height: 100%;
}

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

.contact-img-wrap:hover img {
  transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   14. Footer & Disclaimer Section
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 40px 0 30px;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-top {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #1e293b;
  margin-bottom: 24px;
}

.footer-copyright {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.disclaimer-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin: 16px 0 8px;
}

.footer-disclaimer p {
  margin-bottom: 14px;
}

.footer-disclaimer ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.footer-disclaimer li {
  margin-bottom: 6px;
}

/* --------------------------------------------------------------------------
   15. Scroll-To-Top Button
   -------------------------------------------------------------------------- */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   17. Page Header / Breadcrumb Hero Component
   -------------------------------------------------------------------------- */
.page-header-section {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #0f172a 100%);
  padding: 45px 0 50px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-header-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(51, 117, 203, 0.25) 0%, rgba(51, 117, 203, 0) 70%);
  pointer-events: none;
}

.breadcrumb-nav {
  margin-bottom: 14px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.breadcrumb-item a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb-item a:hover {
  color: var(--white);
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #e2e8f0;
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #64748b;
  content: "/";
}

.page-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.page-subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

/* --------------------------------------------------------------------------
   18. Privacy Policy Detail Page Styling
   -------------------------------------------------------------------------- */
.policy-page-section {
  background-color: var(--section-bg);
}

.policy-container-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.policy-container-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.policy-section-block {
  margin-bottom: 36px;
}

.policy-section-block:last-child {
  margin-bottom: 0;
}

.policy-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-section-title i {
  color: var(--primary-color);
  font-size: 1.15rem;
}

.policy-text-p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 14px;
}

.policy-list-items {
  padding-left: 0;
  list-style: none;
  margin-bottom: 18px;
}

.policy-list-items li {
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 10px;
}

.policy-list-items li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.policy-callout-box {
  background-color: #f0f7ff;
  border-left: 4px solid var(--primary-color);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 20px 0;
}

.policy-callout-box p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin: 0;
  line-height: 1.6;
}

.policy-nav-sticky {
  position: sticky;
  top: 90px;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.policy-nav-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.policy-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-nav-links a {
  color: var(--text-body);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.policy-nav-links a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   19. Search Form Loader & Thank You Modal
   -------------------------------------------------------------------------- */
.search-form-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-form-loader.active {
  opacity: 1;
  visibility: visible;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(51, 117, 203, 0.15);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: loader-spin 0.8s linear infinite;
  margin-bottom: 16px;
}

@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 0;
}

/* Custom Thank You Modal Backdrop & Window */
.thankyou-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.thankyou-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.thankyou-modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.thankyou-modal-backdrop.active .thankyou-modal-card {
  transform: scale(1);
}

.thankyou-modal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #22c55e 0%, var(--primary-color) 100%);
}

.thankyou-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #f0fdf4;
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
}

.thankyou-modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 12px;
}

.thankyou-modal-desc {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 24px;
}

.thankyou-call-box {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.thankyou-call-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.btn-thankyou-call {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(51, 117, 203, 0.35);
  transition: var(--transition);
}

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

.btn-thankyou-close {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.btn-thankyou-close:hover {
  background-color: #f1f5f9;
  color: var(--dark-navy);
}

/* --------------------------------------------------------------------------
   16. Responsive Styles / Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.25rem;
  }
  .support-tabs-grid, .search-input-row, .pillars-grid, .features-grid, .highlights-grid, .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .btn-search-flights {
    grid-column: span 2;
  }
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }
  .leaf-decor {
    display: none;
  }
}

@media (max-width: 767px) {
  .site-header {
    height: 70px;
  }
  .header-contact {
    display: none;
  }
  .btn-phone-header {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .hero-section {
    padding: 40px 0;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .btn-hero-cta {
    font-size: 1.25rem;
    padding: 10px 20px;
  }
  .support-tabs-grid, .search-input-row, .pillars-grid, .features-grid, .highlights-grid, .contact-info-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .btn-search-flights {
    grid-column: span 1;
  }
  .result-content-wrap {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .search-widget-container, .features-main-card {
    padding: 20px;
  }
  .thankyou-modal-card {
    padding: 10px;
  }
}