/* ============================================================
   Repair Master — Main Stylesheet
   Theme: Dark (#111 bg) + Orange (#f97316 accent)
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --clr-bg:        #0f0f0f;
  --clr-bg2:       #161616;
  --clr-bg3:       #1e1e1e;
  --clr-border:    #2a2a2a;
  --clr-orange:    #f97316;
  --clr-orange-dk: #c2560e;
  --clr-orange-lt: #fb923c;
  --clr-white:     #f5f5f5;
  --clr-muted:     #9a9a9a;
  --clr-text:      #d4d4d4;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:   8px;
  --radius-lg:16px;
  --shadow:   0 4px 24px rgba(0,0,0,.5);
  --shadow-orange: 0 0 20px rgba(249,115,22,.25);

  --transition: .25s ease;
  --max-w: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--clr-orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-orange-lt); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--clr-white);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }

/* ---------- Utility ---------- */
.container      { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section        { padding: 5rem 0; }
.section--alt   { background: var(--clr-bg2); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { color: var(--clr-muted); max-width: 600px; margin: .75rem auto 0; }
.section-label  {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: .5rem;
}
.highlight      { color: var(--clr-orange); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--clr-orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--clr-orange-dk);
  color: #fff;
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
  background: transparent;
}
.btn-outline:hover {
  background: var(--clr-orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}
.badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(249,115,22,.15);
  color: var(--clr-orange);
  border: 1px solid rgba(249,115,22,.3);
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.text-center { text-align: center; }
.text-muted  { color: var(--clr-muted); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,15,15,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
}
.header.scrolled {
  background: rgba(15,15,15,.98);
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--clr-orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-white);
}
.nav-logo-tagline {
  font-size: .65rem;
  color: var(--clr-orange);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .5rem .9rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  color: var(--clr-text);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-orange);
  background: rgba(249,115,22,.1);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  font-size: .85rem;
  color: var(--clr-muted);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nav-phone span { color: var(--clr-orange); font-weight: 600; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--clr-bg2);
  border-bottom: 1px solid var(--clr-border);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: .5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .75rem 1rem;
  border-radius: var(--radius);
  color: var(--clr-text);
  font-weight: 500;
  transition: all var(--transition);
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--clr-orange);
  background: rgba(249,115,22,.08);
}
.mobile-menu .btn { margin-top: .5rem; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: var(--clr-bg);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-orange);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,.5); }
  50%       { box-shadow: 0 0 0 8px rgba(249,115,22,0); }
}
.hero-eyebrow span {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--clr-orange);
}
.hero h1 { margin-bottom: 1.25rem; }
.hero p.lead {
  font-size: 1.1rem;
  color: var(--clr-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: var(--clr-muted);
  margin-top: .2rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-card-stack {
  position: relative;
  width: 320px;
}
.hero-main-card {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}
.hero-main-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--clr-orange) 0%, transparent 60%);
  z-index: -1;
  opacity: .4;
}
.hero-card-icon {
  width: 56px; height: 56px;
  background: rgba(249,115,22,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(249,115,22,.3);
}
.hero-card-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: .35rem;
}
.hero-card-sub { font-size: .85rem; color: var(--clr-muted); }
.hero-badge-float {
  position: absolute;
  bottom: -20px;
  right: -30px;
  background: var(--clr-orange);
  color: #fff;
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  box-shadow: var(--shadow-orange);
  white-space: nowrap;
}
.hero-badge-float span {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  opacity: .85;
}

/* ============================================================
   TRUST BAR (brands)
   ============================================================ */
