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

:root {
  --primary-color: #164484;
  --secondary-color: #ffbd1f;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --border-color-dark: #d1d5db;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

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

/* Header & Navigation - Modern Variant */
header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(22, 68, 132, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 25px rgba(22, 68, 132, 0.1);
  border-bottom-color: rgba(22, 68, 132, 0.15);
}

.navbar {
  padding: 1.25rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex-shrink: 0;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.logo a:hover {
  transform: translateY(-2px);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(22, 68, 132, 0.1));
}

.logo a:hover .logo-img {
  filter: drop-shadow(0 4px 8px rgba(22, 68, 132, 0.2));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.6rem 1.25rem;
  display: block;
  border-radius: 8px;
  overflow: visible;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22, 68, 132, 0.05), rgba(22, 68, 132, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  z-index: -1;
}

.nav-menu a:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.nav-menu a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-menu a:hover::after {
  opacity: 1;
}

.nav-menu a.active {
  color: var(--primary-color);
  font-weight: 600;
}

.nav-menu a.active::before {
  transform: translateX(-50%) scaleX(1);
  background: var(--primary-color);
  width: 100%;
}

.nav-menu a.active::after {
  opacity: 1;
  background: linear-gradient(135deg, rgba(22, 68, 132, 0.08), rgba(22, 68, 132, 0.04));
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(22, 68, 132, 0.05);
  border: 1px solid rgba(22, 68, 132, 0.1);
  position: relative;
}

.hamburger:hover {
  background: rgba(22, 68, 132, 0.1);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.hamburger.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.hamburger.active span {
  background: var(--white);
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(22, 68, 132, 0.1);
}

.lang-link {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
}

.lang-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--primary-color);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.lang-link:hover {
  color: var(--primary-color);
  background: rgba(22, 68, 132, 0.05);
}

.lang-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.lang-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

.lang-link.active::before {
  transform: translateX(-50%) scaleX(1);
  width: 80%;
}

.lang-separator {
  color: rgba(22, 68, 132, 0.2);
  font-weight: 300;
  user-select: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0d2f5a 100%);
  color: var(--white);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title-main {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #ffffff, #ffbd1f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 189, 31, 0.3);
}

.hero-title-sub {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  opacity: 0.95;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.7;
  animation: fadeInUp 1s ease-out;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature-icon {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.hero-feature span:last-child {
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInUp 1.4s ease-out;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.hero-trust {
  animation: fadeInUp 1.6s ease-out;
}

.trust-text {
  font-size: 0.95rem;
  opacity: 0.8;
  font-style: italic;
  position: relative;
  padding-top: 1rem;
}

.trust-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* Airlines Section */
.airlines-section {
  margin-top: 0;
  padding: 60px 20px;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.airlines-section .container {
  max-width: 1400px;
}

.airlines-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
}

.airlines-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

.airlines-track {
  display: flex;
  gap: 30px;
  animation: scroll 40s linear infinite;
  width: fit-content;
}

.airline-item {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 25px 20px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.airline-item {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.airline-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(22, 68, 132, 0.15);
}

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

.airline-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.airline-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.airline-item:hover .airline-name {
  color: var(--primary-color);
}

/* Animations */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  33% {
    transform: translateY(-20px) translateX(10px);
  }
  66% {
    transform: translateY(10px) translateX(-10px);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--text-dark);
  border-color: var(--secondary-color);
}

.btn-primary:hover {
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Services Preview */
.services-preview {
  padding: 80px 20px;
  background: var(--bg-light);
}

.services-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.service-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.service-icon img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 20px;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  transition: all 0.3s;
}

.feature:hover {
  border-color: var(--primary-color);
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.feature p {
  color: var(--text-light);
}

/* Page Header */
.page-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.95;
}

/* About Page */
.about-content {
  padding: 80px 20px;
}

.about-section {
  margin-bottom: 4rem;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.about-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  background: var(--bg-light);
  padding: 2rem;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  transition: all 0.3s;
}

.value-item:hover {
  border-color: var(--primary-color);
}

.value-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.value-item p {
  color: var(--text-light);
}

.offerings-list {
  list-style: none;
  margin-top: 1rem;
}

.offerings-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}

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

.offerings-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Services Detail Page */
.services-detail {
  padding: 80px 20px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.service-detail-card.reverse {
  grid-template-columns: 2fr 1fr;
}

.service-detail-card.reverse .service-image {
  order: 2;
}

.service-detail-card.reverse .service-info {
  order: 1;
}

.service-image {
  background: var(--bg-light);
  padding: 3rem;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  text-align: center;
}

.service-icon-large {
  max-width: 150px;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.service-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 700;
}

.service-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.service-info ul {
  list-style: none;
  margin: 1.5rem 0;
}

.service-info ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
}

.service-info ul li:last-child {
  border-bottom: none;
}

.service-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.cta-section {
  background: var(--bg-light);
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid var(--border-color);
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.cta-section p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Contact Page */
.contact-section {
  padding: 80px 20px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 700;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.info-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.info-item p {
  color: var(--text-light);
  line-height: 1.8;
}

.contact-form-wrapper {
  background: var(--bg-light);
  padding: 2.5rem;
  border: 2px solid var(--border-color);
  border-radius: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
  background: var(--white);
}

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

.form-group textarea {
  resize: vertical;
}

.form-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 2px solid #10b981;
  display: block;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #ef4444;
  display: block;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 2px solid var(--secondary-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p {
  opacity: 0.9;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-section p strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    width: 100%;
    text-align: left;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(22, 68, 132, 0.1);
    padding: 1.5rem 1.25rem;
    gap: 0.5rem;
    box-shadow: 0 8px 30px rgba(22, 68, 132, 0.12);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu li {
    width: 100%;
    padding: 0;
  }

  .nav-menu a {
    display: block;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin: 0;
    width: 100%;
    text-align: left;
    font-size: 1rem;
  }

  .nav-menu a::before {
    left: 1.25rem;
    width: 4px;
    height: 60%;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    background: var(--primary-color);
    border-radius: 2px;
  }

  .nav-menu a:hover::before,
  .nav-menu a.active::before {
    transform: translateY(-50%) scaleY(1);
    width: 4px;
    left: 1.25rem;
  }

  .nav-menu a.active {
    background: linear-gradient(90deg, rgba(22, 68, 132, 0.1), transparent);
    color: var(--primary-color);
  }

  .nav-menu a:hover {
    transform: translateX(8px);
    background: linear-gradient(90deg, rgba(22, 68, 132, 0.08), transparent);
  }

  .nav-menu.active {
    left: 0;
  }

  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(22, 68, 132, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
    justify-content: center;
  }

  .lang-link {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  .hero {
    padding: 60px 20px 50px;
    min-height: 350px;
  }

  .hero-title-main {
    font-size: 2.5rem;
  }

  .hero-title-sub {
    font-size: 1.4rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-features {
    gap: 1rem;
  }

  .hero-feature {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .airlines-section {
    padding: 40px 20px;
  }

  .airline-item {
    min-width: 150px;
    padding: 20px 15px;
  }

  .airline-logo-wrapper {
    width: 100px;
    height: 70px;
  }

  .airline-name {
    font-size: 0.85rem;
  }

  .airlines-track {
    gap: 20px;
  }

  .services-preview h2,
  .why-choose-us h2 {
    font-size: 2rem;
  }

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

  .service-detail-card,
  .service-detail-card.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-card.reverse .service-image,
  .service-detail-card.reverse .service-info {
    order: 0;
  }

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

  .page-header h1 {
    font-size: 2rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 50px 15px 40px;
    min-height: 320px;
  }

  .hero-title-main {
    font-size: 2rem;
  }

  .hero-title-sub {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-badge span {
    font-size: 0.8rem;
  }

  .airlines-section {
    padding: 30px 15px;
  }

  .airlines-label {
    font-size: 0.8rem;
    margin-bottom: 25px;
  }

  .airline-item {
    min-width: 130px;
    padding: 15px 12px;
  }

  .airline-logo-wrapper {
    width: 80px;
    height: 60px;
    margin-bottom: 10px;
  }

  .airline-name {
    font-size: 0.8rem;
  }

  .airlines-track {
    gap: 15px;
  }

  .services-preview,
  .why-choose-us,
  .about-content,
  .services-detail,
  .contact-section {
    padding: 60px 20px;
  }
}
