/* ========================================
   Greenbolt Electric - Electric Nature Theme
   ======================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --green: #28f716;
  --green-dim: #1fb912;
  --green-dark: #178a0e;
  --green-glow: rgba(40, 247, 22, 0.12);
  --green-glow-strong: rgba(40, 247, 22, 0.25);
  --dark: #0b0e0b;
  --dark-card: #121812;
  --dark-surface: #1a211a;
  --dark-border: #2a352a;
  --charcoal: #2f2e2e;
  --light: #f5f8f3;
  --light-alt: #eaf0e7;
  --white: #ffffff;
  --text-dark: #e0e8dc;
  --text-muted: #8a9a82;
  --font-display: 'Urbanist', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green);
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 0 0 6px 6px;
  font-weight: 700;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}

.text-green { color: var(--green); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--green);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--green-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40, 247, 22, 0.3);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green-glow);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }
.btn-outline:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}
.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(16px, 4vw, 48px);
  background: rgba(11, 14, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(40, 247, 22, 0.08);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.15s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.25s var(--ease-out);
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--green); }
.nav-links a.active::after { width: 100%; }
.nav-links a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.85rem !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s;
  display: block;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11,14,11,0.75) 0%,
    rgba(11,14,11,0.60) 40%,
    rgba(11,14,11,0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px clamp(24px, 6vw, 80px);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 .accent {
  color: var(--green);
  display: block;
}
.hero p {
  color: var(--text-dark);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-badge {
  position: absolute;
  bottom: 40px;
  right: clamp(24px, 6vw, 80px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(20, 26, 20, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 14px 20px;
}
.hero-badge .badge-icon {
  width: 36px;
  height: 36px;
  background: var(--green-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge .badge-icon svg { width: 18px; height: 18px; }
.hero-badge .badge-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
}
.hero-badge .badge-text strong {
  color: var(--green);
  font-size: 1.1rem;
}

/* Electric line decoration */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  z-index: 3;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--dark-card);
  border-bottom: 1px solid var(--dark-border);
  padding: 28px clamp(16px, 4vw, 48px);
}
.trust-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--green-glow);
  border: 1px solid rgba(40, 247, 22, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 2; }
.trust-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.trust-text span {
  display: block;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* --- Sections --- */
.section {
  padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 48px);
}
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}
.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Dark section */
.section-dark {
  background: var(--dark);
  color: var(--text-dark);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

/* Light section */
.section-light {
  background: var(--light);
  color: var(--charcoal);
}

/* Alt dark section */
.section-darker {
  background: var(--dark-card);
  color: var(--text-dark);
}
.section-darker h2, .section-darker h3 { color: var(--white); }

/* --- Services Overview (Index) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e0e6dc;
  border-radius: 8px;
  padding: 28px 24px;
  transition: all 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--green);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.service-card p {
  font-size: 0.9rem;
  color: #5a635a;
  line-height: 1.6;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-dark);
  transition: color 0.15s, gap 0.2s;
}
.service-card-link:hover { color: var(--green-dim); gap: 10px; }
.service-card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* --- About Preview (Index) --- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-preview-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.about-preview-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-preview-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(40, 247, 22, 0.15);
  border-radius: 8px;
  pointer-events: none;
}
.about-preview-text h2 {
  margin-bottom: 1rem;
}
.about-preview-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

/* --- Testimonials --- */
.testimonials-section {
  background: linear-gradient(180deg, var(--dark) 0%, #0d120d 100%);
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-glow-strong), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 28px;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(40, 247, 22, 0.25); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--green);
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}
.testimonial-author-source {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid #e0e6dc;
  background: var(--white);
  transition: all 0.25s var(--ease-out);
}
.why-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.why-card-icon {
  width: 44px;
  height: 44px;
  background: var(--green-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-card-icon svg { width: 22px; height: 22px; stroke: var(--green-dark); fill: none; stroke-width: 2; }
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.88rem;
  color: #5a635a;
  line-height: 1.6;
}

/* --- Service Area / Map --- */
.map-section {
  position: relative;
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}
.service-area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-area-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 8px 0;
}
.service-area-list li svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 48px);
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,14,11,0.88) 0%, rgba(11,14,11,0.92) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.cta-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 1.5rem;
  display: block;
}
.cta-phone:hover { text-decoration: underline; }

/* --- Footer --- */
.footer {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  padding: 48px clamp(16px, 4vw, 48px) 24px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 40px; margin-bottom: 12px; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}
.footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--green); }
.footer-links a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: var(--text-muted); transition: color 0.15s; }
.footer-contact-item a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom .license {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Page Banner --- */
.page-banner {
  background: var(--dark);
  padding: 140px clamp(16px, 4vw, 48px) 60px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.page-banner-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.page-banner h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-banner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .current { color: var(--green); }

/* --- Services Detail Page --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--dark-border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }

.service-detail-img {
  border-radius: 8px;
  overflow: hidden;
}
.service-detail-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.service-detail:hover .service-detail-img img {
  transform: scale(1.03);
}

.service-detail-content h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.service-detail-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.key-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.key-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.key-point svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* --- About Page --- */
.about-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.team-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s;
}
.team-card:hover { border-color: rgba(40, 247, 22, 0.25); }
.team-card-avatar {
  width: 72px;
  height: 72px;
  background: var(--green-glow);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green);
}
.team-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.team-card .team-title {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--green-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 2; }
.contact-info-card h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-info-card p, .contact-info-card a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.contact-info-card a:hover { color: var(--green); }

/* --- Form --- */
.contact-form {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 36px;
}
.contact-form h3 {
  color: var(--white);
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  margin-top: 8px;
}

#form-status {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  display: none;
}
#form-status.success {
  display: block;
  background: var(--green-glow);
  color: var(--green);
  border: 1px solid rgba(40, 247, 22, 0.2);
}
#form-status.error {
  display: block;
  background: rgba(255, 60, 60, 0.1);
  color: #ff6b6b;
  border: 1px solid rgba(255, 60, 60, 0.2);
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.40s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.48s; }

/* Hero entrance */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: heroFadeIn 0.7s var(--ease-out) both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }

@keyframes badgeSlideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-badge { animation: badgeSlideIn 0.6s var(--ease-out) 0.8s both; }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-preview { grid-template-columns: 1fr; gap: 32px; }
  .about-body { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail { grid-template-columns: 1fr; gap: 24px; }
  .service-detail:nth-child(even) { direction: ltr; }
  .map-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 14, 11, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; }

  .hero-content { padding: 100px 24px; }
  .hero-badge { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-area-list { grid-template-columns: 1fr; }

  .cta-phone { font-size: 1.3rem; }

  .service-detail-img img { height: 240px; }
}

@media (max-width: 480px) {
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* --- Leaflet overrides --- */
.leaflet-container { font-family: var(--font-body); }
