/* ==========================================================================
   MAARAN CONSTRUCTION — Core Stylesheet
   Design system: "Site Blueprint" — blueprint-grid textures, ruler-tick
   eyebrows and dashed survey-lines nod to the engineering/planning process
   behind every build. Green = growth/approval, Orange = site/safety accent.
   ========================================================================== */

:root {
  /* Color tokens */
  --green: #16A34A;
  --green-dark: #0E7C38;
  --green-light: #DCFCE7;
  --orange: #F97316;
  --orange-dark: #C2540B;
  --charcoal: #0E1B14;      /* deep blueprint-navy-green, header/footer */
  --charcoal-soft: #16281F;
  --ink: #1F2937;
  --ink-soft: #5B6472;
  --paper: #FFFFFF;
  --mist: #F5F6F4;          /* light gray accent bg */
  --line: #E4E7E2;

  /* Type */
  --font-display: 'Outfit', 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(14, 27, 20, 0.06);
  --shadow-md: 0 10px 30px rgba(14, 27, 20, 0.10);
  --shadow-lg: 0 25px 60px rgba(14, 27, 20, 0.18);
  --ease: cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ==========================================================================
   Blueprint grid texture (signature motif)
   ========================================================================== */

.blueprint-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.blueprint-bg.on-light {
  background-image:
    linear-gradient(rgba(14,27,20,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,27,20,0.045) 1px, transparent 1px);
}

.corner-ticks { position: absolute; inset: 0; pointer-events: none; }
.corner-ticks span {
  position: absolute;
  width: 26px; height: 26px;
  border: 2px solid rgba(249,115,22,0.55);
}
.corner-ticks .tl { top: 24px; left: 24px; border-right: none; border-bottom: none; }
.corner-ticks .tr { top: 24px; right: 24px; border-left: none; border-bottom: none; }
.corner-ticks .bl { bottom: 24px; left: 24px; border-right: none; border-top: none; }
.corner-ticks .br { bottom: 24px; right: 24px; border-left: none; border-top: none; }

/* Eyebrow: ruler-tick label used above section headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 34px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 6px, transparent 6px 10px);
}

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 17px; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22,163,74,0.28);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: 0 16px 30px rgba(22,163,74,0.34); }

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(249,115,22,0.28);
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 16px 30px rgba(249,115,22,0.34); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-3px); }

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--line);
}
.btn-outline-dark:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-3px); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn svg { width: 18px; height: 18px; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 22px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(14,27,20,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  box-shadow: 0 6px 16px rgba(22,163,74,0.35);
  flex-shrink: 0;
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #fff; letter-spacing: 0.01em; }
.brand-text .tag { font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--orange); font-weight: 600; margin-top: 3px; }

.main-nav ul { display: flex; gap: 34px; align-items: center; }
.main-nav a {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}
.main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 9px; color: #fff; font-size: 14px; font-weight: 500; }
.header-phone svg { width: 18px; height: 18px; color: var(--orange); }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: #fff; transition: transform .3s, opacity .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero (page-level, reused with modifiers)
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
  padding-top: 100px;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,17,13,0.78) 0%, rgba(9,17,13,0.55) 45%, rgba(9,17,13,0.92) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero .eyebrow { color: #B9F3CE; }
.hero .eyebrow::before { background: repeating-linear-gradient(90deg, var(--orange) 0 6px, transparent 6px 10px); }
.hero h1 {
  color: #fff;
  font-size: clamp(38px, 5.6vw, 68px);
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero p.lead {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-stats {
  position: relative; z-index: 2;
  display: flex;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 28px;
  max-width: 640px;
}
.hero-stats .stat { padding-right: 40px; margin-right: 40px; border-right: 1px solid rgba(255,255,255,0.14); }
.hero-stats .stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stats .stat .num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: #fff; }
.hero-stats .stat .num span { color: var(--orange); }
.hero-stats .stat .label { font-size: 12.5px; color: rgba(255,255,255,0.65); letter-spacing: 0.03em; margin-top: 2px; }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 34px; background: rgba(255,255,255,0.4); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--orange); animation: scrollLine 2s infinite ease-in-out; }
@keyframes scrollLine { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

/* Page hero (inner pages, shorter) */
.page-hero {
  min-height: 46vh;
  padding-top: 130px;
  padding-bottom: 60px;
}
.page-hero h1 { font-size: clamp(32px, 4.6vw, 52px); }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--orange); }

