/* =========================================================
   RaheemSells.com — stylesheet
   Brand colors live here. Change --navy and --gold to rebrand.
   ========================================================= */
:root {
  --navy: #0e1b2c;
  --navy-2: #14263d;
  --gold: #c9a14a;
  --gold-2: #e0bd6b;
  --ink: #1a2230;
  --muted: #5d6b7e;
  --line: #e6e9ef;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(14, 27, 44, 0.12);
  --shadow-sm: 0 6px 20px rgba(14, 27, 44, 0.08);
  --maxw: 1160px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.hidden { position: absolute; left: -9999px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--navy); box-shadow: 0 10px 24px rgba(201,161,74,.35); }
.btn--primary:hover { transform: translateY(-2px); background: var(--gold-2); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--ghost.btn--light { border-color: rgba(255,255,255,.5); }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.nav.is-scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.35rem; color: #fff; }
.nav.is-scrolled .brand { color: var(--navy); }
.brand__mark {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: var(--gold); color: var(--navy); font-weight: 700; font-family: var(--sans); letter-spacing: .5px;
}
.brand__text strong { font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { color: rgba(255,255,255,.9); font-weight: 500; font-size: .98rem; transition: color .2s; }
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  background: var(--gold); color: var(--navy) !important; padding: 10px 20px; border-radius: 999px; font-weight: 600;
}
.nav__cta:hover { background: var(--gold-2); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: #fff; transition: .3s; }
.nav.is-scrolled .nav__toggle span { background: var(--navy); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; padding: 150px 0 90px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(120deg, rgba(14,27,44,.94) 0%, rgba(14,27,44,.78) 45%, rgba(20,38,61,.7) 100%),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1740&q=80") center/cover no-repeat;
}
.hero__bg::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 10%, rgba(201,161,74,.18), transparent 45%); }
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; font-weight: 600; color: var(--gold-2); margin-bottom: 16px; }
.eyebrow--light { color: var(--gold-2); }
.hero__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 5.5vw, 4.3rem); line-height: 1.04; letter-spacing: -.5px; }
.hero__sub { margin-top: 22px; font-size: 1.12rem; color: rgba(255,255,255,.85); max-width: 520px; }
.hero__sub strong { color: #fff; }
.hero__actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero__trust { list-style: none; display: flex; gap: 38px; margin-top: 44px; flex-wrap: wrap; }
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong { font-family: var(--serif); font-size: 1.9rem; color: var(--gold-2); }
.hero__trust span { font-size: .85rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; }

/* Hero lead card */
.hero__card { background: #fff; color: var(--ink); border-radius: 20px; padding: 32px; box-shadow: var(--shadow); }
.card__title { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; }
.card__sub { color: var(--muted); margin: 6px 0 22px; font-size: .96rem; }

/* ---------- Forms ---------- */
.leadform { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field > span { font-size: .82rem; font-weight: 600; color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.leadform input, .leadform select, .leadform textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; transition: border .2s, box-shadow .2s;
}
.leadform input:focus, .leadform select:focus, .leadform textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,161,74,.15);
}
.form-note { font-size: .82rem; color: var(--muted); text-align: center; }
.leadform--inline { display: flex; gap: 10px; margin-top: 26px; max-width: 480px; }
.leadform--inline input { flex: 1; }
.leadform--card { background: #fff; padding: 30px; border-radius: 20px; box-shadow: var(--shadow); }

/* ---------- Social proof strip ---------- */
.strip { background: var(--navy-2); color: rgba(255,255,255,.75); padding: 22px 0; }
.strip__inner { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; font-size: .85rem; }
.strip__inner > span { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--gold-2); }
.strip__logos { display: flex; gap: 34px; flex-wrap: wrap; font-family: var(--serif); font-size: 1.15rem; color: rgba(255,255,255,.85); }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section--alt { background: var(--bg-alt); }
.section__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.1; letter-spacing: -.4px; }
.section__title--light { color: #fff; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lead { font-size: 1.12rem; color: var(--muted); margin: 18px 0 24px; }
.lead--center { text-align: center; margin-inline: auto; }
.lead--light { color: rgba(255,255,255,.82); }
.lead em { color: var(--ink); font-style: italic; }

/* Checklist */
.checklist { list-style: none; display: grid; gap: 13px; margin-bottom: 30px; }
.checklist li { position: relative; padding-left: 34px; color: var(--ink); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px;
  background: var(--gold); color: var(--navy); border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}

/* Feature cards */
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); display: grid; gap: 24px; }
.section--alt .feature-card { background: #fff; }
.feature-stat { display: grid; gap: 4px; }
.feature-stat strong { font-family: var(--serif); font-size: 2.6rem; color: var(--navy); line-height: 1; }
.feature-stat span { color: var(--muted); }
.feature-foot { font-size: .8rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 14px; }
.feature-card--dark { background: var(--navy); color: #fff; place-content: center; text-align: center; gap: 16px; }
.feature-card--dark h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.feature-card--dark p { color: rgba(255,255,255,.8); }

/* ---------- Reviews ---------- */
.rating-summary { display: inline-flex; align-items: center; gap: 12px; margin-top: 16px; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display: grid; gap: 14px; }
.review blockquote { font-size: 1.05rem; color: var(--ink); }
.review figcaption { color: var(--muted); font-weight: 600; font-size: .92rem; }
.reviews__cta { text-align: center; margin-top: 36px; }
.link-arrow { color: var(--navy); font-weight: 600; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.link-arrow:hover { color: var(--gold); }

/* ---------- About ---------- */
.about__photo { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px; background: var(--navy-2); box-shadow: var(--shadow); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about__photo img.is-missing { display: none; }
.about__photo-fallback { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; color: rgba(255,255,255,.6); font-size: .95rem; }
.about__photo-fallback code { color: var(--gold-2); }
.about__photo img:not(.is-missing) + .about__photo-fallback { display: none; }
.about__cred { display: grid; gap: 14px; margin: 26px 0; }
.about__cred div { display: flex; gap: 14px; align-items: baseline; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.about__cred strong { min-width: 90px; color: var(--navy); }
.about__cred span { color: var(--muted); }

/* ---------- Areas ---------- */
.areas { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.areas li {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 12px; padding: 18px;
  text-align: center; font-weight: 600; color: var(--navy); transition: .2s;
}
.areas li:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }

/* ---------- Contact / CTA ---------- */
.section--cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); position: relative; }
.section--cta::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 90% 0%, rgba(201,161,74,.15), transparent 40%); }
.contact__list { list-style: none; display: grid; gap: 20px; margin-top: 30px; }
.contact__list li { display: grid; gap: 2px; }
.contact__list span { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-2); }
.contact__list a { color: #fff; font-size: 1.25rem; font-family: var(--serif); }
.contact__list a:hover { color: var(--gold-2); }

/* ---------- Footer ---------- */
.footer { background: #0a131f; color: rgba(255,255,255,.7); padding: 60px 0 26px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand--footer { color: #fff; margin-bottom: 18px; }
.footer__legal { font-size: .9rem; line-height: 1.7; }
.footer__legal strong { color: #fff; }
.footer__cols { display: flex; gap: 64px; }
.footer__cols h4 { color: #fff; margin-bottom: 14px; font-size: .95rem; }
.footer__cols nav { display: grid; gap: 8px; }
.footer__cols a { font-size: .92rem; transition: color .2s; }
.footer__cols a:hover { color: var(--gold-2); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 22px; font-size: .85rem; flex-wrap: wrap; gap: 10px; }
.footer__eho { color: var(--gold-2); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; background: rgba(10,19,31,.6); backdrop-filter: blur(4px); padding: 20px; }
.modal.is-open { display: grid; }
.modal__box { background: #fff; border-radius: 20px; padding: 44px 36px; text-align: center; max-width: 400px; box-shadow: var(--shadow); animation: pop .3s ease; }
.modal__check { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--gold); color: var(--navy); display: grid; place-items: center; font-size: 2rem; font-weight: 700; }
.modal__box h3 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 8px; }
.modal__box p { color: var(--muted); margin-bottom: 24px; }
@keyframes pop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__inner, .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-2--rev > div:first-child { order: 2; }
  .reviews { grid-template-columns: 1fr; }
  .areas { grid-template-columns: repeat(2, 1fr); }
  .nav__links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 78%; max-width: 320px;
    background: var(--navy); flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 40px; gap: 22px; transition: right .35s ease; box-shadow: -10px 0 40px rgba(0,0,0,.3);
  }
  .nav__links.is-open { right: 0; }
  .nav__links a { color: #fff !important; font-size: 1.2rem; }
  .nav__toggle { display: flex; z-index: 60; }
  .nav.is-scrolled .nav__toggle span,
  .nav__toggle.is-open span { background: #fff; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 120px; }
  .footer__inner { flex-direction: column; }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
  .leadform--inline { flex-direction: column; }
  .areas { grid-template-columns: 1fr 1fr; }
  .hero__trust { gap: 24px; }
}
