/* ═══════════════════════════════════════════════
   S&M FUSION LTD — SHARED STYLESHEET
   ═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0c1f3a;
  --navy2: #152d52;
  --gold: #c8943a;
  --gold-lt: #e8b85a;
  --cream: #f8f4ed;
  --white: #ffffff;
  --grey: #6b7280;
  --light: #f0f4f8;
  --border: rgba(11, 31, 58, .1);
  --shadow: 0 12px 48px rgba(11, 31, 58, .14);
  --radius: 16px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  animation: pageIn .45s ease both;
  /* padding-bottom: 60px; */
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 31, 58, .97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 148, 58, .22);
}

.nav-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 36px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--white);
  letter-spacing: .4px;
  font-weight: 700;
}

.nav-logo em {
  color: var(--gold);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, .78);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 500;
  transition: all .2s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(200, 148, 58, .18);
}

.nav-links a.active {
  color: #fff;
  background: rgba(200, 148, 58, .22);
}

.nav-links .nav-btn {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 9px;
}

.nav-links .nav-btn:hover {
  background: var(--gold-lt);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  transition: .3s;
  border-radius: 2px;
}

.mob-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 18px 28px 24px;
  z-index: 999;
  border-bottom: 1px solid rgba(200, 148, 58, .2);
}

.mob-menu.open {
  display: block;
}

.mob-menu a {
  display: block;
  color: rgba(255, 255, 255, .82);
  padding: 13px 0;
  font-size: .98rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-weight: 500;
}

.mob-menu a:last-child {
  border: none;
}

.mob-menu a.active {
  color: var(--gold);
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 34px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all .25s;
  font-family: var(--font-body);
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 148, 58, .38);
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 13px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid rgba(255, 255, 255, .38);
  cursor: pointer;
  transition: all .25s;
  font-family: var(--font-body);
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 14px 34px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all .25s;
  font-family: var(--font-body);
}

.btn-navy:hover {
  background: var(--navy2);
  transform: translateY(-2px);
}

/* ── SECTION HELPERS ── */
.wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 36px;
}

section {
  padding: 92px 36px;
}

.section-tag {
  display: inline-block;
  background: rgba(200, 148, 58, .12);
  color: var(--gold);
  border: 1px solid rgba(200, 148, 58, .32);
  border-radius: 50px;
  padding: 5px 17px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 700;
}

.section-sub {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
}

.tc {
  text-align: center;
}

.tc .section-sub {
  margin: 0 auto;
}

.section-title.light {
  color: #fff;
}

.section-sub.light {
  color: rgba(255, 255, 255, .62);
}

/* ── DIVIDER ── */
.gold-line {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 18px 0;
}

.gold-line.center {
  margin: 18px auto;
}

/* ── CARDS ── */
.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #a87230 100%);
  padding: 72px 36px;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 700;
}

.cta-banner p {
  color: rgba(12, 31, 58, .72);
  font-size: 1.04rem;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #fff;
  padding: 64px 36px 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 14px;
  display: block;
  font-weight: 700;
}

.footer-logo em {
  color: var(--gold);
  font-style: normal;
}

.footer-brand p {
  color: rgba(255, 255, 255, .5);
  font-size: .88rem;
  line-height: 1.72;
  max-width: 270px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .52);
  font-size: .88rem;
  transition: .2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .38);
  font-size: .82rem;
}

.socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  font-size: .85rem;
  transition: .2s;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── EMERGENCY BAR ── */
.emergency-bar {
  position: sticky !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  background: var(--gold) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  padding: 11px 24px !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  font-size: .92rem !important;
  box-shadow: 0 -4px 15px rgba(11, 31, 58, .15) !important;
}

.emergency-bar a {
  color: var(--navy);
  font-weight: 800;
}

.emergency-bar .eb-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 6px 18px;
  border-radius: 7px;
  font-weight: 700;
  font-size: .84rem;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 90px 36px 70px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8943a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, .68);
  font-size: 1.06rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.72;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .5);
  position: relative;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .3);
}

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-box {
  background: var(--navy);
  color: #fff;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.stat-box:last-child {
  border: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 700;
}

.stat-label {
  color: rgba(255, 255, 255, .5);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .7px;
}

/* ── PROCESS STEPS ── */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
}

.steps-wrap::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 148, 58, .2));
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 700;
  box-shadow: 0 4px 22px rgba(200, 148, 58, .18);
}

.step h4 {
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

.step p {
  color: var(--grey);
  font-size: .88rem;
  line-height: 1.6;
}

/* ── TESTIMONIAL ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.testi-card {
  padding: 30px;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  color: #374151;
  font-size: .93rem;
  line-height: 1.72;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.t-name {
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
}

.t-loc {
  color: var(--grey);
  font-size: .8rem;
}

/* ══ RESPONSIVE ══ */
@media (max-width:960px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-wrap::before {
    display: none;
  }

  .steps-wrap {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width:640px) {
  section {
    padding: 60px 20px;
  }

  .wrap {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .steps-wrap {
    grid-template-columns: 1fr;
  }

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

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

  .emergency-bar {
    font-size: .82rem;
    flex-wrap: wrap;
    text-align: center;
  }
}