/* ==========================================================================
   Reveal animation
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: .1s; }
.reveal-delay-2.in-view { transition-delay: .2s; }
.reveal-delay-3.in-view { transition-delay: .3s; }
.reveal-delay-4.in-view { transition-delay: .4s; }
.reveal-delay-5.in-view { transition-delay: .5s; }

/* ==========================================================================
   About preview / split sections
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 110px 0;
}
.split.reverse .split-media { order: 2; }
.split.reverse .split-text { order: 1; }

.split-media { position: relative; }
.split-media .frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-media .frame img { width: 100%; height: 460px; object-fit: cover; transition: transform .6s var(--ease); }
.split-media .frame:hover img { transform: scale(1.06); }

.split-media .badge-card {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 250px;
}
.split-media .badge-card .icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-light);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.split-media .badge-card .icon svg { width: 24px; height: 24px; color: var(--green-dark); }
.split-media .badge-card .num { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--charcoal); }
.split-media .badge-card .txt { font-size: 12.5px; color: var(--ink-soft); }

.split-media .ring-accent {
  position: absolute; top: -30px; left: -30px;
  width: 130px; height: 130px;
  border: 10px solid var(--green-light);
  border-radius: 50%;
  z-index: -1;
}

.split-text p { color: var(--ink-soft); margin-bottom: 18px; font-size: 16px; }
.split-text .check-list { margin: 26px 0; display: grid; gap: 14px; }
.split-text .check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--ink); }
.split-text .check-list svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* ==========================================================================
   Why choose / feature cards
   ========================================================================== */

.why-us { background: var(--mist); padding: 110px 0; position: relative; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid var(--line);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card .icon-wrap {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.feature-card .icon-wrap svg { width: 28px; height: 28px; color: #fff; }
.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: 14.5px; }

/* ==========================================================================
   Services
   ========================================================================== */

.services-section { padding: 110px 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-light);
  display: grid; place-items: center;
  margin-bottom: 20px;
  transition: background .35s;
}
.service-card:hover .icon-wrap { background: var(--green); }
.service-card .icon-wrap svg { width: 27px; height: 27px; color: var(--green-dark); transition: color .35s; }
.service-card:hover .icon-wrap svg { color: #fff; }
.service-card h3 { font-size: 18.5px; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; }
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--green-dark);
}
.service-card .learn-more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.service-card:hover .learn-more svg { transform: translateX(5px); }

.services-cta-row { display: flex; justify-content: center; margin-top: 52px; }

/* Services page: benefits list variant */
.service-card .benefits { margin-top: 14px; display: grid; gap: 8px; }
.service-card .benefits li { font-size: 13.5px; color: var(--ink-soft); display: flex; gap: 8px; align-items: flex-start; }
.service-card .benefits svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }

/* ==========================================================================
   Work process (real sequence — numbered blueprint pins are appropriate)
   ========================================================================== */

