/* ====== Global Reset & Variables ====== */
:root {
  --primary: #0B2661;
  --secondary: #000000;
  --accent: #FFD700;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --gray: #888;
  --dark-gray: #333;
  --text: #2c2c2c;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====== Top Bar ====== */
.top-bar {
  background: var(--secondary);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar a {
  color: var(--accent);
}

.top-bar-left span {
  margin-right: 20px;
}

.top-bar-right a {
  margin-left: 15px;
  color: var(--white);
}

/* ====== Header / Navigation ====== */
.header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.logo span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: var(--primary) !important;
  padding: 10px 22px !important;
  border-radius: 30px;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

/* ====== Hero Section ====== */
.hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, rgba(11, 38, 97, 0.85), rgba(0, 0, 0, 0.85)),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=80') center/cover;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 60px 0;
}

.hero-content {
  max-width: 800px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 215, 0, 0.15);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 19px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ====== Search Form ====== */
.search-form {
  background: var(--white);
  color: var(--text);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

.trip-tabs {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.trip-tabs label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 500;
  color: var(--dark-gray);
}

.cabin-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cabin-tabs button {
  background: var(--light-gray);
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.cabin-tabs button.active,
.cabin-tabs button:hover {
  background: var(--primary);
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-field input,
.form-field select {
  border: 1px solid #ddd;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary);
}

.airport-field {
  position: relative;
}

.airport-list {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 50;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: none;
  padding: 4px 0;
}

.airport-field.active .airport-list {
  display: block;
}

.airport-list li {
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  transition: background 0.15s ease;
  border-bottom: 1px solid #f3f3f3;
}

.airport-list li:last-child {
  border-bottom: none;
}

.airport-list li:hover,
.airport-list li.active-item {
  background: var(--light-gray);
}

.airport-code {
  background: var(--primary);
  color: var(--accent);
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.5px;
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
}

.airport-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.airport-city {
  font-weight: 600;
  color: var(--primary);
}

.airport-name {
  font-size: 12px;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.airport-empty {
  padding: 12px 14px;
  color: var(--gray);
  font-size: 13px;
  font-style: italic;
}

.search-btn {
  background: var(--primary);
  color: var(--white);
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 15px;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--secondary);
}

.form-error {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  background: #fdecea;
  color: #b00020;
  border-left: 3px solid #b00020;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.form-error.visible {
  display: block;
}

/* ====== Quote Modal ====== */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quote-modal.open {
  display: flex;
}

.quote-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  animation: fadeIn 0.25s ease;
}

.quote-modal-content {
  position: relative;
  background: var(--white);
  max-width: 500px;
  width: 100%;
  padding: 40px 30px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease;
}

.quote-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gray);
  line-height: 1;
  transition: var(--transition);
}

.quote-modal-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.quote-modal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.quote-modal-content h2 {
  color: var(--primary);
  font-size: 26px;
  margin-bottom: 10px;
}

.quote-modal-sub {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 15px;
}

.quote-summary {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 22px;
  text-align: left;
}

.quote-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid #e5e5e5;
}

.quote-summary-row:last-child {
  border-bottom: none;
}

.quote-summary-row strong {
  color: var(--primary);
  font-weight: 600;
}

.quote-summary-row span {
  color: var(--dark-gray);
  text-align: right;
}

.quote-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

@media (max-width: 480px) {
  .quote-modal-content {
    padding: 30px 20px 20px;
  }

  .quote-modal-content h2 {
    font-size: 22px;
  }

  .airport-list li {
    padding: 8px 10px;
    gap: 8px;
  }

  .airport-code {
    font-size: 11px;
    padding: 3px 6px;
    min-width: 42px;
  }

  .airport-city {
    font-size: 13px;
  }

  .airport-name {
    font-size: 11px;
  }
}

