/* ===== VARIABLES ===== */
:root {
  --blue: #1f4fa3;
  --blue-dark: #163a7a;
  --blue-deeper: #0d2550;
  --green: #62b44b;
  --green-dark: #4a9e35;
  --green-soft: #eaf6e6;
  --cream: #f9f8f6;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #6b7280;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 4%;
  height: 90px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.09);
  backdrop-filter: blur(10px);
}
header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.09);
  backdrop-filter: blur(10px);
}
.nav-inner {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo {
  height: 72px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
nav > ul,
nav ul#nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
nav ul#nav-menu > li > a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue-dark);
  letter-spacing: 0.2px;
  transition: color 0.2s;
  position: relative;
}
nav ul#nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width 0.25s ease;
}
nav ul#nav-menu > li > a:hover { color: var(--blue); }
nav ul#nav-menu > li > a:hover::after { width: 100%; }
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.2s !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--blue);
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 6s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(13,37,80,0.82) 0%,
    rgba(13,37,80,0.55) 55%,
    rgba(13,37,80,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  width: 100%;
  margin: auto;
  padding: 0 6%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(98,180,75,0.18);
  border: 1px solid rgba(98,180,75,0.45);
  color: #a8e090;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  animation: fadeUp 0.7s 0.2s both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.7); }
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
  max-width: 620px;
  animation: fadeUp 0.7s 0.4s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero h1 em {
  font-style: normal;
  color: #a8e090;
}
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.75;
  animation: fadeUp 0.7s 0.6s both;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.8s both;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(98,180,75,0.35);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(98,180,75,0.45); }
.btn-ghost {
  color: #fff;
  padding: 15px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s both;
}
.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.8s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-dots {
  position: absolute;
  bottom: 36px;
  right: 6%;
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 28px; height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active { background: var(--green); width: 44px; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--blue-deeper);
  padding: 28px 6%;
}
.stats-inner {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num span { color: var(--green); }
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== SECTION COMMON ===== */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--green);
  display: block;
}
section {
  padding: 100px 6%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
section.visible {
  opacity: 1;
  transform: none;
}
.container { max-width: 1300px; margin: auto; }

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 54px;
  flex-wrap: wrap;
}
.services-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--blue-deeper); }
.services-header p { color: var(--text-light); max-width: 400px; font-size: 0.95rem; text-align: right; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 42px 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--green-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--green); }
.service-card h3 { font-size: 1.2rem; color: var(--blue-deeper); margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }
.service-card .service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 20px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: none; }

/* ===== WHY ===== */
.why { background: #fff; }
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual { position: relative; }
.why-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.why-img-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.15);
}
.why-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--green);
  color: #fff;
  border-radius: 16px;
  padding: 20px 26px;
  box-shadow: 0 16px 40px rgba(98,180,75,0.35);
  text-align: center;
}
.why-badge-float .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.why-badge-float p { font-size: 0.8rem; opacity: 0.9; margin-top: 4px; }
.why-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--blue-deeper); margin-bottom: 16px; }
.why-content > p { color: var(--text-light); margin-bottom: 36px; font-size: 0.95rem; line-height: 1.75; }
.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-point { display: flex; gap: 14px; align-items: flex-start; }
.why-check {
  width: 30px; height: 30px;
  background: var(--green-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 2px;
}
.why-point h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-deeper);
  margin-bottom: 3px;
}
.why-point p { font-size: 0.82rem; color: var(--text-light); }

