@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg-dark: #060907;
  --bg-card: rgba(14, 20, 15, 0.85);
  --bg-card-border: rgba(142, 224, 0, 0.18);
  --primary-green: #8ee000;
  --primary-green-hover: #9ef012;
  --primary-green-glow: rgba(142, 224, 0, 0.35);
  --primary-dark-green: #71b300;
  --text-white: #ffffff;
  --text-gray: #a3aba5;
  --text-muted: #6f7872;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* =========================================
   PAGE CONTAINER & BACKGROUND
   ========================================= */
.site-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(circle at 75% 35%, rgba(142, 224, 0, 0.04) 0%, transparent 60%),
              radial-gradient(circle at 20% 20%, rgba(142, 224, 0, 0.03) 0%, transparent 50%),
              #060907;
  overflow: hidden;
}

/* Background Crosshair Watermark */
.bg-crosshair-watermark {
  position: absolute;
  top: 48%;
  left: 49%;
  transform: translate(-50%, -50%);
  width: 580px;
  height: 580px;
  pointer-events: none;
  opacity: 0.12;
  z-index: 1;
  animation: radarPulse 12s ease-in-out infinite alternate;
}

@keyframes radarPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.98) rotate(0deg);
    opacity: 0.10;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.03) rotate(3deg);
    opacity: 0.15;
  }
}

/* =========================================
   HEADER & NAVIGATION BAR
   ========================================= */
.site-header {
  position: relative;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(6, 9, 7, 0.95);
  backdrop-filter: blur(12px);
}

.header-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 54px;
  position: relative;
  transition: transform 0.25s ease;
}

.logo-container:hover {
  transform: translateY(-1px);
}

.logo-img {
  height: 150px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  object-position: left center;
  margin-left: -18px;
  display: block;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: var(--primary-green);
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-title span {
  color: var(--text-white);
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #c7d1ca;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Nav Menu */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #d1d9d4;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link:hover {
  color: var(--primary-green);
}

.nav-link.active {
  color: var(--text-white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-green);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary-green-glow);
}

.nav-link .dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
  opacity: 0.8;
}

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--primary-green);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(13, 19, 14, 0.96);
  border: 1px solid rgba(142, 224, 0, 0.2);
  border-radius: 12px;
  padding: 0.75rem 0;
  min-width: 220px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 20px rgba(142, 224, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(16px);
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cfd8d2;
  transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
  background: rgba(142, 224, 0, 0.1);
  color: var(--primary-green);
  padding-left: 1.5rem;
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.phone-quick-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: var(--text-white);
  transition: all 0.25s ease;
}

.phone-quick-link .phone-icon-circle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.phone-quick-link:hover {
  color: var(--primary-green);
}

.phone-quick-link:hover .phone-icon-circle {
  transform: scale(1.15) rotate(-10deg);
}

.btn-header-quote {
  background: var(--primary-green);
  color: #060907;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 18px var(--primary-green-glow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-header-quote:hover {
  background: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(142, 224, 0, 0.45);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  color: var(--text-white);
  font-size: 1.5rem;
  padding: 0.5rem;
}

/* =========================================
   HERO SECTION (FULL BLEED COVERAGE)
   ========================================= */
.hero-section {
  position: relative;
  z-index: 10;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 1.5rem 0 1.5rem 0;
}

/* Full Bleed Hero Background Visual on Right Side extending to Navbar */
.hero-bg-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Gradient Masks to blend image seamlessly into dark hero backdrop */
.hero-bg-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, #060907 0%, rgba(6, 9, 7, 0.88) 30%, rgba(6, 9, 7, 0.35) 70%, transparent 100%);
  z-index: 2;
}

