/* =========================================================
   ELITEMILES SERVICES 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
========================================================= */

.services-hero{

  position:relative;

  min-height:92vh;

  display:flex;

  align-items:center;

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

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

  overflow:hidden;
}

/* GOLD GLOW */

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

.hero-content{

  position:relative;

  z-index:2;

  max-width:850px;

  color:white;
}

/* BADGE */

.hero-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 */

.services-hero h1{

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

  line-height:1.05;

  margin-bottom:28px;

  font-weight:800;
}

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

/* HERO TEXT */

.services-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%);
}

/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section{

  padding:130px 20px;

  background:#F5F0E6;
}

/* GRID */

.services-grid{

  display:grid;

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

  gap:34px;
}

/* CARD */

.service-card{

  position:relative;

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

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

  border-radius:30px;

  padding:38px;

  transition:0.4s ease;

  overflow:hidden;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.05);
}

.service-card:hover{

  transform:translateY(-12px);

  box-shadow:
    0 28px 55px rgba(0,0,0,0.10);
}

/* PREMIUM CARD */

.service-card.premium{

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

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

.service-card.premium h3,
.service-card.premium li{

  color:white;
}

.service-card.premium p{

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

/* ICON */

.service-icon{

  width:72px;
  height:72px;

  border-radius:20px;

  display:flex;

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

  margin-bottom:28px;

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

  color:var(--green-dark);

  font-size:1.5rem;
}

/* HEADING */

.service-card h3{

  font-size:1.7rem;

  margin-bottom:18px;

  color:var(--green-dark);

  line-height:1.3;
}

/* TEXT */

.service-card p{

  color:#666;

  line-height:1.9;

  margin-bottom:26px;
}

/* FEATURES */

.service-card ul{

  display:flex;

  flex-direction:column;

  gap:14px;
}

.service-card li{

  color:#222;

  font-size:0.96rem;
}

/* =========================================================
   WHY SECTION
========================================================= */

.why-section{

  padding:120px 20px;

  background:white;
}

/* GRID */

.why-grid{

  display:grid;

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

  gap:28px;
}

/* CARD */

.why-card{

  padding:45px 30px;

  border-radius:28px;

  text-align:center;

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

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

  transition:0.35s ease;
}

.why-card:hover{

  transform:translateY(-10px);

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

.why-card h3{

  font-size:3rem;

  color:var(--gold);

  margin-bottom:14px;
}

.why-card p{

  color:#555;

  font-weight:500;
}

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

.cta-section{

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

.cta-section h2{

  color:white;

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

  margin-bottom:24px;
}

.cta-section p{

  max-width:760px;

  margin:auto auto 36px;

  line-height:2;

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

/* BUTTON */

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

/* =========================================================
   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){

  .services-grid{

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

  .why-grid{

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

@media (max-width:768px){

  .nav-links{
    display:none;
  }

  .services-grid,
  .why-grid{

    grid-template-columns:1fr;
  }

  .service-card{

    padding:30px;
  }

  .services-hero{

    min-height:85vh;
  }

  .services-hero h1{

    line-height:1.1;
  }

  .services-hero p{

    font-size:1rem;
  }

  .services-section,
  .why-section,
  .cta-section{

    padding:90px 20px;
  }
}