/* ==========================================
   FlyAssistly - style.css
   ========================================== */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:       #0057FF;
  --blue-dark:  #003DB5;
  --blue-light: #E8F0FF;
  --green:      #00B67A;
  --orange:     #FF6B35;
  --purple:     #7B3FE4;
  --yellow:     #FFD700;
  --text-dark:  #0A1628;
  --text-mid:   #3D4F6B;
  --text-light: #7A8BA5;
  --bg-gray:    #F5F7FA;
  --white:      #FFFFFF;
  --border:     #E3E9F2;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,87,255,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--bg-gray);
  border-color: var(--blue);
  color: var(--blue);
}

.btn--search {
  background: var(--blue);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn--search:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,87,255,0.4);
}

.btn--deal {
  background: var(--blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn--deal:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn--outline-blue {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn--outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--blue);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn--white:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

.btn--white-large {
  background: var(--white);
  color: var(--blue);
  padding: 18px 40px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
}
.btn--white-large:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
}
.btn--ghost-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.15);
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
}
.logo-text strong {
  color: var(--blue);
  font-weight: 800;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
}
.nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0,30,80,0.85) 0%,
    rgba(0,50,140,0.70) 50%,
    rgba(0,20,60,0.80) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.4);
  color: var(--yellow);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(42px, 6vw, 70px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__title .highlight {
  color: var(--yellow);
  position: relative;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}

.br-desktop { display: block; }

/* SEARCH BOX */
.search-box {
  width: 100%;
  max-width: 920px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 36px;
}

.search-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--bg-gray);
}

.search-tab {
  padding: 14px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
}
.search-tab.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  background: var(--white);
}
.search-tab:hover:not(.active) {
  color: var(--text-dark);
  background: var(--border);
}

.search-form {
  display: flex;
  align-items: stretch;
  padding: 16px;
  gap: 4px;
  flex-wrap: wrap;
}

.search-field {
  flex: 1;
  min-width: 120px;
  padding: 10px 14px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.search-field:last-of-type {
  border-right: none;
}

.search-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-input {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  background: transparent;
  padding: 0;
  width: 100%;
}
.search-input::placeholder {
  color: var(--text-light);
}
.search-select {
  cursor: pointer;
}

.search-field--date { min-width: 110px; }
.search-field--passengers { min-width: 130px; }

.swap-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: var(--blue-light);
  color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
  align-self: center;
  margin: 0 4px;
  transition: all var(--transition);
}
.swap-btn:hover {
  background: var(--blue);
  color: var(--white);
  transform: rotate(90deg);
}

/* HERO STATS */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  flex-wrap: wrap;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 24px;
}
.stat strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}
.stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
}

/* ==========================================
   PARTNERS
   ========================================== */
.partners {
  padding: 28px 0;
  background: var(--bg-gray);
  border-bottom: 1px solid var(--border);
}

.partners__label {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 20px;
}

.partners__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
  align-items: center;
}