/* ====== Stats Section ====== */
.stats {
  background: var(--white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;
  border-radius: 12px;
  transition: var(--transition);
  background: var(--light-gray);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  background: var(--primary);
  color: var(--white);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  transition: var(--transition);
}

.stat-item:hover .stat-icon {
  background: var(--accent);
  color: var(--primary);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-item:hover .stat-number {
  color: var(--accent);
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

.stat-item:hover .stat-label {
  color: var(--white);
}

/* ====== Section General ====== */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 800;
}

.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

/* ====== Features Section ====== */
.features {
  background: var(--light-gray);
}

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

.feature-card {
  background: var(--white);
  padding: 35px 28px;
  border-radius: 14px;
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(11, 38, 97, 0.15);
}

.feature-icon {
  width: 65px;
  height: 65px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-card p {
  color: var(--gray);
  font-size: 14px;
}

/* ====== Destinations Section ====== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.destination-card {
  position: relative;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 38, 97, 0.95), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: var(--white);
}

.destination-overlay h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.destination-overlay .price {
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

/* ====== How It Works ====== */
.how-it-works {
  background: var(--light-gray);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
}

.step {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

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

.step-num {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 20px;
  font-weight: 800;
}

.step h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
  font-size: 14px;
}

/* ====== CTA Section ====== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}

.cta-section h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

/* ====== Testimonials ====== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  position: relative;
  border-top: 4px solid var(--accent);
}

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

.testimonial-text {
  color: var(--dark-gray);
  margin-bottom: 20px;
  font-style: italic;
  font-size: 15px;
}

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

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

.author-name {
  font-weight: 700;
  color: var(--primary);
}

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

/* ====== FAQ Section ====== */
.faq-section {
  background: var(--light-gray);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: var(--dark-gray);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ====== Footer ====== */
.footer {
  background: var(--secondary);
  color: #ccc;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 35px;
  margin-bottom: 40px;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 16px;
  position: relative;
  padding-bottom: 8px;
}

.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-brand p {
  font-size: 14px;
  margin: 15px 0;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #ccc;
  font-size: 14px;
}

.footer ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact div {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
}

.footer-bottom-links a {
  margin-left: 20px;
  color: #ccc;
}

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

/* ====== Page Header (Inner pages) ====== */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 800;
}

.page-header p {
  font-size: 17px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumb {
  margin-top: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb span {
  margin: 0 8px;
  opacity: 0.5;
}

/* ====== About / Content Pages ====== */
.content-section {
  padding: 70px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.content-text h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 20px;
}

.content-text p {
  color: var(--dark-gray);
  margin-bottom: 15px;
  font-size: 15px;
}

.content-text ul li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--dark-gray);
}

.content-text ul li::before {
  content: '✓';
  color: var(--accent);
  background: var(--primary);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.content-image img {
  border-radius: 14px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ====== Mission / Values ====== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  text-align: center;
  padding: 35px 25px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--gray);
  font-size: 14px;
}

/* ====== Legal Pages ====== */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: var(--primary);
  margin: 30px 0 15px;
  font-size: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.legal-content h3 {
  color: var(--primary);
  margin: 20px 0 10px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: var(--dark-gray);
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.8;
}

.legal-content ul {
  margin-left: 25px;
  margin-bottom: 15px;
}

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

.last-updated {
  background: var(--light-gray);
  padding: 15px 20px;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--dark-gray);
}

/* ====== Contact Page ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--primary);
  color: var(--white);
  padding: 40px 30px;
  border-radius: 14px;
}

.contact-info-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.contact-info-card p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-item p {
  margin: 0;
  font-size: 15px;
}

.contact-form {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  color: var(--primary);
  margin-bottom: 25px;
  font-size: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 38, 97, 0.1);
}

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

.contact-form button {
  background: var(--primary);
  color: var(--white);
  padding: 14px 35px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
  transition: var(--transition);
}

.contact-form button:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ====== Map Section ====== */
.map-section {
  padding: 0 0 60px;
}

.map-container {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 18px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

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

  section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .features-grid,
  .values-grid,
  .testimonials-grid,
  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-text h2 {
    font-size: 26px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links a {
    margin: 0 8px;
  }

  .stats-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .stats-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .cabin-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 5px;
  }

  .legal-content h2 {
    font-size: 20px;
  }
}