/* =========================================================
   ELITEMILES ABOUT PAGE
========================================================= */

/* ================= RESET ================= */

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

html {
  scroll-behavior: smooth;
}

body {

  font-family: 'Poppins', sans-serif;

  background: #F7F3EA;

  color: #1A1A1A;

  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ================= ROOT ================= */

:root {

  --gold: #C8A24D;
  --gold-light: #D9B36A;

  --green: #0F5C4D;
  --green-dark: #062E27;

  --white: #ffffff;

  --text-light: #6A6A6A;

  --shadow:
    0 20px 50px rgba(0,0,0,0.08);

}

/* ================= CONTAINER ================= */

.container {

  width: min(1220px, 92%);
  margin: auto;
}

/* =========================================================
   NAVBAR
========================================================= */

.glass-nav {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  padding: 22px 0;

  background:
    rgba(8,54,46,0.65);

  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);

  border-bottom:
    1px solid rgba(255,255,255,0.08);

  transition: 0.35s ease;
}

.glass-nav.scrolled {

  background:
    rgba(8,54,46,0.94);

  padding: 18px 0;

  box-shadow:
    0 12px 35px rgba(0,0,0,0.18);
}

.nav-container {

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {

  font-size: 2rem;

  font-weight: 800;

  color: white;
}

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

.nav-links {

  display: flex;
  gap: 40px;
}

.nav-links a {

  position: relative;

  color:
    rgba(255,255,255,0.82);

  font-weight: 500;

  transition: 0.3s ease;
}

.nav-links a::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0%;
  height: 2px;

  background: var(--gold);

  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {

  color: white;
}

.nav-links a:hover::after,
.nav-links a.active::after {

  width: 100%;
}

.nav-btn {

  padding: 14px 28px;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-light)
    );

  color: var(--green-dark);

  font-weight: 700;

  transition: 0.35s ease;
}

.nav-btn:hover {

  transform: translateY(-4px);

  box-shadow:
    0 15px 35px rgba(200,162,77,0.28);
}

/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-btn {

  display: none;

  background: none;
  border: none;

  color: white;

  font-size: 2rem;

  cursor: pointer;
}

.mobile-menu {

  position: fixed;

  top: 0;
  right: 0;

  width: 80%;
  max-width: 320px;

  height: 100vh;

  background:
    linear-gradient(
      180deg,
      #0A3F35,
      #062E27
    );

  display: flex;

  flex-direction: column;

  padding: 110px 35px;

  gap: 28px;

  z-index: 9999;

  transition: transform 0.35s ease;

  box-shadow:
    -10px 0 40px rgba(0,0,0,0.25);
}

.mobile-menu a {

  color: white;

  font-size: 1.15rem;

  font-weight: 500;

  transition: 0.3s ease;
}

.mobile-menu a:hover {

  color: var(--gold);
}

.close-menu-btn {

  position: absolute;

  top: 25px;
  right: 25px;

  background: none;
  border: none;

  color: white;

  font-size: 2rem;

  cursor: pointer;
}

.translate-x-full {

  transform: translateX(100%);
}

/* =========================================================
   STORY SECTION
========================================================= */

.story-section {

  padding:
    180px 20px 120px;

  background:
    linear-gradient(
      135deg,
      #0A3F35,
      #062E27
    );

  position: relative;

  overflow: hidden;
}

/* Glow */

.story-section::before {

  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  background:
    rgba(200,162,77,0.08);

  border-radius: 50%;

  filter: blur(120px);

  top: -250px;
  right: -250px;
}

.story-grid {

  display: grid;

  grid-template-columns:
    repeat(2,1fr);

  gap: 70px;

  align-items: center;
}

.section-badge {

  display: inline-block;

  padding: 12px 22px;

  border-radius: 999px;

  background:
    rgba(255,255,255,0.08);

  border:
    1px solid rgba(200,162,77,0.25);

  color: white;

  font-size: 13px;

  letter-spacing: 2px;

  margin-bottom: 28px;
}

.story-content h1 {

  font-size:
    clamp(3rem,7vw,5.8rem);

  line-height: 1;

  color: white;

  margin-bottom: 30px;
}

.story-content h1 span {
  color: var(--gold);
}

.story-content p {

  color:
    rgba(255,255,255,0.82);

  line-height: 2;

  margin-bottom: 20px;

  font-size: 1.05rem;
}

.story-buttons {

  display: flex;
  gap: 20px;

  margin-top: 35px;
}

.primary-btn,
.secondary-btn {

  padding: 16px 34px;

  border-radius: 999px;

  font-weight: 700;

  transition: 0.35s ease;
}

.primary-btn {

  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-light)
    );

  color: var(--green-dark);
}

.primary-btn:hover {

  transform: translateY(-4px);

  box-shadow:
    0 18px 40px rgba(200,162,77,0.28);
}

