@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("../fonts/Quicksand.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #1a4d6f;
  --secondary-color: #2d7a9e;
  --accent-color: #f4a261;
  --dark-bg: #0f2027;
  --light-bg: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #1a4d6f 0%, #2d7a9e 100%);
  --gradient-accent: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
}

img {
  max-width: 100%;
}

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary-color);
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  transition: var(--transition);
}

.logo a:hover {
  color: var(--secondary-color);
}

.logo img {
  border-radius: 8px;
}

.header-notice {
  background: var(--gradient-accent);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-bg);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 32, 39, 0.85) 0%, rgba(26, 77, 111, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent-color);
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Quicksand', sans-serif;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244, 162, 97, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(244, 162, 97, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--primary-color);
  margin-bottom: 16px;
}

.section-description {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.story-section {
  background: var(--light-bg);
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.story-text p {
  margin-bottom: 20px;
}

.story-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.highlight-item i {
  font-size: 32px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.highlight-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.highlight-item p {
  color: var(--text-light);
  font-size: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.features-grid > *,
.routes-grid > *,
.testimonials-grid > *,
.contact-wrapper > * {
  min-width: 0;
  max-width: 100%;
}

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon i {
  font-size: 28px;
  color: var(--white);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--secondary-color);
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.route-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.route-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.route-card.featured {
  border: 2px solid var(--accent-color);
}

.route-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.route-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.route-card:hover .route-image img {
  transform: scale(1.1);
}

.route-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.route-badge.premium {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: var(--text-dark);
}

.route-duration {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.route-content {
  padding: 28px;
}

.route-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.route-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.route-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.route-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
}

.route-features i {
  color: var(--accent-color);
  font-size: 12px;
}

.route-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.route-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-label {
  font-size: 14px;
  color: var(--text-light);
}

.price-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Cormorant Garamond', serif;
}

.price-per {
  font-size: 14px;
  color: var(--text-light);
}

.gallery-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-main {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 500px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thumbnail {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: calc(250px - 8px);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.7;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
  transform: scale(1.02);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 18px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--primary-color);
}

.author-info span {
  font-size: 14px;
  color: var(--text-light);
}

.testimonial-date span {
  font-size: 13px;
  color: var(--text-light);
}

.info-content {
  max-width: 900px;
  margin: 0 auto;
}

.info-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-header:hover {
  background: var(--light-bg);
}

.accordion-header h4 {
  font-size: 18px;
  color: var(--primary-color);
}

.accordion-header i {
  transition: var(--transition);
  color: var(--accent-color);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  padding: 0 24px 24px;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-section {
  background: var(--gradient-primary);
  color: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 17px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.contact-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.contact-feature i {
  color: var(--accent-color);
  font-size: 20px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Quicksand', sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo a {
  color: var(--white);
}

.footer-brand p {
  margin-top: 20px;
  opacity: 0.8;
  line-height: 1.7;
}

.footer-contact h4,
.footer-legal h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-contact p {
  margin-bottom: 8px;
  opacity: 0.8;
  font-size: 15px;
}

.footer-legal ul {
  list-style: none;
}

.footer-legal li {
  margin-bottom: 12px;
}

.footer-legal a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
  font-size: 15px;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.footer-disclaimer {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--accent-color);
}

.footer-disclaimer p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.7;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 14px;
}

@media (max-width: 968px) {
  .hero-stats {
    gap: 32px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .gallery-showcase {
    grid-template-columns: 1fr;
  }
  
  .gallery-main {
    height: 400px;
  }
  
  .gallery-thumbnails {
    flex-direction: row;
  }
  
  .thumbnail {
    height: 120px;
  }
}

@media (max-width: 768px) {
  .header {
    position: static;
    top: auto;
  }

  .header-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav-menu {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }

  .nav-menu a {
    font-size: 14px;
    white-space: nowrap;
  }

  .header-notice {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 60px 0;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .hero-content {
    padding: 60px 0;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .features-grid,
  .routes-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-features {
    grid-template-columns: 1fr;
  }
  
  .route-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.legal-page {
  padding: 80px 0;
  background: var(--light-bg);
  min-height: 70vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  word-break: break-word;
}

.last-updated {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.legal-content h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 24px;
  text-align: center;
}

.legal-content h2 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--text-dark);
}

.legal-content a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.legal-date {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: right;
}

.thanks-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
}

.thanks-content {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.thanks-logo {
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.thanks-content h1 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.thanks-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.thanks-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.thanks-content .btn {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 40px 0;
  }
  .legal-content {
    padding: 24px;
  }
  .legal-content h1 {
    font-size: 2rem;
  }
  .legal-content h2 {
    font-size: 1.5rem;
  }
  .thanks-content {
    padding: 32px 24px;
  }
  .thanks-content h1 {
    font-size: 1.8rem;
  }
}

.nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  font-size: 15px;
}

.nav-menu a:hover {
  color: var(--secondary-color);
}

.mobile-menu-toggle {
  display: none;
}

.page-hero {
  background: var(--gradient-primary);
  padding: 120px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.advantage-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.advantage-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.advantage-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 968px) {
  .features-grid-3,
  .gallery-grid,
  .advantages-list,
  .about-grid {
    grid-template-columns: 1fr;
  }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

[data-aos="zoom-in"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) scale(0.95) !important;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .features-grid > *,
  .routes-grid > *,
  .testimonials-grid > *,
  .contact-wrapper > *,
  .about-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-content {
    flex-wrap: wrap;
    gap: 12px;
  }

  .header-notice {
    word-break: break-all;
  }

  .logo a {
    flex-direction: column;
  }

  .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .footer-col,
  .footer-contact,
  .footer-brand {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .contact-form,
  .legal-content,
  .thanks-content {
    padding: 20px 16px;
  }

  .page-hero {
    padding: 80px 0 48px;
  }

  .page-hero h1 {
    font-size: clamp(24px, 7vw, 32px);
  }
}

@media (max-width: 768px) {
  .header {
    position: static;
    top: auto;
  }

  .header-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav-menu {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }

  .nav-menu a {
    font-size: 14px;
    white-space: nowrap;
  }

  .header-notice {
    width: 100%;
    text-align: center;
  }
}