/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE ===== */
body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #EDE5D3;
  color: #1F4045;
}

html {
  scroll-behavior: smooth;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(0,0,0,0.5);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container img {
  height: 50px;
}

.logo-text {
  font-size: 22px;
  color: white;
  font-weight: bold;
}

/* HAMBURGER */
.hamburger {
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ===== MENU OVERLAY ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: #1F4045;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.5s ease;
  z-index: 9999;
}

.menu-overlay.active {
  transform: scaleY(1);
}

.menu-overlay a {
  color: white;
  font-size: 28px;
  margin: 15px 0;
  text-decoration: none;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  background: url('hero.jpg') center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,64,69,0.6);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

button {
  background: #D0AE8A;
  border: none;
  padding: 12px 30px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  opacity: 0.8;
}


/* ===== VIDEO FIX (IMPORTANT) ===== */
.video-section {
  display: flex;
  height: 100vh;
}

.video-section video {
  width: 60%;
  height: 100%;
  object-fit: cover;
}

.video-side-text {
  width: 40%;
  padding: 40px;
  background: #1F4045;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 32px;
  }

  .nav {
    padding: 15px 20px;
  }

  .video-section {
    flex-direction: column;
    height: auto;
  }

  .video-section video {
    width: 100%;
    height: 300px;
  }

  .video-side-text {
    width: 100%;
    text-align: center;
  }
}
/* ===== FLEET ===== */
.fleet {
  padding: 100px 60px;
  background: #EDE5D3;
}

.fleet-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.fleet-info {
  width: 45%;
}

.subtitle {
  color: #7F9492;
  font-size: 14px;
  letter-spacing: 2px;
}

.fleet-info h2 {
  font-size: 42px;
  margin: 10px 0;
}

.fleet-info p {
  line-height: 1.6;
}