/* ===== PROJECTS ===== */
.projects { background: var(--cream); }
.projects-header { margin-bottom: 50px; }
.projects-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--blue-deeper); margin-bottom: 8px; }
.projects-header p { color: var(--text-light); font-size: 0.95rem; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: #dde7f0;
}
.project-card:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.project-card:nth-child(2) { grid-column: span 7; }
.project-card:nth-child(3) { grid-column: span 4; }
.project-card:nth-child(4) { grid-column: span 3; }
.project-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, #c8d8ee 0%, #a8c0e0 100%);
}
.project-card:nth-child(even) .project-img-placeholder {
  background: linear-gradient(135deg, #c8e4c0 0%, #a0cca0 100%);
}
.project-card:hover .project-img-placeholder { transform: scale(1.06); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,37,80,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay h3 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.project-overlay span { color: var(--green); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; }
.project-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.9);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

/* ===== REVIEWS ===== */
.reviews { background: var(--blue-deeper); }
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.reviews-header h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.reviews-rating { display: flex; align-items: center; gap: 10px; }
.stars { color: #fbbf24; font-size: 1.2rem; letter-spacing: 2px; }
.rating-text { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.reviews-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: background 0.3s, transform 0.3s;
}
.review-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.review-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
  font-weight: 300;
}
.review-text::before {
  content: '\201C';
  font-size: 2rem;
  color: var(--green);
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 2px;
  font-family: 'Playfair Display', serif;
}
.review-footer { display: flex; justify-content: space-between; align-items: center; }
.review-name { color: #fff; font-weight: 700; font-size: 0.92rem; }
.review-source {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
  background: rgba(98,180,75,0.15);
  padding: 4px 10px;
  border-radius: 20px;
}
.reviews-cta { text-align: center; }
.btn-green-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(98,180,75,0.5);
  color: #a8e090;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s, border-color 0.2s;
}
.btn-green-outline:hover { background: rgba(98,180,75,0.12); border-color: var(--green); }

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--blue-deeper); margin-bottom: 12px; }
.contact-intro { color: var(--text-light); margin-bottom: 42px; font-size: 0.95rem; line-height: 1.75; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  margin-bottom: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
  color: inherit;
}
.contact-detail:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); transform: translateX(4px); }
.contact-icon {
  width: 46px; height: 46px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.contact-detail-text p { color: var(--blue-deeper); font-weight: 600; font-size: 0.95rem; }
.contact-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 4px solid #fff;
}
.contact-map iframe { display: block; width: 100%; height: 420px; border: none; }

/* ===== FOOTER ===== */
footer { background: var(--blue-deeper); }
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px;
  padding: 70px 6% 50px;
  max-width: 1300px;
  margin: auto;
}
.footer-brand h3 { font-size: 1.5rem; color: #fff; margin-bottom: 4px; }
.footer-brand .tagline {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-brand img.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.75; max-width: 300px; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  max-width: 1300px;
  margin: 0 auto;
}
.footer-bottom {
  max-width: 1300px;
  margin: auto;
  padding: 22px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom strong { color: rgba(255,255,255,0.55); }

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--green);
  color: #fff;
  padding: 14px 22px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 28px rgba(98,180,75,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s, background 0.2s;
}
.sticky-cta.show { transform: none; opacity: 1; }
.sticky-cta:hover { background: var(--green-dark); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-layout { grid-template-columns: 1fr; gap: 50px; }
  .why-visual { display: none; }
  .projects-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .project-card:nth-child(n) { grid-column: span 1; grid-row: span 1; height: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  section { padding: 70px 5%; }
  .nav-logo { height: 36px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  nav ul#nav-menu { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  nav ul#nav-menu.open {
    display: flex;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 220px;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    gap: 4px;
    border: 1px solid #eee;
  }
  nav ul#nav-menu.open a { padding: 8px 10px; display: block; border-radius: 8px; }
  nav ul#nav-menu.open a:hover { background: var(--cream); }
  .hero-scroll { display: none; }
  .why-points { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .project-card:nth-child(n) { height: 200px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; padding: 50px 5% 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .services-header { flex-direction: column; }
  .services-header p { text-align: left; }
  .sticky-cta span.cta-text { display: none; }
}

/* ===== INNER PAGE STYLES ===== */

/* Page Hero (for service pages) */
.page-hero {
  padding-top: 110px;
  background: var(--blue-deeper);
  padding-bottom: 70px;
  padding-left: 6%;
  padding-right: 6%;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(98,180,75,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1300px;
  margin: auto;
  padding-top: 50px;
}
.page-hero .section-label { color: rgba(255,255,255,0.5); }
.page-hero .section-label::before { background: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 16px;
  max-width: 700px;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 30px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--green); font-weight: 600; }

/* Service Content Section */
.service-content {
  background: var(--white);
  padding: 90px 6%;
}
.service-content-inner {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.service-content-inner.reverse { direction: rtl; }
.service-content-inner.reverse > * { direction: ltr; }
.service-text h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); color: var(--blue-deeper); margin-bottom: 16px; }
.service-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; font-size: 0.95rem; }
.service-list {
  list-style: none;
  margin-top: 10px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.92rem;
  color: var(--text);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
  background: var(--green-soft);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-block {
  position: sticky;
  top: 110px;
}
.service-img-card {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deeper) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 20px;
  position: relative;
}
.service-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-cta-box {
  background: var(--blue-deeper);
  border-radius: 16px;
  padding: 28px;
  color: #fff;
}
.service-cta-box h4 { font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.service-cta-box p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 18px; line-height: 1.6; }
.service-cta-box .btn-primary { width: 100%; justify-content: center; }

/* Alt background section */
.service-content.alt { background: var(--cream); }

/* Why Us strip on service pages */
.service-why {
  background: var(--blue);
  padding: 70px 6%;
  text-align: center;
}
.service-why h2 { color: #fff; font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 10px; }
.service-why p { color: rgba(255,255,255,0.75); margin-bottom: 30px; font-size: 0.95rem; }
.service-why .btn-primary { margin: auto; }

/* ===== CONTACT FORM ===== */
.contact-form-section {
  background: var(--cream);
  padding: 90px 6%;
}
.contact-form-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
.contact-form-info h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--blue-deeper); margin-bottom: 12px; }
.contact-form-info p { color: var(--text-light); font-size: 0.95rem; line-height: 1.75; margin-bottom: 36px; }
.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  border: 1px solid #eee;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-deeper);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,79,163,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit .btn-primary { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 12px; }

/* ===== 24HR CALLOUT BANNER ===== */
.emergency-banner {
  background: linear-gradient(135deg, #c0392b 0%, #96281b 100%);
  padding: 60px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emergency-banner::before {
  content: '🚨';
  position: absolute;
  font-size: 200px;
  opacity: 0.06;
  top: -40px; right: -20px;
}
.emergency-banner h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 10px; }
.emergency-banner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.emergency-number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #c0392b;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.emergency-number:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.25); }

/* ===== RESPONSIVE INNER PAGES ===== */
@media (max-width: 1024px) {
  .service-content-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-content-inner.reverse { direction: ltr; }
  .service-img-block { position: static; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .page-hero { padding-bottom: 50px; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 22px; }
}

/* ===== DROPDOWN NAV ===== */
.has-dropdown { position: relative; }

.has-dropdown > a {
  cursor: pointer;
  user-select: none;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.13);
  border: 1px solid #eee;
  min-width: 240px;
  padding: 8px;
  z-index: 500;
  flex-direction: column;
  gap: 0;
}

/* Small triangle pointer */
.dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
}

.has-dropdown.open .dropdown { display: flex; }

.dropdown li { list-style: none; }

.dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--blue-dark) !important;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.dropdown li a::after { display: none !important; }