.hero-bg-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(to top, #060907 0%, transparent 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 1.2rem;
  position: relative;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-title .title-line-1 {
  display: block;
  color: var(--text-white);
}

.hero-title .title-line-2 {
  display: block;
  color: var(--primary-green);
  text-shadow: 0 0 40px rgba(142, 224, 0, 0.25);
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #b5c0b9;
  max-width: 480px;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

/* CTA Action Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}

.btn-primary-glow {
  background: var(--primary-green);
  color: #060907;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 9px;
  box-shadow: 0 4px 22px var(--primary-green-glow);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-glow .arrow-icon {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.btn-primary-glow:hover {
  background: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(142, 224, 0, 0.5);
}

.btn-primary-glow:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-secondary-phone {
  background: rgba(14, 20, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 0.95rem 1.8rem;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.btn-secondary-phone .phone-icon {
  color: var(--primary-green);
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.btn-secondary-phone:hover {
  border-color: var(--primary-green);
  background: rgba(22, 32, 24, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary-phone:hover .phone-icon {
  transform: scale(1.15) rotate(-10deg);
}

/* Quick Services Mini Row */
.hero-quick-services {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex-wrap: wrap;
}

.quick-service-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform 0.25s ease;
}

.quick-service-item:hover {
  transform: translateY(-2px);
}

.quick-service-icon {
  width: 38px;
  height: 38px;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.quick-service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary-green);
  fill: none;
}

.quick-service-text {
  display: flex;
  flex-direction: column;
}

.quick-service-label-1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1.15;
}

.quick-service-label-2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--primary-green);
  line-height: 1.15;
}

/* =========================================
   BOTTOM FLOATING FEATURES BAR
   ========================================= */
.bottom-features-section {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0.8rem 2.5rem 1.8rem 2.5rem;
}

.features-pill-card {
  background: rgba(10, 15, 11, 0.88);
  border: 1px solid rgba(142, 224, 0, 0.22);
  border-radius: 50px;
  padding: 0.85rem 1.8rem 1.05rem 1.8rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55), 0 0 15px rgba(142, 224, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0 0.5rem;
  margin: 0;
  margin-top: -3px;
  flex: 1;
  transition: transform 0.25s ease;
}

.feature-segment:hover {
  transform: translateY(-5px);
}

.feature-segment:hover .feature-icon-badge {
  border-color: var(--primary-green);
  box-shadow: 0 0 12px var(--primary-green-glow);
  transform: scale(1.08);
}

.feature-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  align-self: center;
  margin-top: -3px;
}

.feature-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(142, 224, 0, 0.45);
  background: rgba(142, 224, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
  transition: all 0.25s ease;
  line-height: 0;
}

.feature-icon-badge svg {
  width: 21px;
  height: 21px;
  stroke: var(--primary-green);
  fill: none;
  stroke-width: 2;
  display: block;
  margin: auto;
}

.feature-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--primary-green);
  line-height: 1.25;
  margin: 0;
}

.feature-subtitle {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1.25;
  margin: 0;
}

/* =========================================
   ABOUT US SECTION
   ========================================= */
.about-section {
  position: relative;
  z-index: 15;
  width: 100%;
  padding: 5rem 0 6rem 0;
  background: radial-gradient(circle at 15% 45%, rgba(142, 224, 0, 0.035) 0%, transparent 60%),
              #060907;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  gap: 4rem;
}

/* About Left Content */
.about-content {
  display: flex;
  flex-direction: column;
}

.about-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.about-title-line-1 {
  display: block;
  color: var(--text-white);
}

.about-title-line-2 {
  display: block;
  color: var(--primary-green);
  text-shadow: 0 0 35px rgba(142, 224, 0, 0.25);
}

.about-description {
  font-size: 1rem;
  line-height: 1.65;
  color: #aeb8b2;
  margin-bottom: 1.2rem;
  font-weight: 400;
  max-width: 500px;
}

.btn-learn-more {
  display: inline-flex !important;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
  align-self: flex-start;
  background: rgba(142, 224, 0, 0.08);
  border: 1.5px solid var(--primary-green);
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 15px rgba(142, 224, 0, 0.15);
  opacity: 1 !important;
  visibility: visible !important;
}

.btn-learn-more .learn-arrow {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.btn-learn-more:hover {
  background: var(--primary-green);
  color: #060907;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px var(--primary-green-glow);
}

.btn-learn-more:hover .learn-arrow {
  transform: translateX(4px);
}

/* About Right 2x2 Cards Grid */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.about-card {
  background: #0d130e;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.about-card:hover {
  border-color: var(--primary-green);
  background: #111a13;
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(142, 224, 0, 0.15);
}

.about-card-icon {
  width: 44px;
  height: 44px;
  color: var(--primary-green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.about-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary-green);
}

.about-card:hover .about-card-icon {
  transform: scale(1.12);
}

.about-card-body {
  display: flex;
  flex-direction: column;
}

.about-card-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.about-card-title .card-num {
  color: var(--primary-green);
}

.about-card-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #b5c2ba;
  font-weight: 400;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
  position: relative;
  z-index: 15;
  width: 100%;
  padding: 5.5rem 0 6.5rem 0;
  background: radial-gradient(circle at 80% 30%, rgba(142, 224, 0, 0.04) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(142, 224, 0, 0.02) 0%, transparent 50%),
              #060907;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Services Header */
.services-header {
  text-align: center;
  margin-bottom: 3.8rem;
}

.services-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.8rem;
}

