/* =========================
   RESET + BASE
========================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: Arial, sans-serif;
  background: #050509;        /* dark background */
  color: #f9fafb;             /* light text */
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1100px, 92%); margin: 0 auto; }

/* =========================
   NAVBAR (ALL PAGES)
========================= */
.navbar{
  position: sticky; top: 0; z-index: 1000;
  background: rgba(5, 5, 12, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #1f2933;
  padding: 14px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo-link { display:flex; align-items:center; }
.logo-img { height: auto; width: 150px; display:block; }

.menu-toggle{
  display: none;
  background: transparent;
  border: 0;
  font-size: 26px;
  cursor: pointer;
  color: #f9fafb;
}
.navbar {
  background: #121418;
}


.nav-links{
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-links a{
  font-weight: 700;
  color: #d1d5db;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a.active,
.nav-links a:hover{
  color: #ff4b4b;
  border-bottom-color: #ff1e1e;
}

/* Mobile dropdown */
@media (max-width: 900px){
  .menu-toggle{ display:block; }
  .nav-links{
    position: absolute;
    right: 16px; top: 62px;
    background: #0b0b12;
    border: 1px solid #1f2933;
    border-radius: 10px;
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 8px;
    width: 190px;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
  }
  .nav-links.open{ display:flex; }
}

/* =========================
   SHARED HERO IMAGE BLOCK
========================= */
.page-hero{
  width: 100%;
  margin-top: 14px;
  display:flex;
  justify-content:center;
}
.page-hero img{
  width: 260px;
  max-width: 90%;
  height: auto;
  border-radius: 14px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.7));
}

/* ========================
   BUTTONS
======================== */
.btn{
  display:inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
}
.btn-primary{
  background:#ff1e1e;
  color:#fff;
  box-shadow: 0 12px 30px rgba(255,30,30,0.5);
}
.btn-primary:hover{
  background:#d91414;
  box-shadow: 0 16px 40px rgba(255,30,30,0.7);
}
.btn-secondary{
  border:2px solid #ff1e1e;
  color:#ff1e1e;
  background: transparent;
}
.btn-secondary:hover{
  background:#ff1e1e;
  color:#fff;
}

.button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
}

.button-group .btn {
  width: 240px;
  text-align: center;
}

.button-group .btn + .btn {
  margin-top: 16px;
}

/* =========================
   HOME HERO
========================= */
.hero{
  background: radial-gradient(circle at top, #1f2937 0, #050509 55%);
  padding: 60px 20px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items:center;
}
.hero h1{
  color:#ff1e1e;
  font-size:44px;
  font-weight:900;
  margin-bottom:6px;
}
.hero h2{
  font-size:26px;
  margin-bottom:12px;
  color:#f9fafb;
}
.hero p{
  color:#d1d5db;
  margin-bottom:18px;
}
.hero-buttons{ display:flex; gap:12px; flex-wrap:wrap; }
.whatsapp-line{
  margin-top:8px;
  color:#e5e7eb;
  font-weight:700;
}

.hero-image img{
  width: 260px;
  max-width:100%;
  height:auto;
  border-radius:14px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.75));
}

@media(max-width:900px){
  .hero-grid{ grid-template-columns:1fr; text-align:center; }
  .hero-buttons{ justify-content:center; }
}

/* =========================
   TRUST BAR
========================= */
#trust-bar{
  padding: 14px 20px;
  background:#050509;
  border-top:1px solid #1f2933;
  border-bottom:1px solid #1f2933;
}
.trust-container{
  display:flex; gap:12px; flex-wrap:wrap; justify-content:center;
  font-weight:800; color:#e5e7eb;
}

/* =========================
   SECTION HEADERS
========================= */
.section{
  padding: 60px 20px;
}
.section-title{
  text-align:center;
  font-size:30px;
  font-weight:900;
  margin-bottom:8px;
  color:#f9fafb;
}
.section-subtitle{
  text-align:center;
  color:#9ca3af;
  max-width:780px;
  margin:0 auto 26px;
}

/* =========================
   BENEFITS
========================= */
.benefits-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:18px;
}
.benefit-card{
  background:#111119;
  border:1px solid #1f2933;
  border-radius:12px;
  padding:20px;
  text-align:center;
  box-shadow:0 6px 16px rgba(0,0,0,.6);
}
.benefit-card .icon{
  font-size:26px;
  margin-bottom:8px;
}
.benefit-card h3{
  font-size:18px;
  margin-bottom:6px;
  color:#f9fafb;
}
.benefit-card p{
  color:#d1d5db;
  font-size:15px;
}

@media(max-width:900px){
  .benefits-grid{ grid-template-columns:1fr; }
}

