/* =========================================================
   ELITEMILES FLEET PAGE
========================================================= */

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

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

html{
  scroll-behavior:smooth;
}

body{

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

  background:#F5F0E6;

  color:#1f1f1f;

  overflow-x:hidden;
}

a{
  text-decoration:none;
}

ul{
  list-style:none;
}

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

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

:root{

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

  --green:#0F5C4D;
  --green-dark:#08362E;

  --cream:#F5F0E6;

  --white:#ffffff;

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

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

.container{

  width:min(1280px,92%);

  margin:auto;
}

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

.navbar{

  position:fixed;

  top:0;
  left:0;

  width:100%;

  z-index:1000;

  padding:20px 0;

  background:
    rgba(245,240,230,0.72);

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

  border-bottom:
    1px solid rgba(200,162,77,0.15);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.03);
}

.nav-container{

  width:min(1300px,92%);

  margin:auto;

  display:flex;

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

/* LOGO */

.logo{

  font-size:2rem;

  font-weight:800;

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

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

/* NAV LINKS */

.nav-links{

  display:flex;

  align-items:center;

  gap:38px;
}

.nav-links a{

  color:var(--green-dark);

  font-size:15px;

  font-weight:600;

  position:relative;

  transition:0.3s ease;
}

.nav-links a::after{

  content:"";

  position:absolute;

  left:0;
  bottom:-8px;

  width:0%;
  height:2px;

  background:var(--gold);

  transition:0.35s ease;
}

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

  width:100%;
}

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

  color:var(--gold);
}

/* BUTTON */

.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;

  box-shadow:
    0 12px 28px rgba(200,162,77,0.22);
}

.nav-btn:hover{

  transform:translateY(-3px);

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

/* =========================================================
   HERO SECTION
========================================================= */

.fleet-hero{

  position:relative;

  min-height:100vh;

  display:flex;

  align-items:center;

  background:
    linear-gradient(
      rgba(8,54,46,0.82),
      rgba(8,54,46,0.92)
    ),
    url('../assets/fleet-bg.jpg');

  background-size:cover;
  background-position:center;

  overflow:hidden;
}

/* GOLD GLOW */

.fleet-hero::before{

  content:"";

  position:absolute;

  width:700px;
  height:700px;

  border-radius:50%;

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

  filter:blur(140px);

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

.fleet-hero-content{

  position:relative;

  z-index:2;

  max-width:850px;

  color:white;
}

/* BADGE */

.fleet-badge{

  display:inline-block;

  padding:12px 22px;

  border-radius:999px;

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

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

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

  margin-bottom:28px;

  font-size:13px;

  letter-spacing:1px;

  color:white;
}

/* HERO TITLE */

.fleet-hero h1{

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

  line-height:1.05;

  margin-bottom:28px;

  font-weight:800;
}

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

/* HERO TEXT */

.fleet-hero p{

  max-width:720px;

  line-height:2;

  font-size:1.08rem;

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

/* =========================================================
   SECTION TITLE
========================================================= */

.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{

  margin-top:14px;

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

  color:var(--green-dark);

  position:relative;
}

.section-title h2::after{

  content:"";

  width:90px;
  height:4px;

  border-radius:20px;

  background:var(--gold);

  position:absolute;

  left:50%;
  bottom:-18px;

  transform:translateX(-50%);
}

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

.fleet-section{

  position:relative;

  padding:130px 20px;

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

  overflow:hidden;
}

/* GLOW */

.fleet-section::before{

  content:"";

  position:absolute;

  width:800px;
  height:800px;

  border-radius:50%;

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

  filter:blur(140px);

  left:-250px;
  top:-250px;
}

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

/* =========================================================
   GRID
========================================================= */

.fleet-grid{

  position:relative;

  z-index:2;

  display:grid;

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

  gap:34px;
}

/* =========================================================
   CARD
========================================================= */

.fleet-card{

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

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

  border-radius:30px;

  overflow:hidden;

  transition:0.45s ease;

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

  box-shadow:
    0 20px 45px rgba(0,0,0,0.12);
}

.fleet-card:hover{

  transform:translateY(-14px);

  box-shadow:
    0 35px 70px rgba(0,0,0,0.22);
}

/* IMAGE */

.fleet-image{

  height:280px;

  overflow:hidden;
}

.fleet-image img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.5s ease;
}

.fleet-card:hover .fleet-image img{

  transform:scale(1.08);
}

/* CONTENT */

.fleet-content{

  padding:32px;
}

/* TOP */

.fleet-top{

  display:flex;

  justify-content:space-between;
  align-items:center;

  margin-bottom:20px;
}

.fleet-top h3{

  color:white;

  font-size:1.7rem;

  font-weight:700;
}

.fleet-top span{

  padding:8px 14px;

  border-radius:999px;

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

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

  color:var(--gold);

  font-size:12px;

  font-weight:600;
}

/* TEXT */

.fleet-content p{

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

  line-height:1.9;

  margin-bottom:28px;
}

/* FEATURES */

.fleet-content ul{

  display:flex;

  flex-direction:column;

  gap:14px;

  margin-bottom:34px;
}

.fleet-content li{

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

  font-size:0.96rem;
}

/* BUTTON */

.fleet-btn{

  display:inline-block;

  width:100%;

  text-align:center;

  padding:16px 22px;

  border-radius:16px;

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

  color:var(--green-dark);

  font-weight:700;

  transition:0.35s ease;
}

.fleet-btn:hover{

  transform:translateY(-3px);

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

/* =========================================================
   CTA SECTION
========================================================= */

.fleet-cta{

  padding:140px 20px;

  text-align:center;

  background:
    linear-gradient(
      rgba(8,54,46,0.88),
      rgba(8,54,46,0.94)
    ),
    url('../assets/luxury-bg.jpg');

  background-size:cover;
  background-position:center;
}

.fleet-cta h2{

  color:white;

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

  margin-bottom:24px;
}

.fleet-cta p{

  max-width:760px;

  margin:auto auto 36px;

  line-height:2;

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

.cta-btn{

  display:inline-block;

  padding:18px 38px;

  border-radius:999px;

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

  color:var(--green-dark);

  font-weight:700;

  transition:0.35s ease;
}

.cta-btn:hover{

  transform:translateY(-4px);

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

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

.footer{

  padding:32px 20px;

  text-align:center;

  background:#041F1A;

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

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

@media (max-width:1100px){

  .fleet-grid{

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

@media (max-width:768px){

  .nav-links{
    display:none;
  }

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

  .fleet-content{
    padding:28px;
  }

  .fleet-top{

    flex-direction:column;

    align-items:flex-start;

    gap:14px;
  }

  .fleet-hero{

    min-height:85vh;
  }

  .fleet-hero h1{

    line-height:1.1;
  }

  .fleet-hero p{

    font-size:1rem;
  }

  .fleet-section,
  .fleet-cta{

    padding:90px 20px;
  }
}