.services-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1.15;
}

.services-title-dash {
  color: var(--primary-green);
  font-weight: 900;
}

/* 3-Column Services Cards Grid */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: #0d130e;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(142, 224, 0, 0.2);
}

.service-card-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-card-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, rgba(13, 19, 14, 0.95) 0%, transparent 100%);
  pointer-events: none;
}

.service-icon-badge {
  position: absolute;
  bottom: 16px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #080c09;
  border: 2px solid var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  z-index: 3;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 0 14px var(--primary-green-glow);
  transition: transform 0.3s ease;
}

.service-icon-badge svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary-green);
}

.service-card:hover .service-icon-badge {
  transform: scale(1.12) rotate(6deg);
}

.service-card-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.service-title-1 {
  color: var(--text-white);
  display: block;
}

.service-title-2 {
  color: var(--primary-green);
  display: block;
  text-shadow: 0 0 25px rgba(142, 224, 0, 0.2);
}

.service-card-desc {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #b5c2ba;
  margin-bottom: 1.8rem;
  flex: 1;
  font-weight: 400;
}

.btn-service-learn {
  align-self: flex-start;
  display: inline-flex !important;
  align-items: center;
  gap: 0.65rem;
  background: rgba(142, 224, 0, 0.08);
  border: 1.5px solid var(--primary-green);
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 15px rgba(142, 224, 0, 0.15);
  opacity: 1 !important;
  visibility: visible !important;
}

.btn-service-learn .service-arrow {
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}

.btn-service-learn:hover {
  background: var(--primary-green);
  color: #060907;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px var(--primary-green-glow);
}

.btn-service-learn:hover .service-arrow {
  transform: translateX(4px);
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */
.why-choose-section {
  position: relative;
  z-index: 15;
  width: 100%;
  padding: 5.5rem 0 6.5rem 0;
  background: radial-gradient(circle at 10% 50%, rgba(142, 224, 0, 0.035) 0%, transparent 50%),
              radial-gradient(circle at 90% 50%, rgba(142, 224, 0, 0.035) 0%, transparent 50%),
              #060907;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.why-choose-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.05fr;
  align-items: center;
  gap: 3.5rem;
}

/* Left Column */
.why-choose-left {
  display: flex;
  flex-direction: column;
}

.why-choose-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.why-choose-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.wc-title-1,
.wc-title-2 {
  color: var(--text-white);
  display: block;
}

.wc-title-3 {
  color: var(--primary-green);
  display: block;
  text-shadow: 0 0 30px rgba(142, 224, 0, 0.25);
}

.why-choose-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #b5c2ba;
  margin-bottom: 1.8rem;
  font-weight: 400;
}

.btn-why-learn {
  align-self: flex-start;
  display: inline-flex !important;
  align-items: center;
  gap: 0.65rem;
  background: rgba(142, 224, 0, 0.08);
  border: 1.5px solid var(--primary-green);
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 15px rgba(142, 224, 0, 0.15);
  opacity: 1 !important;
  visibility: visible !important;
}

.btn-why-learn .why-arrow {
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}

.btn-why-learn:hover {
  background: var(--primary-green);
  color: #060907;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px var(--primary-green-glow);
}

.btn-why-learn:hover .why-arrow {
  transform: translateX(4px);
}

/* Center Image */
.why-choose-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(142, 224, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.why-choose-img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-image-wrap:hover .why-choose-img {
  transform: scale(1.04);
}

/* Right Feature List */
.why-choose-right {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: transform 0.25s ease;
}

.why-feature-item:hover {
  transform: translateX(4px);
}

.why-feature-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #080c09;
  border: 2px solid var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
  box-shadow: 0 0 14px var(--primary-green-glow);
  transition: transform 0.25s ease;
}

.why-feature-icon-badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-green);
}