.dropdown li a:hover {
  background: var(--green-soft);
  color: var(--blue) !important;
}

/* Mobile: dropdown becomes an indented list */
@media (max-width: 768px) {
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--cream);
    border-radius: 8px;
    padding: 6px 0 6px 10px;
    margin-top: 4px;
    min-width: unset;
  }
  .dropdown::before { display: none; }
  .has-dropdown.open .dropdown { display: flex; }
}


  .emergency-hero {
    padding-top: 90px;
    background: linear-gradient(135deg, #8b0000 0%, #c0392b 50%, #96281b 100%);
    padding-bottom: 80px;
    padding-left: 6%;
    padding-right: 6%;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .emergency-hero::before {
    content: '🚨';
    position: absolute;
    font-size: 300px;
    opacity: 0.05;
    top: -60px; right: -60px;
    pointer-events: none;
  }
  .emergency-hero-inner {
    max-width: 800px;
    margin: auto;
    padding-top: 60px;
  }
  .emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 40px;
    margin-bottom: 24px;
  }
  .pulse { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: pulse-dot 1.2s infinite; }
  .emergency-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); color: #fff; margin-bottom: 16px; }
  .emergency-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; line-height: 1.75; }
  .emergency-number-big {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    color: #c0392b;
    padding: 20px 44px;
    border-radius: 60px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    margin-bottom: 14px;
  }
  .emergency-number-big:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(0,0,0,0.35); }
  .emergency-sub { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
  .emergency-services {
    background: var(--cream);
    padding: 90px 6%;
  }
  .emergency-services-grid {
    max-width: 1300px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
  .emergency-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 30px;
    border: 1px solid #eee;
    border-top: 4px solid #c0392b;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .emergency-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
  .emergency-card .icon { font-size: 2.2rem; margin-bottom: 16px; }
  .emergency-card h3 { font-size: 1.1rem; color: var(--blue-deeper); margin-bottom: 10px; }
  .emergency-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; }
  .emergency-info {
    background: var(--blue-dark);
    padding: 80px 6%;
    text-align: center;
  }
  .emergency-info h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
  .emergency-info p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 36px; font-size: 0.95rem; line-height: 1.75; }
  .emergency-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
  }
  .emergency-info-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 28px 20px;
  }
  .emergency-info-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 6px;
  }
  .emergency-info-item p { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin: 0; }
  @media(max-width:768px) { .emergency-info-grid { grid-template-columns: 1fr; } }