/* ==========================================================================
   Revive Performance Ltd — shared stylesheet
   Brand: black + red (#ff4d4d) accent on light content
   Mobile-first, no frameworks, no build step.
   ========================================================================== */

:root {
  --primary: #ff4d4d;
  --primary-hover: #e63e3e;
  --primary-dark: #c92f2f;
  --bg-dark: #141414;
  --bg-darker: #000000;
  --bg-panel: #1c1c1c;
  --bg-light: #ffffff;
  --bg-soft: #f5f7fa;
  --text-dark: #1b2027;
  --text-body: #3a424d;
  --text-muted: #6b7480;
  --text-light: #f5f5f5;
  --text-light-muted: #aeb6c0;
  --border: #e2e6ec;
  --border-dark: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 10px 30px rgba(13, 17, 23, 0.10);
  --shadow-lg: 0 20px 50px rgba(13, 17, 23, 0.18);
  --maxw: 1140px;
  --ease: 0.25s ease;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-light);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--primary-hover); }

h1, h2, h3, h4 { color: var(--text-dark); line-height: 1.2; font-weight: 700; }

.container { width: 92%; max-width: var(--maxw); margin: 0 auto; }

.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: var(--text-light); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #fff; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  text-align: center;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 77, 77, 0.35);
}
.btn--primary:hover { background: var(--primary-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255, 77, 77, 0.45); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: #fff; }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-dark);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { height: 50px; width: auto; }
.nav__brand-text { color: #fff; font-weight: 800; font-size: 1.05rem; letter-spacing: 0.02em; line-height: 1.1; }
.nav__brand-text span { display: block; color: var(--primary); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav__links a {
  color: var(--text-light-muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 9px 14px;
  border-radius: 8px;
  transition: all var(--ease);
}
.nav__links a:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.nav__links a.active { color: #fff; }
.nav__links a.nav-cta {
  background: var(--primary);
  color: #fff;
  margin-left: 8px;
  box-shadow: 0 4px 12px rgba(255, 77, 77, 0.35);
}
.nav__links a.nav-cta:hover { background: var(--primary-hover); }
.nav__links a.nav-phone { color: #fff; font-weight: 700; }
.nav__links a.nav-phone:hover { color: var(--primary); background: transparent; }
@media (min-width: 881px) { .nav__links a.nav-phone { border: 1px solid rgba(255,255,255,0.22); margin-left: 4px; } }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.hamburger .bar { width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: all var(--ease); }
.hamburger.open .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 950; }
.nav-overlay.show { display: block; }

@media (max-width: 880px) {
  .hamburger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 270px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg-panel);
    border-left: 1px solid var(--border-dark);
    padding: 90px 22px 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.05rem; padding: 13px 16px; }
  .nav__links a.nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.9)),
    radial-gradient(circle at 20% 20%, #2b1416 0%, var(--bg-dark) 55%);
  color: var(--text-light);
  padding: 86px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: 50%;
  transform: translateY(-50%);
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,77,77,0.22), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 77, 77, 0.14);
  border: 1px solid rgba(255, 77, 77, 0.35);
  color: #ffd1d1;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5.4vw, 3.5rem); font-weight: 800; margin-bottom: 18px; }
.hero h1 .accent { color: var(--primary); }
.hero__lead { color: var(--text-light-muted); font-size: clamp(1.05rem, 2.2vw, 1.28rem); margin-bottom: 16px; }
.hero__meta { color: var(--text-light-muted); font-size: 1rem; margin-bottom: 30px; }
.hero__meta strong { color: #fff; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Trust strip */
.trust-strip { background: var(--bg-darker); border-top: 1px solid var(--border-dark); }
.trust-strip .container {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px;
  padding: 26px 0;
}
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--text-light-muted); }
.trust-item strong { color: #fff; display: block; font-size: 1.25rem; }
.trust-item span { font-size: 0.85rem; }
.trust-item .ti-icon { color: var(--primary); font-size: 1.6rem; line-height: 1; }

/* ==========================================================================
   Cards / Grids
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(255, 77, 77, 0.1);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.97rem; }
.card a.card-link { font-weight: 700; font-size: 0.92rem; display: inline-block; margin-top: 14px; }

/* Why-choose feature row */
.feature {
  display: flex; gap: 16px; align-items: flex-start;
}
.feature__icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 1.3rem;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feature p { color: var(--text-muted); font-size: 0.95rem; }
.section--dark .feature p { color: var(--text-light-muted); }

/* ==========================================================================
   Content / prose blocks
   ========================================================================== */
.prose { max-width: 820px; }
.prose p { margin-bottom: 18px; }
.prose h3 { font-size: 1.35rem; margin: 30px 0 10px; }
.prose ul { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; color: var(--text-body); }

.service-block {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.service-block h3 { font-size: 1.35rem; margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
.service-block h3 .num { color: var(--primary); font-size: 1rem; font-weight: 800; }
.service-block p { color: var(--text-body); }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

.price-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.price-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-lg); position: relative; }
.price-card.featured::before {
  content: "Most Popular";
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 999px;
}
.price-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.price-card .price { font-size: 2.4rem; font-weight: 800; color: var(--text-dark); margin: 8px 0 4px; }
.price-card .price small { font-size: 1rem; color: var(--text-muted); font-weight: 600; }
.price-card .price-note { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }
.price-card ul { list-style: none; text-align: left; margin: 0 0 24px; }
.price-card ul li { padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--text-body); font-size: 0.95rem; display: flex; gap: 10px; }
.price-card ul li::before { content: "\2713"; color: var(--primary); font-weight: 800; }
.price-card .btn { margin-top: auto; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quote-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.quote-card .stars { color: var(--primary); font-size: 1.05rem; margin-bottom: 12px; letter-spacing: 2px; }
.quote-card blockquote { font-size: 1.05rem; color: var(--text-dark); font-style: italic; margin-bottom: 14px; }
.quote-card .author { font-weight: 700; color: var(--primary); font-size: 0.95rem; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.info-row .info-icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(255,77,77,0.1); color: var(--primary); font-size: 1.3rem;
}
.info-row h4 { font-size: 1.05rem; margin-bottom: 4px; }
.info-row p, .info-row a { color: var(--text-body); font-size: 0.97rem; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.97rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--text-dark); }
.hours-table tr.closed td:last-child { color: var(--primary); }