.trust-bar {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 1.5rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--clr-muted);
  font-weight: 600;
  white-space: nowrap;
}
.trust-brands {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.brand-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--clr-text);
  transition: all var(--transition);
}
.brand-pill:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
  background: rgba(249,115,22,.08);
}
.brand-pill .icon { font-size: 1rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: rgba(249,115,22,.4);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), var(--shadow-orange);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
}
.service-card h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.service-card p { font-size: .87rem; color: var(--clr-muted); margin: 0; line-height: 1.6; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-icon {
  width: 44px; height: 44px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-content h4 { color: var(--clr-white); margin-bottom: .2rem; }
.why-content p  { font-size: .87rem; color: var(--clr-muted); margin: 0; }
.why-visual {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}
.why-visual::before {
  content: '';
  position: absolute;
  top: -1px; left: 2rem;
  right: 2rem; height: 3px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-orange-lt));
  border-radius: 0 0 3px 3px;
}
.contact-info-card { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem;
  background: var(--clr-bg2);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
}
.contact-info-icon {
  font-size: 1.25rem;
  color: var(--clr-orange);
  flex-shrink: 0;
  margin-top: .1rem;
}
.contact-info-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-muted);
  font-weight: 600;
  margin-bottom: .2rem;
}
.contact-info-value {
  font-size: .9rem;
  color: var(--clr-white);
  font-weight: 500;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%;
  right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--clr-orange), transparent);
  z-index: 0;
}
.step-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--clr-bg3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.step-card:hover { border-color: rgba(249,115,22,.4); transform: translateY(-3px); }
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--clr-orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.step-card p  { font-size: .82rem; color: var(--clr-muted); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(249,115,22,.3);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.stars { color: var(--clr-orange); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.testimonial-text {
  font-size: .9rem;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--clr-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name  { font-size: .88rem; font-weight: 600; color: var(--clr-white); }
.author-title { font-size: .75rem; color: var(--clr-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1a0a00 0%, #2d1200 50%, #1a0a00 100%);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(249,115,22,.2) 0%, transparent 70%);
}
.cta-banner h2 { margin-bottom: .75rem; }
.cta-banner p  { color: var(--clr-muted); max-width: 520px; margin: 0 auto 2rem; }
.cta-actions   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-sidebar-card {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.contact-sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.sidebar-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .75rem 0;
  border-bottom: 1px solid var(--clr-border);
}
.sidebar-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-item-icon { font-size: 1.1rem; color: var(--clr-orange); flex-shrink: 0; margin-top: .15rem; }
.sidebar-item-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--clr-muted); font-weight: 600; margin-bottom: .15rem; }
.sidebar-item-value { font-size: .88rem; color: var(--clr-white); font-weight: 500; }
.form-card {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: .45rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group label span { color: var(--clr-orange); }
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-white);
  font-size: .92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control::placeholder { color: var(--clr-muted); }
.form-control:focus {
  outline: none;
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.form-control.error  { border-color: #ef4444; }
.form-error-msg { font-size: .78rem; color: #ef4444; margin-top: .3rem; display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
select.form-control option { background: var(--clr-bg2); }
.form-note { font-size: .78rem; color: var(--clr-muted); margin-top: .75rem; }
.form-success {
  display: none;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius);
  padding: 1rem;
  color: #86efac;
  text-align: center;
  margin-top: 1rem;
  font-size: .9rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-block {
  position: relative;
  background: var(--clr-bg3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 3rem;
  text-align: center;
}
.about-image-block .big-icon { font-size: 8rem; line-height: 1; margin-bottom: 1rem; }
.about-image-block p { font-size: .87rem; color: var(--clr-muted); margin: 0; }
.about-tag {
  position: absolute;
  top: -15px; right: 1.5rem;
  background: var(--clr-orange);
  color: #fff;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.about-content .section-label { display: block; margin-bottom: .5rem; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p  { color: var(--clr-muted); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  border-color: rgba(249,115,22,.4);
  transform: translateY(-3px);
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--clr-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
  border: 3px solid rgba(249,115,22,.3);
}
.team-name  { font-size: 1rem; font-weight: 600; color: var(--clr-white); margin-bottom: .25rem; }
.team-role  { font-size: .8rem; color: var(--clr-orange); font-weight: 600; margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .08em; }
.team-bio   { font-size: .82rem; color: var(--clr-muted); margin: 0; }
.value-list { display: flex; flex-direction: column; gap: 1rem; }
.value-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  border-left: 3px solid var(--clr-orange);
  transition: all var(--transition);
}
.value-item:hover { background: rgba(249,115,22,.04); }
.value-icon { font-size: 1.5rem; flex-shrink: 0; }
.value-text h4  { color: var(--clr-white); margin-bottom: .15rem; }
.value-text p   { font-size: .82rem; color: var(--clr-muted); margin: 0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: 72px;
  background: var(--clr-bg2);
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 100%;
  background: radial-gradient(ellipse at right center, rgba(249,115,22,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  padding: 4rem 0 3.5rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--clr-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--clr-muted); }
.breadcrumb a:hover { color: var(--clr-orange); }
.breadcrumb-sep { color: var(--clr-border); }
.breadcrumb-current { color: var(--clr-orange); font-weight: 600; }
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p.lead { color: var(--clr-muted); max-width: 560px; font-size: 1.05rem; }

/* ============================================================
   SERVICES PAGE — DETAILED CARDS
   ============================================================ */
.service-detail-card {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: all var(--transition);
}
.service-detail-card:hover {
  border-color: rgba(249,115,22,.35);
  box-shadow: 0 6px 28px rgba(0,0,0,.35);
}
.service-detail-icon {
  width: 60px; height: 60px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.service-detail-card:hover .service-detail-icon {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
}
.service-detail-body h3 { margin-bottom: .4rem; }
.service-detail-body p  { font-size: .87rem; color: var(--clr-muted); margin-bottom: .75rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.service-tag {
  font-size: .72rem;
  padding: .2rem .6rem;
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: 999px;
  color: var(--clr-muted);
}

/* ============================================================
   MAP / LOCATION
   ============================================================ */
.map-section {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.map-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.map-placeholder {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--clr-muted);
  font-size: .9rem;
}
.map-placeholder .map-icon { font-size: 3rem; color: var(--clr-orange); }
.map-directions-btn {
  margin-top: .5rem;
  font-size: .82rem;
}
.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--clr-border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: .65rem 0; font-size: .87rem; }
.hours-table td:first-child { color: var(--clr-muted); width: 50%; }
.hours-table td:last-child  { color: var(--clr-white); font-weight: 500; }
.hours-table .open   { color: #86efac; }
.hours-table .closed { color: #f87171; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--clr-border);
}
.footer-brand p {
  font-size: .87rem;
  color: var(--clr-muted);
  margin: 1rem 0 1.5rem;
  max-width: 260px;
  line-height: 1.7;
}
.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--clr-muted);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: #fff;
}
.footer-col h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--clr-orange);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .87rem;
  color: var(--clr-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: var(--clr-orange); }
.footer-links a::before { content: '›'; color: var(--clr-orange); }
.footer-contact-item {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--clr-muted);
  margin-bottom: .75rem;
}
.footer-contact-item .fc-icon { color: var(--clr-orange); flex-shrink: 0; margin-top: .1rem; }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p {
  font-size: .8rem;
  color: var(--clr-muted);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}
.footer-bottom-links a { font-size: .8rem; color: var(--clr-muted); }
.footer-bottom-links a:hover { color: var(--clr-orange); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--clr-orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-orange);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover   { background: var(--clr-orange-dk); transform: translateY(-2px); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: .7rem 1.2rem .7rem .9rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 500;
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  color: #fff;
}
.whatsapp-icon { font-size: 1.3rem; }

/* ============================================================
   NOTICE / ALERT
   ============================================================ */
.notice {
  padding: .6rem 1rem;
  border-radius: var(--radius);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.notice-warning { background: rgba(251,191,36,.1); border: 1px solid rgba(251,191,36,.25); color: #fcd34d; }
.notice-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25); color: #86efac; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .6s ease both; }
.delay-1    { animation-delay: .1s; }
.delay-2    { animation-delay: .2s; }
.delay-3    { animation-delay: .3s; }
.delay-4    { animation-delay: .4s; }

/* Intersection observer driven */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4          { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .process-steps   { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .hero-grid       { gap: 2.5rem; }
  .contact-layout  { grid-template-columns: 1fr; }
  .map-layout      { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section        { padding: 3.5rem 0; }
  .grid-2, .grid-3, .grid-4  { grid-template-columns: 1fr; }
  .hero-grid      { grid-template-columns: 1fr; padding: 3rem 0; }
  .hero-visual    { display: none; }
  .why-grid       { grid-template-columns: 1fr; }
  .about-intro    { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger      { display: flex; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .service-detail-card { flex-direction: column; }
  .form-row       { grid-template-columns: 1fr; }
  .cta-banner     { padding: 2.5rem 1.5rem; }
  .hero-stats     { gap: 1.25rem; }
}
@media (max-width: 480px) {
  .hero-actions   { flex-direction: column; }
  .trust-inner    { flex-direction: column; text-align: center; }
  .cta-actions    { flex-direction: column; align-items: center; }
  .hero-stat-value { font-size: 1.5rem; }
  .whatsapp-float { left: 1rem; bottom: 1rem; padding: .65rem; border-radius: 50%; }
  .whatsapp-float span { display: none; }
  .back-to-top    { right: 1rem; bottom: 5rem; }
}
