/* ===================================
   MANGO RAJSHAHI - V11 LUXURY EDITION
=================================== */

:root{
  --green:#0f5f3a;
  --green-dark:#0a462b;
  --gold:#f4b840;
  --cream:#faf7f0;
  --text:#161616;
  --muted:#6f6f6f;
  --white:#ffffff;
  --shadow:0 20px 50px rgba(0,0,0,.08);
  --radius:24px;
  --container:1200px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--cream);
  color:var(--text);
  overflow-x:hidden;
  line-height:1.7;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.container{
  width:min(92%,var(--container));
  margin:auto;
}

/* TOP BAR */

.top-bar{
  background:linear-gradient(90deg,#0f5f3a,#17874f);
  color:#fff;
  text-align:center;
  padding:12px;
  font-size:14px;
  font-weight:600;
}

/* HEADER */

.header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:999;
  border-bottom:1px solid rgba(0,0,0,.05);
  backdrop-filter:blur(10px);
}

.header .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:85px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo img{
  width:48px;
  height:48px;
  border-radius:50%;
}

.logo span{
  font-weight:800;
  font-size:20px;
}

nav{
  display:flex;
  align-items:center;
  gap:30px;
}

nav a{
  color:#333;
  font-weight:600;
}

.nav-btn{
  background:var(--green);
  color:#fff !important;
  padding:12px 24px;
  border-radius:50px;
  transition:.3s;
}

.nav-btn:hover{
  background:var(--green-dark);
}

/* HERO */

