/* ===================================
   THEME: Clean Light
   Policy-Safe, Minimal Design
   =================================== */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.6;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1a202c;
  background-color: #ffffff;
  overflow-x: hidden;
  /* Updated padding to account for the larger logo header */
  padding-top: 100px;
}

/* TYPOGRAPHY */
h1 {
  text-align: center;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */
header {
  background: #0066cc;
  border-bottom: 3px solid #ff6b35;
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Section */
header .logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* UPDATED LOGO STYLE */
header .logo {
  width: 220px;       /* Wider to fit the full logo name */
  height: auto;       /* Auto height prevents squashing */
  border-radius: 0;   /* Removed border radius for sharp SVG */
  display: block;
}

header h1 {
  /* Hidden because the logo image now contains the text "Book Your Flight" */
  display: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Navigation */
header nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header nav a {
  padding: 0.5rem 1rem;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}

header nav a:hover {
  background-color: #ff6b35;
  color: #ffffff;
}

header .phone {
  padding: 0.5rem 1.5rem;
  background: #0066cc;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin-left: 1rem;
  transition: opacity 0.2s;
}

header .phone:hover {
  opacity: 0.9;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #e6f2ff 0%, #ffffff 100%);
  padding: 4rem 0;
  border-bottom: 3px solid #0066cc;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, transparent 0%, #f8fafc 100%);
  opacity: 0.3;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.hero p {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* BUTTON (CTA) */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #0066cc;
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  text-align: center;
  margin: 0 auto;
}

.btn:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Center CTA buttons in hero and sections */
.hero .container > .btn,
.section .container > .btn,
.hero > .container,
.section > .container {
  text-align: center;
}

/* SECTION */
.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background: #f8fafc;
}

.section h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 0.75rem;
  text-align: center;
  position: relative;
  display: block;
}

.section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #0066cc;
  border-radius: 2px;
}

.section p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

/* Content Box for text sections */
.content-box {
  background: #e6f2ff;
  border: 2px solid #0066cc;
  border-left: 6px solid #0066cc;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.content-box h3,
.content-box h4 {
  text-align: center;
  color: #1a202c;
  margin-bottom: 1.5rem;
}

.content-box p {
  text-align: center;
  color: #4a5568;
  line-height: 1.8;
}

/* CARDS */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-card {
  background: #ffffff;
  border: 2px solid #dfe6ed;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0066cc 0%, #ff6b35 100%);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  border-color: #0066cc;
}

.service-card h4 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.service-card p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.7;
}

/* FAQ */
.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 2px solid #dfe6ed;
  border-left: 4px solid #0066cc;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left-color: #ff6b35;
}

.faq-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.faq-item h4::before {
  content: '→';
  color: #0066cc;
  font-weight: 700;
  margin-right: 0.75rem;
  font-size: 1.5rem;
}

.faq-item p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.7;
}

/* FOOTER */
footer {
  background: #0066cc;
  border-top: 3px solid #ff6b35;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

footer h3 {
  color: #ffffff !important;
}

footer p,
footer address {
  color: rgba(255,255,255,0.9) !important;
}

footer a {
  color: #f59e0b !important;
}

footer a:hover {
  color: #ffffff !important;
}

footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

footer .footer-section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

footer p {
  color: #4a5568;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

footer a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #ff6b35;
  text-decoration: underline;
}

footer .footer-bottom {
  border-top: 1px solid #dfe6ed;
  padding-top: 1.5rem;
  text-align: center;
  color: #4a5568;
  font-size: 0.875rem;
}

/* ACCENT ELEMENTS */
.accent-box {
  background: #e6f2ff;
  border-left: 4px solid #0066cc;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.badge {
  background: #0066cc;
  color: #ffffff;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero h2 {
    font-size: 1.75rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  header nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .services {
    grid-template-columns: 1fr;
  }
  
  .image-gallery {
    grid-template-columns: 1fr;
  }
  
  footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* IMAGE GALLERY */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.image-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 3px solid #dfe6ed;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.image-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-color: #0066cc;
}

/* Compliance Disclaimer Box */
.disclaimer-banner {
  background-color: #f3f4f6;
  color: #4b5563;
  font-size: 0.85rem;
  text-align: center;
  padding: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}