.secondary-btn {

  border:
    1px solid rgba(255,255,255,0.15);

  color: white;

  background:
    rgba(255,255,255,0.05);

  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.secondary-btn:hover {

  background:
    rgba(255,255,255,0.12);
}

.story-image {

  position: relative;
}

.story-image img {

  border-radius: 30px;

  height: 620px;

  object-fit: cover;

  box-shadow:
    0 30px 60px rgba(0,0,0,0.25);
}

/* =========================================================
   SECTION TITLES
========================================================= */

.section-title {

  text-align: center;

  margin-bottom: 70px;
}

.section-title span {

  color: var(--gold);

  font-size: 14px;

  letter-spacing: 1px;

  font-weight: 600;
}

.section-title h2 {

  font-size:
    clamp(2.4rem,5vw,4rem);

  color: var(--green-dark);

  margin-top: 14px;

  position: relative;
}

.section-title h2::after {

  content: "";

  position: absolute;

  left: 50%;
  bottom: -18px;

  transform: translateX(-50%);

  width: 90px;
  height: 4px;

  background: var(--gold);

  border-radius: 999px;
}

/* =========================================================
   ACHIEVEMENTS
========================================================= */

.achievements-section {

  padding: 120px 20px;

  background: white;
}

.achievement-grid {

  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 24px;
}

.achievement-card {

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f7f1e5
    );

  padding: 45px;

  border-radius: 30px;

  text-align: center;

  box-shadow: var(--shadow);

  transition: 0.35s ease;
}

.achievement-card:hover {

  transform: translateY(-10px);
}

.achievement-card h3 {

  font-size: 3rem;

  color: var(--gold);

  margin-bottom: 10px;
}

.achievement-card p {

  color: var(--text-light);

  font-weight: 500;
}

/* =========================================================
   VISION SECTION
========================================================= */

.vision-section {

  padding: 120px 20px;

  background: #F7F3EA;
}

.vision-grid {

  display: grid;

  grid-template-columns:
    repeat(2,1fr);

  gap: 70px;

  align-items: center;
}

.vision-image img {

  border-radius: 30px;

  height: 520px;

  object-fit: cover;

  box-shadow: var(--shadow);
}

.vision-content .section-badge {

  color: var(--green-dark);

  background:
    rgba(15,92,77,0.08);

  border:
    1px solid rgba(200,162,77,0.2);
}

.vision-content h2 {

  font-size:
    clamp(2.4rem,5vw,4rem);

  line-height: 1.1;

  color: var(--green-dark);

  margin-bottom: 25px;
}

.vision-content p {

  color: var(--text-light);

  line-height: 2;

  margin-bottom: 20px;
}

/* =========================================================
   NETWORK SECTION
========================================================= */

.network-section {

  padding: 120px 20px;

  background: white;
}

.network-content {

  max-width: 900px;

  margin:
    auto auto 50px;

  text-align: center;
}

.network-content p {

  color: var(--text-light);

  line-height: 2;

  margin-bottom: 20px;
}

.network-image img {

  border-radius: 30px;

  box-shadow: var(--shadow);
}

/* =========================================================
   FLEET
========================================================= */

.fleet-showcase {

  padding: 120px 20px;

  background:
    linear-gradient(
      135deg,
      #0A3F35,
      #062E27
    );
}

.fleet-showcase .section-title h2 {
  color: white;
}

.fleet-grid {

  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 30px;
}

.fleet-card {

  overflow: hidden;

  border-radius: 30px;

  background: white;

  transition: 0.4s ease;
}

.fleet-card:hover {

  transform: translateY(-12px);
}

.fleet-card img {

  height: 260px;

  object-fit: cover;

  transition: 0.45s ease;
}

.fleet-card:hover img {

  transform: scale(1.08);
}

.fleet-info {

  padding: 30px;
}

.fleet-info h3 {

  color: var(--green-dark);

  margin-bottom: 12px;

  font-size: 1.5rem;
}

.fleet-info p {

  color: var(--text-light);

  line-height: 1.9;
}

/* =========================================================
   LUXURY SECTION
========================================================= */

.luxury-section {

  position: relative;

  padding: 140px 20px;

  text-align: center;

  background:
    url('../assets/luxury-bg.jpg')
    center/cover no-repeat;

  overflow: hidden;
}

.luxury-overlay {

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      rgba(5,25,21,0.82),
      rgba(5,25,21,0.9)
    );
}

.luxury-content {

  position: relative;

  z-index: 2;

  max-width: 900px;
}

.luxury-content h2 {

  color: white;

  font-size:
    clamp(2.6rem,6vw,5rem);

  margin-bottom: 25px;
}

.luxury-content p {

  color:
    rgba(255,255,255,0.82);

  line-height: 2;

  margin-bottom: 40px;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {

  background: #041F1A;

  padding: 35px 20px;

  text-align: center;
}

.footer p {

  color:
    rgba(255,255,255,0.7);
}

/* =========================================================
   ANIMATION
========================================================= */

.fade-up {

  opacity: 0;

  transform: translateY(40px);

  transition: 0.8s ease;
}

.fade-up.show {

  opacity: 1;

  transform: translateY(0);
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1100px) {

  .fleet-grid,
  .achievement-grid {

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

@media (max-width: 900px) {

  .nav-links,
  .nav-btn {

    display: none;
  }

  .mobile-menu-btn {

    display: block;
  }

}

@media (max-width: 768px) {

  .fleet-grid,
  .achievement-grid {

    grid-template-columns: 1fr;
  }

  .story-buttons {

    flex-direction: column;
  }

  .story-image img,
  .vision-image img {

    height: auto;
  }

  .story-section {

    padding:
      150px 20px 90px;
  }
}