/* ==========================================================================
   FlyAssistHub.com - Photorealistic Luxury Aviation Design System
   ========================================================================== */

:root {
  --primary: #061325;
  --primary-dark: #030a14;
  --primary-card: #0b1e38;
  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --accent-orange: #ff5e36;
  --accent-orange-hover: #e04822;
  --accent-yellow: #fbc531;
  --success: #10b981;
  --dark: #040912;
  --dark-surface: #0a1424;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #64748b;
  --gray-700: #334155;
  --white: #ffffff;
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  background-color: #f1f5f9;
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 74px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-yellow { color: var(--accent-yellow) !important; }
.text-cyan { color: var(--accent-cyan) !important; }
.text-green { color: var(--success) !important; }

/* Pulse Animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 94, 54, 0.65); }
  70% { box-shadow: 0 0 0 16px rgba(255, 94, 54, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 94, 54, 0); }
}

.pulse-animation {
  animation: pulseGlow 2s infinite;
}

.live-pulse {
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(74, 222, 128, 0.6);
  animation: liveDot 1.4s infinite;
}

@keyframes liveDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.8); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 0.6rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  color: #e2e8f0;
}

.top-badge strong {
  color: var(--accent-yellow);
}

.top-support {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-phone-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(255, 94, 54, 0.25) 0%, rgba(255, 94, 54, 0.15) 100%);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent-orange);
  transition: var(--transition);
}

.top-phone-link:hover {
  background: var(--accent-orange);
  color: var(--white);
}

/* ==========================================================================
   Main Navigation Header
   ========================================================================== */
.main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.logo-icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0a2540 0%, #0072ff 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(0, 114, 255, 0.35);
}

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

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--primary);
  line-height: 1.1;
  font-weight: 800;
}

.logo-title strong {
  color: var(--accent-orange);
  font-weight: 900;
}

.logo-tagline {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-600);
  font-weight: 800;
}

.nav-menu {
  display: none;
  gap: 1.75rem;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--accent-orange);
}

.btn-call-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #d83f19 100%);
  color: var(--white);
  text-decoration: none;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(255, 94, 54, 0.45);
  transition: var(--transition);
}

.btn-call-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 94, 54, 0.6);
}

.btn-call-icon {
  font-size: 1.3rem;
}

.btn-call-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.btn-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

.btn-num {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
}

/* ==========================================================================
   Hero Section with Real Aircraft Background Visual
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 640px;
  color: var(--white);
  padding: 4rem 0 5rem;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero-plane.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 19, 37, 0.95) 0%, rgba(10, 37, 64, 0.88) 50%, rgba(0, 114, 255, 0.5) 100%);
}

.hero-container {
  position: relative;
  z-index: 5;
}

.hero-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-layout-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #bae6fd;
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  line-height: 1.18;
  font-weight: 900;
  margin-bottom: 1.15rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .hero-main-title {
    font-size: 3.1rem;
  }
}

.hero-lead-text {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.hero-lead-text strong {
  color: var(--white);
}

.hero-usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.usp-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  font-weight: 700;
  color: #f8fafc;
}

.usp-card i {
  font-size: 1.1rem;
}

/* Master Call Banner */
.hero-master-call-box {
  background: rgba(6, 19, 37, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 242, 254, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.call-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.call-banner-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--accent-yellow);
  margin-bottom: 0.2rem;
}

.call-banner-sub {
  display: block;
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 600;
}

.hero-call-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
  margin-top: 0.25rem;
}

.hero-call-number:hover {
  color: var(--accent-cyan);
}

.btn-call-hero {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #d83f19 100%);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  padding: 1rem 1.85rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 6px 22px rgba(255, 94, 54, 0.5);
  transition: var(--transition);
}

.btn-call-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 94, 54, 0.7);
}

.call-banner-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.85rem;
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* ==========================================================================
   Interactive Concierge Booking Card (Hero Right)
   ========================================================================== */
.concierge-booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--dark);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.concierge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.35rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--gray-200);
}

.concierge-header-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.concierge-header-title i {
  font-size: 1.6rem;
}

.concierge-header-title h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.concierge-header-title p {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 600;
}

.status-indicator {
  background: #ecfdf5;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid #a7f3d0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dot-online {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
}

.trip-switch-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

.trip-radio-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.75rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.trip-radio-btn input {
  display: none;
}

.trip-radio-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.form-double-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.input-field-wrapper label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.input-field-wrapper input,
.input-field-wrapper select {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-main);
  background: var(--white);
  color: var(--dark);
  transition: var(--transition);
}

.input-field-wrapper input:focus,
.input-field-wrapper select:focus {
  outline: none;
  border-color: #0072ff;
  box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.15);
}

.btn-submit-search {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #d83f19 100%);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(255, 94, 54, 0.45);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.65rem;
}

.btn-submit-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 94, 54, 0.6);
}

.concierge-trust-bar {
  display: flex;
  justify-content: space-between;
  margin-top: 1.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 700;
}

/* ==========================================================================
   Stats Strip
   ========================================================================== */
.stats-strip {
  background: var(--white);
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--gray-600);
  font-weight: 700;
  margin-top: 0.35rem;
}

/* ==========================================================================
   Common Section Headings
   ========================================================================== */
.section {
  padding: 5.5rem 0;
}

