/* =========================================================
   SKYLINE ASSIST — Premium Airline Travel Assistance
   Main Stylesheet
   ========================================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0B3C8A;
  --primary-dark: #082d68;
  --primary-light: #1a5abf;
  --sky: #3B8BEB;
  --sky-light: #6FB3F5;
  --accent: #0EA5E9;
  --cta: #1d6ee6;
  --cta-hover: #1558c0;
  --white: #ffffff;
  --off-white: #f0f6ff;
  --light-blue: #e8f1fd;
  --text-dark: #0a1628;
  --text-body: #374151;
  --text-muted: #6B7280;
  --border: #d1e3fa;
  --shadow-sm: 0 2px 8px rgba(11, 60, 138, 0.08);
  --shadow-md: 0 8px 32px rgba(11, 60, 138, 0.14);
  --shadow-lg: 0 20px 60px rgba(11, 60, 138, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  font-size: 1rem;
  color: var(--text-body);
}

/* ---------- Utility ---------- */
.container {
  width: min(1180px, 94%);
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white) !important;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

.badge svg {
  width: 14px;
  height: 14px;
}

.section-label {
  display: inline-block;
  background: var(--light-blue);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(29, 110, 230, 0.4);
}

.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(29, 110, 230, 0.55);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 18px rgba(11, 60, 138, 0.15);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(11, 60, 138, 0.22);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.12rem;
  border-radius: var(--radius-xl);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

/* Pulse animation for CTA */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(29, 110, 230, 0.55), 0 4px 20px rgba(29, 110, 230, 0.4);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(29, 110, 230, 0), 0 4px 20px rgba(29, 110, 230, 0.4);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(29, 110, 230, 0), 0 4px 20px rgba(29, 110, 230, 0.4);
  }
}

.btn-pulse {
  animation: pulse-ring 2.5s ease-out infinite;
}

/* ===========================
   HEADER / NAVBAR
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.nav-logo span {
  color: var(--sky);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--sky));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--light-blue);
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  font-family: var(--font-display);
}

.nav-phone svg {
  color: var(--sky);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--primary);
  border-radius: 4px;
  transition: var(--transition);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(155deg, #041533 0%, #0B3C8A 45%, #1a6dcf 100%);
  padding-top: 70px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Animated clouds */
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  animation: drift linear infinite;
}

.cloud:nth-child(1) {
  width: 320px;
  height: 80px;
  top: 18%;
  left: -340px;
  animation-duration: 28s;
}

.cloud:nth-child(2) {
  width: 200px;
  height: 60px;
  top: 35%;
  left: -220px;
  animation-duration: 22s;
  animation-delay: 6s;
}

.cloud:nth-child(3) {
  width: 260px;
  height: 70px;
  top: 60%;
  left: -280px;
  animation-duration: 35s;
  animation-delay: 2s;
}

.cloud:nth-child(4) {
  width: 180px;
  height: 50px;
  top: 75%;
  left: -200px;
  animation-duration: 20s;
  animation-delay: 10s;
}

.cloud:nth-child(5) {
  width: 400px;
  height: 90px;
  top: 48%;
  left: -420px;
  animation-duration: 40s;
  animation-delay: 4s;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(100vw + 450px));
  }
}

/* Stars */
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.6) 0%, transparent 0%),
    radial-gradient(1px 1px at 50% 15%, rgba(255, 255, 255, 0.5) 0%, transparent 0%),
    radial-gradient(1.5px 1.5px at 75% 40%, rgba(255, 255, 255, 0.7) 0%, transparent 0%),
    radial-gradient(1px 1px at 90% 25%, rgba(255, 255, 255, 0.4) 0%, transparent 0%),
    radial-gradient(1px 1px at 10% 60%, rgba(255, 255, 255, 0.5) 0%, transparent 0%),
    radial-gradient(1.5px 1.5px at 35% 70%, rgba(255, 255, 255, 0.6) 0%, transparent 0%),
    radial-gradient(1px 1px at 60% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 0%),
    radial-gradient(1px 1px at 85% 65%, rgba(255, 255, 255, 0.5) 0%, transparent 0%);
}

/* Glowing orb */
.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(59, 139, 235, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-orb 6s ease-in-out infinite;
}

@keyframes pulse-orb {

  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-50%) scale(1.08);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 60px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 139, 235, 0.2);
  border: 1px solid rgba(59, 139, 235, 0.4);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.hero h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.15s both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #93c5fd, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin-bottom: 38px;
  animation: fadeInUp 0.9s ease 0.28s both;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-phone-display {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  animation: fadeInUp 0.9s ease 0.5s both;
  margin-bottom: 36px;
}

.hero-phone-display .phone-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--sky), var(--cta));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  animation: phone-ring 3s ease-in-out infinite;
}

@keyframes phone-ring {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-15deg);
  }

  20% {
    transform: rotate(15deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  40% {
    transform: rotate(0deg);
  }
}

.hero-phone-display .phone-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.hero-phone-display .phone-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: white;
  letter-spacing: 0.03em;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeInUp 0.9s ease 0.6s both;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  animation: scroll-bounce 2.5s ease-in-out infinite;
  z-index: 2;
}