.hero{
  padding:100px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hero-badge{
  display:inline-block;
  background:#fff;
  padding:10px 18px;
  border-radius:999px;
  margin-bottom:25px;
  font-weight:700;
  box-shadow:var(--shadow);
}

.hero h1{
  font-family:'Playfair Display',serif;
  font-size:72px;
  line-height:1.05;
  margin-bottom:25px;
}

.hero p{
  font-size:22px;
  color:var(--muted);
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn-primary{
  background:var(--green);
  color:#fff;
  padding:18px 34px;
  border-radius:60px;
  font-weight:700;
  transition:.3s;
}

.btn-primary:hover{
  transform:translateY(-3px);
  background:var(--green-dark);
}

.btn-secondary{
  background:#fff;
  color:#111;
  padding:18px 34px;
  border-radius:60px;
  font-weight:700;
  border:1px solid #ddd;
}

.hero-image img{
  border-radius:32px;
  box-shadow:var(--shadow);
}

.trust-row{
  margin-top:35px;
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.trust-row span{
  background:#fff;
  padding:12px 18px;
  border-radius:999px;
  box-shadow:var(--shadow);
  font-size:14px;
  font-weight:600;
}

/* WHY SECTION */

.why-section{
  padding:100px 0;
}

.why-section h2{
  text-align:center;
  font-size:46px;
  margin-bottom:60px;
  font-family:'Playfair Display',serif;
}

.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.feature-card{
  background:#fff;
  padding:35px;
  border-radius:24px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:.3s;
}

.feature-card:hover{
  transform:translateY(-8px);
}

.feature-card h3{
  margin:18px 0 10px;
  font-size:22px;
}

.feature-card p{
  color:var(--muted);
}
/* ==========================
   PRICING SECTION
========================== */

.pricing-section{
  padding:100px 0;
  background:#fff;
}

.pricing-title{
  text-align:center;
  margin-bottom:60px;
}

.pricing-title h2{
  font-family:'Playfair Display',serif;
  font-size:52px;
  margin-bottom:15px;
}

.pricing-title p{
  color:var(--muted);
  font-size:18px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.price-card{
  background:var(--cream);
  border-radius:30px;
  padding:40px;
  text-align:center;
  position:relative;
  transition:.3s;
  box-shadow:var(--shadow);
}

.price-card:hover{
  transform:translateY(-10px);
}

.price-card.featured{
  background:linear-gradient(135deg,#0f5f3a,#157e4a);
  color:#fff;
  transform:scale(1.05);
}

.price-card.featured p,
.price-card.featured li{
  color:#fff;
}

.badge{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:var(--gold);
  color:#111;
  font-weight:700;
  padding:8px 18px;
  border-radius:999px;
}

.price-card h3{
  font-size:30px;
  margin-bottom:10px;
}

.price{
  font-size:52px;
  font-weight:800;
  margin:20px 0;
}

.price small{
  font-size:16px;
}

.price-card ul{
  list-style:none;
  margin:25px 0;
}

.price-card ul li{
  margin:12px 0;
  color:#444;
}

.price-btn{
  display:inline-block;
  background:var(--green);
  color:#fff;
  padding:15px 28px;
  border-radius:999px;
  font-weight:700;
}

.price-card.featured .price-btn{
  background:#fff;
  color:#0f5f3a;
}

/* ==========================
   ORDER SECTION
========================== */

.order-section{
  padding:120px 0;
}

.order-wrapper{
  background:#fff;
  border-radius:35px;
  padding:60px;
  box-shadow:var(--shadow);
}

.order-wrapper h2{
  text-align:center;
  font-size:50px;
  margin-bottom:15px;
  font-family:'Playfair Display',serif;
}

.order-wrapper p{
  text-align:center;
  color:var(--muted);
  margin-bottom:40px;
}

.order-form{
  max-width:750px;
  margin:auto;
}

.order-form input,
.order-form select,
.order-form textarea{
  width:100%;
  padding:18px;
  border:1px solid #ddd;
  border-radius:14px;
  margin-bottom:18px;
  font-size:16px;
  font-family:inherit;
}

.order-form textarea{
  height:140px;
  resize:none;
}

.order-submit{
  width:100%;
  border:none;
  cursor:pointer;
  background:var(--green);
  color:#fff;
  padding:20px;
  border-radius:14px;
  font-size:18px;
  font-weight:700;
}

/* ==========================
   REVIEWS
========================== */

.review-section{
  padding:100px 0;
}

.review-title{
  text-align:center;
  margin-bottom:60px;
}

.review-title h2{
  font-family:'Playfair Display',serif;
  font-size:52px;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.review-card{
  background:#fff;
  border-radius:25px;
  padding:35px;
  box-shadow:var(--shadow);
}

.stars{
  color:#f6b400;
  margin-bottom:15px;
  font-size:20px;
}

.review-card p{
  margin-bottom:15px;
}

.review-card strong{
  display:block;
}

/* ==========================
   FAQ SECTION
========================== */

.faq-section{
  padding:120px 0;
  background:#fff;
}

.faq-title{
  text-align:center;
  margin-bottom:60px;
}

.faq-title h2{
  font-family:'Playfair Display',serif;
  font-size:52px;
}

.faq-item{
  background:#fafafa;
  margin-bottom:15px;
  border-radius:18px;
  overflow:hidden;
}

.faq-question{
  padding:22px;
  cursor:pointer;
  font-weight:700;
}

.faq-answer{
  padding:0 22px 22px;
  color:#555;
}

/* ==========================
   FOOTER
========================== */

.footer{
  background:#0b3522;
  color:#fff;
  padding:80px 0 40px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:50px;
}

.footer h3{
  margin-bottom:20px;
}

.footer p,
.footer a{
  color:#ddd;
}

.footer a{
  display:block;
  margin-bottom:10px;
}

.footer-bottom{
  margin-top:40px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:25px;
}

/* ==========================
   FLOATING BUTTON
========================== */

.floating-order{
  position:fixed;
  right:25px;
  bottom:25px;
  z-index:9999;
}

.floating-order a{
  display:flex;
  align-items:center;
  gap:10px;
  background:#25D366;
  color:#fff;
  padding:16px 26px;
  border-radius:999px;
  font-weight:700;
  box-shadow:0 15px 40px rgba(0,0,0,.2);
}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media(max-width:992px){

.hero-grid,
.pricing-grid,
.review-grid,
.footer-grid,
.features{
  grid-template-columns:1fr;
}

.hero h1{
  font-size:48px;
}

.pricing-title h2,
.review-title h2,
.faq-title h2,
.order-wrapper h2{
  font-size:38px;
}

.hero{
  padding:60px 0;
}

.order-wrapper{
  padding:30px;
}

nav{
  display:none;
}

.price-card.featured{
  transform:none;
}
}

@media(max-width:576px){

.hero h1{
  font-size:38px;
}

.hero p{
  font-size:18px;
}

.btn-primary,
.btn-secondary{
  width:100%;
  text-align:center;
}

.floating-order{
  right:15px;
  bottom:15px;
}

.floating-order a{
  padding:14px 20px;
}
}