.process-section { padding: 110px 0; background: var(--charcoal); position: relative; overflow: hidden; }
.process-section .section-head h2, .process-section .section-head p { color: #fff; }
.process-section .section-head p { color: rgba(255,255,255,0.65); }
.process-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 20px;
}
.process-track::before {
  content: '';
  position: absolute; top: 30px; left: 30px; right: 30px; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.25) 0 10px, transparent 10px 20px);
}
.process-step { position: relative; z-index: 1; flex: 1; text-align: center; padding: 0 12px; }
.process-step .pin {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 2px solid var(--orange);
  display: grid; place-items: center;
  margin: 0 auto 22px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange);
  font-size: 20px;
  transition: background .35s, color .35s;
}
.process-step:hover .pin { background: var(--orange); color: var(--charcoal); }
.process-step h3 { color: #fff; font-size: 16.5px; margin-bottom: 8px; }
.process-step p { color: rgba(255,255,255,0.6); font-size: 13.5px; }

/* ==========================================================================
   Stats counter band
   ========================================================================== */

.stats-band { background: var(--green); padding: 64px 0; position: relative; overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; position: relative; z-index: 1; }
.stats-grid .stat .num { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: #fff; }
.stats-grid .stat .label { color: rgba(255,255,255,0.85); font-size: 14px; margin-top: 6px; font-weight: 500; }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-section { padding: 110px 0; background: var(--mist); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card .stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testimonial-card .stars svg { width: 17px; height: 17px; color: var(--orange); }
.testimonial-card p.quote { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 22px; font-style: italic; }
.testimonial-card .person { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-card .person strong { display: block; font-size: 14.5px; color: var(--charcoal); }
.testimonial-card .person span { font-size: 12.5px; color: var(--ink-soft); }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(120deg, var(--charcoal) 0%, #123322 100%);
  overflow: hidden;
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); max-width: 520px; }
.cta-inner p { color: rgba(255,255,255,0.7); margin-top: 10px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-band .arrow-accent { position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,0.18), transparent 70%); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.72); position: relative; overflow: hidden; }
.footer-top { padding: 90px 0 60px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1.3fr; gap: 44px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; color: rgba(255,255,255,0.58); margin-bottom: 22px; max-width: 300px; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  transition: background .3s, transform .3s;
}
.social-row a:hover { background: var(--green); transform: translateY(-3px); }
.social-row svg { width: 17px; height: 17px; }

.footer-col h4 { color: #fff; font-size: 15.5px; margin-bottom: 22px; font-family: var(--font-display); }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.6); transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--orange); padding-left: 4px; }
.footer-col .contact-line { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.footer-col .contact-line svg { width: 17px; height: 17px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 13.5px; color: rgba(255,255,255,0.5);
  position: relative; z-index: 1;
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--orange); }

/* ==========================================================================
   Floating buttons
   ========================================================================== */

.floating-actions { position: fixed; bottom: 26px; right: 26px; z-index: 850; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform .3s var(--ease);
}
.fab:hover { transform: scale(1.1); }
.fab svg { width: 26px; height: 26px; color: #fff; }
.fab-whatsapp { background: #25D366; }
.fab-call { background: var(--orange); }
.fab-top {
  width: 46px; height: 46px;
  background: var(--charcoal);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}
.fab-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   Utility page sections (About / Contact / Projects) shared pieces
   ========================================================================== */

.info-strip { background: var(--paper); border-bottom: 1px solid var(--line); padding: 26px 0; }
.info-strip .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.info-strip .item { display: flex; align-items: center; gap: 12px; }
.info-strip .item .icon { width: 42px; height: 42px; border-radius: 10px; background: var(--green-light); display: grid; place-items: center; }
.info-strip .item .icon svg { width: 20px; height: 20px; color: var(--green-dark); }
.info-strip .item strong { display: block; font-size: 14px; color: var(--charcoal); }
.info-strip .item span { font-size: 13px; color: var(--ink-soft); }

/* Values grid (About) */
.values-section { padding: 110px 0; background: var(--mist); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--paper); border-radius: var(--radius); padding: 30px 24px; text-align: center; border: 1px solid var(--line); }
.value-card .icon-wrap { width: 54px; height: 54px; border-radius: 50%; background: var(--orange); display: grid; place-items: center; margin: 0 auto 18px; }
.value-card .icon-wrap svg { width: 26px; height: 26px; color: #fff; }
.value-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--ink-soft); }

/* Mission / Vision cards */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 110px 0 0; }
.mv-card { border-radius: var(--radius); padding: 44px 38px; }
.mv-card.mission { background: var(--charcoal); color: #fff; }
.mv-card.vision { background: var(--green-light); }
.mv-card .icon-wrap { width: 56px; height: 56px; border-radius: 14px; background: rgba(255,255,255,0.1); display: grid; place-items: center; margin-bottom: 22px; }
.mv-card.vision .icon-wrap { background: var(--green); }
.mv-card .icon-wrap svg { width: 27px; height: 27px; color: var(--orange); }
.mv-card.vision .icon-wrap svg { color: #fff; }
.mv-card h3 { font-size: 22px; margin-bottom: 14px; }
.mv-card.mission h3 { color: #fff; }
.mv-card p { color: var(--ink-soft); font-size: 15px; }
.mv-card.mission p { color: rgba(255,255,255,0.7); }

/* Timeline (About company history) */
.timeline-section { padding: 110px 0; }
.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding-left: 68px; margin-bottom: 46px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item .dot {
  position: absolute; left: 12px; top: 2px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); border: 4px solid var(--green-light);
}
.timeline-item .year { font-family: var(--font-display); font-weight: 700; color: var(--orange); font-size: 14px; letter-spacing: 0.05em; margin-bottom: 6px; }
.timeline-item h3 { font-size: 18px; margin-bottom: 8px; }
.timeline-item p { color: var(--ink-soft); font-size: 14.5px; }

/* Proprietor profile */
.profile-section { padding: 0 0 110px; }
.profile-card {
  display: grid; grid-template-columns: 320px 1fr; gap: 50px;
  background: var(--mist); border-radius: var(--radius); padding: 50px; align-items: center;
}
.profile-card .photo-frame { position: relative; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-md); }
.profile-card .photo-frame img { width: 100%; height: 380px; object-fit: cover; }
.profile-card .credentials { font-family: var(--font-display); color: var(--green-dark); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; margin-bottom: 6px; }
.profile-card h3 { font-size: 26px; margin-bottom: 4px; }
.profile-card .role { color: var(--orange); font-weight: 600; font-size: 14.5px; margin-bottom: 18px; }
.profile-card p { color: var(--ink-soft); margin-bottom: 14px; font-size: 15px; }
.profile-card .sign { margin-top: 20px; font-family: var(--font-display); font-size: 20px; color: var(--charcoal); font-style: italic; }

/* FAQ accordion (Services page) */
.faq-section { padding: 110px 0; background: var(--mist); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item { background: var(--paper); border-radius: var(--radius-sm); border: 1px solid var(--line); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--charcoal);
}
.faq-question .plus { width: 24px; height: 24px; border-radius: 50%; background: var(--green-light); display: grid; place-items: center; flex-shrink: 0; margin-left: 20px; transition: background .3s, transform .3s; }
.faq-question .plus svg { width: 13px; height: 13px; color: var(--green-dark); transition: transform .3s; }
.faq-item.open .faq-question .plus { background: var(--green); transform: rotate(180deg); }
.faq-item.open .faq-question .plus svg { color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-answer-inner { padding: 0 26px 24px; color: var(--ink-soft); font-size: 14.5px; }

/* Projects grid */
.projects-section { padding: 110px 0; }
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 46px; }
.filter-btn {
  padding: 10px 20px; border-radius: 50px; border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft); transition: all .3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--green); color: #fff; border-color: var(--green); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.project-card .img-wrap { position: relative; overflow: hidden; height: 260px; }
.project-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.project-card:hover .img-wrap img { transform: scale(1.1); }
.project-card .category-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--orange); color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 6px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.04em;
}
.project-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(9,17,13,0.9) 0%, rgba(9,17,13,0.1) 60%);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: opacity .35s;
}
.project-card:hover .overlay { opacity: 1; }
.project-card .overlay-content { color: #fff; }
.project-card .overlay-content .loc { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: rgba(255,255,255,0.75); margin-bottom: 6px; }
.project-card .overlay-content .loc svg { width: 14px; height: 14px; color: var(--orange); }
.project-card .overlay-content h3 { color: #fff; font-size: 17px; margin-bottom: 10px; }
.project-card .view-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--orange); }
.project-card .view-btn svg { width: 15px; height: 15px; }
.project-card .card-footer { padding: 18px 20px; background: var(--paper); }
.project-card .card-footer h3 { font-size: 15.5px; margin-bottom: 4px; }
.project-card .card-footer .loc { font-size: 12.5px; color: var(--ink-soft); }

