/* ============================================
   SKYCOMPARE - GRADIENT MODERN DESIGN
   CSS Reset & Base Styles
   ============================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #0A4D8C;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #0A4D8C 0%, #0d6ebd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  margin-bottom: 32px;
  text-align: center;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #2c3e50;
}

strong {
  font-weight: 600;
  color: #0A4D8C;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

section {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #0A4D8C 0%, #0d6ebd 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(10, 77, 140, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 77, 140, 0.4);
  background: linear-gradient(135deg, #0d6ebd 0%, #0A4D8C 100%);
}

.btn-secondary {
  background: transparent;
  color: #0A4D8C;
  border: 2px solid #0A4D8C;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #0A4D8C 0%, #0d6ebd 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 77, 140, 0.3);
}

button:active,
.btn-primary:active,
.btn-secondary:active {
  transform: translateY(0);
}

/* ============================================
   MOBILE MENU TOGGLE BUTTON
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #0A4D8C 0%, #0d6ebd 100%);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(10, 77, 140, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(10, 77, 140, 0.4);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #0A4D8C 0%, #0d6ebd 100%);
  z-index: 999;
  padding: 80px 30px 40px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

/* ============================================
   HEADER
   ============================================ */

header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 244, 248, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0A4D8C;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B35 0%, #FF8C61 100%);
  transition: width 0.3s ease;
  border-radius: 3px;
}

.main-nav a:hover::after {
  width: 100%;
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #0A4D8C 0%, #0d6ebd 100%);
  color: #ffffff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero .btn-primary {
  background: #FF6B35;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hero .btn-primary:hover {
  background: #ff8c61;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
}

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

.trust-indicators span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   PAGE HERO (INTERNAL PAGES)
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #0A4D8C 0%, #0d6ebd 100%);
  color: #ffffff;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumbs span {
  color: #ffffff;
}

.hero-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-benefits span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.response-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  margin-top: 24px;
  backdrop-filter: blur(10px);
}

/* ============================================
   PREMIUM HERO
   ============================================ */

.premium-hero {
  background: linear-gradient(135deg, #0A4D8C 0%, #0d6ebd 50%, #FF6B35 100%);
}

.premium-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.trial-banner {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 16px;
  margin: 24px 0;
  display: inline-block;
  backdrop-filter: blur(10px);
}

/* ============================================
   FEATURES SECTIONS
   ============================================ */

.features,
.services,
.benefits {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 244, 248, 0.9) 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.features-grid,
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.feature-card,
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  flex: 1 1 260px;
  max-width: 350px;
  min-width: 260px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.feature-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0A4D8C 0%, #0d6ebd 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover,
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(10, 77, 140, 0.15);
}

.feature-card:hover::before,
.service-card:hover::before {
  transform: scaleX(1);
}