.specs {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.specs div {
  text-align: left;
}

.specs span {
  font-size: 12px;
  color: gray;
}

.specs h3 {
  font-size: 22px;
  margin-top: 5px;
}

.counter {
  margin-top: 40px;
  font-size: 20px;
  opacity: 0.7;
}

/* IMAGE SIDE */
.fleet-slider {
  position: relative;
  width: 50%;
}

.fleet-slider img {
  width: 100%;
  border-radius: 12px;
  transition: opacity 0.5s ease, transform 0.4s ease;
}

/* HOVER EFFECT */
.fleet-slider img:hover {
  transform: scale(1.02);
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.left { left: 15px; }
.right { right: 15px; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .fleet-wrapper {
    flex-direction: column;
  }

  .fleet-info,
  .fleet-slider {
    width: 100%;
  }

  .fleet-info {
    text-align: center;
  }

  .specs {
    justify-content: center;
  }
}
/* ===== SERVICES ===== */
.services {
  padding: 120px 60px;
  background: #7F9492;
  color: white;
}

.services-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 42px;
}

.services-desc {
  opacity: 0.85;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  opacity: 0.85;
}

/* HOVER = LUXURY FEEL */
.service-card:hover {
  background: #D0AE8A;
  color: #1F4045;
  transform: translateY(-8px);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .services {
    padding: 80px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== VIDEO SECTION CLEAN ===== */
.video-section {
  display: flex;
  height: 100vh;
}

.video-container {
  width: 60%;
  height: 100%;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-text {
  width: 40%;
  background: #1F4045;
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-text h2 {
  font-size: 36px;
  margin: 10px 0;
}

.video-text h4 {
  margin-top: 20px;
  font-size: 20px;
  opacity: 0.8;
}

.video-text p {
  margin-top: 10px;
  line-height: 1.6;
  opacity: 0.9;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .video-section {
    flex-direction: column;
    height: auto;
  }

  .video-container {
    width: 100%;
    height: 300px;
  }

  .video-text {
    width: 100%;
    padding: 30px;
    text-align: center;
  }
}
/* ===== PILOTS ===== */
.pilots-section {
  padding: 120px 60px;
  background: #EDE5D3;
}

.pilots-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.pilots-image {
  width: 50%;
}

.pilots-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* TEXT SIDE */
.pilots-content {
  width: 50%;
}

.pilots-content h2 {
  font-size: 42px;
  margin: 10px 0 20px;
}

.pilots-text {
  margin-bottom: 15px;
  line-height: 1.7;
  opacity: 0.85;
}

/* STATS */
.pilots-stats {
  margin-top: 30px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.stat-item i {
  font-size: 20px;
  color: #D0AE8A;
}

.stat-item h3 {
  font-size: 16px;
  margin-bottom: 2px;
}

.stat-item span {
  font-size: 13px;
  opacity: 0.7;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .pilots-container {
    flex-direction: column;
    gap: 40px;
  }

  .pilots-image,
  .pilots-content {
    width: 100%;
  }

  .pilots-content {
    text-align: center;
  }

  .stat-item {
    justify-content: center;
  }
}
/* ===== CONTACT ===== */
.contact-section {
  padding: 120px 60px;
  background: #1F4045;
  color: white;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT SIDE */
.contact-info {
  width: 45%;
}

.contact-info h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* FORM */
.contact-form {
  width: 45%;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form button {
  background: #D0AE8A;
  padding: 14px;
  border-radius: 6px;
  font-weight: bold;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .contact-info {
    text-align: center;
  }
}
/* ===== FOOTER ===== */
.footer {
  background: #1F4045;
  color: white;
  padding: 80px 60px 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer h2 {
  font-size: 24px;
  letter-spacing: 2px;
}

.footer-links a {
  margin-left: 25px;
  color: #EDE5D3;
  text-decoration: none;
  position: relative;
}

/* UNDERLINE HOVER EFFECT */
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #D0AE8A;
  transition: 0.3s;
}

.footer-links a:hover::after {
  width: 100%;
}

.copyright {
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}
/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
/* NAV SCROLL EFFECT */
.nav.scrolled {
  background: #1F4045;
  transition: 0.3s;
}
/* ===== ABOUT PAGE ===== */

.about-hero {
  height: 60vh;
  background: url('hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
}

.about-story {
  padding: 100px 60px;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  width: 50%;
}

.about-image {
  width: 50%;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

.about-values {
  padding: 100px 60px;
  background: #7F9492;
  color: white;
  text-align: center;
}

.values-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.value {
  max-width: 250px;
}

.about-cta {
  padding: 100px 60px;
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    width: 100%;
  }

  .values-grid {
    flex-direction: column;
    align-items: center;
  }
}
/* ===== ABOUT PAGE ===== */

.about-hero {
  height: 60vh;
  background: url('hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
}

.about-story {
  padding: 100px 60px;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  width: 50%;
}

.about-image {
  width: 50%;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

/* VALUES */
.about-values {
  padding: 100px 60px;
  background: #7F9492;
  color: white;
  text-align: center;
}

.values-header {
  max-width: 600px;
  margin: 0 auto 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.value-card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}

.value-card:hover {
  background: #D0AE8A;
  color: #1F4045;
  transform: translateY(-5px);
}

/* CTA */
.about-cta {
  padding: 100px 60px;
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    width: 100%;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}
/* FIX ANCHOR SCROLL OFFSET */
section {
  scroll-margin-top: 100px;
}
/* ===== BOOKING PAGE ===== */

.booking-hero {
  height: 50vh;
  background: url('hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
}

.booking-section {
  padding: 100px 60px;
  display: flex;
  justify-content: center;
}

.booking-container {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.booking-container h2 {
  margin-bottom: 30px;
  font-size: 32px;
}

.booking-form {
  display: flex;
  flex-direction: column;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  margin-bottom: 15px;
  padding: 14px;
  border: none;
  border-radius: 6px;
}

.booking-form textarea {
  min-height: 120px;
  resize: none;
}

.booking-form button {
  background: #D0AE8A;
  padding: 14px;
  font-weight: bold;
}

/* CTA */
.booking-cta {
  padding: 80px 60px;
  text-align: center;
}

.booking-cta button {
  margin-top: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .booking-section {
    padding: 60px 20px;
  }
}