/* =========================
   HOW IT WORKS PREVIEW (HOME)
========================= */
.how-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.how-card{
  background:#111119;
  border:1px solid #1f2933;
  border-radius:12px;
  padding:20px;
  text-align:center;
}
.how-icon{ font-size:24px; margin-bottom:6px; color:#ff1e1e; }

@media(max-width:900px){
  .how-grid{ grid-template-columns:1fr; }
}

/* =========================
   BUNDLES (HOME + SHOP)
========================= */
.bundles-grid{
  max-width: 1000px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.bundle-card{
  background:#111119;
  border:1px solid #1f2933;
  border-radius:14px;
  padding:20px 18px;
  text-align:center;
  box-shadow:0 6px 16px rgba(0,0,0,0.7);
  display:flex;
  flex-direction:column;
  align-items:center;
}

.bundle-badge{
  font-size:12px;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  background:#000;
  color:#fff;
  margin-bottom:10px;
  display:inline-block;
}

.bundle-card h3{
  font-size:20px;
  margin-bottom:10px;
  color:#f9fafb;
}

.bundle-was{
  font-size:14px;
  color:#9ca3af;
  margin:0 0 6px;
  min-height:18px;
}

.bundle-was span{
  text-decoration:line-through;
}

.bundle-was.spacer{
  opacity:0;
  pointer-events:none;
}

.bundle-now{
  font-size:18px;
  margin:0 0 6px;
  color:#f9fafb;
}

.bundle-save{
  font-size:14px;
  font-weight:700;
  color:#ff1e1e;
  margin-bottom:14px;
}

.bundle-btn{
  width:100%;
  max-width:180px;
  margin-top:auto;
}

.bundle-note{
  margin-top:12px;
  text-align:center;
  color:#d1d5db;
  font-size:14px;
}

/* Responsive bundles */
@media (max-width: 900px){
  .bundles-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px){
  .bundles-grid{ grid-template-columns: 1fr; }
}

/* =========================
   REVIEWS (HOME PREVIEW + REVIEWS PAGE)
========================= */
.fb-reviews{ display:grid; gap:12px; margin-top:14px; }
.fb-comment{
  background:#111119;
  border:1px solid #1f2933;
  border-radius:10px;
  padding:14px;
}
.fb-name{
  font-weight:900;
  margin-bottom:4px;
  color:#f9fafb;
}
.fb-text{
  color:#e5e7eb;
  font-size:15px;
}
.fb-meta{
  color:#9ca3af;
  font-size:12px;
  margin-top:6px;
}

/* =========================
   FAQ PAGE
========================= */
.faq-container{
  width:min(950px,92%);
  margin: 30px auto 60px;
}
.faq-container h1{
  text-align:center;
  color:#f9fafb;
  font-size:34px;
  font-weight:900;
}
.faq-subtitle{
  text-align:center;
  color:#9ca3af;
  margin:8px 0 22px;
}
.faq-box{
  border:1px solid #1f2933;
  border-radius:10px;
  overflow:hidden;
  margin-bottom:10px;
  background:#111119;
}
.faq-question{
  width:100%;
  text-align:left;
  padding:16px;
  font-weight:800;
  font-size:16px;
  background:#0b0b12;
  border:0;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#f9fafb;
}
.faq-question span{
  font-size:20px;
  color:#f9fafb;
}
.faq-question .symbol{
  font-size:22px;
  font-weight:bold;
}
.faq-answer{
  display:none;
  padding:16px;
  font-size:15px;
  color:#e5e7eb;
  border-top:1px solid #1f2933;
}
.faq-answer.open{
  display:block;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-wrap{
  width:min(950px,92%);
  margin: 40px auto 60px;
  text-align:center;
}
.contact-wrap h1{
  color:#ff1e1e;
  font-size:34px; font-weight:900;
}
.contact-sub{
  color:#9ca3af;
  margin:8px 0 20px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:10px;
}
.contact-card{
  background:#111119;
  border:1px solid #1f2933;
  border-radius:12px;
  padding:18px;
  text-align:left;
}
.contact-card h3{
  margin-bottom:8px;
  color:#f9fafb;
}
.contact-card p{
  color:#e5e7eb;
  margin-bottom:6px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px;
  border:1px solid #1f2933;
  border-radius:8px;
  margin-bottom:10px;
  font-size:15px;
  background:#050509;
  color:#f9fafb;
}
.contact-form textarea{ min-height:120px; resize:vertical; }

.form-msg{
  display:none;
  margin-top:10px;
  font-weight:900;
  color:#4ade80;
}
.confirm-msg{
  display: none;
  margin-top: 12px;
  font-size: 15px;
  color: #4ade80;
  font-weight: 600;
}

@media(max-width:800px){
  .contact-grid{ grid-template-columns:1fr; }
}

/* better contact layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin-top: 20px;
}

.contact-row {
  display: flex;
  gap: 12px;
}

.contact-row input {
  flex: 1;
}

/* =========================
   CHECKOUT PAGE
========================= */

.checkout-page{
  max-width: 1100px;
  margin: 40px auto 80px;
  padding: 0 18px;
}

.checkout-title{
  text-align:center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 6px;
  color:#f9fafb;
}

.checkout-subtitle{
  text-align:center;
  color:#9ca3af;
  margin-bottom: 28px;
}

.checkout-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items:start;
}

.checkout-card{
  background:#111119;
  border:1px solid #1f2933;
  border-radius:14px;
  padding:18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.checkout-card h2{
  margin-bottom:14px;
  font-size:18px;
  font-weight:800;
  color:#f9fafb;
}

/* form */
#checkoutForm label{
  display:block;
  font-size:14px;
  font-weight:700;
  margin:10px 0 6px;
  color:#e5e7eb;
}

#checkoutForm input,
#checkoutForm textarea{
  width:100%;
  padding:11px 12px;
  border:1px solid #1f2933;
  border-radius:10px;
  font-size:14px;
  outline:none;
  background:#050509;
  color:#f9fafb;
}

#checkoutForm input:focus,
#checkoutForm textarea:focus{
  background:#050509;
  border-color:#ff1e1e;
  box-shadow: 0 0 0 2px rgba(255,30,30,0.25);
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

.place-order-btn{
  width:100%;
  margin-top:14px;
  padding:12px;
  font-size:16px;
  border-radius:10px;
}

.checkout-confirm{
  display:none;
  margin-top:10px;
  font-size:14px;
  color:#4ade80;
  font-weight:700;
}

/* bundle picker */
.bundle-picker{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-bottom:14px;
}

.bundle-pick{
  position:relative;
  background:#050509;
  border:1px solid #1f2933;
  border-radius:12px;
  padding:38px 12px 12px;
  text-align:center;
  cursor:pointer;
  transition:.2s ease;
}

.bundle-pick:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,.7);
}