.feature-card img,
.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.feature-card h3,
.service-card h3 {
  color: #0A4D8C;
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p,
.service-card p {
  color: #2c3e50;
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card.featured {
  border: 3px solid #FF6B35;
  position: relative;
}

.service-card.featured::after {
  content: 'POLECANE';
  position: absolute;
  top: 16px;
  right: -30px;
  background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
  color: #ffffff;
  padding: 4px 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FF6B35;
  margin-top: auto;
}

/* ============================================
   STATISTICS
   ============================================ */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  border-radius: 16px;
  padding: 32px 24px;
  flex: 1 1 220px;
  max-width: 280px;
  min-width: 220px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(10, 77, 140, 0.12);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #0A4D8C 0%, #0d6ebd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: #2c3e50;
  display: block;
}

/* ============================================
   HOW IT WORKS / STEPS
   ============================================ */

.how-it-works {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  border-radius: 20px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  flex: 1 1 240px;
  max-width: 320px;
  min-width: 240px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(10, 77, 140, 0.12);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.step-card h3 {
  font-size: 20px;
  color: #0A4D8C;
  margin-bottom: 12px;
}

.step-card p {
  color: #2c3e50;
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, rgba(240, 244, 248, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 320px;
  max-width: 550px;
  min-width: 280px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(10, 77, 140, 0.12);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 80px;
  color: rgba(10, 77, 140, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  color: #FF6B35;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.customer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 77, 140, 0.1);
}

.customer strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #0A4D8C;
}

.customer span {
  font-size: 14px;
  color: #6c757d;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, #0A4D8C 0%, #0d6ebd 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(10, 77, 140, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-section .btn-primary {
  background: #FF6B35;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-section .btn-primary:hover {
  background: #ff8c61;
}

.cta-section .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

/* ============================================
   SEARCH INTERFACE
   ============================================ */

.search-interface {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 40px 20px;
}

.search-form {
  max-width: 1000px;
  margin: 0 auto;
}

.search-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.input-group {
  flex: 1 1 240px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0A4D8C;
}

.input-group input,
.input-group select {
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 15px;
  background: #ffffff;
  transition: all 0.3s ease;
  width: 100%;
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: #0A4D8C;
  box-shadow: 0 0 0 3px rgba(10, 77, 140, 0.1);
}

.search-options {
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #2c3e50;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.search-button {
  width: 100%;
  padding: 18px;
  font-size: 18px;
  max-width: 300px;
  margin: 0 auto;
  display: block;
}

/* ============================================
   FILTERS SECTION
   ============================================ */

.filters-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 40px 20px;
}

.filters-sidebar {
  max-width: 350px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.filters-sidebar h3 {
  font-size: 24px;
  color: #0A4D8C;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid rgba(10, 77, 140, 0.1);
}

.filter-group {
  margin-bottom: 32px;
}

.filter-group h4 {
  font-size: 16px;
  color: #0A4D8C;
  margin-bottom: 16px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: #2c3e50;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-group label:hover {
  color: #0A4D8C;
  transform: translateX(3px);
}

.filter-group input[type="checkbox"],
.filter-group input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.price-range-slider {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-range-slider input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #0A4D8C 0%, #0d6ebd 100%);
  cursor: pointer;
}

.price-range-slider span {
  font-size: 14px;
  color: #2c3e50;
  font-weight: 600;
}

/* ============================================
   TIPS SECTION
   ============================================ */

.tips-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 244, 248, 0.9) 100%);
  border-radius: 20px;
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.tip-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  flex: 1 1 240px;
  max-width: 300px;
  min-width: 220px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 20px;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(10, 77, 140, 0.12);
}

.tip-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
}

.tip-card h3 {
  font-size: 18px;
  color: #0A4D8C;
  margin-bottom: 8px;
}

.tip-card p {
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.6;
}

/* ============================================
   AIRLINES GRID
   ============================================ */

.airlines-filters {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  border-radius: 20px;
  padding: 32px 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.filters-bar select {
  flex: 1 1 200px;
  min-width: 180px;
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 15px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filters-bar select:focus {
  outline: none;
  border-color: #0A4D8C;
  box-shadow: 0 0 0 3px rgba(10, 77, 140, 0.1);
}

.airlines-grid-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  border-radius: 20px;
}

.airlines-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.airline-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 240px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 20px;
}

.airline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(10, 77, 140, 0.12);
}

.airline-logo {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.airline-logo img {
  max-width: 100%;
  max-height: 100%;
}

.airline-card h3 {
  font-size: 20px;
  color: #0A4D8C;
  margin-bottom: 8px;
}

.rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.rating .stars {
  font-size: 16px;
  color: #FF6B35;
}

.rating .score {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0A4D8C;
}

.airline-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 16px 0;
  border-top: 1px solid rgba(10, 77, 140, 0.1);
  border-bottom: 1px solid rgba(10, 77, 140, 0.1);
  margin-bottom: 8px;
}

.airline-stats span {
  font-size: 14px;
  color: #2c3e50;
}

/* ============================================
   COMPARISON CATEGORIES
   ============================================ */

.comparison-categories {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 244, 248, 0.9) 100%);
  border-radius: 20px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.category-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  flex: 1 1 240px;
  max-width: 300px;
  min-width: 220px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(10, 77, 140, 0.12);
}

.category-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.category-card h3 {
  font-size: 18px;
  color: #0A4D8C;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.6;
}

/* ============================================
   TOP AIRLINES
   ============================================ */