.why-feature-item:hover .why-feature-icon-badge {
  transform: scale(1.1) rotate(5deg);
}

.why-feature-info {
  display: flex;
  flex-direction: column;
}

.why-feature-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.why-feature-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #a4afa8;
  font-weight: 400;
}

/* =========================================
   OUR PROCESS SECTION
   ========================================= */
.process-section {
  position: relative;
  z-index: 15;
  width: 100%;
  padding: 5.5rem 0 6.5rem 0;
  background: radial-gradient(circle at 50% 30%, rgba(142, 224, 0, 0.04) 0%, transparent 65%),
              #060907;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.process-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.8rem;
}

.process-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1.15;
}

.process-title-dash {
  color: var(--primary-green);
  font-weight: 900;
}

/* 4-Step Process Flow Chain */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover {
  transform: translateY(-4px);
}

.process-badge-wrap {
  position: relative;
  flex-shrink: 0;
}

.process-circle-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #080d09;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  position: relative;
  transition: all 0.3s ease;
}

.process-circle-badge::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--primary-green);
  border-right-color: var(--primary-green);
  pointer-events: none;
  transition: transform 0.4s ease;
}

.process-step:hover .process-circle-badge {
  border-color: var(--primary-green);
  box-shadow: 0 0 22px var(--primary-green-glow);
}

.process-step:hover .process-circle-badge::before {
  transform: rotate(180deg);
}

.process-circle-badge svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-green);
}

.process-step-info {
  display: flex;
  flex-direction: column;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.process-step-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #a4afa8;
  max-width: 175px;
  font-weight: 400;
}

.process-connector {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.1rem;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

.process-connector:hover {
  color: var(--primary-green);
  transform: translateX(3px);
}

/* =========================================
   PROJECTS SECTION
   ========================================= */
.projects-section {
  position: relative;
  z-index: 15;
  width: 100%;
  padding: 5.5rem 0 6.5rem 0;
  background: radial-gradient(circle at 75% 50%, rgba(142, 224, 0, 0.035) 0%, transparent 60%),
              #060907;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.projects-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 2rem;
}

.projects-header {
  text-align: center;
  margin-bottom: 3.8rem;
}

.projects-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.8rem;
}

.projects-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1.15;
}

.projects-title-dash {
  color: var(--primary-green);
  font-weight: 900;
}

/* Horizontal Projects Row */
.projects-grid-wrap {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.projects-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  align-items: center;
  width: 100%;
}

.project-card {
  position: relative;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  background: #080d09;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(142, 224, 0, 0.2);
}

.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-img {
  transform: scale(1.08);
}

.project-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.65) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.9rem 0.5rem;
  text-align: center;
  pointer-events: none;
}

.project-card-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.project-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 2.8rem;
}

.btn-all-projects {
  background: var(--primary-green);
  color: #060907;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px var(--primary-green-glow);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-all-projects:hover {
  background: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(142, 224, 0, 0.5);
}

.btn-all-projects .all-arrow {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.btn-all-projects:hover .all-arrow {
  transform: translateX(4px);
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
  position: relative;
  z-index: 15;
  width: 100%;
  padding: 5.5rem 0 6.5rem 0;
  background: radial-gradient(circle at 20% 50%, rgba(142, 224, 0, 0.04) 0%, transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(142, 224, 0, 0.02) 0%, transparent 50%),
              #060907;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3.8rem;
}

.testimonials-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.8rem;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1.15;
}

.testimonials-title-dash {
  color: var(--primary-green);
  font-weight: 900;
}

.testimonials-subtitle {
  font-size: 0.95rem;
  color: #a4afa8;
  margin-top: 0.6rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.6;
}

/* 3-Column Testimonial Cards */
.testimonials-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #0d130e;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(142, 224, 0, 0.15);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  color: #f59e0b;
  font-size: 1.05rem;
}

.quote-watermark {
  color: rgba(142, 224, 0, 0.28);
  font-size: 1.6rem;
}

.testimonial-text {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #cbd6ce;
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.4rem;
}

.author-avatar-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(142, 224, 0, 0.12);
  border: 2px solid var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--primary-green);
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--primary-green-glow);
}