/* Contact page */
.contact-section { padding: 110px 0; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.contact-cards { display: grid; gap: 20px; }
.contact-card {
  background: var(--mist); border-radius: var(--radius); padding: 26px 26px;
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-card .icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.contact-card .icon svg { width: 22px; height: 22px; color: #fff; }
.contact-card h4 { font-size: 15.5px; margin-bottom: 6px; }
.contact-card p, .contact-card a { display: block; font-size: 14px; color: var(--ink-soft); }
.contact-card a:hover { color: var(--green-dark); }

.contact-form-wrap { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 46px; border: 1px solid var(--line); }
.contact-form-wrap h3 { font-size: 24px; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--ink-soft); margin-bottom: 30px; font-size: 14.5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--charcoal); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  font-size: 14.5px; color: var(--ink); transition: border-color .25s, box-shadow .25s;
  background: var(--paper);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 4px rgba(22,163,74,0.12); outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; }
.form-success { display: none; background: var(--green-light); color: var(--green-dark); padding: 16px 20px; border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 500; margin-bottom: 20px; align-items: center; gap: 10px; }
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

.map-section { height: 460px; }
.map-section iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15); }

.hours-band { background: var(--charcoal); padding: 50px 0; }
.hours-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; align-items: center; }
.hours-item { display: flex; align-items: center; gap: 16px; }
.hours-item .icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; }
.hours-item .icon svg { width: 22px; height: 22px; color: var(--orange); }
.hours-item strong { display: block; color: #fff; font-size: 15px; }
.hours-item span { color: rgba(255,255,255,0.6); font-size: 13.5px; }

/* Skip link */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--green); color: #fff; padding: 12px 20px; z-index: 9999; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