.top-airlines {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  border-radius: 20px;
}

.top-airlines-list {
  max-width: 600px;
  margin: 40px auto 0;
}

.top-airline-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.top-airline-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(10, 77, 140, 0.12);
}

.top-airline-item .rank {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.airline-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.airline-info h3 {
  font-size: 20px;
  color: #0A4D8C;
  margin-bottom: 0;
}

.airline-info span {
  font-size: 14px;
  color: #6c757d;
}

/* ============================================
   ALERT SETUP
   ============================================ */

.alert-setup {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.alert-form {
  max-width: 700px;
  margin: 40px auto 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0A4D8C;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 15px;
  background: #ffffff;
  transition: all 0.3s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0A4D8C;
  box-shadow: 0 0 0 3px rgba(10, 77, 140, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  background: rgba(10, 77, 140, 0.05);
  border-left: 4px solid #0A4D8C;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #2c3e50;
}

.form-info {
  font-size: 13px;
  color: #6c757d;
  text-align: center;
  margin-top: 16px;
}

/* ============================================
   PRICING
   ============================================ */

.pricing {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  border-radius: 20px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  flex: 1 1 320px;
  max-width: 450px;
  min-width: 280px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  margin-bottom: 20px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(10, 77, 140, 0.15);
}

.pricing-card.featured {
  border: 3px solid #FF6B35;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.pricing-card h3 {
  font-size: 28px;
  color: #0A4D8C;
  text-align: center;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 48px;
  text-align: center;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-card .price span {
  font-size: 18px;
  color: #6c757d;
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-card ul li {
  padding-left: 32px;
  position: relative;
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.6;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   PRICING COMPARISON TABLE
   ============================================ */

.pricing-comparison {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  border-radius: 20px;
}

.comparison-table {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.plan-column {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  flex: 1 1 320px;
  max-width: 450px;
  min-width: 280px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  margin-bottom: 20px;
}

.plan-column.featured {
  border: 3px solid #FF6B35;
  transform: scale(1.05);
}

.plan-column .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.plan-column h3 {
  font-size: 28px;
  color: #0A4D8C;
  text-align: center;
  margin-bottom: 8px;
}

.plan-column .price {
  font-size: 48px;
  text-align: center;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.plan-column .price span {
  font-size: 18px;
  color: #6c757d;
  font-weight: 400;
}

.plan-column ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.plan-column ul li {
  padding-left: 32px;
  position: relative;
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.6;
}

.plan-column ul li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   PREMIUM FEATURES
   ============================================ */

.premium-features {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  border-radius: 20px;
}

/* ============================================
   BENEFITS SHOWCASE
   ============================================ */

.benefits-showcase {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 244, 248, 0.9) 100%);
  border-radius: 20px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.benefit-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 320px;
  max-width: 450px;
  min-width: 280px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.benefit-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35 0%, #ff8c61 100%);
}

.benefit-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(10, 77, 140, 0.12);
}

.benefit-block h3 {
  font-size: 24px;
  color: #0A4D8C;
  margin-bottom: 8px;
}

.benefit-block p {
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.7;
}

/* ============================================
   GUARANTEE
   ============================================ */

.guarantee {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  border-radius: 20px;
}

.guarantee-content {
  max-width: 800px;
  margin: 40px auto 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.guarantee-content img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.guarantee-text h2 {
  font-size: 28px;
  color: #0A4D8C;
  margin-bottom: 16px;
  text-align: left;
}

.guarantee-text p {
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.7;
}

.no-commitment {
  font-size: 14px;
  color: #6c757d;
  margin-top: 16px;
  text-align: center;
}

/* ============================================
   MISSION & VISION
   ============================================ */

.mission-vision {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  border-radius: 20px;
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.mission-card,
.vision-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  flex: 1 1 400px;
  max-width: 550px;
  min-width: 320px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 20px;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(10, 77, 140, 0.12);
}

.mission-card img,
.vision-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
}

.mission-card h2,
.vision-card h2 {
  font-size: 28px;
  color: #0A4D8C;
  margin-bottom: 8px;
}

.mission-card p,
.vision-card p {
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.7;
}

/* ============================================
   STORY
   ============================================ */

.story {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  border-radius: 20px;
}

.story-content {
  max-width: 900px;
  margin: 40px auto 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.story-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #2c3e50;
  margin-bottom: 24px;
}

/* ============================================
   STATISTICS
   ============================================ */

.statistics {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 244, 248, 0.9) 100%);
  border-radius: 20px;
}

/* ============================================
   VALUES
   ============================================ */

.values {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  border-radius: 20px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.value-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  flex: 1 1 240px;
  max-width: 300px;
  min-width: 220px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(10, 77, 140, 0.12);
}

.value-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.value-card h3 {
  font-size: 20px;
  color: #0A4D8C;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.6;
}

/* ============================================
   CONTACT METHODS
   ============================================ */

.contact-methods {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  border-radius: 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  flex: 1 1 280px;
  max-width: 380px;
  min-width: 260px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(10, 77, 140, 0.12);
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.contact-card h3 {
  font-size: 20px;
  color: #0A4D8C;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.7;
}

.contact-card a {
  color: #0A4D8C;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #FF6B35;
}

.availability {
  font-size: 13px;
  color: #6c757d;
  font-style: italic;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contact-form-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  border-radius: 20px;
}

.contact-form {
  max-width: 700px;
  margin: 40px auto 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

/* ============================================
   OFFICE INFO
   ============================================ */

.office-info {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 244, 248, 0.9) 100%);
  border-radius: 20px;
}

.office-details {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.office-address,
.office-hours {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 320px;
  max-width: 450px;
  min-width: 280px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.office-address h3,
.office-hours h3 {
  font-size: 22px;
  color: #0A4D8C;
  margin-bottom: 16px;
}

.office-address p,
.office-hours p {
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.8;
}

/* ============================================
   SUPPORT CATEGORIES
   ============================================ */

.support-categories {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  border-radius: 20px;
}

/* ============================================
   SUCCESS STORIES
   ============================================ */

.success-stories {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 244, 248, 0.9) 100%);
  border-radius: 20px;
}

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.story-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 320px;
  max-width: 550px;
  min-width: 280px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(10, 77, 140, 0.12);
}

.savings {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.story-card p {
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
}

/* ============================================
   LEGAL PAGE
   ============================================ */

.legal-page {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  border-radius: 20px;
  padding: 60px 20px;
}

.legal-page h1 {
  font-size: 42px;
  color: #0A4D8C;
  margin-bottom: 16px;
  text-align: center;
  background: none;
  -webkit-text-fill-color: #0A4D8C;
}

.last-updated {
  text-align: center;
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 40px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  font-size: 28px;
  color: #0A4D8C;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid rgba(10, 77, 140, 0.1);
  text-align: left;
}

.legal-content h3 {
  font-size: 22px;
  color: #0A4D8C;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #2c3e50;
  margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-content ul {
  list-style-type: disc;
}

.legal-content ol {
  list-style-type: decimal;
}

.legal-content ul li,
.legal-content ol li {
  font-size: 16px;
  line-height: 1.9;
  color: #2c3e50;
  margin-bottom: 12px;
  padding-left: 8px;
}

.legal-content a {
  color: #0A4D8C;
  font-weight: 600;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #FF6B35;
}

.legal-content strong {
  font-weight: 600;
  color: #0A4D8C;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #0A4D8C 0%, #0d6ebd 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thank-you-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.success-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: #ffffff;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.confirmation-message {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
}

.next-steps {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.confirmation-details {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  border-radius: 20px;
}

.confirmation-box {
  max-width: 800px;
  margin: 40px auto 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.confirmation-box h2 {
  font-size: 32px;
  color: #0A4D8C;
  margin-bottom: 32px;
}

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

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #f5f7fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(10, 77, 140, 0.05);
  transform: translateX(5px);
}

.step-item .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35 0%, #ff8c61 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text {
  flex-grow: 1;
}

.step-text h3 {
  font-size: 20px;
  color: #0A4D8C;
  margin-bottom: 8px;
}

.step-text p {
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.6;
}

.suggested-actions {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  border-radius: 20px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.action-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  flex: 1 1 240px;
  max-width: 300px;
  min-width: 220px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 20px;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(10, 77, 140, 0.12);
}

.action-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.action-card h3 {
  font-size: 18px;
  color: #0A4D8C;
  margin-bottom: 8px;
}

.contact-alternative {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 244, 248, 0.9) 100%);
  border-radius: 20px;
}

.urgent-contact {
  max-width: 800px;
  margin: 40px auto 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.urgent-contact h2 {
  font-size: 28px;
  color: #0A4D8C;
  margin-bottom: 16px;
}

.urgent-contact > p {
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #f5f7fa;
  border-radius: 12px;
  flex: 1 1 320px;
  max-width: 400px;
  min-width: 280px;
}

.contact-method img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.contact-method div {
  text-align: left;
}

.contact-method strong {
  display: block;
  font-size: 16px;
  color: #0A4D8C;
  margin-bottom: 4px;
}

.contact-method p {
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, #0A4D8C 0%, #0d6ebd 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 8px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 8px;
  position: relative;
}

.footer-col nav a::before {
  content: '→';
  position: absolute;
  left: -8px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-col nav a:hover {
  color: #ffffff;
  padding-left: 16px;
}

.footer-col nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-align: center;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0A4D8C 0%, #0d6ebd 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-banner-text {
  flex: 1 1 400px;
}

.cookie-banner-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-banner-text a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background: #FF6B35;
  color: #ffffff;
  border-color: #FF6B35;
}

.cookie-btn-accept:hover {
  background: #ff8c61;
  border-color: #ff8c61;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-reject:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   COOKIE SETTINGS MODAL
   ============================================ */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.cookie-modal.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f7fa;
  color: #0A4D8C;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #e9ecef;
  transform: rotate(90deg);
}

.cookie-modal-content h2 {
  font-size: 28px;
  color: #0A4D8C;
  margin-bottom: 24px;
}

.cookie-category {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  font-size: 18px;
  color: #0A4D8C;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.cookie-toggle input {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  z-index: 2;
}

.cookie-toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 26px;
  transition: all 0.3s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #0A4D8C;
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background: #0A4D8C;
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-modal-buttons button {
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Adjust header */
  .header-cta {
    width: 100%;
    justify-content: center;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Section spacing */
  section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  /* Cards and grids */
  .features-grid,
  .services-grid,
  .stats-grid,
  .steps-grid,
  .testimonials-grid,
  .tips-grid,
  .airlines-grid,
  .categories-grid,
  .benefits-grid,
  .values-grid,
  .contact-grid,
  .stories-grid,
  .actions-grid,
  .pricing-grid {
    gap: 20px;
  }
  
  .feature-card,
  .service-card,
  .stat-card,
  .step-card,
  .testimonial-card,
  .tip-card,
  .airline-card,
  .category-card,
  .benefit-block,
  .value-card,
  .contact-card,
  .story-card,
  .action-card,
  .pricing-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Search interface */
  .search-inputs {
    flex-direction: column;
    gap: 16px;
  }
  
  .input-group {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .search-button {
    max-width: 100%;
  }
  
  /* Filters */
  .filters-bar {
    flex-direction: column;
  }
  
  .filters-bar select {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Alert form */
  .alert-form,
  .contact-form {
    padding: 32px 24px;
  }
  
  /* Guarantee */
  .guarantee-content {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  
  .guarantee-content img {
    margin: 0 auto;
  }
  
  .guarantee-text h2 {
    text-align: center;
  }
  
  /* Legal content */
  .legal-content {
    padding: 32px 24px;
  }
  
  .legal-content h2 {
    font-size: 24px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
    min-width: 100%;
    text-align: center;
  }
  
  .footer-logo {
    margin: 0 auto 8px;
  }
  
  .footer-bottom {
    padding-top: 24px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* CTA section */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  /* Thank you page */
  .contact-methods {
    flex-direction: column;
  }
  
  .contact-method {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .main-nav {
    gap: 24px;
  }
  
  .features-grid,
  .services-grid {
    gap: 24px;
  }
  
  .feature-card,
  .service-card {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid #FF6B35;
  outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-section {
    display: none;
  }
  
  body {
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}