.author-meta {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.author-role {
  font-size: 0.8rem;
  color: #8e9a92;
  margin-bottom: 0.35rem;
}

.service-verified-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Trust Rating Badge */
.testimonials-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3.5rem;
  padding: 0.9rem 2rem;
  background: rgba(13, 19, 14, 0.88);
  border: 1px solid rgba(142, 224, 0, 0.25);
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
}

.trust-badge-stars {
  color: #f59e0b;
  display: flex;
  gap: 0.25rem;
  font-size: 0.95rem;
}

.trust-badge-text {
  font-size: 0.88rem;
  color: #d1dad4;
  font-family: var(--font-heading);
}

.trust-badge-text strong {
  color: var(--primary-green);
  font-weight: 800;
}

/* =========================================
   CONTACT US SECTION
   ========================================= */
.contact-section {
  position: relative;
  z-index: 15;
  width: 100%;
  padding: 5.5rem 0 6.5rem 0;
  background: radial-gradient(circle at 85% 30%, rgba(142, 224, 0, 0.04) 0%, transparent 60%),
              #060907;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2.1fr 1.15fr;
  gap: 2.8rem;
  align-items: center;
}

/* Left Column */
.contact-left {
  display: flex;
  flex-direction: column;
}

.contact-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--primary-green);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

.highlight-title {
  color: var(--primary-green);
}

.contact-subtitle-text {
  font-size: 0.92rem;
  color: #a4afa8;
  line-height: 1.5;
  margin-bottom: 1.6rem;
  max-width: 300px;
  font-weight: 400;
}

.btn-contact-phone-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  color: #060907;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
  margin-bottom: 1.1rem;
  width: fit-content;
  text-decoration: none;
}

.btn-contact-phone-white:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-green-glow);
}

.phone-pill-icon {
  font-size: 1rem;
  color: #060907;
}

.contact-email-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #cbd6ce;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-email-link:hover {
  color: var(--primary-green);
}

.email-icon {
  color: var(--primary-green);
  font-size: 0.95rem;
}

/* Middle Column: Form Card */
.contact-center-card {
  background: #080d09;
  border: 1px solid rgba(142, 224, 0, 0.25);
  border-radius: 18px;
  padding: 1.8rem 2rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  position: relative;
}

.form-card-header h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 1.2rem;
}

.contact-inline-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-row-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.9rem;
  align-items: stretch;
}

.input-wrap {
  position: relative;
  width: 100%;
}

.contact-input {
  width: 100%;
  background: #0d130e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: all 0.2s ease;
}

.contact-input::placeholder {
  color: #718076;
}

.contact-input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 12px var(--primary-green-glow);
}

.select-wrap {
  position: relative;
}

.contact-select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.2rem;
}

.contact-select option {
  background: #080d09;
  color: #ffffff;
}

.select-caret {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-green);
  font-size: 0.8rem;
  pointer-events: none;
}

.contact-textarea {
  resize: none;
  min-height: 48px;
}

.btn-submit-quote {
  background: var(--primary-green);
  color: #060907;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  box-shadow: 0 4px 18px var(--primary-green-glow);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit-quote:hover {
  background: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(142, 224, 0, 0.4);
}

.btn-submit-quote .submit-arrow {
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.btn-submit-quote:hover .submit-arrow {
  transform: translateX(4px);
}

/* Right Column: Info & Australia Graphic */
.contact-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  z-index: 2;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0d130e;
  border: 1.5px solid var(--primary-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--primary-green-glow);
}

.contact-info-val {
  color: #e1e8e3;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

a.contact-info-val:hover {
  color: var(--primary-green);
}

.australia-map-graphic {
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 110px;
  color: #8ee000;
  pointer-events: none;
}

.au-svg {
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.map-pin-pulse {
  position: absolute;
  right: 28px;
  bottom: 30px;
  color: var(--primary-green);
  font-size: 1.25rem;
  filter: drop-shadow(0 0 8px var(--primary-green));
  animation: pulsePin 2s infinite ease-in-out;
}

@keyframes pulsePin {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 0 12px var(--primary-green));
  }
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.site-footer {
  background: #040605;
  position: relative;
  z-index: 15;
  width: 100%;
  border-top: 1px solid rgba(142, 224, 0, 0.4);
  box-shadow: 0 -4px 20px rgba(142, 224, 0, 0.08);
}

.footer-top-accent-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
}

.footer-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 4.5rem 2.5rem 2rem 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.9fr 1.1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.8rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 1.4rem;
}