.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  margin: 0 auto;
}
.form-card h2 { font-size: 1.7rem; margin-bottom: 6px; text-align: center; }
.form-card .form-sub { text-align: center; color: var(--text-muted); margin-bottom: 26px; }
form.styled { display: flex; flex-direction: column; gap: 16px; }
.field-label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: -8px; }
.contact-inputs, form.styled input, form.styled textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: var(--font);
  background: #fff;
  color: var(--text-dark);
  transition: all var(--ease);
}
form.styled textarea { min-height: 120px; resize: vertical; }
.contact-inputs:focus, form.styled input:focus, form.styled textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.18);
  outline: none;
}
form.styled button { margin-top: 6px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.92); font-size: 1.1rem; margin-bottom: 26px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-band .btn--ghost { border-color: #fff; }
.cta-band .btn--primary { background: #fff; color: var(--primary-dark); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }
.cta-band .btn--primary:hover { background: #141414; color: #fff; }
.cta-band .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Page header (sub-pages)
   ========================================================================== */
.page-head {
  background: linear-gradient(rgba(0,0,0,0.88), rgba(0,0,0,0.92)),
              radial-gradient(circle at 80% 0%, #2b1416 0%, var(--bg-dark) 60%);
  color: var(--text-light);
  padding: 64px 0;
  text-align: center;
}
.page-head h1 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin-bottom: 12px; }
.page-head p { color: var(--text-light-muted); max-width: 640px; margin: 0 auto; font-size: 1.08rem; }
.breadcrumb { font-size: 0.85rem; color: var(--text-light-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--text-light-muted); }
.breadcrumb a:hover { color: #fff; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-darker);
  color: var(--text-light-muted);
  padding: 56px 0 26px;
  border-top: 1px solid var(--border-dark);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; } }

.footer-brand img { height: 54px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; }
@media (max-width: 760px) { .footer-brand p { margin: 0 auto; } .footer-brand img { margin: 0 auto 14px; } }

.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a, .footer-col ul li { color: var(--text-light-muted); font-size: 0.92rem; }
.footer-col ul li a:hover { color: #fff; }

.social-links { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
@media (max-width: 760px) { .social-links { justify-content: center; } }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: var(--text-light-muted);
  transition: all var(--ease);
}
.social-links a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.social-links svg { width: 20px; height: 20px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* utility */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.lead { font-size: 1.12rem; color: var(--text-muted); }