.partner-logo {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  opacity: 0.65;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.partner-logo:hover {
  opacity: 1;
  color: var(--blue);
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-it-works {
  padding: 96px 0;
  background: var(--white);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  transition: all var(--transition);
  position: relative;
}
.step-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

.step-connector {
  padding: 0 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 16px;
}

/* ==========================================
   DEALS SECTION
   ========================================== */
.deals {
  padding: 96px 0;
  background: var(--bg-gray);
}

.deals-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

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

.deal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.deal-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.deal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.deal-card:hover .deal-img {
  transform: scale(1.06);
}

.deal-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  z-index: 1;
}
.deal-badge--hot {
  background: rgba(255,60,0,0.9);
  color: var(--white);
}
.deal-badge--limited {
  background: rgba(255,140,0,0.9);
  color: var(--white);
}
.deal-badge--sale {
  background: rgba(0,182,122,0.9);
  color: var(--white);
}

.deal-body {
  padding: 20px;
}

.deal-route {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.deal-city {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.deal-arrow {
  flex-shrink: 0;
}

.deal-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.deal-airline {
  font-size: 13px;
  color: var(--text-mid);
}

.deal-dates {
  font-size: 13px;
  color: var(--text-light);
}

.deal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deal-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.deal-original {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
}

.deal-current {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
}

.deal-save {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  background: rgba(0,182,122,0.1);
  padding: 2px 8px;
  border-radius: 100px;
  display: inline-block;
}

.deals-cta {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================
   WHY FLYASSISTLY
   ========================================== */
.why-us {
  padding: 96px 0;
  background: var(--white);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-us__visual {
  position: relative;
}

.why-us__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-us__stat-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid var(--green);
}

.stat-card__icon {
  font-size: 28px;
}

.stat-card__number {
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.stat-card__label {
  font-size: 12px;
  color: var(--text-mid);
  max-width: 100px;
}

.why-us__rating-card {
  position: absolute;
  top: -20px;
  right: 20px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.rating-stars {
  font-size: 18px;
  color: var(--yellow);
  margin-bottom: 4px;
}

.rating-text {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  white-space: nowrap;
}

.why-us__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-us__intro {
  font-size: 17px;
  color: var(--text-mid);
  margin: 16px 0 32px;
  line-height: 1.7;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon--blue   { background: var(--blue-light); color: var(--blue); }
.feature-icon--green  { background: rgba(0,182,122,0.1); color: var(--green); }
.feature-icon--orange { background: rgba(255,107,53,0.1); color: var(--orange); }
.feature-icon--purple { background: rgba(123,63,228,0.1); color: var(--purple); }

.feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.feature-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ==========================================
   ALERT BANNER
   ========================================== */
.alert-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 56px 0;
}

.alert-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.alert-banner__content {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  flex: 1;
}

.alert-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.alert-banner__content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.alert-banner__content p {
  font-size: 15px;
  opacity: 0.85;
}

.alert-banner__form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.alert-input {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: inherit;
  font-size: 15px;
  min-width: 260px;
  outline: none;
  color: var(--text-dark);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
  padding: 96px 0;
  background: var(--bg-gray);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.testimonial-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.author-info {
  font-size: 13px;
  color: var(--text-light);
}

.trustpilot-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.tp-label {
  font-size: 14px;
  color: var(--text-mid);
}

.tp-logo {
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
}

.tp-score {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
}

/* ==========================================
   FAQ
   ========================================== */
.faq {
  padding: 96px 0;
  background: var(--white);
}

.faq .container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: var(--white);
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover {
  background: var(--bg-gray);
}

.faq-item.active .faq-question {
  color: var(--blue);
  background: var(--blue-light);
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0,30,80,0.92) 0%,
    rgba(0,87,255,0.80) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-trust span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 72px 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__logo .logo-text {
  color: var(--white);
}
.footer__logo .logo-text strong {
  color: #6BA4FF;
}

.footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer__disclaimer {
  font-style: italic;
}

/* ==========================================
   RESPONSIVE — TABLET
   ========================================== */
@media (max-width: 1024px) {
  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .why-us__visual {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .why-us__stat-card {
    right: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .steps-grid {
    flex-direction: column;
    gap: 20px;
  }

  .step-connector {
    transform: rotate(90deg);
    padding: 0;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================
   RESPONSIVE — MOBILE
   ========================================== */
@media (max-width: 768px) {
  /* Navbar */
  .navbar__links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    margin-left: 0;
    z-index: 999;
  }
  .navbar__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .navbar__actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 120px 0 60px;
  }
  .hero__content {
    align-items: flex-start;
  }
  .hero__title {
    font-size: 38px;
  }
  .hero__subtitle {
    font-size: 16px;
  }
  .br-desktop { display: none; }

  .search-form {
    flex-direction: column;
    padding: 12px;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 12px;
  }
  .search-field:last-of-type {
    border-bottom: none;
  }
  .swap-btn {
    align-self: flex-start;
    margin-left: 12px;
  }
  .btn--search {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
  }
  .stat {
    padding: 4px 12px;
  }
  .stat-divider {
    display: none;
  }

  /* Sections */
  .section-title {
    font-size: 28px;
  }
  .section-subtitle {
    font-size: 15px;
  }

  .how-it-works,
  .deals,
  .why-us,
  .testimonials,
  .faq,
  .cta-section {
    padding: 64px 0;
  }

  /* Deals */
  .deals-grid {
    grid-template-columns: 1fr;
  }

  /* Why us */
  .why-us__img {
    height: 300px;
  }
  .why-us__stat-card {
    right: 0;
    bottom: -20px;
  }
  .why-us__rating-card {
    right: 10px;
    top: -14px;
  }

  /* Alert Banner */
  .alert-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .alert-banner__form {
    width: 100%;
  }
  .alert-input {
    width: 100%;
    min-width: unset;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-title {
    font-size: 30px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-trust {
    gap: 12px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__badge {
    font-size: 12px;
    padding: 6px 14px;
  }
  .hero__title {
    font-size: 32px;
  }
  .trustpilot-bar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}