/* Brand Column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  margin-top: -26px;
  margin-bottom: -20px;
  margin-left: -22px;
  transition: transform 0.25s ease;
}

.footer-logo-link:hover {
  transform: translateY(-2px);
}

.footer-logo-img {
  height: 155px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: #8e9a92;
  line-height: 1.5;
  margin-bottom: 1.1rem;
  max-width: 260px;
}

.footer-social-row {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0d130e;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a4afa8;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-icon-btn:hover,
.social-icon-btn.active-social {
  border-color: var(--primary-green);
  color: var(--primary-green);
  box-shadow: 0 0 12px var(--primary-green-glow);
  background: rgba(142, 224, 0, 0.08);
  transform: translateY(-2px);
}

/* Links Lists */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: #a4afa8;
  font-size: 0.86rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  font-weight: 400;
}

.footer-links-list a:hover {
  color: var(--primary-green);
  transform: translateX(3px);
}

/* Service Area */
.footer-service-area-text .area-main {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.footer-service-area-text .area-sub {
  color: #8e9a92;
  font-size: 0.85rem;
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #cbd6ce;
}

.footer-c-icon {
  color: var(--primary-green);
  font-size: 0.95rem;
  width: 18px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: #cbd6ce;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--primary-green);
}

/* Bottom Bar */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  font-size: 0.82rem;
  color: #718076;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #718076;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-legal-links a {
  color: #8e9a92;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--primary-green);
}

.legal-separator {
  color: rgba(255, 255, 255, 0.2);
}

/* =========================================
   FREE QUOTE MODAL
   ========================================= */
.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem;
}

.quote-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-modal-card {
  background: #0d140e;
  border: 1px solid rgba(142, 224, 0, 0.3);
  border-radius: 20px;
  width: 100%;
  max-width: 540px;
  padding: 2.2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(142, 224, 0, 0.15);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal-overlay.active .quote-modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--primary-green);
  color: #060907;
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
}

.modal-header h3 span {
  color: var(--primary-green);
}

.modal-header p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #c0cbce;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 12px rgba(142, 224, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-submit-btn {
  background: var(--primary-green);
  color: #060907;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.9rem;
  border-radius: 8px;
  margin-top: 0.6rem;
  box-shadow: 0 4px 18px var(--primary-green-glow);
  transition: all 0.2s ease;
}

.form-submit-btn:hover {
  background: var(--primary-green-hover);
  transform: translateY(-2px);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #090e0a;
  border-left: 1px solid rgba(142, 224, 0, 0.2);
  z-index: 1000;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.7);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-close {
  align-self: flex-end;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav-list a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #dbe4de;
  text-transform: uppercase;
  transition: color 0.2s;
}

.mobile-nav-list a:hover {
  color: var(--primary-green);
}

