/* =========================================================
   Old Crow Electrical Services LLC — Main Stylesheet
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --accent: #DE381E;          /* brand red */
  --accent-dark: #c12d16;     /* hover red */
  --dark: #0d0d0d;            /* near-black sections */
  --dark-2: #111315;
  --green-card: #F2F8EA;      /* light green card bg */
  --text: #333333;
  --muted: #6b7280;
  --white: #ffffff;
  --line: #e7e7e7;

  --heading-font: "Quicksand", "Segoe UI", sans-serif;
  --body-font: "Open Sans", "Segoe UI", sans-serif;
  --accent-font: "Inter", "Open Sans", sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: #0e0e0e;
  line-height: 1.18;
  margin: 0 0 .6rem;
}

p { margin: 0 0 1rem; }

a { text-decoration: none; color: inherit; transition: color .25s ease; }
img { max-width: 100%; height: auto; display: block; }

.container-x {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.text-accent { color: var(--accent) !important; }
.bg-dark-x { background: var(--dark) !important; }

/* eyebrow label e.g. "ABOUT US" */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--accent-font);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow i { font-size: 13px; }

.section-title {
  font-size: clamp(26px, 3.4vw, 40px);
  color: var(--accent);
  font-weight: 700;
}
.section-title.light { color: #fff; }

/* ---------- Buttons ---------- */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 26px;
  font-family: var(--accent-font);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(222,56,30,.32);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0e0e0e;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 26px;
  font-family: var(--accent-font);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.btn-dark:hover { background: var(--accent); color:#fff; transform: translateY(-2px); }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: #0b0b0b;
  color: #d7d7d7;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container-x {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  flex-wrap: wrap;
  gap: 6px 22px;
}
.topbar-info { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-info a, .topbar-info span { display: inline-flex; align-items: center; gap: 8px; color: #d7d7d7; }
.topbar-info a:hover { color: var(--accent); }
.topbar-info i { color: var(--accent); }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: transform .2s ease, background .2s ease;
}
.topbar-social a:hover { transform: translateY(-2px); background: #fff; color: var(--accent); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  background: #0b0b0b;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header .container-x {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 60px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  color: #f2f2f2;
  font-family: var(--accent-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .02em;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--accent);
  transition: width .28s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--accent); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-call { display: flex; align-items: center; gap: 12px; }
.header-call .call-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  animation: ring 2.2s ease-in-out infinite;
}
@keyframes ring {
  0%,100% { transform: rotate(0); }
  5%,15% { transform: rotate(14deg); }
  10%,20% { transform: rotate(-14deg); }
  25% { transform: rotate(0); }
}
.header-call .call-meta small { display:block; color: var(--accent); font-size: 12px; font-family: var(--accent-font); }
.header-call .call-meta strong { display:block; color:#fff; font-size: 17px; font-family: var(--heading-font); }

.nav-toggle {
  display: none;
  background: none; border: none;
  color: #fff; font-size: 26px; cursor: pointer;
}

/* mobile nav panel */
.mobile-nav {
  display: none;
  background: #0b0b0b;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a {
  display: block;
  color: #eee;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: var(--accent-font);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--accent); background: rgba(255,255,255,.03); }

/* =========================================================
   HERO (home)
   ========================================================= */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 80% 20%, #1a1614 0%, #0b0b0b 55%, #060606 100%);
  color: #fff;
  overflow: hidden;
  padding: 56px 0 64px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../images/diakopi_reymatos_lampa_22.jpg") right center / cover no-repeat;
  opacity: .16;
  z-index: 0;
}
.hero .container-x { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 30px;
  align-items: center;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent);
  font-family: var(--accent-font);
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  font-size: 14px; margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 26px;
}
.hero h1 .red { color: var(--accent); display: block; }

.hero-lower { display: grid; grid-template-columns: 250px 1fr; gap: 24px; align-items: center; margin-top: 14px; }

.hero-photo {
  width: 250px; height: 250px; border-radius: 50%;
  border: 3px solid var(--accent);
  padding: 6px;
  overflow: hidden;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.hero-stats { display: flex; flex-direction: column; gap: 4px; }
.hero-stat { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.hero-stat:last-child { border-bottom: none; }
.hero-stat .num { color: var(--accent); font-family: var(--heading-font); font-weight: 700; font-size: 30px; line-height: 1; }
.hero-stat .label { color: #e9e9e9; font-size: 14px; }

/* right column image circle */
.hero-right { display: flex; flex-direction: column; gap: 18px; }
.hero-photo-lg {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1 / 1;
  margin-left: auto;
  border-radius: 50%;
  border: 3px solid var(--accent);
  padding: 6px;
  overflow: hidden;
}
.hero-photo-lg img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.hero-blurb { display: flex; gap: 14px; align-items: flex-start; max-width: 460px; margin-left: auto; }
.hero-blurb i { color: #ffd233; font-size: 26px; margin-top: 2px; }
.hero-blurb p { margin: 0; color: #e4e4e4; font-size: 15px; }

/* =========================================================
   FEATURE CARDS
   ========================================================= */
.features { padding: 56px 0; background: #fff; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--green-card);
  border-radius: var(--radius-lg);
  padding: 36px 22px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 16px 34px rgba(0,0,0,.10); }
.feature-card .ic {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
}
.feature-card h3 { font-size: 20px; color: #111; margin: 0; }
.feature-card.is-active { background: #0d0d0d; }
.feature-card.is-active h3 { color: #fff; }
.feature-card.is-active .ic { background: #fff; color: var(--accent); }

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about { padding: 30px 0 70px; }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.about h2 { font-size: clamp(28px,3.4vw,40px); color: var(--accent); margin-bottom: 18px; }
.about p { color: #555; }
.about-check {
  background: var(--green-card);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 22px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px;
}
.about-check .item { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: #2a2a2a; font-size: 15px; }
.about-check .item i { color: var(--accent); margin-top: 3px; }
.about-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.about-actions .call { display: flex; align-items: center; gap: 12px; }
.about-actions .call .ic { width: 44px; height:44px; border-radius:50%; background: var(--accent); color:#fff; display:inline-flex; align-items:center; justify-content:center; }
.about-actions .call small { display:block; color: var(--accent); font-size:13px; }
.about-actions .call strong { display:block; color:#111; font-size:18px; font-family: var(--heading-font); }

.about-media { position: relative; }
.about-media .arch {
  border-radius: 220px 220px 14px 14px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
}
.about-media .arch img { width: 100%; height: 480px; object-fit: cover; }
.exp-badge {
  position: absolute;
  left: -16px; bottom: 36px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
  padding: 16px 22px;
  text-align: center;
  border-bottom: 4px solid var(--accent);
}
.exp-badge .num { color: var(--accent); font-family: var(--heading-font); font-weight: 700; font-size: 38px; line-height: 1; }
.exp-badge .label { color: #444; font-size: 13px; }

/* =========================================================
   WHO WE ARE BAND
   ========================================================= */
.whoweare { background: #0d0d0d; color: #fff; padding: 30px 0; }
.whoweare .container-x { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.whoweare-left { display: flex; align-items: center; gap: 18px; max-width: 560px; }
.whoweare-left .ic { color: var(--accent); font-size: 30px; }
.whoweare-left .small { color: var(--accent); font-family: var(--accent-font); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; }
.whoweare-left h3 { color: #fff; font-size: 22px; margin: 4px 0 0; }
.whoweare-badges { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.whoweare-badges img { height: 74px; width: auto; }

/* =========================================================
   GET IN TOUCH / PROVEN APPROACH
   ========================================================= */
.approach { position: relative; }
.approach-grid { display: grid; grid-template-columns: 1fr 1.05fr; }
.approach-media {
  min-height: 560px;
  background: url("../images/electrical-repair.jpg") center / cover no-repeat;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.contact-card {
  background: rgba(13,13,13,.92);
  border-radius: 14px;
  padding: 30px 26px;
  width: 100%; max-width: 340px;
  color: #fff;
}
.contact-card h3 { color: #fff; font-size: 24px; text-align: center; margin-bottom: 20px; }
.form-field {
  width: 100%;
  background: #1d1f22;
  border: 1px solid #2c2f33;
  border-radius: 8px;
  color: #fff;
  padding: 13px 16px;
  margin-bottom: 14px;
  font-family: var(--body-font);
  font-size: 14px;
}
.form-field::placeholder { color: #9aa0a6; }
.form-field:focus { outline: none; border-color: var(--accent); }
.contact-card .btn-accent { width: 100%; justify-content: center; }

.approach-body { padding: 56px 46px; }
.approach-body h2 { font-size: clamp(26px,3vw,38px); color: var(--accent); margin-bottom: 16px; }
.approach-body > p { color: #555; }
.spec-title { font-weight: 700; color: #111; margin: 18px 0 14px; font-family: var(--heading-font); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
.spec-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--green-card);
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 600; color: #2a2a2a; font-size: 15px;
}
.spec-item i { color: var(--accent); }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 70px 0;
  background: url("../images/CTA.webp") center / cover no-repeat;
}
.cta-band::before { content:""; position:absolute; inset:0; background: rgba(8,8,8,.78); }
.cta-band .container-x { position: relative; z-index: 2; max-width: 820px; }
.cta-band h2 { color: #fff; font-size: clamp(26px,3.4vw,40px); margin-bottom: 16px; }
.cta-band p { color: #d8d8d8; }
.cta-band .trust { color: #fff; font-weight: 600; margin: 16px 0 26px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-actions .or { color: #cfcfcf; font-weight: 600; }
.cta-actions .call { display: flex; align-items: center; gap: 12px; text-align: left; }
.cta-actions .call .ic { width: 46px; height:46px; border-radius:50%; background: var(--accent); color:#fff; display:inline-flex; align-items:center; justify-content:center; }
.cta-actions .call small { display:block; color: var(--accent); font-size: 13px; }
.cta-actions .call strong { display:block; color:#fff; font-size: 19px; font-family: var(--heading-font); }

/* =========================================================
   PROJECTS
   ========================================================= */
.projects { padding: 70px 0; }
.projects-head { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; margin-bottom: 34px; }
.projects-head h2 { font-size: clamp(26px,3.2vw,40px); color: var(--accent); margin: 0; }
.projects-head p { color: #555; margin: 0; }
.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.project-card { border-radius: 14px; overflow: hidden; position: relative; }
.project-card img { width: 100%; height: 230px; object-fit: cover; transition: transform .5s ease; }
.project-card:hover img { transform: scale(1.08); }
.project-card::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(222,56,30,.0), rgba(222,56,30,0));
  transition: background .35s ease;
}
.project-card:hover::after { background: linear-gradient(to top, rgba(222,56,30,.35), rgba(0,0,0,0)); }

/* =========================================================
   PROCESS
   ========================================================= */
.process {
  position: relative;
  color: #fff;
  padding: 70px 0 80px;
  background: url("../images/how-it-works-1.webp") center / cover no-repeat;
}
.process::before { content:""; position:absolute; inset:0; background: rgba(10,10,10,.82); }
.process .container-x { position: relative; z-index: 2; }
.process-head { text-align: center; margin-bottom: 46px; }
.process-head .eyebrow { color: var(--accent); }
.process-head h2 { color: #fff; font-size: clamp(26px,3.4vw,40px); }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.process-step { text-align: center; padding: 0 14px; }
.step-ic {
  position: relative;
  width: 78px; height: 78px; margin: 0 auto 22px;
  border-radius: 50%;
  background: #161616;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 30px;
}
.step-ic .step-num {
  position: absolute; top: -8px; right: -8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 700; font-family: var(--accent-font);
  display: flex; align-items: center; justify-content: center;
}
.process-step h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.process-step p { color: #c8c8c8; font-size: 15px; margin: 0; }

/* =========================================================
   STATS BAND
   ========================================================= */
.stats-band { background: var(--green-card); padding: 46px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-block .num { color: #111; font-family: var(--heading-font); font-weight: 700; font-size: clamp(30px,3.4vw,42px); line-height: 1; }
.stat-block:nth-child(2) .num, .stat-block:nth-child(4) .num { color: var(--accent); }
.stat-block .label { color: #444; font-size: 15px; margin-top: 6px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { padding: 70px 0; }
.testimonials-head { text-align: center; margin-bottom: 40px; }
.testimonials-head h2 { font-size: clamp(26px,3.4vw,40px); color: var(--accent); }
.t-viewport { overflow: hidden; }
.t-track { display: flex; transition: transform .5s ease; }
.t-slide { flex: 0 0 33.3333%; padding: 0 12px; box-sizing: border-box; }
.t-card {
  background: var(--green-card);
  border-radius: 16px;
  padding: 30px 26px 28px;
  position: relative;
  height: 100%;
}
.t-card .quote-badge {
  position: absolute; top: 0; right: 22px;
  width: 46px; height: 54px;
  background: #0d0d0d; color: var(--accent);
  border-radius: 0 0 12px 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.t-person { display: flex; flex-direction: column; margin-bottom: 14px; }
.t-person .name { font-family: var(--heading-font); font-weight: 700; font-size: 19px; color: #111; }
.t-person .role { color: var(--accent); font-size: 14px; }
.t-card .stars { color: #f5a623; margin-bottom: 10px; font-size: 14px; }
.t-card p { color: #555; font-size: 15px; margin: 0; font-style: italic; }
.t-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.t-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: #d7d7d7; cursor: pointer; padding: 0;
  transition: background .25s ease, width .25s ease;
}
.t-dots button.active { background: var(--accent); width: 26px; border-radius: 6px; }

/* =========================================================
   GOOGLE REVIEWS BAND
   ========================================================= */
.reviews-band {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 56px 0;
  margin: 0 auto;
  background: url("../images/Electrical_.jpg") center / cover no-repeat;
}
.reviews-inner {
  max-width: 1100px; margin: 0 auto;
  background: linear-gradient(90deg, rgba(8,8,8,.92), rgba(8,8,8,.7));
  border-radius: 16px;
  padding: 44px 30px;
}
.reviews-band h2 { color: #fff; font-size: clamp(22px,3vw,34px); margin-bottom: 14px; }
.reviews-band .rating { font-size: 44px; font-weight: 700; font-family: var(--heading-font); color: #fff; line-height: 1; }
.reviews-band .stars { color: var(--accent); font-size: 30px; margin: 12px 0 22px; letter-spacing: 4px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #0a0a0a; color: #c7c7c7; padding: 60px 0 0; }
.footer-top { background: url("../images/diakopi_reymatos_lampa_22.jpg") center / cover; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand img { height: 76px; margin-bottom: 16px; }
.footer-brand p { color: #a9a9a9; font-size: 14.5px; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease, background .2s ease;
}
.footer-social a:hover { transform: translateY(-3px); background: #fff; color: var(--accent); }
.footer-col h4 { color: #fff; font-size: 19px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content:""; position:absolute; left:0; bottom:0; width: 38px; height: 3px; background: var(--accent); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: #b6b6b6; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--accent); transform: translateX(3px); }
.footer-col ul li a i { color: var(--accent); font-size: 12px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; color: #b6b6b6; font-size: 14.5px; align-items: flex-start; }
.footer-contact li i { color: var(--accent); margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 50px; padding: 20px 0; text-align: center; color: #9a9a9a; font-size: 14px; }
.footer-bottom a { color: var(--accent); }

/* =========================================================
   PAGE BANNER (inner pages)
   ========================================================= */
.page-banner {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 86px 0;
  background: url("../images/diakopi_reymatos_lampa_22.jpg") center / cover no-repeat;
}
.page-banner::before { content:""; position:absolute; inset:0; background: rgba(8,8,8,.78); }
.page-banner .container-x { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: clamp(34px,4.5vw,52px); margin-bottom: 10px; }
.breadcrumb-x { display: flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--accent-font); font-size: 15px; }
.breadcrumb-x a { color: #d6d6d6; }
.breadcrumb-x a:hover { color: var(--accent); }
.breadcrumb-x .sep { color: var(--accent); }
.breadcrumb-x .current { color: var(--accent); }

/* =========================================================
   SERVICES GRID (services page)
   ========================================================= */
.services-list { padding: 70px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.service-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 32px 26px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(0,0,0,.10); border-color: transparent; }
.service-card .ic {
  width: 70px; height: 70px; border-radius: 16px;
  background: var(--green-card); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 30px; margin-bottom: 20px;
  transition: background .3s ease, color .3s ease;
}
.service-card:hover .ic { background: var(--accent); color: #fff; }
.service-card h3 { font-size: 21px; color: #111; margin-bottom: 10px; }
.service-card p { color: #666; font-size: 15px; margin: 0; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-section { padding: 70px 0; }
.contact-intro { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.contact-intro h2 { font-size: clamp(28px,3.6vw,42px); color: var(--accent); }
.contact-intro p { color: #555; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-card-wide { grid-column: 1 / -1; }
.info-card {
  background: var(--green-card);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
  transition: transform .3s ease;
}
.info-card:hover { transform: translateY(-6px); }
.info-card .ic {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 16px;
}
.info-card h4 { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.info-card p { color: #333; font-size: 15px; margin: 0; word-break: break-word; }
.info-card .socials { display: flex; gap: 10px; justify-content: center; }
.info-card .socials a { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color:#fff; display:inline-flex; align-items:center; justify-content:center; transition: transform .2s ease; }
.info-card .socials a:hover { transform: translateY(-3px); }
.quote-form {
  background: #0d0d0d;
  border-radius: 18px;
  padding: 38px 32px;
  color: #fff;
}
.quote-form h3 { color: #fff; font-size: 26px; margin-bottom: 22px; }
.quote-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form textarea.form-field { min-height: 130px; resize: vertical; }
.quote-form .btn-accent { width: 100%; justify-content: center; margin-top: 4px; }

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

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