.bundle-pick.active{
  border:2px solid #ff1e1e;
  box-shadow:0 0 0 3px rgba(255,30,30,.25);
}

.bundle-badge.starter{ background:#374151; }
.bundle-badge.popular{ background:#c73737; }
.bundle-badge.value{ background:#2563eb; }
.bundle-badge.max{ background:#15803d; }

.bundle-pick h3{
  font-size:16px;
  font-weight:900;
  margin-bottom:6px;
  color:#f9fafb;
}

.bundle-was{
  font-size:12px;
  color:#9ca3af;
  text-decoration:line-through;
  margin-bottom:2px;
}

.bundle-now{
  font-size:15px;
  font-weight:800;
  margin-bottom:2px;
  color:#f9fafb;
}

.bundle-save{
  font-size:12px;
  color:#ff1e1e;
  font-weight:800;
}

/* order summary */
.order-summary{
  border-top:1px dashed #1f2933;
  padding-top:12px;
}

.order-summary .row{
  display:flex;
  justify-content:space-between;
  padding:6px 0;
  font-size:14px;
  color:#e5e7eb;
}

.order-summary .total{
  font-size:16px;
  font-weight:900;
  margin-top:6px;
  color:#f9fafb;
}

/* mobile checkout */
@media (max-width: 900px){
  .checkout-grid{ grid-template-columns: 1fr; }
}

/* =========================
   FOOTER
========================= */
#footer {
  background: #050509;
  color: #eee;
  padding: 50px 20px 20px;
  margin-top: 60px;
  font-size: 15px;
  border-top: 1px solid #1f2933;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 12px;
  font-weight: 800;
  color: #fff;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Quick links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 30px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #ff1e1e;
}

/* bottom line */
.footer-bottom {
  text-align: center;
  margin-top: 35px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  font-size: 14px;
}

/* MOBILE FOOTER */
@media (max-width: 800px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Address autocomplete dropdown
========================= */
.suggestions-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #111119;
  border: 1px solid #1f2933;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
  max-height: 220px;
  overflow-y: auto;
  z-index: 999;
  display: none;
}

.suggestion-item {
  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
  color:#f9fafb;
}

.suggestion-item:hover {
  background: #1f2933;
}
/* SILVER BACKGROUND BEHIND LOGO (SAFE VERSION) */
.logo-link {
  background: #b5b7b9 !important;   /* matte silver */
  padding: 4px 12px !important;     /* subtle padding */
  border-radius: 6px !important;    /* clean rounded edges */
}
