/* =========================================
   THRONE HOLDINGS GROUP — EXACT CLONE CSS
   (Summit Structure / Green + Gold Theme)
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --green: #0F3D2E;
  --green-dark: #0A2A20;
  --gold: #C6A84A;
  --gold-dark: #b49636;
  --light-bg: #F6F4ED;
  --text-dark: #111111;
  --muted: #6b6b6b;

  --section-padding: 90px;
  --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 10px;
}

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

body{
  font-family:'Inter', sans-serif;
  color:var(--text-dark);
  line-height:1.6;
  background:white;
}

.container{
  width:90%;
  max-width:1200px;
  margin:0 auto;
}

/* =========================================
   HEADER
========================================= */

.top-nav{
  background:white;
  padding:18px 0;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  height:55px;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:25px;
}

.phone{
  text-decoration:none;
  font-weight:600;
  color:var(--green);
}

.btn-primary{
  background:var(--gold);
  color:white;
  padding:12px 26px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:all .2s ease;
}

.btn-primary:hover{
  background:var(--gold-dark);
}

.hamburger{
  font-size:22px;
  cursor:pointer;
}

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

.hero{
  position:relative;
  height:700px;
  background:url('assets/hero.webp') center/cover no-repeat;
  display:flex;
  align-items:center;
  color:white;
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
      rgba(15,61,46,0.85),
      rgba(15,61,46,0.75)
  );
}

.hero-inner{
  position:relative;
  z-index:2;
  max-width:800px;
}

.hero h4{
  font-weight:500;
  margin-bottom:18px;
  opacity:.9;
}

.hero h1{
  font-family:'Playfair Display', serif;
  font-size:52px;
  line-height:1.1;
  margin-bottom:22px;
}

.hero p{
  font-size:18px;
  margin-bottom:35px;
  opacity:.95;
}

/* Hero Form */

.hero-form{
  display:flex;
  background:white;
  border-radius:60px;
  overflow:hidden;
  box-shadow:var(--card-shadow);
  max-width:650px;
}

.hero-form input{
  flex:1;
  padding:18px 25px;
  border:none;
  font-size:16px;
  outline:none;
}

.hero-form button{
  background:var(--gold);
  border:none;
  padding:18px 35px;
  font-weight:600;
  color:white;
  cursor:pointer;
  transition:.2s;
}

.hero-form button:hover{
  background:var(--gold-dark);
}

/* =========================================
   SECTIONS
========================================= */

.section{
  padding:var(--section-padding) 0;
}

.section.light{
  background:var(--light-bg);
}

.center{
  text-align:center;
}

.split{
  display:flex;
  align-items:center;
  gap:70px;
}

.split img{
  width:100%;
  border-radius:var(--radius);
}

.split .content h2{
  font-family:'Playfair Display', serif;
  font-size:38px;
  margin-bottom:20px;
}

.split .content p{
  margin-bottom:18px;
  color:var(--muted);
}

/* =========================================
   HOW IT WORKS
========================================= */

.steps{
  display:flex;
  gap:40px;
  margin-top:60px;
}

.step-card{
  background:white;
  padding:35px;
  flex:1;
  border-radius:var(--radius);
  box-shadow:var(--card-shadow);
  text-align:center;
}

.step-card h3{
  font-size:42px;
  color:var(--gold);
  margin-bottom:15px;
}

.step-card img{
  width:100%;
  border-radius:var(--radius);
  margin-bottom:18px;
}

.step-card h4{
  margin-bottom:10px;
}

.phone-pill{
  display:inline-block;
  margin-top:45px;
  padding:14px 35px;
  background:var(--green);
  color:white;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
}

/* =========================================
   GRID 4 REASONS
========================================= */

.grid-4{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
  margin-top:50px;
}

.grid-4 img{
  width:100%;
  border-radius:var(--radius);
}

.grid-4 p{
  margin-top:10px;
  font-weight:600;
}

/* =========================================
   TESTIMONIALS
========================================= */

.testimonials{
  display:flex;
  gap:30px;
  margin-top:60px;
}

.testimonial{
  background:white;
  padding:35px;
  border-radius:var(--radius);
  box-shadow:var(--card-shadow);
  flex:1;
}

.stars{
  color:var(--gold);
  font-size:18px;
  margin-bottom:15px;
}

.testimonial strong{
  display:block;
  margin-top:15px;
}

/* =========================================
   FAQ
========================================= */

.faq{
  margin-top:50px;
}

.faq-item{
  background:white;
  padding:22px;
  border-radius:var(--radius);
  margin-bottom:15px;
  box-shadow:var(--card-shadow);
  cursor:pointer;
  font-weight:500;
  transition:.2s;
}

.faq-item:hover{
  background:#fdfcf7;
}

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

.footer{
  background:var(--green-dark);
  color:white;
  padding:60px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:50px;
}

.footer-logo{
  height:70px;
  margin-bottom:20px;
}

.footer h4{
  margin-bottom:12px;
}

.footer p{
  margin-bottom:8px;
  opacity:.85;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1000px){

  .split{
    flex-direction:column;
  }

  .steps{
    flex-direction:column;
  }

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

  .testimonials{
    flex-direction:column;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }
}

@media(max-width:600px){

  .hero h1{
    font-size:36px;
  }

  .hero{
    height:auto;
    padding:100px 0;
  }

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

  .hero-form{
    flex-direction:column;
    border-radius:var(--radius);
  }

  .hero-form button{
    width:100%;
  }
}
