@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --saffron: #F5820D;
  --deep-orange: #D94E0A;
  --gold: #E8B84B;
  --cream: #FDF6EC;
  --charcoal: #1A1A18;
  --warm-dark: #2C2118;
  --brick-red: #8B2E0A;
  --sand: #C9A96E;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 32px;
  height: 64px;
  background: #1A1A18;
  border-bottom: 1px solid rgba(245,130,13,0.18);
  gap: 0;
}

/* Logo — far left */
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--saffron);
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;   /* pushes everything else to the right */
}
.nav-logo span { color: var(--gold); }

/* Links — all on the right */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { display: flex; }
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(253,246,236,0.78);
  text-decoration: none;
  padding: 8px 14px;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--saffron); }
.nav-links a.active { color: var(--saffron); }

/* Call Now button */
.nav-cta {
  background: var(--saffron) !important;
  color: #1A1A18 !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  margin-left: 10px;
  box-shadow: 0 3px 14px rgba(245,130,13,0.4);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.nav-cta:hover {
  background: #e8b84b !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 5px 20px rgba(245,130,13,0.55) !important;
}

/* ── HAMBURGER (mobile only) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
  outline: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(253,246,236,0.85);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── MOBILE SLIDE-DOWN MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: #1A1A18;
  border-bottom: 2px solid var(--saffron);
  z-index: 98;
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(253,246,236,0.8);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--saffron);
  background: rgba(245,130,13,0.07);
  border-left-color: var(--saffron);
}
.mobile-menu .mob-cta {
  background: var(--saffron) !important;
  color: #1A1A18 !important;
  border-left: none !important;
  border-radius: 6px !important;
  text-align: center;
  margin-top: 10px;
  box-shadow: 0 3px 14px rgba(245,130,13,0.35);
}
.mobile-menu .mob-cta:hover {
  background: #e8b84b !important;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 160px 80px 80px;
  background: linear-gradient(135deg, #0d0800 0%, var(--warm-dark) 50%, #111009 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(245,130,13,0.2);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(245,130,13,0.02) 40px, rgba(245,130,13,0.02) 41px);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,130,13,0.12), transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 800px; }
.page-hero-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--saffron);
  display: inline-block;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 100px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}
.page-hero h1 .acc { color: var(--saffron); }
.page-hero h1 .out {
  -webkit-text-stroke: 2px rgba(245,130,13,0.4);
  color: transparent;
}
.page-hero p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(253,246,236,0.65);
  max-width: 600px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--saffron);
  color: var(--charcoal);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(245,130,13,0.35);
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block;
  color: var(--cream);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(253,246,236,0.3);
  padding-bottom: 3px;
  transition: all 0.3s;
}
.btn-ghost:hover { color: var(--saffron); border-color: var(--saffron); }

/* ── SECTION UTILS ── */
.section { padding: 100px 80px; }
.section-dark { background: var(--charcoal); }
.section-warm { background: var(--warm-dark); }
.section-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.93;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.section-title .out {
  -webkit-text-stroke: 1.5px rgba(253,246,236,0.25);
  color: transparent;
}
.section-title .acc { color: var(--saffron); }

/* ── TICKER ── */
.ticker {
  background: var(--saffron);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner { display: inline-block; animation: ticker 30s linear infinite; }
.ticker-inner span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0 36px;
}
.ticker-inner span::before { content: '◆'; margin-right: 36px; opacity: 0.4; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(245,130,13,0.1);
}
.product-card {
  background: var(--charcoal);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.4s;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.product-card:hover { background: var(--warm-dark); }
.product-card:hover::before { transform: scaleX(1); }
.product-icon { font-size: 46px; margin-bottom: 22px; display: block; transition: transform 0.4s; }
.product-card:hover .product-icon { transform: scale(1.12) rotate(-5deg); }
.product-num {
  position: absolute; top: 22px; right: 26px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 68px;
  color: rgba(245,130,13,0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}
.product-card:hover .product-num { color: rgba(245,130,13,0.13); }
.product-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.product-desc { font-size: 14px; line-height: 1.7; color: rgba(253,246,236,0.54); }
.product-tag {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saffron);
  border: 1px solid rgba(245,130,13,0.3);
  padding: 4px 12px;
  border-radius: 1px;
  margin-right: 6px;
}

/* ── CHECKLIST ── */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(245,130,13,0.08);
  background: rgba(44,33,24,0.3);
  border-radius: 2px;
  transition: all 0.3s;
}
.check-item:hover { border-color: rgba(245,130,13,0.35); background: rgba(44,33,24,0.65); transform: translateX(6px); }
.check-tick {
  width: 28px; height: 28px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
  color: var(--charcoal);
  flex-shrink: 0; margin-top: 1px;
}
.check-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 17px;
  color: var(--white); letter-spacing: 0.3px; line-height: 1.4;
}
.check-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400; font-size: 13px;
  color: rgba(253,246,236,0.5); margin-top: 3px; display: block;
}