/* =========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================= */
@media (max-width: 1280px) {
  .hero-bg-visual {
    width: 50%;
  }
  .nav-list {
    gap: 1.4rem;
  }
  .features-pill-card {
    padding: 0.75rem 1.2rem;
  }
  .feature-segment {
    gap: 0.6rem;
    padding: 0.3rem 0.5rem;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .hero-bg-visual {
    width: 100%;
    opacity: 0.25;
  }
  .hero-bg-visual::before {
    width: 100%;
    background: linear-gradient(to bottom, rgba(6,9,7,0.6) 0%, #060907 100%);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
  .hero-description {
    max-width: 600px;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-quick-services {
    justify-content: center;
  }
  .features-pill-card {
    border-radius: 24px;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.2rem;
  }
  .feature-segment {
    flex: 1 1 calc(50% - 1rem);
    min-width: 220px;
  }
  .feature-divider {
    display: none;
  }
  
  /* About Section Tablet */
  .about-section {
    padding: 4rem 0 5rem 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .about-content {
    align-items: center;
  }
  .about-description {
    margin: 0 auto 1.2rem auto;
  }
  .btn-learn-more {
    align-self: center;
  }

  /* Services Section Tablet */
  .services-section {
    padding: 4rem 0 5rem 0;
  }
  .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Why Choose Us Tablet */
  .why-choose-section {
    padding: 4rem 0 5rem 0;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .why-choose-left {
    align-items: center;
  }
  .why-choose-desc {
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
  }
  .btn-why-learn {
    align-self: center;
  }
  .why-choose-center {
    max-width: 540px;
    margin: 0 auto;
  }
  .why-feature-item {
    max-width: 540px;
    margin: 0 auto;
    text-align: left;
    width: 100%;
  }

  /* Our Process Tablet */
  .process-section {
    padding: 4rem 0 5rem 0;
  }
  .process-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
  .process-connector {
    display: none;
  }

  /* Projects Tablet */
  .projects-section {
    padding: 4rem 0 5rem 0;
  }
  .projects-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .project-cta-wrap {
    margin-top: 2rem;
  }

  /* Testimonials Tablet */
  .testimonials-section {
    padding: 4rem 0 5rem 0;
  }
  .testimonials-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    max-width: 680px;
    margin: 0 auto;
  }

  /* Contact Tablet */
  .contact-section {
    padding: 4rem 0 5rem 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-left {
    text-align: center;
    align-items: center;
  }
  .contact-subtitle-text {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-right {
    justify-content: center;
    padding-left: 0;
  }
  .australia-map-graphic {
    display: none;
  }

  /* Footer Tablet */
  .footer-container {
    padding: 3.5rem 2rem 2rem 2rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0.75rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-container {
    height: 44px;
  }

  .logo-img {
    height: 120px;
    max-width: 240px;
    margin-left: -14px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .header-actions .phone-quick-link {
    display: flex !important;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none;
  }

  .header-actions .phone-quick-link span:not(.phone-icon-circle) {
    display: none;
  }

  .phone-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(142, 224, 0, 0.12);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
  }

  .btn-header-quote {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
    color: #ffffff;
    font-size: 1.45rem;
  }

  /* Mobile Hero Section */
  .hero-section {
    position: relative;
    padding: 0 1.1rem 2.5rem 1.1rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #060907;
  }

  .hero-bg-visual {
    position: relative;
    width: calc(100% + 2.2rem);
    margin-left: -1.1rem;
    margin-right: -1.1rem;
    height: 420px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, #000 65%, rgba(0, 0, 0, 0.8) 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 65%, rgba(0, 0, 0, 0.8) 80%, transparent 100%);
  }

  .hero-bg-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: contrast(1.05) brightness(1.03);
  }

  .bg-crosshair-watermark {
    top: 140px;
    left: -45px;
    width: 340px;
    height: 340px;
    opacity: 0.28;
    z-index: 2;
  }

  .hero-container {
    padding: 0;
    margin-top: -95px;
    position: relative;
    z-index: 10;
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-content {
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.6px;
    color: var(--primary-green);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.45rem;
    text-align: left;
    align-self: flex-start;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8.5vw, 3.1rem);
    line-height: 0.95;
    margin-bottom: 0.35rem;
    font-weight: 900;
    text-align: left;
    align-self: flex-start;
  }

  .title-line-1 {
    color: #ffffff;
    display: block;
    text-align: left;
  }

  .title-line-2 {
    color: var(--primary-green);
    display: block;
    text-align: left;
  }

  .hero-title::after {
    content: '';
    display: block;
    width: 44px;
    height: 3.5px;
    background: var(--primary-green);
    margin: 0.65rem 0 1rem 0;
    border-radius: 2px;
  }

  .hero-description {
    font-size: 0.92rem;
    color: #e2ebe5;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: left;
  }

  .hero-cta-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
    width: 100% !important;
    margin-bottom: 2rem !important;
    position: relative !important;
    z-index: 15 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .btn-primary-glow {
    width: 100% !important;
    background: var(--primary-green) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    padding: 0.95rem 1.4rem !important;
    border-radius: 8px !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    box-shadow: 0 4px 18px rgba(142, 224, 0, 0.35) !important;
    opacity: 1 !important;
    visibility: visible !important;
    letter-spacing: 0.5px !important;
  }

  .btn-secondary-phone {
    width: 100% !important;
    background: #060907 !important;
    border: 1.5px solid var(--primary-green) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    padding: 0.85rem 1.4rem !important;
    border-radius: 8px !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-decoration: none !important;
  }

  .btn-secondary-phone .phone-icon {
    color: #ffffff !important;
    background: transparent !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    font-size: 1.05rem !important;
    display: inline-flex !important;
  }

  /* 3 Quick Services Row on Mobile */
  .hero-quick-services {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.8rem !important;
    align-items: flex-start !important;
    width: 100%;
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.2rem;
  }

  .quick-service-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.5rem !important;
  }

  .quick-service-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.2rem;
  }

  .quick-service-text {
    align-items: center;
  }

  .quick-service-label-1 {
    font-size: 0.72rem;
    color: #ffffff;
  }

  .quick-service-label-2 {
    font-size: 0.72rem;
    color: var(--primary-green);
  }

  /* Floating Features Vertical Card on Mobile */
  .bottom-features-section {
    padding: 0 1.2rem 2.5rem 1.2rem;
  }

  .features-pill-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    padding: 0.8rem 1.4rem;
    background: #080d09;
    border: 1px solid rgba(142, 224, 0, 0.22);
    gap: 0;
  }

  .feature-segment {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    width: 100%;
  }

  .feature-segment:last-child {
    border-bottom: none;
  }

  .feature-divider {
    display: none;
  }

  .feature-icon-badge {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(142, 224, 0, 0.5);
    background: rgba(142, 224, 0, 0.08);
  }

  .feature-icon-badge svg {
    width: 20px;
    height: 20px;
  }

  .feature-info {
    align-items: flex-start;
    text-align: left;
  }

  .feature-title {
    font-size: 0.76rem;
    color: var(--primary-green);
    line-height: 1.2;
  }

  .feature-subtitle {
    font-size: 0.76rem;
    color: #ffffff;
    line-height: 1.2;
  }
  
  /* About Section Mobile */
  .about-section {
    padding: 3rem 0 4rem 0;
  }
  .about-container {
    padding: 0 1.2rem;
  }
  .about-title {
    font-size: 2.2rem;
  }
  .about-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-card {
    padding: 1.4rem 1.2rem;
    text-align: left;
  }

  /* Services Section Mobile */
  .services-section {
    padding: 3.5rem 0 4.5rem 0;
  }
  .services-container {
    padding: 0 1.2rem;
  }
  .services-title {
    font-size: 1.9rem;
  }
  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-card-image-wrap {
    height: 200px;
  }

  /* Why Choose Us Mobile */
  .why-choose-section {
    padding: 3.5rem 0 4.5rem 0;
  }
  .why-choose-container {
    padding: 0 1.2rem;
  }
  .why-choose-title {
    font-size: 2.2rem;
  }
  .why-feature-item {
    gap: 1rem;
  }

  /* Our Process Mobile */
  .process-section {
    padding: 3.5rem 0 4.5rem 0;
  }
  .process-container {
    padding: 0 1.2rem;
  }
  .process-title {
    font-size: 1.9rem;
  }
  .process-flow {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .process-step-desc {
    max-width: 100%;
  }

  /* Projects Mobile */
  .projects-section {
    padding: 3.5rem 0 4.5rem 0;
  }
  .projects-container {
    padding: 0 1.2rem;
  }
  .projects-title {
    font-size: 1.9rem;
  }
  .projects-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .project-card {
    height: 165px;
  }
  .project-cta-wrap {
    margin-top: 1.5rem;
  }
  .btn-all-projects {
    width: 100%;
    justify-content: center;
  }

  /* Testimonials Mobile */
  .testimonials-section {
    padding: 3.5rem 0 4.5rem 0;
  }
  .testimonials-container {
    padding: 0 1.2rem;
  }
  .testimonials-title {
    font-size: 1.9rem;
  }
  .testimonials-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .testimonial-card {
    padding: 1.6rem 1.4rem;
  }
  .testimonials-trust-badge {
    width: 100%;
    border-radius: 20px;
    text-align: center;
    padding: 0.9rem 1.2rem;
  }

  /* Contact Mobile */
  .contact-section {
    padding: 3.5rem 0 4.5rem 0;
  }
  .contact-container {
    padding: 0 1.2rem;
  }
  .contact-main-title {
    font-size: 1.8rem;
  }
  .btn-contact-phone-white {
    width: 100%;
    justify-content: center;
  }
  .contact-center-card {
    padding: 1.4rem 1.1rem;
  }
  .form-row-3,
  .form-row-2,
  .form-row-bottom {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .btn-submit-quote {
    width: 100%;
    justify-content: center;
  }

  /* Footer Mobile */
  .footer-container {
    padding: 3rem 1.2rem 1.8rem 1.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .footer-brand-col {
    grid-column: span 1;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
}