.scroll-indicator svg {
  color: rgba(255, 255, 255, 0.5);
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: var(--primary);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-item svg {
  color: var(--sky-light);
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header p {
  max-width: 580px;
  margin: 14px auto 0;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--sky));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--light-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: var(--transition);
  font-size: 1.8rem;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.service-card h3 {
  margin-bottom: 12px;
  transition: var(--transition);
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover h3,
.service-card:hover p {
  color: rgba(255, 255, 255, 0.95);
}

.service-card .btn-sm {
  background: var(--cta);
  color: white;
  border-radius: 100px;
  font-size: 0.82rem;
}

.service-card:hover .btn-sm {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ===========================
   AIRLINES SECTION
   =========================== */
.airlines {
  background: var(--white);
}

.airlines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.airline-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.airline-card:hover {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(59, 139, 235, 0.12), var(--shadow-md);
  transform: translateY(-4px);
}

.airline-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
}

.airline-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.airline-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.airlines-disclaimer {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.airlines-disclaimer strong {
  color: var(--primary);
}

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-us {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(59, 139, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(59, 139, 235, 0.1) 0%, transparent 50%);
}

.why-us>* {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 38px 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-6px);
}

.stat-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq {
  background: var(--off-white);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  background: none;
  transition: var(--transition);
}

.faq-button:hover {
  color: var(--primary);
  background: rgba(59, 139, 235, 0.02);
}

.faq-button svg {
  flex-shrink: 0;
  color: var(--sky);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-button svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-content {
  max-height: 400px;
  padding: 0 24px 22px;
}

.faq-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===========================
   REVIEWS SECTION
   =========================== */
.reviews {
  background: var(--off-white);
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex: 0 0 calc(33.33% - 16px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--light-blue);
  font-family: Georgia, serif;
}

.stars-row {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #FBBF24;
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--text-body);
  margin-bottom: 22px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.reviewer-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
  cursor: pointer;
}

.carousel-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 100px;
}

/* ===========================
   URGENCY CTA
   =========================== */
.urgency-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--sky) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgency-cta::before {
  content: '✈';
  position: absolute;
  font-size: 28rem;
  color: rgba(255, 255, 255, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  line-height: 1;
}

.urgency-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.urgency-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  max-width: 540px;
  margin: 0 auto 38px;
}

@keyframes bounce-cta {

  0%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  70% {
    transform: translateY(-5px);
  }
}

.btn-bounce {
  animation: bounce-cta 2s ease-in-out infinite;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--text-dark);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 16px 0 24px;
  max-width: 280px;
  line-height: 1.65;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sky-light);
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--sky-light);
  padding-left: 4px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.28);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===========================
   LIVE CHAT WIDGET
   =========================== */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: var(--font-main);
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cta);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.chat-toggle:hover {
  transform: scale(1.05);
  background: var(--cta-hover);
}

.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 340px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.chat-widget.open .chat-window {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chat-header {
  background: linear-gradient(135deg, var(--primary), var(--sky));
  color: white;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-close {
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  padding: 4px;
  opacity: 0.8;
  transition: var(--transition);
}

.chat-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.chat-body {
  padding: 20px;
  height: 280px;
  background: #f8fafc;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  max-width: 85%;
}

.chat-message.agent {
  background: white;
  border: 1px solid var(--border);
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-input-area {
  padding: 14px;
  background: white;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
}

.chat-input-area input {
  flex: 1;
  border: 1px solid #cbd5e1;
  padding: 10px 14px;
  border-radius: 20px;
  outline: none;
  transition: border-color 0.2s;
  font-size: 0.9rem;
}

.chat-input-area input:focus {
  border-color: var(--sky);
}

.chat-send {
  width: 40px;
  height: 40px;
  background: var(--sky);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.chat-send:hover {
  background: var(--primary);
  transform: scale(1.05);
}

/* Hide sticky call when chat is open on mobile */
@media (max-width: 768px) {
  .chat-widget {
    bottom: 80px;
  }
}

/* ===========================
   STICKY MOBILE CALL BUTTON
   =========================== */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--primary);
  padding: 14px 20px;
  border-top: 2px solid var(--sky);
  box-shadow: 0 -4px 20px rgba(11, 60, 138, 0.35);
}

.sticky-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

/* ===========================
   INNER PAGE HERO
   =========================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  padding: 120px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(59, 139, 235, 0.18) 0%, transparent 55%);
}

.page-hero>* {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: white;
}

/* ===========================
   CONTENT SECTIONS (Inner pages)
   =========================== */
.content-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 28px;
}

.content-block h2 {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.content-block h3 {
  color: var(--text-dark);
  margin: 24px 0 10px;
  font-size: 1.1rem;
}

.content-block p {
  margin-bottom: 14px;
  line-height: 1.8;
}

.content-block ul {
  margin: 12px 0 14px 18px;
}

.content-block ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
}

.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--sky);
  border-radius: 50%;
}

/* Steps */
.steps-list {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 22px;
}

.step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: var(--font-display);
}

.step-body h4 {
  color: var(--text-dark);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  background: white;
  box-shadow: 0 0 0 3px rgba(59, 139, 235, 0.12);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===========================
   ANIMATIONS / REVEAL
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

.delay-5 {
  transition-delay: 0.5s !important;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open a {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
  }

  .hamburger {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .hero-content {
    padding: 40px 0;
  }

  .review-card {
    flex: 0 0 calc(100% - 0px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .sticky-call {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

  .trust-bar-inner {
    gap: 18px;
  }

  .trust-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-phone-display {
    flex-direction: column;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}