/* ── FEATURE CARDS ── */
.feature-item {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 26px; border: 1px solid rgba(245,130,13,0.1);
  background: rgba(44,33,24,0.4); transition: all 0.3s;
}
.feature-item:hover { border-color: rgba(245,130,13,0.4); background: rgba(44,33,24,0.8); transform: translateX(8px); }
.feature-icon-wrap {
  width: 50px; height: 50px;
  background: rgba(245,130,13,0.12);
  border: 1px solid rgba(245,130,13,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; flex-shrink: 0; border-radius: 2px;
}
.feature-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 17px;
  letter-spacing: 0.5px; color: var(--white); margin-bottom: 5px; text-transform: uppercase;
}
.feature-desc { font-size: 13px; line-height: 1.65; color: rgba(253,246,236,0.54); }

/* ── MVV CARDS ── */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(245,130,13,0.12);
}
.mvv-card {
  background: var(--charcoal); padding: 50px 38px;
  position: relative; overflow: hidden; transition: background 0.35s;
}
.mvv-card:hover { background: #1f1c16; }
.mvv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--saffron); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.mvv-card:hover::before { transform: scaleX(1); }
.mvv-icon { font-size: 42px; margin-bottom: 22px; display: block; }
.mvv-label {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--saffron); margin-bottom: 10px;
}
.mvv-title {
  font-family: 'Playfair Display', serif; font-size: 24px;
  font-weight: 900; color: var(--white); margin-bottom: 18px; line-height: 1.2;
}
.mvv-desc { font-size: 14px; line-height: 1.8; color: rgba(253,246,236,0.57); }
.values-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 11px; }
.values-list li {
  display: flex; align-items: center; gap: 11px;
  font-size: 14px; color: rgba(253,246,236,0.65); line-height: 1.5;
}
.values-list li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--saffron); border-radius: 50%; flex-shrink: 0;
}

/* ── PROFILE CARDS ── */
.prc {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 26px; background: rgba(26,26,24,0.6);
  border: 1px solid rgba(245,130,13,0.12); border-radius: 2px; transition: all 0.3s;
}
.prc:hover { border-color: rgba(245,130,13,0.35); transform: translateY(-2px); }
.prc-icon {
  width: 42px; height: 42px; background: rgba(245,130,13,0.15);
  border: 1px solid rgba(245,130,13,0.25); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.prc-name {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: 0.5px; text-transform: uppercase; color: var(--white); margin-bottom: 3px;
}
.prc-val { font-size: 13px; color: rgba(253,246,236,0.5); line-height: 1.5; }

/* ── PB GRID ── */
.profile-bottom {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(245,130,13,0.1);
}
.pb-card { background: var(--charcoal); padding: 38px 34px; transition: background 0.3s; }
.pb-card:hover { background: #1e1a12; }
.pb-card-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--saffron);
  margin-bottom: 18px; padding-bottom: 11px; border-bottom: 1px solid rgba(245,130,13,0.2);
}
.pb-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pb-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: rgba(253,246,236,0.64); line-height: 1.4;
}
.pb-list li::before { content: '→'; color: var(--saffron); font-size: 11px; flex-shrink: 0; }

/* ── CONTACT CARDS ── */
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 26px; background: rgba(245,130,13,0.08);
  border: 1px solid rgba(245,130,13,0.2); border-radius: 2px;
  text-decoration: none; transition: all 0.3s;
}
.contact-card:hover { background: rgba(245,130,13,0.16); border-color: var(--saffron); transform: translateY(-2px); }
.contact-card-icon {
  width: 46px; height: 46px; background: var(--saffron);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  font-size: 19px; flex-shrink: 0;
}
.contact-card-label {
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(253,246,236,0.5); margin-bottom: 3px;
}
.contact-card-value {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 17px;
  color: var(--white); letter-spacing: 0.5px;
}