.section-heading-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.section-tag-pill {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.section-main-heading {
  font-family: var(--font-heading);
  font-size: 2.45rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.section-sub-heading {
  font-size: 1.1rem;
  color: var(--gray-600);
}

/* ==========================================================================
   Photorealistic Airline Cards Grid
   ========================================================================== */
.airlines-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.airline-photo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.card-image-wrap {
  position: relative;
  height: 170px;
  overflow: hidden;
}

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

.airline-photo-card:hover .card-image-wrap img {
  transform: scale(1.08);
}

.card-airline-badge {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.delta-badge { background: rgba(0, 34, 68, 0.88); border-left: 3px solid #ba0c2f; }
.aa-badge { background: rgba(0, 120, 210, 0.88); border-left: 3px solid #c30019; }
.united-badge { background: rgba(0, 34, 68, 0.88); border-left: 3px solid #005da4; }
.southwest-badge { background: rgba(48, 76, 178, 0.88); border-left: 3px solid #f9b612; }
.british-badge { background: rgba(7, 90, 170, 0.88); border-left: 3px solid #eb2226; }
.lufthansa-badge { background: rgba(5, 22, 77, 0.88); border-left: 3px solid #fdb913; }
.aircanada-badge { background: rgba(216, 47, 44, 0.88); border-left: 3px solid #111111; }
.qatar-badge { background: rgba(92, 6, 50, 0.88); border-left: 3px solid #8a1538; }

.live-agent-chip {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.live-agent-chip i {
  font-size: 0.5rem;
  color: #4ade80;
}

.airline-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.airline-card-content h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.airline-service-checklist {
  list-style: none;
  margin-bottom: 1.5rem;
}

.airline-service-checklist li {
  font-size: 0.88rem;
  color: var(--gray-700);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-card-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f8fafc;
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-300);
  transition: var(--transition);
}

.btn-card-call:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ==========================================================================
   Destination Photo Showcase
   ========================================================================== */
.destination-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.destination-card {
  position: relative;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

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

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(6, 19, 37, 0.95) 0%, rgba(6, 19, 37, 0.3) 50%, transparent 100%);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.dest-badge {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--accent-yellow);
  margin-bottom: 0.35rem;
}

.destination-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.destination-overlay p {
  font-size: 0.85rem;
  color: #e2e8f0;
  margin-bottom: 1.15rem;
}

.btn-dest-call {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-dest-call:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
}

/* ==========================================================================
   How It Works (Process Step Cards)
   ========================================================================== */
.how-it-works-section {
  background: var(--white);
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.process-step-card {
  background: #f8fafc;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-step-card.active {
  border-color: #0072ff;
  box-shadow: var(--shadow-lg);
}

.step-badge-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.process-step-card.active .step-badge-num {
  background: var(--accent-orange);
}

.step-icon {
  width: 65px;
  height: 65px;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.process-step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.process-step-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-section {
  background: #f1f5f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-box {
  background: var(--white);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #0072ff;
}

.service-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #0a2540 0%, #0072ff 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 114, 255, 0.25);
}

.service-box h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service-box p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.service-link:hover {
  color: #ea580c;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #f8fafc;
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-row {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.traveler-info strong {
  display: block;
  color: var(--dark);
  font-size: 1rem;
}

.traveler-info span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  background: #f1f5f9;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.6rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #0072ff;
}

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

.faq-answer {
  padding: 0 1.6rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding: 0 1.6rem 1.35rem;
  max-height: 260px;
}

/* ==========================================================================
   Bottom Call Banner
   ========================================================================== */
.bottom-cta-section {
  background: linear-gradient(135deg, #051424 0%, #0a2540 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner-box {
  max-width: 800px;
  margin: 0 auto;
}

.cta-mini-tag {
  display: inline-block;
  background: rgba(255, 94, 54, 0.2);
  color: var(--accent-yellow);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.15rem;
  border: 1px solid rgba(251, 197, 49, 0.35);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2.25rem;
}

.btn-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #d83f19 100%);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  padding: 1.15rem 2.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 30px rgba(255, 94, 54, 0.55);
  transition: var(--transition);
}

.btn-cta-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 94, 54, 0.75);
}

.cta-note {
  margin-top: 1.35rem;
  font-size: 0.88rem;
  color: #94a3b8;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 4.5rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

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

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

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

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-text {
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 1rem 0;
}

.footer-phone-box span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #cbd5e1;
}

.footer-phone {
  color: var(--accent-yellow);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  text-decoration: none;
}

.disclaimer-text {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
  margin-bottom: 1rem;
}

.security-badges {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--success);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

/* ==========================================================================
   Mobile Sticky Call Bar
   ========================================================================== */
.mobile-sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 0.65rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 992px) {
  .mobile-sticky-call-bar {
    display: none;
  }
}

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

.sticky-call-info {
  display: flex;
  flex-direction: column;
}

.sticky-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-yellow);
}

.sticky-number {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
}

.btn-sticky-call {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #d83f19 100%);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   Modal Overlay
   ========================================================================== */
.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 9, 18, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.quote-modal-overlay.active {
  display: flex;
}

.quote-modal-box {
  background: var(--white);
  max-width: 480px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gray-100);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--gray-600);
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--gray-200);
}

.modal-header-icon {
  width: 65px;
  height: 65px;
  background: #ecfdf5;
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin: 0 auto 1.15rem;
}

.quote-modal-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-weight: 900;
}

.modal-route-display {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.modal-deal-highlight {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  color: #166534;
  font-size: 0.95rem;
}

.modal-instruct {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.btn-modal-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #d83f19 100%);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  padding: 1.05rem;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(255, 94, 54, 0.45);
  transition: var(--transition);
}

.btn-modal-call:hover {
  background: #d83f19;
}

.modal-guarantee {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--gray-600);
}