/* ── FINAL CTA BANNER ── */
.final-cta {
  background: linear-gradient(90deg, var(--saffron) 0%, var(--deep-orange) 50%, #a83200 100%);
  padding: 64px 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px);
  pointer-events: none;
}
.final-cta-text { position: relative; z-index: 2; }
.final-cta-text h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 54px);
  letter-spacing: 2px; color: var(--charcoal); line-height: 1; margin-bottom: 8px;
}
.final-cta-text p { font-size: 15px; color: rgba(26,26,24,0.72); max-width: 480px; line-height: 1.6; }
.final-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-dark-btn {
  background: var(--charcoal); color: var(--cream);
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 32px; text-decoration: none; border-radius: 2px; transition: all 0.3s;
}
.cta-dark-btn:hover { background: var(--warm-dark); transform: translateY(-2px); }
.cta-outline-btn {
  background: transparent; color: var(--charcoal);
  border: 2px solid var(--charcoal);
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 32px; text-decoration: none; border-radius: 2px; transition: all 0.3s;
}
.cta-outline-btn:hover { background: rgba(26,26,24,0.12); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: #0D0C0A; padding: 40px 80px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(245,130,13,0.12); flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 34px; color: var(--saffron); letter-spacing: 2px; }
.footer-logo span { color: var(--gold); }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(253,246,236,0.4); text-decoration: none; transition: color 0.3s;
}
.footer-nav a:hover { color: var(--saffron); }
.footer-address { font-size: 12px; color: rgba(253,246,236,0.35); line-height: 1.7; }
.footer-copy { font-size: 11px; color: rgba(253,246,236,0.2); letter-spacing: 1px; width: 100%; text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); }

/* ── FLOAT BTN ── */
.float-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  background: var(--saffron); color: var(--charcoal);
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 13px 26px; text-decoration: none; border-radius: 2px;
  box-shadow: 0 8px 32px rgba(245,130,13,0.5); transition: all 0.3s;
  animation: float-pulse 3s ease-in-out infinite;
}
.float-btn:hover { background: var(--gold); transform: translateY(-4px) scale(1.02); }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(245,130,13,0.5); }
  50% { box-shadow: 0 12px 48px rgba(245,130,13,0.8); }
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-banner {
  padding: 28px 0; background: var(--warm-dark);
  border-top: 1px solid rgba(245,130,13,0.12);
  border-bottom: 1px solid rgba(245,130,13,0.12); overflow: hidden;
}
.marquee-track { display: inline-flex; gap: 56px; animation: marquee 20s linear infinite; white-space: nowrap; }
.marquee-item {
  font-family: 'Playfair Display', serif; font-size: 30px;
  font-style: italic; font-weight: 700; color: rgba(253,246,236,0.1); user-select: none;
}
.marquee-item.colored { color: var(--saffron); }

/* ── SERVE TAGS ── */
.serve-tag {
  background: rgba(245,130,13,0.1); border: 1px solid rgba(245,130,13,0.25);
  color: var(--saffron); font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 2px;
}

/* ── GOOGLE REVIEWS ── */
.reviews-section {
  background: var(--warm-dark);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '★★★★★';
  position: absolute;
  font-size: 200px;
  color: rgba(245,130,13,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 20px;
}
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.reviews-rating-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(245,130,13,0.1);
  border: 1px solid rgba(245,130,13,0.25);
  padding: 16px 24px;
  border-radius: 8px;
}
.rating-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--saffron);
  line-height: 1;
}
.rating-stars { color: #F5820D; font-size: 22px; letter-spacing: 3px; }
.rating-count { font-size: 13px; color: rgba(253,246,236,0.55); margin-top: 4px; letter-spacing: 1px; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s;
  margin-top: 8px;
  display: block;
}
.google-badge:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.2); transform: translateY(-1px); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}
.review-card {
  background: var(--charcoal);
  padding: 28px 28px 24px;
  border: 1px solid rgba(245,130,13,0.08);
  border-radius: 6px;
  transition: all 0.35s;
  position: relative;
}
.review-card:hover {
  border-color: rgba(245,130,13,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  color: rgba(245,130,13,0.1);
  line-height: 1;
}
.review-stars { color: #F5820D; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-size: 14px;
  line-height: 1.78;
  color: rgba(253,246,236,0.7);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--saffron);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--charcoal);
  flex-shrink: 0;
}
.review-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.3px;
}
.review-date { font-size: 12px; color: rgba(253,246,236,0.4); margin-top: 2px; }
.reviews-cta {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.google-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: #1a1a1a;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.google-reviews-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }


@media (max-width: 900px) {
  nav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { top: 64px; }
  .page-hero { padding: 100px 24px 60px; }
  .section { padding: 60px 24px; }
  .reviews-section { padding: 60px 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; }

  .final-cta { padding: 48px 24px; flex-direction: column; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}
