/* Conflicting mobile nav dropdown rules removed to fix CSS errors. */
@media (max-width: 400px) {
  /* Removed margin-top and padding from .hero and .hero__content to avoid conflict. Now handled in Style1.css only. */
  .hero__content h1 {
    font-size: 0.98rem;
    line-height: 1.18;
  }
  .hero-row p {
    font-size: 0.89rem;
    line-height: 1.25;
  }
  .hero,
  .hero-video,
  .hero-bg {
    min-height: 80vh;
    height: 80vh;
    max-height: 80vh;
  }
  .hero-btn {
    margin-bottom: 12px !important;
  }
}
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

/* Font Awesome icon visibility - PROPER FONT WEIGHTS */
/* All icons base rules */
i[class*="fa-"],
.fa,
.fas,
.far,
.fal,
.fab,
i.fa-solid,
i.fa-regular,
i.fa-light,
i.fa-brands {
  display: inline-block !important;
  line-height: inherit !important;
  vertical-align: -0.125em !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-style: normal !important;
  font-kerning: auto !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* Solid icons (900 weight) */
i.fa-solid,
.fa-solid,
.fas {
  font-weight: 900 !important;
}

/* Brands icons (900 weight) */
i.fa-brands,
.fa-brands,
.fab {
  font-weight: 900 !important;
}

/* Regular icons (400 weight) */
i.fa-regular,
.fa-regular,
.far {
  font-weight: 400 !important;
}

/* Light icons (300 weight) */
i.fa-light,
.fa-light,
.fal {
  font-weight: 300 !important;
}

/* ===================== */
/* GLOBAL */
/* ===================== */

:root {
  --green: #1f9b4a;
  --green-dark: #123f26;
  --yellow: #f4c400;
  --white: #ffffff;
  --text-dark: #1a1a1a;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
}

/* Container keeps everything aligned */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px; /* Normal left/right padding */
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 8px;
  }
}


/* PART 1 – TOP BAR */
/* Top transparent bar */
.topbar {
  width: 100%;
  background: rgba(149, 184, 34, 0.944); /* background of the top bar */
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
  backdrop-filter: blur(8px);          /* Glass effect */
  border-bottom: 1.5px solid rgba(204,255,0,0.13); /* Subtle accent border */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transition: background 0.3s;
}

@media (max-width: 480px) {
  .topbar {
    font-size: 0.85rem;
  }
}

.topbar:hover {
  background:#1f9b4a; /* Brand accent on hover */
  box-shadow: 0 4px 24px 0 rgba(8, 120, 2, 0.13);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 8px 0 0 0; 
}

.topbar-contacts {
  display: flex;
  gap: 24px;
}

.topbar-link {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 16px;
  letter-spacing: 0.01em;
  border-radius: 10px;
  display: flex;
  align-items: center;
  transition: 
    background 0.18s cubic-bezier(.4,2,.6,1),
    color 0.18s cubic-bezier(.4,2,.6,1),
    box-shadow 0.18s cubic-bezier(.4,2,.6,1);
}

/* Icon colors */
.topbar-link i.fa-users {
  color: #ffffff;
}

.topbar-link .fa-phone {
  color: #ffffff;
}

.topbar-link .fa-envelope {
  color: #ffffff;
}

.topbar-link i.fa-users {
  margin-right: 6px;
}

.topbar-link i.fa-envelope {
  margin-left: 2px;
}

.contact-combo-icon .contact-icons {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
}

.contact-combo-icon .fa-phone {
  font-size: 1.1em;
  margin-right: -8px; /* overlap the icons a bit */
  z-index: 2;
}

.contact-combo-icon .fa-envelope {
  font-size: 1em;
  margin-left: -2px;
  z-index: 1;
}

/* Main header/nav bar */
.main-header {
  position: fixed;
  top: 38px; /* Height of topbar */
  left: 0;
  width: 100%;
  z-index: 15;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
  background-color: rgba(15, 41, 32, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 4px 0 4px 0; 
}

.header-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  min-width: 180px; /* Ensures both lines have same width */
}

.gradient-text {
  background: linear-gradient(90deg,#ccff00  0%, #f9fafa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.brand-main {
  font-size: 2.2rem;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  width: 180px;
  font-weight: 700;
  text-align: left;
  margin: 0;
  padding: 0;
}

.brand-sub {
 font-size: 1.7rem;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  width: 180px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-align: left;
  margin: 0;
  padding: 0;
}

.header-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Logo flip animation */

@keyframes logo-flip {
  0% {
    transform: perspective(980px) rotateX(6deg) rotateY(0deg) translateZ(0) scale(1);
    filter: brightness(1) saturate(1);
  }
  25% {
    transform: perspective(980px) rotateX(6deg) rotateY(32deg) translateZ(10px) scale(1.03);
    filter: brightness(1.08) saturate(1.04);
  }
  50% {
    transform: perspective(980px) rotateX(6deg) rotateY(0deg) translateZ(0) scale(1);
    filter: brightness(1.02) saturate(1.01);
  }
  75% {
    transform: perspective(980px) rotateX(6deg) rotateY(-32deg) translateZ(10px) scale(1.03);
    filter: brightness(1.08) saturate(1.04);
  }
  100% {
    transform: perspective(980px) rotateX(6deg) rotateY(0deg) translateZ(0) scale(1);
    filter: brightness(1) saturate(1);
  }
}

.header-logo {
  animation: logo-flip 2.5s ease-in-out infinite;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform-origin: center center;
  will-change: transform, filter;
}

.main-header .header-logo {
  animation-name: logo-intro-zoom;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  transform-origin: top center;
  filter: drop-shadow(0 10px 16px rgba(7, 32, 17, 0.22));
}

@keyframes logo-intro-zoom {
  0% {
    transform: scale(0.84);
    filter: brightness(0.98) drop-shadow(0 6px 10px rgba(6, 28, 15, 0.16));
  }
  40% {
    transform: scale(0.92);
    filter: brightness(1) drop-shadow(0 7px 12px rgba(6, 28, 15, 0.18));
  }
  70% {
    transform: scale(1);
    filter: brightness(1.02) drop-shadow(0 8px 14px rgba(6, 28, 15, 0.2));
  }
  100% {
    transform: scale(1.05);
    filter: brightness(1.04) drop-shadow(0 10px 16px rgba(6, 28, 15, 0.22));
  }
}

.header-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(30, 40, 60, 0.35);/* Semi-transparent glow */
  border-radius: 28px;                   /* Rounded edges */
  padding: 6px 32px;                     /* Space inside nav */
  backdrop-filter: blur(4px);            /* Optional: glass effect */
  border: 2px solid rgba(204,255,0,0.35);
  box-shadow: 0 8px 32px 0  rgba(204,255,0,0.35);
}

.header-nav a.active,
.header-nav a:hover {
  box-shadow: 0 0 16px 4px rgba(204,255,0,0.45), 0 2px 8px 0 rgba(0,255,255,0.18);
  background: rgba(13, 188, 54, 0.13);
  transition: box-shadow 0.3s, background 0.3s;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 12px;
  border-bottom: 2px solid transparent;
  border-radius: 18px; /* Rounded edges */
  transition: 
    border-color 0.2s, 
    color 0.2s, 
    box-shadow 0.3s,
    background 0.3s;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.header-nav a.active,
.header-nav a:hover {
  color: #fdfdfd;
  border-bottom: 2.5px solid #dde408;
  background: rgba(9, 9, 9, 0.227); /* subtle background */
  box-shadow: 0 4px 24px 0 rgba(0, 255, 255, 0.45), 
              0 2px 8px 0 rgba(0,0,0,0.18);
  border-radius: 18px;
}

/* Dropdown Menu Styles */
.header-nav .dropdown {
  position: relative;
}

.header-nav .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.header-nav .dropdown-toggle i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

/* Desktop hover behavior - only for non-touch devices */
@media (hover: hover) and (pointer: fine) {
  .header-nav .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
  }
  
  .header-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Active state for mobile/touch devices */
.header-nav .dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}

.header-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(31, 155, 74, 0.98);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 0;
  margin-top: 8px;
  min-width: 240px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.header-nav .dropdown-menu li {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}

.header-nav .dropdown-menu a {
  display: block;
  padding: 12px 24px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-nav .dropdown-menu a:hover {
  background: #fff;
  color: rgba(31, 155, 74, 0.98);
  padding-left: 28px;
  border-bottom: none;
  box-shadow: none;
  border-radius: 0;
}

/* PART 2 – RESPONSIVE NAVIGATION MENU */
/* Hamburger styles */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 30;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: #8fb206;
  border-radius: 2px;
  transition: 0.3s;
  pointer-events: none;
}

/* Show hamburger on small screens */
@media (max-width: 1200px) {
  .nav-toggle {
    display: flex;
    margin-left: auto;
    margin-right: 16px;
  }
  
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 2px; /* Align to the right edge of the toggle */
    min-width: 180px;
    max-width: 90vw;
    background: #232e3a;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 32px 0 rgba(44,255,255,0.10);
    padding: 0;
    z-index: 100;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.3s cubic-bezier(.4,2,.6,1), transform 0.3s cubic-bezier(.4,2,.6,1);
  }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    opacity: 1;
    transform: translateY(0);
    animation: nav-slide-down 0.3s cubic-bezier(.4,2,.6,1);
  }
  .header-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
    margin: 0;
    padding: 8px 0;
  }
  .header-nav li {
    width: 100%;
  }
  .header-nav a {
    width: 100%;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 0;
    text-align: left;
    transition: background 0.18s, color 0.18s;
    box-shadow: none;
    border: none;
    font-weight: 600;
    color: #fff;
    background: none;
    position: relative;
    outline: none;
    display: block;
  }
  .header-nav a:hover,
  .header-nav a.active {
    background: #1f9b4a;
    color: #fff;
  }
  .header-nav ul li:not(:last-child) a {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  
  /* Mobile Dropdown Styles - Override desktop styles */
  .header-nav .dropdown-menu {
    position: static !important;
    background: rgba(15, 41, 32, 0.95) !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transform: none !important;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, visibility 0.35s ease !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  .header-nav .dropdown.active .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 500px !important;
    padding: 8px 0 !important;
  }
  
  .header-nav .dropdown-toggle {
    justify-content: space-between !important;
    display: flex !important;
    width: 100% !important;
  }
  
  .header-nav .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg) !important;
  }
  
  .header-nav .dropdown-menu a {
    padding: 12px 24px 12px 40px !important;
    font-size: 0.95rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    background: transparent !important;
    color: #fff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  
  .header-nav .dropdown-menu li:last-child a {
    border-bottom: none !important;
  }
  
  .header-nav .dropdown-menu a:hover {
    background: rgba(31, 155, 74, 0.6) !important;
    padding-left: 44px !important;
  }
}

@keyframes nav-slide-down {
  from { opacity: 0; transform: translateY(-12px);}
  to   { opacity: 1; transform: translateY(0);}
}

/* Responsive */ /*adjustments for smaller screens */

@media (max-width: 900px) {
  .header-logo {
    height: 48px;
  }
  .brand-main {
    font-size: 1.3rem;
    min-width: 120px;
  }
  .brand-sub {
    font-size: 1rem;
    min-width: 120px;
  }
  .topbar-link {
    font-size: 0.95rem;
    padding: 4px 10px;
  }
  .topbar-contacts {
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .header-logo {
    height: 32px;
  }
  .brand-main {
    font-size: 1rem;
    min-width: 90px;
  }
  .brand-sub {
    font-size: 0.8rem;
    min-width: 90px;
  }
  .topbar-link {
    font-size: 0.85rem;
    padding: 3px 6px;
  }
  .topbar-contacts {
    gap: 6px;
  }
.header-nav {
    top: 100%;
    right: 2px;
    min-width: 180px;
    max-width: 92vw;
    max-height: 38vh; /* Match hero/video height */
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    padding: 0;
    z-index: 100;
    background: #232e3a;
  }
  .header-nav ul {
    padding: 0;
    margin: 0;
  }
  .header-nav a {
    padding: 10px 14px;
    font-size: 0.98rem;
    border-radius: 0;
  } 
}

@media (max-width: 400px) {
  .header-nav {
    max-height: 80vh; /* Allow much more height for dropdown */
    min-width: 140px;
    right: 2px;
  }
  .header-nav ul {
    padding-top: 24px !important; /* Extra space for Home visibility */
  }
  .header-nav a {
    padding: 8px 10px;
    font-size: 0.92rem;
  }
}

/* PART 3 – HERO SECTION */
/* Hero background video */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;      /* Full viewport height */
  height: 100vh;          /* Ensure full screen */
  display: flex;
  align-items: center;    /* Center content vertically */
  justify-content: center;
  padding-bottom: 0;      /* Remove extra bottom padding */
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #137855 0%, #1f9b4a 30%, #ccff00 60%, #a8d400 80%, #137855 100%);
  z-index: 10;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(46, 50, 46, 0.65) 0%, rgba(71, 67, 67, 0.45) 100%);
  z-index: 1;
  opacity: 1;
}

/* Move hero content lower and center it */
/* Center and spread hero content */
.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: hero-fade-in-up 2.0s cubic-bezier(.4,2,.6,1);
}

/* Headline: very large, bold, spaced */
.hero__content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 2px 8px rgba(204,255,0,0.10);
}

/* Paragraph: large, readable, spread out */
.hero-row p {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 40px 0;
  max-width: 900px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  line-height: 1.4;
}

.hero__content h1,
.hero-row p {
  text-shadow:
    0 6px 32px rgba(0,0,0,0.65),   /* Stronger dark shadow */
    0 2px 8px rgba(204,255,0,0.18); /* Subtle brand glow */
}

@keyframes hero-fade-in-up {
  from { opacity: 0; transform: translateY(40px);}
  to   { opacity: 1; transform: translateY(0);}
}

/* Button style (already in your CSS, but ensure margin is 0) */
.hero-btn {
  margin-top: 0;
  margin-left: 0;
  min-width: 200px;
  padding: 15px 40px;
  background: linear-gradient(90deg, #ccff00 0%, #137855 100%);
  color: #222;
  font-weight: 600;
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(0,255,255,0.18);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  align-self: center;
}
.hero-btn:hover {
  background: linear-gradient(90deg, #137855 0%, #ccff00 100%);
  color: #fff;
  box-shadow: 0 0 24px 6px #00d9ff5d, 0 4px 24px rgba(149, 255, 0, 0.659);
  transform: translateY(-2px);
}

/* RESPONSIVE HERO SECTION */

@media (max-width: 900px) {
    .hero__content {
    padding-top: 110px;      /* Increased top padding */
    max-width: 95vw;
  }
  .hero__content h1 {
    font-size: clamp(1.1rem, 3vw, 1.6rem); /* Smaller headline */
    margin-bottom: 10px;
  }
  .hero-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-row p {
    font-size: clamp(0.95rem, 2vw, 1.05rem); /* Smaller paragraph */
    margin-bottom: 20px;
    max-width: 95vw;
    text-align: center;
  }
  .hero-btn {
    display: block;
    font-size: 1rem;
    padding: 12px 0;
    width: 90%;
    min-width: 100px;
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
  }
  .hero,
  .hero-video,
  .hero-bg {
    min-height: 55vh;
    height: 55vh;
    max-height: 55vh;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero__content {
    padding-top: 100px; /* Increased to clear nav/logo */
    padding-bottom: 16px;
    padding-left: 8px;
    padding-right: 8px;
    max-width: 98vw;
    box-sizing: border-box;
  }
  .hero__content h1 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.25;
    word-break: break-word;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  }
  .hero-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 8px;
  }
  .hero-row p {
    font-size: 0.98rem;
    margin-bottom: 14px;
    max-width: 98vw;
    line-height: 1.35;
    text-align: center;
    word-break: break-word;
  }
  .hero-btn {
    display: block;
    width: 100%;
    max-width: 240px;
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 22px;
    margin: 0 auto;
    text-align: center;
  }
  .hero,
  .hero-video,
  .hero-bg {
    min-height: 60vh;
    height: 60vh;
    max-height: 60vh;
  }
}

/* Our Services Section */
.services-section {
  padding: 48px 0 32px 0;
  background: #f7fafb;
  text-align: center;
  overflow: visible;
}

@media (max-width: 768px) {
  .services-section {
    padding: 40px 8px 24px 8px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 32px 8px 20px 8px;
  }
}

.services-pretitle {
  font-size: 1.2rem;
  color: var(--green-dark, #123f26);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .services-pretitle {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }
}

.services-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 4px 0 12px;
  color: var(--green, #1f9b4a);
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .services-title {
    font-size: 1.8rem;
  }
}

.services-hook {
  margin: 0 auto 28px;
  color: #2f4a3b;
  font-size: 1.03rem;
  max-width: 820px;
  line-height: 1.4;
  opacity: 0.95;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 600px) {
  .services-hook {
    font-size: 0.95rem;
    padding: 0 8px;
  }
}

/* Desktop: 3 columns */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
  justify-content: center;
  overflow: visible;
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 98vw;
  }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 99vw;
  }
}

.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44,255,100,0.07), 0 1.5px 8px rgba(0,0,0,0.06);
  padding: 32px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  opacity: 1;
  transform: none;
  transition: opacity 520ms cubic-bezier(.2,.9,.3,1), transform 520ms cubic-bezier(.2,.9,.3,1);
  will-change: opacity, transform;
  position: relative;
  overflow: visible !important;
  z-index: 1;
}

.js-enabled .service-card {
  opacity: 0;
  transform: translateY(20px) scale(0.995);
}

@media (max-width: 600px) {
  .service-card {
    padding: 24px 16px 20px 16px;
    border-radius: 16px;
    max-width: 100%;
  }
}

/* When .services-grid gets .animate, reveal cards (JS will set stagger delays) */
.services-grid.animate .service-card {
  opacity: 1;
  transform: none;
}

/* keep hover effect but slightly stronger after reveal */
.services-grid.animate .service-card:hover {
  transform: translateY(-8px) scale(1.01);
}

/* Make sure buttons/other transitions not delayed by this animation */
.service-card .service-btn {
  transition: transform 180ms ease, box-shadow 180ms ease, background-position 280ms ease;
}

/* Respect user preference to reduce motion */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .services-grid.animate .service-card {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(253, 253, 3, 0.186), 0 4px 16px rgba(42, 44, 40, 0.347);
  transform: translateY(-4px) scale(1.03);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  text-align: center;
}

/* ── Service cards: full background-image effect (home page) ── */
.services-section .service-card {
  background-color: #111;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  padding: 0;
  align-items: stretch;
  justify-content: flex-end;
  border-radius: 18px;
  overflow: hidden;
}

/* Dark gradient overlay so all text stays legible */
.services-section .service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    to top,
    rgba(3, 12, 7, 0.94) 0%,
    rgba(5, 20, 12, 0.80) 45%,
    rgba(8, 28, 18, 0.55) 75%,
    rgba(10, 30, 18, 0.30) 100%
  );
  z-index: 0;
  pointer-events: none;
  transition: background 0.4s ease;
}

.services-section .service-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(3, 12, 7, 0.97) 0%,
    rgba(5, 20, 12, 0.88) 50%,
    rgba(31, 155, 74, 0.45) 100%
  );
}

/* Content sits above overlay */
.services-section .service-content {
  position: relative;
  z-index: 2;
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Text colour overrides for dark background */
.services-section .service-card h3 {
  color: #ccff00;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 24px rgba(0,0,0,0.6);
  margin-bottom: 10px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.services-section .service-card .service-lead {
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
  max-width: 100%;
  text-align: center;
  font-weight: 500;
}

.services-section .service-card .service-features {
  width: 100%;
}

.services-section .service-card .service-features li {
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  border: 1px solid rgba(204, 255, 0, 0.25);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  max-width: 100%;
  font-weight: 500;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.services-section .service-card .trust-signals {
  color: #ccff00;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
  max-width: 100%;
  text-align: center;
}

/* Hover lift — override the generic :hover rule */
.services-section .service-card:hover,
.services-grid.animate .service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 48px rgba(31, 155, 74, 0.30);
}

.service-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0 0 18px 0;
  color: var(--green, #1f9b4a);
  text-align: center;
}

@media (max-width: 600px) {
  .service-card h3 {
    font-size: 1.1rem;
    margin: 0 0 14px 0;
  }
}

/* Content column: constrain width and center the column inside the card */
.service-lead,
.service-card p,
.service-features,
.trust-signals {
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  text-align: left;
}

@media (max-width: 600px) {
  .service-lead,
  .service-card p,
  .service-features,
  .trust-signals {
    max-width: 100%;
    font-size: 0.9rem;
  }
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: block;
  width: 100%;
}

.service-features li {
  display: block;
  width: 100%;
  max-width: 100%;
  background: #eeffed;
  color: #124c2b;
  padding: 9px 14px;
  margin: 8px auto 0;
  border-radius: 12px;
  font-size: 0.98rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  line-height: 1.3;
}

@media (max-width: 600px) {
  .service-features li {
    font-size: 0.9rem;
    padding: 8px 12px;
    margin: 6px auto 0;
    border-radius: 10px;
  }
}

/* Trust line aligned with column */
.trust-signals {
  font-weight: 620;
  color: var(--green-dark, #123f26);
  font-size: 0.86rem;
  margin-top: 12px;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .trust-signals {
    font-size: 0.8rem;
  }
}

.service-btn {
  display: inline-block;
  padding: 8px 22px;
  background: linear-gradient(90deg, #ccff00 0%, #137855 100%);
  color: #222;
  font-weight: 600;
  border-radius: 16px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 8px rgba(0,255,255,0.08);
  margin-top: 8px;
}

@media (max-width: 600px) {
  .service-btn {
    font-size: 0.9rem;
    padding: 8px 18px;
    width: 100%;
    max-width: 200px;
  }
}

.service-btn:hover {
  background: linear-gradient(90deg, #137855 0%, #ccff00 100%);
  color: #fff;
}
/* Other Services Dropdown */
.service-dropdown-wrapper {
  position: relative;
  display: block;
  margin-top: 8px;
  width: 100%;
  text-align: center;
}

.service-dropdown-wrapper .service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  outline: none;
  background: linear-gradient(90deg, #ccff00 0%, #137855 100%);
  color: #222;
  font-weight: 600;
  border-radius: 16px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.18s ease;
  box-shadow: 0 2px 8px rgba(0,255,255,0.08);
  padding: 8px 22px;
  position: relative;
  z-index: 10;
  touch-action: manipulation;
  pointer-events: auto;
  width: auto;
  height: auto;
}

.service-dropdown-wrapper .service-btn:hover {
  background: linear-gradient(90deg, #137855 0%, #ccff00 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(19,120,85,0.2);
}

.service-dropdown-wrapper .service-btn:active {
  transform: scale(0.98);
  background: linear-gradient(90deg, #137855 0%, #ccff00 100%);
}

.service-dropdown-wrapper .service-btn i {
  transition: transform 0.3s ease;
  font-size: 0.9em;
}

.service-dropdown-wrapper.active .service-btn i {
  transform: rotate(180deg);
}

.service-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  border: 0;
  box-shadow: none;
  z-index: 100;
  min-width: 280px;
  max-width: 300px;
  width: fit-content;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, max-height 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
  pointer-events: none;
}

.service-dropdown-wrapper.active .service-dropdown-menu {
  opacity: 1;
  visibility: visible;
  max-height: 400px;
  pointer-events: auto;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #222 !important;
  text-decoration: none;
  background: #ffffff !important;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.15s ease;
  pointer-events: auto;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.service-dropdown-item:last-child {
  border-bottom: none;
}

.service-dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}

.service-dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}

.service-dropdown-item i {
  color: #137855;
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* Hover effect for desktop */
@media (hover: hover) and (pointer: fine) {
  .service-dropdown-item:hover {
    background: #f9f9f9 !important;
    padding-left: 20px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .service-dropdown-wrapper {
    width: 100%;
  }
  
  .service-dropdown-wrapper .service-btn {
    display: inline-block;
    font-size: 0.9rem;
    padding: 8px 18px;
    width: 100%;
    max-width: 200px;
    border: none;
    outline: none;
  }
  
  .service-dropdown-menu {
    min-width: 260px;
    max-width: 300px;
    width: fit-content;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: calc(100% + 12px);
  }
  
  .service-dropdown-item {
    padding: 12px 14px;
    font-size: 13px;
    white-space: normal;
    background: #ffffff !important;
  }

  .service-dropdown-item:hover {
    background: #f9f9f9 !important;
  }
}

/* WHY CHOOSE US SECTION*/

/* Section header + intro */
.choose-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--green, #137855);
  margin: 32px 0;   
  padding: 16px 0;
}

.choose-intro-hero {
 max-width: 1090px;
  margin: 0 auto 26px;   /* centers the paragraph block */
  text-align: left;      /* left-align lines so they line up under the first line */
  color: #2f4a3b;
  line-height: 1.6;
  font-size: 1.03rem;
  padding: 0 12px;       /* small horizontal padding for narrow screens */
  word-wrap: break-word;
  font-weight: 500;
}

/* Grid: left text + fixed right image (minmax prevents overflow) */
.choose-grid {
  max-width: 1200px;
  margin: 0 auto 20px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 36px;
  align-items: start;
}

/* Left list */
.choose-left { min-width: 0; }
.choose-features-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  flex: 0 0 62px;
  height: 62px;
  width: 62px;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff 0%, rgba(220, 248, 231, 0.85) 100%);
  border: 1.5px solid rgba(31, 155, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green, #137855);
  box-shadow: 0 4px 18px rgba(19, 120, 85, 0.14), 0 1px 3px rgba(0, 0, 0, 0.06);
  position: relative;
  isolation: isolate;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.choose-section .feature-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 13px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

.choose-section .feature-item:hover .feature-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(19, 120, 85, 0.22), 0 2px 6px rgba(0, 0, 0, 0.07);
  border-color: rgba(31, 155, 74, 0.4);
}


.choose-section .feature-icon i {
  font-size: 1.4rem;
  line-height: 1;
}


.feature-body h3 { margin: 0 0 6px; font-size: 1.03rem; color: #0f6f36; font-weight: 700; }
.feature-body p { margin: 0; color: #344; font-size: 0.98rem; line-height: 1.5; }

/* Right framed image */
.choose-media { justify-self: end; width: 100%; max-width: 520px; margin: 0 auto; }
.choose-media-frame {
  border-radius: 12px;
  overflow: hidden;
  padding: 12px;
  background: linear-gradient(180deg,#fff,#f7fff6);
  border: 1px solid rgba(19,120,85,0.06);
  box-shadow: 0 30px 60px rgba(19,120,85,0.06);
}

.choose-media-frame img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
}

/* Professional guarantee card */
.guarantee-panel {
  max-width: 1200px;
  margin: 30px auto 60px;
  padding: 0 18px;
}
.guarantee-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: linear-gradient(180deg, #f6fff7 0%, #eef9f0 100%); /* subtle green tint */
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(12,40,25,0.06);
  border-left: 6px solid var(--green, #137855); /* prominent left accent */
}

/* Left column */
.guarantee-info { flex: 1 1 60%; min-width: 0; }
.guarantee-info h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: var(--green-dark, #0f6f36);
  font-weight: 800;
}
.guarantee-info p {
  margin: 0 0 16px;
  color: #25302b;
  line-height: 1.5;
  font-size: 0.98rem;
}

/* Feature grid inside guarantee */
.guarantee-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 18px;
}
.g-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.g-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--green, #137855);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(19,120,85,0.08);
}
.g-text strong { display:block; font-size: 0.98rem; color:#123f26; margin-bottom:4px; }
.g-text p { margin:0; color:#344; font-size:0.95rem; line-height:1.45; }


/* Responsive adjustments */
@media (max-width:1100px) {
  .choose-grid { grid-template-columns: minmax(0,1fr) 420px; gap:28px; }
  .choose-media-frame img { height: 380px; }
}
@media (max-width:980px) {
  .choose-grid { grid-template-columns: 1fr; gap:28px; }
  .choose-media { justify-self: center; max-width: 100%; width: 100%; }
  .choose-media-frame img { height: 320px; }
  .choose-intro-hero { padding: 0 10px; }
  .guarantee-panel { margin-bottom: 40px; }
  .guarantee-card { flex-direction: column; padding: 18px; gap: 18px; border-left-width: 5px; }
  .guarantee-features { grid-template-columns: 1fr; }
   .choose-section {
    margin: 16px 0;
    padding: 8px 0;
  }
}
@media (max-width:600px) {
  .choose-section .container {
    max-width: 100% !important;
    padding: 0 16px !important;
    width: 100% !important;
  }
  .choose-grid { 
    max-width: 100% !important;
    width: 100% !important;
    grid-template-columns: 1fr !important; 
    padding: 0 !important; 
    margin: 0 !important;
    gap: 24px; 
    display: grid !important;
  }
  .choose-media { 
    width: 100% !important; 
    max-width: 100% !important;
    margin: 0 auto !important; 
    padding: 0 !important;
    justify-self: center !important;
  }
  .choose-media-frame { 
    padding: 8px !important; 
    margin: 0 auto !important; 
    width: 100%; 
    border-radius: 12px;
    background: linear-gradient(180deg,#fff,#f7fff6);
    border: 1px solid rgba(19,120,85,0.06);
  }
  .choose-media-frame img { 
    height: 380px; 
    width: 100% !important; 
    object-fit: cover; 
    display: block; 
    border-radius: 8px; 
  }
  .choose-title { font-size: 1.6rem; }
  .feature-icon { flex: 0 0 54px; width: 54px; height: 54px; }
  .choose-intro-hero { padding: 0; font-size: 0.98rem; }
  .guarantee-card { padding: 14px; border-radius: 10px; }
  .g-icon { min-width: 36px; height: 36px; font-size: 0.95rem; }
  .choose-section { margin: 8px 0; padding: 4px 0; }
  .choose-left { padding: 0; }
}

@media (max-width:480px) {
  .choose-section .container {
    max-width: 100% !important;
    padding: 0 12px !important;
    width: 100% !important;
  }
  .choose-grid { 
    max-width: 100% !important;
    width: 100% !important;
    grid-template-columns: 1fr !important; 
    padding: 0 !important; 
    margin: 0 !important;
    gap: 16px; 
    display: grid !important;
  }
  .choose-media { 
    width: 100% !important; 
    max-width: 100% !important;
    margin: 0 auto !important; 
    padding: 0 !important;
    justify-self: center !important;
  }
  .choose-media-frame { 
    padding: 6px !important; 
    margin: 0 auto !important; 
    width: 100%; 
    border-radius: 10px;
    background: linear-gradient(180deg,#fff,#f7fff6);
    border: 1px solid rgba(19,120,85,0.06);
  }
  .choose-media-frame img { 
    height: 320px; 
    width: 100% !important; 
    display: block; 
    border-radius: 8px; 
  }
  .choose-title { font-size: 1.4rem; }
  .feature-body h3 { font-size: 0.95rem; }
  .feature-body p { font-size: 0.9rem; }
  .choose-left { padding: 0; }
}

/* Ensure content visible by default */
.choose-media-frame,
.choose-features-list li,
.guarantee-content { opacity: 1; transform: none; transition: opacity 420ms ease, transform 420ms ease; }

/* Recent work gallery */
.section-title { text-align: left; font-size: 1.6rem; font-weight: 800; color: var(--green-dark,#123f26); margin: 0 0 8px; }
.section-sub { color: #2f4a3b; margin: 0 0 20px; max-width: 900px; font-size: 1rem; }

/* Part-5 Recent work sections*/
/* Recent Work — background band and spacing */
.recent-work {
  background: linear-gradient(180deg, rgba(31,155,74,0.03) 0%, rgba(255,255,255,0) 100%);
  padding: 56px 0 72px;
}

@media (max-width: 640px) {
  .recent-work {
    padding: 32px 0 48px;
  }
}

/* ensure container keeps content aligned with page */
.recent-work .container {
  padding-left: 18px;
  padding-right: 18px;
}

@media (max-width: 640px) {
  .recent-work .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Recent Work grid */
.recent-work .work-item {
  background: #fff;
  box-shadow: 0 14px 40px rgba(19,120,85,0.06);
}

/* optional: make section title stand out */
.recent-work .section-title { 
  background: linear-gradient(90deg, #1f9b4a 0%, #137855 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .recent-work .section-title {
    font-size: 1.8rem;
  }
}

.section-sub {
  font-size: 1.05rem;
  color: #2f4a3b;
  margin-bottom: 32px;
  line-height: 1.5;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .section-sub {
    font-size: 0.75rem;
    margin-bottom: 24px;
    white-space: nowrap;
  }
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto 28px;
  padding: 0 18px;
}

@media (max-width: 640px) {
  .work-grid {
    padding: 0;
    gap: 18px;
    margin-bottom: 24px;
  }
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(19,120,85,0.04);
  cursor: zoom-in;

  /* identical tile shape/size */
  aspect-ratio: 4/5;
  min-height: 360px;   /* fallback for browsers without aspect-ratio */
  display: block;
}
/* image fills tile, no soft blur/filters, hardware-accelerated for sharp scaling */
.work-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;             /* fill tile consistently */
  object-position: center;
  filter: none !important;
  -webkit-filter: none !important;
  image-rendering: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
  transition: transform 300ms ease, filter 200ms ease;
  border-radius: 0;              /* image edge-to-edge inside tile */
}

/* modest hover scale for effect without softening */
.work-item:hover img { transform: scale(1.04); }
/* caption overlay kept subtle (no backdrop blur) and stays on the image */
.work-item figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.45) 100%);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: #fff;
  z-index: 2;
  max-height: 36%;
  overflow: hidden;
}

/* prevent any parent dimming */
.work-item { opacity: 1 !important; filter: none !important; }

.work-item figcaption strong { display:block; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.work-item .tag { font-size: 0.85rem; opacity: 0.9; color: #e6f7ee; }

@media (max-width: 640px) {
  .work-item figcaption {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 8px 10px;
  }
  .work-item figcaption strong {
    font-size: 0.95rem;
  }
  .work-item .tag {
    font-size: 0.8rem;
  }
}

/* CTA row */
.work-cta { display:flex; gap:12px; justify-content:center; margin-top:18px; flex-wrap: wrap; }
.btn { 
  display:inline-block; 
  padding:10px 18px; 
  border-radius:28px; 
  background:var(--green); 
  color:#fff; 
  font-weight:700; 
  text-align: center; 
  transition: all 0.3s ease;
  border: 2px solid var(--green);
}

.btn:hover {
  background: transparent;
  color: var(--green);
  border: 2px solid rgba(31,155,74,0.12);
}

.btn.outline { 
  background:transparent; 
  color:var(--green); 
  border:2px solid rgba(31,155,74,0.12); 
}

.btn.outline:hover {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
}

@media (max-width: 640px) {
  .work-cta {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding: 0 12px;
  }
  .btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}

/* Lightbox */
.work-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6,10,8,0.7);
  z-index: 1200;
  gap: 18px;
  padding: 24px;
}
.work-lightbox[aria-hidden="false"] { display:flex; }
.lb-stage { max-width: 1100px; width: 100%; max-height: 85vh; display:flex; flex-direction:column; align-items:center; gap:12px; }
.work-lightbox img { max-width:100%; max-height:78vh; border-radius:8px; object-fit:contain; box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.lb-caption { color:#fff; text-align:center; max-width:1100px; font-size:0.98rem; }

/* controls */
.lb-close, .lb-prev, .lb-next {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
}
.lb-prev, .lb-next { font-size: 26px; background: rgba(255,255,255,0.04); }

@media (max-width: 640px) {
  .work-lightbox {
    padding: 12px;
    gap: 8px;
  }
  .lb-stage {
    max-height: 90vh;
  }
  .work-lightbox img {
    max-height: 75vh;
  }
  .lb-close, .lb-prev, .lb-next {
    padding: 8px 12px;
    font-size: 18px;
  }
  .lb-prev, .lb-next {
    font-size: 22px;
  }
  .lb-caption {
    font-size: 0.85rem;
  }
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .work-item { aspect-ratio: 3/4; min-height: 320px; }
}

@media (max-width: 768px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .work-item { aspect-ratio: 1/1; min-height: 200px; }
}

@media (max-width: 640px) {
  .work-grid { grid-template-columns: 1fr; gap: 16px; }
  .work-item { aspect-ratio: 4/3; min-height: 280px; }
}

@media (max-width: 480px) {
  .work-item { min-height: 240px; }
}

/* ===================== */
/* FOOTER SECTION */
/* ===================== */

.site-footer {
  background: linear-gradient(135deg, #0f2920 0%, #1a4032 100%);
  color: #fff;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1f9b4a 0%, #ccff00 50%, #1f9b4a 100%);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  padding: 0 18px 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-left {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-section h3 {
  color: #ccff00;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #ccff00;
  padding-left: 5px;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact ul li i {
  color: #ccff00;
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
}

.footer-contact ul li i.fa-location-dot {
  margin-top: -12px;
}

/* Right Section: Logo & Social */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  min-width: 180px;
}

.footer-brand-main {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ccff00 0%, #f9fafa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  width: 180px;
  text-align: left;
  margin: 0;
  padding: 0;
}

.footer-brand-sub {
  font-size: 1.4rem;
  font-weight: 650;
  background: linear-gradient(90deg, #ccff00 0%, #f9fafa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.15em;
  width: 180px;
  text-align: left;
  margin: 0;
  padding: 0;
}

.footer-social h3 {
  text-align: center;
  margin-bottom: 18px;
}

.social-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-icons a:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Facebook - Blue */
.social-icons a[aria-label="Facebook"]:hover {
  background: #1877F2;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

/* Instagram - Gradient */
.social-icons a[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

/* LinkedIn - Blue */
.social-icons a[aria-label="LinkedIn"]:hover {
  background: #0A66C2;
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4);
}

/* Twitter - Light Blue */
.social-icons a[aria-label="Twitter"]:hover {
  background: #1DA1F2;
  box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

.social-icons a i {
  transition: none;
  font-size: 1.3rem !important;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-weight: 900 !important;
}

.social-icons a:hover i {
  transform: none;
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #ccff00;
}

.footer-bottom-links .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive Footer */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-left {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-right {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 0;
  }
  
  .footer-left {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-container {
    padding: 0 16px 30px;
  }
  
  .footer-section h3 {
    font-size: 1.05rem;
  }
  
  .footer-logo {
    height: 50px;
  }
  
  .footer-brand-main {
    font-size: 1.5rem;
  }
  
  .footer-brand-sub {
    font-size: 1rem;
  }
  
  .social-icons a {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}

@media (max-width: 640px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-section ul li a,
  .footer-section p {
    font-size: 0.9rem;
  }
  
  .social-icons {
    gap: 12px;
  }
  
  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* ===================== */
/* ABOUT PAGE STYLES */
/* ===================== */

/* About Hero Section */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 41, 32, 0.85) 0%, rgba(26, 64, 50, 0.85) 50%, rgba(31, 155, 74, 0.85) 100%),
              url('images/img25.jpeg') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(204,255,0,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(31,155,74,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ccff00;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.about-hero-content p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.95;
}

/* About Story Section */
.about-story {
  padding: 80px 0;
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 24px;
}

.about-story-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2f4a3b;
  margin-bottom: 20px;
}

.about-story-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31, 155, 74, 0.15);
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.about-story-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  transition: left 1s ease;
  pointer-events: none;
}

.about-story-image:hover::before {
  left: -50%;
}

.about-story-image:hover {
  box-shadow: 0 20px 60px rgba(31, 155, 74, 0.3);
  transform: translateY(-5px);
}

.about-story-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.about-story-image:hover img {
  transform: scale(1.05);
}

/* About Values Section */
.about-values {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.05) 0%, rgba(204,255,0,0.03) 50%, rgba(31,155,74,0.05) 100%);
  text-align: center;
}

.about-values h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 40px;
}

.about-values > p {
  font-size: 1.1rem;
  color: #2f4a3b;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.about-values .value-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.16);
  text-align: center;
  opacity: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.about-values .value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 20, 12, 0.93) 0%,
    rgba(10, 31, 20, 0.72) 52%,
    rgba(20, 55, 35, 0.25) 100%
  );
  z-index: 0;
}

.about-values .value-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px 22px 24px;
}

.value-card.animate {
  animation: popFromCenter 1.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.value-card:nth-child(1).animate {
  animation-name: popFromCenterTopLeft;
  animation-delay: 0.25s;
}

.value-card:nth-child(2).animate {
  animation-name: popFromCenterTopRight;
  animation-delay: 0.5s;
}

.value-card:nth-child(3).animate {
  animation-name: popFromCenterBottomLeft;
  animation-delay: 0.75s;
}

.value-card:nth-child(4).animate {
  animation-name: popFromCenterBottomRight;
  animation-delay: 1s;
}

@keyframes popFromCenterTopLeft {
  0% {
    opacity: 0;
    transform: translate(50%, 50%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes popFromCenterTopRight {
  0% {
    opacity: 0;
    transform: translate(-50%, 50%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes popFromCenterBottomLeft {
  0% {
    opacity: 0;
    transform: translate(50%, -50%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes popFromCenterBottomRight {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

.about-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(31, 155, 74, 0.28);
}

.about-team .expertise-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(31, 155, 74, 0.12);
  box-shadow: 0 8px 22px rgba(31, 155, 74, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-team .expertise-icon svg {
  width: 72px;
  height: 72px;
}

.about-team .expertise-icon i {
  font-size: 3rem;
  color: var(--green-dark);
  line-height: 1;
}

.expertise-item:hover .expertise-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(31, 155, 74, 0.18);
}

.expertise-grid .expertise-item:nth-child(1) .expertise-icon {
  background: linear-gradient(135deg, rgba(77, 184, 115, 0.16), rgba(77, 184, 115, 0.05));
}

.expertise-grid .expertise-item:nth-child(1) .expertise-icon i {
  color: #2b8f55;
}

.expertise-grid .expertise-item:nth-child(2) .expertise-icon {
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.15), rgba(30, 136, 229, 0.05));
}

.expertise-grid .expertise-item:nth-child(2) .expertise-icon i {
  color: #1e88e5;
}

.expertise-grid .expertise-item:nth-child(3) .expertise-icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.06));
}

.expertise-grid .expertise-item:nth-child(3) .expertise-icon i {
  color: #d97706;
}

.expertise-grid .expertise-item:nth-child(4) .expertise-icon {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.14), rgba(239, 68, 68, 0.05));
}

.expertise-grid .expertise-item:nth-child(4) .expertise-icon i {
  color: #dc2626;
}

.expertise-grid .expertise-item:nth-child(5) .expertise-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0.05));
}

.expertise-grid .expertise-item:nth-child(5) .expertise-icon i {
  color: #2563eb;
}

.expertise-grid .expertise-item:nth-child(6) .expertise-icon {
  background: linear-gradient(135deg, rgba(31, 155, 74, 0.16), rgba(31, 155, 74, 0.05));
}

.expertise-grid .expertise-item:nth-child(6) .expertise-icon i {
  color: #1f9b4a;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #2f4a3b;
}

.about-values .value-card h3 {
  color: #ccff00;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.78);
}

.about-values .value-card p {
  color: rgba(235, 255, 240, 0.95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

/* About Team/Expertise Section */
.about-team {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.about-team h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.about-team > p {
  font-size: 1.1rem;
  color: #2f4a3b;
  margin-bottom: 50px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.expertise-item {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;
  padding: 0;
  border-radius: 16px;
  border: none;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.13);
}

.expertise-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 20, 12, 0.92) 0%,
    rgba(10, 31, 20, 0.68) 50%,
    rgba(20, 55, 35, 0.22) 100%
  );
  z-index: 0;
  transition: background 0.4s ease;
}

.expertise-item:hover::before {
  background: linear-gradient(
    to top,
    rgba(6, 20, 12, 0.96) 0%,
    rgba(10, 31, 20, 0.80) 55%,
    rgba(31, 155, 74, 0.30) 100%
  );
}

.expertise-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(31, 155, 74, 0.26);
}

.expertise-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 20px 22px;
  text-align: center;
}

.expertise-item h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 8px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.expertise-item p {
  font-size: 0.95rem;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
  line-height: 1.6;
  text-align: center;
}

/* Service Area Section */
.service-area {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f2920 0%, #1a4032 50%, #0d1f1a 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(204, 255, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(19, 120, 85, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.service-area-overlay {
  display: none;
}

.service-area-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-area-left h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #ccff00;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: none;
}

.service-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 500px;
}

.locations-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 35px;
  margin-bottom: 45px;
}

.location-check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  color: white;
  font-weight: 600;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
}

.location-check-item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: rgba(204, 255, 0, 0.55);
  transition: width 0.4s ease;
}

.location-check-item:hover {
  transform: translateX(8px);
  color: #ccff00;
}

.location-check-item:hover::before {
  width: 100%;
}

.location-check-item i {
  font-size: 1.3rem;
  color: #ccff00;
  flex-shrink: 0;
  filter: none;
}

.service-area-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  padding: 18px 26px;
  border-radius: 16px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  border: 1px solid rgba(204, 255, 0, 0.2);
  line-height: 1.6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.service-area-note:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(204, 255, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.service-area-note i {
  color: #ccff00;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Map Side */
.service-area-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-image-container {
  position: relative;
  width: 100%;
  max-width: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(19, 120, 85, 0.15) 100%);
  backdrop-filter: blur(6px);
  padding: 26px;
  border-radius: 24px;
  border: 2px solid rgba(204, 255, 0, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 18px rgba(204, 255, 0, 0.06);
  transition: all 0.4s ease;
}

.map-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(204, 255, 0, 0.3);
}

.service-area-map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-area-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .service-area-left h2 {
    font-size: 2.5rem;
  }
  
  .service-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .locations-checklist {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .service-area-note {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .service-area {
    padding: 60px 0;
  }
  
  .service-area-container {
    text-align: left;
  }
  
  .service-area-left h2 {
    font-size: 2rem;
    text-align: left;
  }
  
  .service-subtitle {
    font-size: 1rem;
    margin-bottom: 35px;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  
  .locations-checklist {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-left: 0;
    margin-right: 0;
  }
  
  .location-check-item {
    font-size: 1rem;
    justify-content: flex-start;
  }
  
  .service-area-note {
    font-size: 0.85rem;
    padding: 12px 20px;
  }
  
  .map-pin i {
    font-size: 24px;
  }
  
  .pin-label {
    font-size: 0.75rem;
    padding: 3px 10px;
  }
}

.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.area-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(31, 155, 74, 0.08);
  transition: all 0.3s;
}

.area-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.15);
}

/* About CTA Section */
.about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f2920 0%, #1a4032 100%);
  color: #fff;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ccff00;
}

.about-cta p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 200px;
}

/* About Page Responsive Styles */
@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2.25rem;
  }
  
  .about-hero-content p {
    font-size: 1.1rem;
  }
  
  .about-story {
    padding: 60px 20px;
  }
  
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-story-content h2,
  .about-values h2,
  .about-team h2 {
    font-size: 2rem;
  }
  
  .about-story-content p {
    padding: 0 10px;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 120px 20px 80px 20px;
    min-height: 60vh;
  }
  
  .about-values,
  .about-team,
  .service-area,
  .about-cta {
    padding: 60px 20px;
  }
  
  .about-values h2,
  .about-team h2,
  .service-area h2,
  .about-cta h2 {
    font-size: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .area-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    padding: 0 20px;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-hero-content h1 {
    font-size: 1.75rem;
  }
  
  .about-story-content h2,
  .about-values h2,
  .about-team h2,
  .service-area h2 {
    font-size: 1.75rem;
  }
  
  .value-card {
    padding: 30px 20px;
  }
}

/* ===================== */
/* RESIDENTIAL SOLAR PAGE STYLES */
/* ===================== */

/* Solar Hero Section */
.solar-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 41, 32, 0.85) 0%, rgba(26, 64, 50, 0.85) 50%, rgba(31, 155, 74, 0.85) 100%),
              url('images/img7.jpg') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.solar-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(204,255,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(31,155,74,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.solar-hero-content {
  position: relative;
  z-index: 1;
}

.solar-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ccff00;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.solar-hero-content p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.7;
  opacity: 0.95;
}

.solar-hero .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.solar-hero .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* Solar Hero Button Mobile Responsive */
@media (max-width: 900px) {
  .solar-hero .btn {
    font-size: 0.95rem;
    padding: 10px 0;
    width: 85%;
    min-width: 100px;
    max-width: 260px;
  }
}

@media (max-width: 600px) {
  .solar-hero .btn {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 24px;
  }
}

/* Solar Overview Section */
.solar-overview {
  padding: 80px 0;
  background: #fff;
}

.solar-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solar-overview-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 24px;
}

.solar-overview-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2f4a3b;
  margin-bottom: 20px;
}

.solar-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(31,155,74,0.05) 0%, rgba(204,255,0,0.05) 100%);
  border-radius: 12px;
  border: 2px solid rgba(31,155,74,0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--green-dark);
  font-weight: 600;
}

.solar-overview-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31, 155, 74, 0.15);
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.solar-overview-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  transition: left 1s ease;
  pointer-events: none;
}

.solar-overview-image:hover::before {
  left: -50%;
}

.solar-overview-image:hover {
  box-shadow: 0 20px 60px rgba(31, 155, 74, 0.3);
  transform: translateY(-5px);
}

.solar-overview-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.solar-overview-image:hover img {
  transform: scale(1.05);
}

/* Solar Benefits Section */
.solar-benefits {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.05) 0%, rgba(204,255,0,0.03) 50%, rgba(31,155,74,0.05) 100%);
  text-align: center;
}

.solar-benefits h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.1rem;
  color: #2f4a3b;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.solar-benefits .benefit-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 310px;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.16);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s ease, box-shadow 0.35s ease;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.solar-benefits .benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 16, 9, 0.94) 0%,
    rgba(8, 29, 18, 0.75) 48%,
    rgba(20, 55, 35, 0.24) 100%
  );
  z-index: 0;
  transition: background 0.35s ease;
}

.solar-benefits .benefit-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px 22px 24px;
}

.benefit-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card.animate:nth-child(1) { transition-delay: 0.1s; }
.benefit-card.animate:nth-child(2) { transition-delay: 0.2s; }
.benefit-card.animate:nth-child(3) { transition-delay: 0.3s; }
.benefit-card.animate:nth-child(4) { transition-delay: 0.4s; }
.benefit-card.animate:nth-child(5) { transition-delay: 0.5s; }
.benefit-card.animate:nth-child(6) { transition-delay: 0.6s; }

.solar-benefits .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 38px rgba(31, 155, 74, 0.28);
}

.solar-benefits .benefit-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.solar-benefits .benefit-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

/* Solar Process Section */
.solar-process {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.solar-process h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  text-align: left;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 80px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(180deg, rgba(31,155,74,0.3) 0%, rgba(204,255,0,0.3) 100%);
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f9b4a 0%, #ccff00 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.2);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.step-number:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(31, 155, 74, 0.6),
              0 0 50px rgba(204, 255, 0, 0.4),
              0 8px 24px rgba(31, 155, 74, 0.3);
  background: linear-gradient(135deg, #22b157 0%, #d4ff1a 100%);
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2f4a3b;
}

/* Solar Components Section */
.solar-components {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.03) 0%, rgba(255,255,255,0) 100%);
  text-align: center;
}

.solar-components h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.solar-components .component-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 360px;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.16);
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s ease, box-shadow 0.35s ease;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.solar-components .component-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 16, 9, 0.95) 0%,
    rgba(8, 29, 18, 0.78) 48%,
    rgba(20, 55, 35, 0.26) 100%
  );
  z-index: 0;
  transition: background 0.35s ease;
}

.solar-components .component-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px 24px 24px;
}

.component-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.component-card.animate:nth-child(1) { transition-delay: 0.15s; }
.component-card.animate:nth-child(2) { transition-delay: 0.3s; }
.component-card.animate:nth-child(3) { transition-delay: 0.45s; }
.component-card.animate:nth-child(4) { transition-delay: 0.6s; }

.solar-components .component-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(31, 155, 74, 0.28);
}

.solar-components .component-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.solar-components .component-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
}

.solar-components .component-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solar-components .component-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #ffffff;
  font-size: 0.95rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
}

.solar-components .component-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ccff00;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Solar CTA Section */
.solar-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f2920 0%, #1a4032 100%);
  color: #fff;
  text-align: center;
}

.solar-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ccff00;
}

.solar-cta p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.solar-cta .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.solar-cta .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.solar-cta .btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.solar-cta .btn.outline:hover {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.3);
}

/* Residential Solar Responsive Styles */
@media (max-width: 768px) {
  .solar-overview .container,
  .solar-benefits .container,
  .solar-process .container,
  .solar-components .container {
    padding: 0 12px;
  }
  
  .solar-hero-content h1 {
    font-size: 2.25rem;
  }
  
  .solar-hero-content p {
    font-size: 1.1rem;
  }
  
  .solar-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .solar-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .components-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .solar-hero {
    padding: 120px 20px 80px 20px;
    min-height: 60vh;
  }
  
  .solar-overview,
  .solar-benefits,
  .solar-process,
  .solar-components {
    padding: 60px 20px;
  }
  
  .solar-overview h2,
  .solar-benefits h2,
  .solar-process h2,
  .solar-components h2 {
    font-size: 2rem;
  }
  
  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .process-step:not(:last-child)::after {
    left: 29px;
    top: 60px;
  }
}

@media (max-width: 480px) {
  .solar-overview .container,
  .solar-benefits .container,
  .solar-process .container,
  .solar-components .container {
    padding: 0 8px;
  }
  
  .solar-hero-content h1 {
    font-size: 1.75rem;
  }
  
  .solar-overview-content h2,
  .solar-benefits h2,
  .solar-process h2,
  .solar-components h2 {
    font-size: 1.75rem;
  }
  
  .benefit-card,
  .component-card {
    padding: 30px 20px;
  }
}

/* ============================================
   COMMERCIAL SOLAR PAGE STYLES
   ============================================ */

/* Commercial Solar Hero Section */
.commercial-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 41, 32, 0.85) 0%, rgba(26, 64, 50, 0.85) 50%, rgba(31, 155, 74, 0.85) 100%),
              url('images/img1.jpg') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.commercial-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(204,255,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(31,155,74,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.commercial-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.commercial-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ccff00;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.commercial-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.95;
}

.commercial-hero .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.commercial-hero .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* Commercial Hero Button Mobile Responsive */
@media (max-width: 900px) {
  .commercial-hero .btn {
    font-size: 0.95rem;
    padding: 10px 0;
    width: 85%;
    min-width: 100px;
    max-width: 260px;
  }
}

@media (max-width: 600px) {
  .commercial-hero .btn {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 24px;
  }
}

/* Commercial Overview Section */
.commercial-overview {
  padding: 80px 0;
  background: #fff;
}

.commercial-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.commercial-overview-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 24px;
}

.commercial-overview-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2f4a3b;
  margin-bottom: 20px;
}

.commercial-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(31,155,74,0.05) 0%, rgba(204,255,0,0.05) 100%);
  border-radius: 12px;
  border: 2px solid rgba(31,155,74,0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(31, 155, 74, 0.2);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--green-dark);
  font-weight: 600;
  line-height: 1.4;
}

.commercial-overview-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31, 155, 74, 0.15);
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.commercial-overview-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.commercial-overview-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  transition: left 1s ease;
  pointer-events: none;
}

.commercial-overview-image:hover::before {
  left: -50%;
}

.commercial-overview-image:hover {
  box-shadow: 0 20px 60px rgba(31, 155, 74, 0.3);
  transform: translateY(-5px);
}

.commercial-overview-image:hover img {
  transform: scale(1.05);
}

/* Commercial Benefits Section */
.commercial-benefits {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.05) 0%, rgba(204,255,0,0.03) 50%, rgba(31,155,74,0.05) 100%);
  text-align: center;
}

.commercial-benefits h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  text-align: center;
  margin-bottom: 20px;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #2f4a3b;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Commercial Applications Section */
.commercial-applications {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.commercial-applications h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  text-align: center;
  margin-bottom: 20px;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.application-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.1);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.application-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.application-card:nth-child(1).animate {
  transition-delay: 0.1s;
}

.application-card:nth-child(2).animate {
  transition-delay: 0.2s;
}

.application-card:nth-child(3).animate {
  transition-delay: 0.3s;
}

.application-card:nth-child(4).animate {
  transition-delay: 0.4s;
}

.application-card:nth-child(5).animate {
  transition-delay: 0.5s;
}

.application-card:nth-child(6).animate {
  transition-delay: 0.6s;
}

.application-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(31, 155, 74, 0.18);
}

.application-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Commercial Benefits — image-background cards */
.commercial-benefits .benefit-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.16);
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
}

.commercial-benefits .benefit-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.commercial-benefits .benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 16, 9, 0.94) 0%,
    rgba(8, 29, 18, 0.75) 48%,
    rgba(20, 55, 35, 0.24) 100%
  );
  z-index: 0;
  transition: background 0.35s ease;
}

.commercial-benefits .benefit-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(4, 16, 9, 0.97) 0%,
    rgba(8, 29, 18, 0.85) 55%,
    rgba(31, 155, 74, 0.30) 100%
  );
}

.commercial-benefits .benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 38px rgba(31, 155, 74, 0.28);
}

.commercial-benefits .benefit-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px 22px 24px;
}

.commercial-benefits .benefit-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.commercial-benefits .benefit-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

/* Commercial Applications — image-background cards */
.commercial-applications .application-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.16);
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
}

.commercial-applications .application-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.commercial-applications .application-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 16, 9, 0.94) 0%,
    rgba(8, 29, 18, 0.75) 48%,
    rgba(20, 55, 35, 0.24) 100%
  );
  z-index: 0;
  transition: background 0.35s ease;
}

.commercial-applications .application-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(4, 16, 9, 0.97) 0%,
    rgba(8, 29, 18, 0.85) 55%,
    rgba(31, 155, 74, 0.30) 100%
  );
}

.commercial-applications .application-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 38px rgba(31, 155, 74, 0.28);
}

.commercial-applications .application-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px 22px 24px;
}

.commercial-applications .application-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.commercial-applications .application-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

/* Commercial Features — image-background cards */
.commercial-features .feature-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 360px;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.16);
  text-align: left;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
}

.commercial-features .feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.commercial-features .feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 16, 9, 0.95) 0%,
    rgba(8, 29, 18, 0.78) 48%,
    rgba(20, 55, 35, 0.26) 100%
  );
  z-index: 0;
  transition: background 0.35s ease;
}

.commercial-features .feature-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(4, 16, 9, 0.97) 0%,
    rgba(8, 29, 18, 0.86) 55%,
    rgba(31, 155, 74, 0.30) 100%
  );
}

.commercial-features .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(31, 155, 74, 0.28);
}

.commercial-features .feature-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px 24px 26px;
}

.commercial-features .feature-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.commercial-features .feature-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.commercial-features .feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.commercial-features .feature-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #ffffff;
  font-size: 0.95rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.commercial-features .feature-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ccff00;
  font-weight: 700;
  font-size: 1.1rem;
}

.application-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.application-card p {
  font-size: 1rem;
  color: #2f4a3b;
  line-height: 1.7;
}

/* Commercial Process Section */
.commercial-process {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.03) 0%, rgba(255,255,255,0) 100%);
  text-align: center;
}

.commercial-process h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  text-align: center;
  margin-bottom: 20px;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Commercial Features Section */
.commercial-features {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.commercial-features h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  text-align: center;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.1);
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(1).animate {
  transition-delay: 0.15s;
}

.feature-card:nth-child(2).animate {
  transition-delay: 0.3s;
}

.feature-card:nth-child(3).animate {
  transition-delay: 0.45s;
}

.feature-card:nth-child(4).animate {
  transition-delay: 0.6s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(31, 155, 74, 0.18);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 1rem;
  color: #2f4a3b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #2f4a3b;
  font-size: 0.95rem;
}

.feature-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Commercial CTA Section */
.commercial-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f2920 0%, #1a4032 100%);
  color: #fff;
  text-align: center;
}

.commercial-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ccff00;
}

.commercial-cta p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.commercial-cta .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.commercial-cta .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.commercial-cta .btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.commercial-cta .btn.outline:hover {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.3);
}

/* Responsive Styles for Commercial Solar Page */
@media (max-width: 768px) {
  .commercial-overview .container,
  .commercial-benefits .container,
  .commercial-applications .container,
  .commercial-features .container,
  .commercial-cta .container {
    padding: 0 12px;
  }
  
  .commercial-hero-content h1 {
    font-size: 2rem;
  }
  
  .commercial-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .commercial-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefits-grid,
  .applications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .commercial-hero {
    padding: 120px 20px 80px 20px;
  }
  
  .commercial-hero-content h1 {
    font-size: 1.75rem;
  }
  
  .commercial-overview,
  .commercial-benefits,
  .commercial-applications,
  .commercial-process,
  .commercial-features,
  .commercial-cta {
    padding: 60px 20px;
  }
  
  .commercial-overview-content h2,
  .commercial-benefits h2,
  .commercial-applications h2,
  .commercial-process h2,
  .commercial-features h2,
  .commercial-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .commercial-overview .container,
  .commercial-benefits .container,
  .commercial-applications .container,
  .commercial-features .container,
  .commercial-cta .container {
    padding: 0 8px;
  }
  
  .commercial-hero-content h1 {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .application-card,
  .feature-card {
    padding: 30px 20px;
  }
}

/* ============================================
   HEAT PUMP PAGE STYLES
   ============================================ */

/* Heat Pump Hero Section */
.heatpump-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 41, 32, 0.85) 0%, rgba(26, 64, 50, 0.85) 50%, rgba(31, 155, 74, 0.85) 100%),
              url('images/img22.jpeg') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.heatpump-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(204,255,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(31,155,74,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.heatpump-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.heatpump-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ccff00;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.heatpump-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.95;
}

.heatpump-hero .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.heatpump-hero .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* Heat Pump Hero Button Mobile Responsive */
@media (max-width: 900px) {
  .heatpump-hero .btn {
    font-size: 0.95rem;
    padding: 10px 0;
    width: 85%;
    min-width: 100px;
    max-width: 260px;
  }
}

@media (max-width: 600px) {
  .heatpump-hero .btn {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 24px;
  }
}

/* Heat Pump Overview Section */
.heatpump-overview {
  padding: 80px 0;
  background: #fff;
}

.heatpump-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.heatpump-overview-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 24px;
}

.heatpump-overview-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2f4a3b;
  margin-bottom: 20px;
}

.heatpump-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.heatpump-overview-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31, 155, 74, 0.15);
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.heatpump-overview-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.heatpump-overview-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  transition: left 1s ease;
  pointer-events: none;
}

.heatpump-overview-image:hover::before {
  left: -50%;
}

.heatpump-overview-image:hover {
  box-shadow: 0 20px 60px rgba(31, 155, 74, 0.3);
  transform: translateY(-5px);
}

.heatpump-overview-image:hover img {
  transform: scale(1.05);
}

/* Heat Pump Benefits Section */
.heatpump-benefits {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.05) 0%, rgba(204,255,0,0.03) 50%, rgba(31,155,74,0.05) 100%);
  text-align: center;
}

.heatpump-benefits h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.heatpump-benefits .benefit-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.heatpump-benefits .benefit-icon svg {
  width: 74px;
  height: 74px;
  filter: saturate(1.15) contrast(1.05);
}

.heatpump-benefits .benefit-card:hover .benefit-icon {
  transform: scale(1.04);
}

/* Heatpump Benefits — image-background cards */
.heatpump-benefits .benefit-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.16);
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
}

.heatpump-benefits .benefit-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.heatpump-benefits .benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 16, 9, 0.94) 0%,
    rgba(8, 29, 18, 0.75) 48%,
    rgba(20, 55, 35, 0.24) 100%
  );
  z-index: 0;
  transition: background 0.35s ease;
}

.heatpump-benefits .benefit-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(4, 16, 9, 0.97) 0%,
    rgba(8, 29, 18, 0.85) 55%,
    rgba(31, 155, 74, 0.30) 100%
  );
}

.heatpump-benefits .benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 38px rgba(31, 155, 74, 0.28);
}

.heatpump-benefits .benefit-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px 22px 24px;
}

.heatpump-benefits .benefit-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.heatpump-benefits .benefit-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

/* Heat Pump Types Section */
.heatpump-types {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.heatpump-types h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.type-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.1);
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.type-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.type-card:nth-child(1).animate {
  transition-delay: 0.15s;
}

.type-card:nth-child(2).animate {
  transition-delay: 0.3s;
}

.type-card:nth-child(3).animate {
  transition-delay: 0.45s;
}

.type-card:nth-child(4).animate {
  transition-delay: 0.6s;
}

.type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(31, 155, 74, 0.18);
}

.type-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.type-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.type-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #2f4a3b;
}

.heatpump-types .type-icon {
  width: 82px;
  height: 82px;
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.heatpump-types .type-icon svg {
  width: 70px;
  height: 70px;
  filter: saturate(1.1) contrast(1.05);
}

.heatpump-types .type-card:hover .type-icon {
  transform: scale(1.03);
}

/* Heatpump Types — image-background cards */
.heatpump-types .type-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.16);
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
}

.heatpump-types .type-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.heatpump-types .type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 16, 9, 0.94) 0%,
    rgba(8, 29, 18, 0.75) 48%,
    rgba(20, 55, 35, 0.24) 100%
  );
  z-index: 0;
  transition: background 0.35s ease;
}

.heatpump-types .type-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(4, 16, 9, 0.97) 0%,
    rgba(8, 29, 18, 0.85) 55%,
    rgba(31, 155, 74, 0.30) 100%
  );
}

.heatpump-types .type-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 38px rgba(31, 155, 74, 0.28);
}

.heatpump-types .type-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px 22px 24px;
}

.heatpump-types .type-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.heatpump-types .type-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

/* Heat Pump Process Section */
.heatpump-process {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.03) 0%, rgba(255,255,255,0) 100%);
  text-align: center;
}

.heatpump-process h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

/* Heat Pump Features Section */
.heatpump-features {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.heatpump-features h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.heatpump-features .features-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
}

.heatpump-features .feature-icon {
  width: 82px;
  height: 82px;
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.heatpump-features .feature-icon svg {
  width: 70px;
  height: 70px;
  filter: saturate(1.1) contrast(1.05);
}

.heatpump-features .feature-card:hover .feature-icon {
  transform: scale(1.03);
}

.heatpump-features .feature-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 360px;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.16);
  text-align: left;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.heatpump-features .feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 16, 9, 0.95) 0%,
    rgba(8, 29, 18, 0.78) 48%,
    rgba(20, 55, 35, 0.26) 100%
  );
  z-index: 0;
  transition: background 0.35s ease;
}

.heatpump-features .feature-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(4, 16, 9, 0.97) 0%,
    rgba(8, 29, 18, 0.86) 55%,
    rgba(31, 155, 74, 0.30) 100%
  );
}

.heatpump-features .feature-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px 24px 26px;
}

.heatpump-features .feature-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.heatpump-features .feature-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.heatpump-features .feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.heatpump-features .feature-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #ffffff;
  font-size: 0.95rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.heatpump-features .feature-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ccff00;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Heat Pump CTA Section */
.heatpump-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f2920 0%, #1a4032 100%);
  color: #fff;
  text-align: center;
}

.heatpump-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ccff00;
}

.heatpump-cta p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.heatpump-cta .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.heatpump-cta .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.heatpump-cta .btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.heatpump-cta .btn.outline:hover {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.3);
}

/* Responsive Styles for Heat Pump Page */
@media (max-width: 1100px) {
  .heatpump-features .features-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1100px;
  }
}

@media (max-width: 768px) {
  .heatpump-overview .container,
  .heatpump-benefits .container,
  .heatpump-types .container,
  .heatpump-process .container,
  .heatpump-features .container,
  .heatpump-cta .container {
    padding: 0 12px;
  }
  
  .heatpump-hero-content h1 {
    font-size: 2rem;
  }
  
  .heatpump-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .heatpump-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .types-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .heatpump-features .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .heatpump-hero {
    padding: 120px 20px 80px 20px;
  }
  
  .heatpump-hero-content h1 {
    font-size: 1.75rem;
  }
  
  .heatpump-overview,
  .heatpump-benefits,
  .heatpump-types,
  .heatpump-process,
  .heatpump-features,
  .heatpump-cta {
    padding: 60px 20px;
  }
  
  .heatpump-overview-content h2,
  .heatpump-benefits h2,
  .heatpump-types h2,
  .heatpump-process h2,
  .heatpump-features h2,
  .heatpump-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .heatpump-overview .container,
  .heatpump-benefits .container,
  .heatpump-types .container,
  .heatpump-process .container,
  .heatpump-features .container,
  .heatpump-cta .container {
    padding: 0 8px;
  }
  
  .heatpump-hero-content h1 {
    font-size: 1.5rem;
  }
  
  .type-card {
    padding: 30px 20px;
  }
}

/* ============================================
   RESIDENTIAL ELECTRICAL PAGE STYLES
   ============================================ */

/* Residential Electrical Hero Section */
.electrical-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 41, 32, 0.85) 0%, rgba(26, 64, 50, 0.85) 50%, rgba(31, 155, 74, 0.85) 100%),
              url('images/img24.webp') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.electrical-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(204,255,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(31,155,74,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.electrical-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.electrical-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ccff00;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.electrical-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.95;
}

.electrical-hero .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.electrical-hero .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* Residential Electrical Hero Button Mobile Responsive */
@media (max-width: 900px) {
  .electrical-hero .btn {
    font-size: 0.95rem;
    padding: 10px 0;
    width: 85%;
    min-width: 100px;
    max-width: 260px;
  }
}

@media (max-width: 600px) {
  .electrical-hero .btn {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 24px;
  }
}

/* Residential Electrical Overview Section */
.electrical-overview {
  padding: 80px 0;
  background: #fff;
}

.electrical-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.electrical-overview-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 24px;
}

.electrical-overview-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2f4a3b;
  margin-bottom: 20px;
}

.electrical-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.electrical-overview-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31, 155, 74, 0.15);
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.electrical-overview-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.electrical-overview-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  transition: left 1s ease;
  pointer-events: none;
}

.electrical-overview-image:hover::before {
  left: -50%;
}

.electrical-overview-image:hover {
  box-shadow: 0 20px 60px rgba(31, 155, 74, 0.3);
  transform: translateY(-5px);
}

.electrical-overview-image:hover img {
  transform: scale(1.05);
}

/* Residential Electrical Benefits Section */
.electrical-benefits {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.05) 0%, rgba(204,255,0,0.03) 50%, rgba(31,155,74,0.05) 100%);
  text-align: center;
}

.electrical-benefits h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.electrical-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}

.electrical-benefits .benefit-card {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 360px;
  padding: 0;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.electrical-benefits .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(4, 16, 9, 0.94) 0%, rgba(8, 29, 18, 0.75) 48%, rgba(20, 55, 35, 0.24) 100%);
  z-index: 0;
}

.electrical-benefits .benefit-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.electrical-benefits .benefit-card.animate:nth-child(1) { transition-delay: 0.1s; }
.electrical-benefits .benefit-card.animate:nth-child(2) { transition-delay: 0.2s; }
.electrical-benefits .benefit-card.animate:nth-child(3) { transition-delay: 0.3s; }
.electrical-benefits .benefit-card.animate:nth-child(4) { transition-delay: 0.4s; }
.electrical-benefits .benefit-card.animate:nth-child(5) { transition-delay: 0.5s; }
.electrical-benefits .benefit-card.animate:nth-child(6) { transition-delay: 0.6s; }

.electrical-benefits .benefit-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-6px);
}

.electrical-benefits .benefit-card:hover::before {
  background: linear-gradient(to top, rgba(4, 16, 9, 0.96) 0%, rgba(8, 29, 18, 0.82) 48%, rgba(31, 155, 74, 0.28) 100%);
}

.electrical-benefits .benefit-content {
  position: relative;
  z-index: 1;
  padding: 32px 28px 34px;
  width: 100%;
}

.electrical-benefits .benefit-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ccff00;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.electrical-benefits .benefit-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

/* Residential Electrical Services Section */
.electrical-types {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.electrical-types h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.electrical-types .types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}

.electrical-types .type-card {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 360px;
  padding: 0;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.electrical-types .type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(4, 16, 9, 0.94) 0%, rgba(8, 29, 18, 0.75) 48%, rgba(20, 55, 35, 0.24) 100%);
  z-index: 0;
}

.electrical-types .type-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.electrical-types .type-card.animate:nth-child(1) { transition-delay: 0.1s; }
.electrical-types .type-card.animate:nth-child(2) { transition-delay: 0.2s; }
.electrical-types .type-card.animate:nth-child(3) { transition-delay: 0.3s; }
.electrical-types .type-card.animate:nth-child(4) { transition-delay: 0.4s; }
.electrical-types .type-card.animate:nth-child(5) { transition-delay: 0.5s; }
.electrical-types .type-card.animate:nth-child(6) { transition-delay: 0.6s; }

.electrical-types .type-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-6px);
}

.electrical-types .type-card:hover::before {
  background: linear-gradient(to top, rgba(4, 16, 9, 0.96) 0%, rgba(8, 29, 18, 0.82) 48%, rgba(31, 155, 74, 0.28) 100%);
}

.electrical-types .type-content {
  position: relative;
  z-index: 1;
  padding: 32px 28px 34px;
  width: 100%;
}

.electrical-types .type-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ccff00;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.electrical-types .type-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

/* Residential Electrical Process Section */
.electrical-process {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.03) 0%, rgba(255,255,255,0) 100%);
  text-align: center;
}

.electrical-process h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

/* Residential Electrical Features Section */
.electrical-features {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.electrical-features h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.electrical-features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.electrical-features .feature-card {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 380px;
  padding: 0;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.electrical-features .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(4, 16, 9, 0.94) 0%, rgba(8, 29, 18, 0.75) 48%, rgba(20, 55, 35, 0.24) 100%);
  z-index: 0;
}

.electrical-features .feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.electrical-features .feature-card.animate:nth-child(1) { transition-delay: 0.1s; }
.electrical-features .feature-card.animate:nth-child(2) { transition-delay: 0.2s; }
.electrical-features .feature-card.animate:nth-child(3) { transition-delay: 0.3s; }
.electrical-features .feature-card.animate:nth-child(4) { transition-delay: 0.4s; }

.electrical-features .feature-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-6px);
}

.electrical-features .feature-card:hover::before {
  background: linear-gradient(to top, rgba(4, 16, 9, 0.96) 0%, rgba(8, 29, 18, 0.82) 48%, rgba(31, 155, 74, 0.28) 100%);
}

.electrical-features .feature-content {
  position: relative;
  z-index: 1;
  padding: 32px 28px 34px;
  width: 100%;
}

.electrical-features .feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ccff00;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.electrical-features .feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.electrical-features .feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.electrical-features .feature-card ul li {
  font-size: 0.9rem;
  color: #ffffff;
  padding: 4px 0 4px 20px;
  position: relative;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.electrical-features .feature-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ccff00;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Residential Electrical CTA Section */
.electrical-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f2920 0%, #1a4032 100%);
  color: #fff;
  text-align: center;
}

.electrical-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ccff00;
}

.electrical-cta p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.electrical-cta .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.electrical-cta .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.electrical-cta .btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.electrical-cta .btn.outline:hover {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.3);
}

/* Responsive Styles for Residential Electrical Page */
@media (max-width: 768px) {
  .electrical-overview .container,
  .electrical-benefits .container,
  .electrical-types .container,
  .electrical-process .container,
  .electrical-features .container,
  .electrical-cta .container {
    padding: 0 12px;
  }
  
  .electrical-hero-content h1 {
    font-size: 2rem;
  }
  
  .electrical-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .electrical-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .electrical-types .types-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .electrical-benefits .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .electrical-features .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .electrical-hero {
    padding: 120px 20px 80px 20px;
  }
  
  .electrical-hero-content h1 {
    font-size: 1.75rem;
  }
  
  .electrical-overview,
  .electrical-benefits,
  .electrical-types,
  .electrical-process,
  .electrical-features,
  .electrical-cta {
    padding: 60px 20px;
  }

  .electrical-benefits .benefit-card {
    background-attachment: scroll;
  }
  
  .electrical-overview-content h2,
  .electrical-benefits h2,
  .electrical-types h2,
  .electrical-process h2,
  .electrical-features h2,
  .electrical-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .electrical-overview .container,
  .electrical-benefits .container,
  .electrical-types .container,
  .electrical-process .container,
  .electrical-cta .container {
    padding: 0 8px;
  }
  
  .electrical-hero-content h1 {
    font-size: 1.5rem;
  }
  
  .type-card {
    padding: 30px 20px;
  }
}
/* ============================================
   EV CHARGER PAGE STYLES
   ============================================ */

/* EV Charger Hero Section */
.evcharger-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 41, 32, 0.85) 0%, rgba(26, 64, 50, 0.85) 50%, rgba(31, 155, 74, 0.85) 100%),
              url('images/img14.jpg') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.evcharger-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(204,255,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(31,155,74,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.evcharger-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.evcharger-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ccff00;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.evcharger-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.95;
}

.evcharger-hero .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.evcharger-hero .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* EV Charger Hero Button Mobile Responsive */
@media (max-width: 900px) {
  .evcharger-hero .btn {
    font-size: 0.95rem;
    padding: 10px 0;
    width: 85%;
    min-width: 100px;
    max-width: 260px;
  }
}

@media (max-width: 600px) {
  .evcharger-hero .btn {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 24px;
  }
}

/* EV Charger Overview Section */
.evcharger-overview {
  padding: 80px 0;
  background: #fff;
}

.evcharger-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.evcharger-overview-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 24px;
}

.evcharger-overview-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2f4a3b;
  margin-bottom: 20px;
}

.evcharger-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.evcharger-overview-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31, 155, 74, 0.15);
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.evcharger-overview-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.evcharger-overview-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  transition: left 1s ease;
  pointer-events: none;
}

.evcharger-overview-image:hover::before {
  left: -50%;
}

.evcharger-overview-image:hover {
  box-shadow: 0 20px 60px rgba(31, 155, 74, 0.3);
  transform: translateY(-5px);
}

.evcharger-overview-image:hover img {
  transform: scale(1.05);
}

/* EV Charger Benefits Section */
.evcharger-benefits {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.05) 0%, rgba(204,255,0,0.03) 50%, rgba(31,155,74,0.05) 100%);
  text-align: center;
}

.evcharger-benefits h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

/* EV Charger Types Section */
.evcharger-types {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.evcharger-types h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.evcharger-types .types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.evcharger-types .type-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(31, 155, 74, 0.18);
  cursor: default;
  transition: all 0.4s ease;
}

.evcharger-types .type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 20, 0.82) 0%,
    rgba(15, 41, 32, 0.50) 50%,
    rgba(26, 64, 50, 0.15) 100%
  );
  border-radius: 16px;
  z-index: 1;
  transition: background 0.4s ease;
}

.evcharger-types .type-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(10, 30, 20, 0.88) 0%,
    rgba(15, 41, 32, 0.65) 55%,
    rgba(31, 155, 74, 0.25) 100%
  );
}

.evcharger-types .type-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 48px rgba(31, 155, 74, 0.3);
}

.evcharger-types .type-content {
  position: relative;
  z-index: 2;
  padding: 22px 24px 26px;
  text-align: left;
}

.evcharger-types .type-card h3 {
  color: #ccff00;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.evcharger-types .type-card p {
  color: rgba(220, 255, 230, 0.9);
  font-size: 0.86rem;
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* EV Charger Process Section */
.evcharger-process {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.03) 0%, rgba(255,255,255,0) 100%);
  text-align: center;
}

.evcharger-process h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

/* EV Charger Features Section */
.evcharger-features {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.evcharger-features h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

/* EV Charger Benefits image-background cards */
.evcharger-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}

.evcharger-benefits .benefit-card {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 360px;
  padding: 0;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.evcharger-benefits .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(4, 16, 9, 0.94) 0%, rgba(8, 29, 18, 0.75) 48%, rgba(20, 55, 35, 0.24) 100%);
  z-index: 0;
}

.evcharger-benefits .benefit-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.evcharger-benefits .benefit-card.animate:nth-child(1) { transition-delay: 0.1s; }
.evcharger-benefits .benefit-card.animate:nth-child(2) { transition-delay: 0.2s; }
.evcharger-benefits .benefit-card.animate:nth-child(3) { transition-delay: 0.3s; }
.evcharger-benefits .benefit-card.animate:nth-child(4) { transition-delay: 0.4s; }
.evcharger-benefits .benefit-card.animate:nth-child(5) { transition-delay: 0.5s; }
.evcharger-benefits .benefit-card.animate:nth-child(6) { transition-delay: 0.6s; }

.evcharger-benefits .benefit-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-6px);
}

.evcharger-benefits .benefit-card:hover::before {
  background: linear-gradient(to top, rgba(4, 16, 9, 0.96) 0%, rgba(8, 29, 18, 0.82) 48%, rgba(31, 155, 74, 0.28) 100%);
}

.evcharger-benefits .benefit-content {
  position: relative;
  z-index: 1;
  padding: 32px 28px 34px;
  width: 100%;
}

.evcharger-benefits .benefit-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ccff00;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.evcharger-benefits .benefit-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

/* EV Charger Features image-background cards */
.evcharger-features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.evcharger-features .feature-card {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 380px;
  padding: 0;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.evcharger-features .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(4, 16, 9, 0.94) 0%, rgba(8, 29, 18, 0.75) 48%, rgba(20, 55, 35, 0.24) 100%);
  z-index: 0;
}

.evcharger-features .feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.evcharger-features .feature-card.animate:nth-child(1) { transition-delay: 0.1s; }
.evcharger-features .feature-card.animate:nth-child(2) { transition-delay: 0.2s; }
.evcharger-features .feature-card.animate:nth-child(3) { transition-delay: 0.3s; }
.evcharger-features .feature-card.animate:nth-child(4) { transition-delay: 0.4s; }

.evcharger-features .feature-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-6px);
}

.evcharger-features .feature-card:hover::before {
  background: linear-gradient(to top, rgba(4, 16, 9, 0.96) 0%, rgba(8, 29, 18, 0.82) 48%, rgba(31, 155, 74, 0.28) 100%);
}

.evcharger-features .feature-content {
  position: relative;
  z-index: 1;
  padding: 32px 28px 34px;
  width: 100%;
}

.evcharger-features .feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ccff00;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.evcharger-features .feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.evcharger-features .feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.evcharger-features .feature-card ul li {
  font-size: 0.9rem;
  color: #ffffff;
  padding: 4px 0 4px 20px;
  position: relative;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.evcharger-features .feature-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #ccff00;
  font-weight: 700;
  font-size: 1.1rem;
}

/* EV Charger icon alignment for type cards */
.evcharger-types .type-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.evcharger-types .type-icon svg {
  width: 74px;
  height: 74px;
  filter: saturate(1.12) contrast(1.05);
}

.evcharger-types .type-card:hover .type-icon {
  transform: scale(1.03);
}

/* EV Charger CTA Section */
.evcharger-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f2920 0%, #1a4032 100%);
  color: #fff;
  text-align: center;
}

.evcharger-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ccff00;
}

.evcharger-cta p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.evcharger-cta .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.evcharger-cta .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.evcharger-cta .btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.evcharger-cta .btn.outline:hover {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.3);
}

/* Responsive Styles for EV Charger Page */
@media (max-width: 768px) {
  .evcharger-hero-content h1 {
    font-size: 2rem;
  }
  
  .evcharger-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .evcharger-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .evcharger-types .types-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .evcharger-benefits .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .evcharger-features .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .evcharger-hero {
    padding: 120px 20px 80px 20px;
  }
  
  .evcharger-hero-content h1 {
    font-size: 1.75rem;
  }
  
  .evcharger-overview,
  .evcharger-benefits,
  .evcharger-types,
  .evcharger-process,
  .evcharger-features,
  .evcharger-cta {
    padding: 60px 20px;
  }

  .evcharger-benefits .benefit-card {
    background-attachment: scroll;
  }
  
  .evcharger-overview-content h2,
  .evcharger-benefits h2,
  .evcharger-types h2,
  .evcharger-process h2,
  .evcharger-features h2,
  .evcharger-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .evcharger-hero-content h1 {
    font-size: 1.5rem;
  }
  
  .type-card {
    padding: 30px 20px;
  }
}

/* ============================================
   SWITCHBOARD UPGRADES PAGE STYLES
   ============================================ */

/* Switchboard Hero Section */
.switchboard-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 41, 32, 0.85) 0%, rgba(26, 64, 50, 0.85) 50%, rgba(31, 155, 74, 0.85) 100%),
              url('images/img12.jpg') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.switchboard-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(204,255,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(31,155,74,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.switchboard-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.switchboard-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ccff00;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.switchboard-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.95;
}

.switchboard-hero .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.switchboard-hero .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* Switchboard Hero Button Mobile Responsive */
@media (max-width: 900px) {
  .switchboard-hero .btn {
    font-size: 0.95rem;
    padding: 10px 0;
    width: 85%;
    min-width: 100px;
    max-width: 260px;
  }
}

@media (max-width: 600px) {
  .switchboard-hero .btn {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 24px;
  }
}

/* Switchboard Overview Section */
.switchboard-overview {
  padding: 80px 0;
  background: #fff;
}

.switchboard-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.switchboard-overview-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 24px;
}

.switchboard-overview-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2f4a3b;
  margin-bottom: 20px;
}

.switchboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.switchboard-overview-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31, 155, 74, 0.15);
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.switchboard-overview-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.switchboard-overview-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  transition: left 1s ease;
  pointer-events: none;
}

.switchboard-overview-image:hover::before {
  left: -50%;
}

.switchboard-overview-image:hover {
  box-shadow: 0 20px 60px rgba(31, 155, 74, 0.3);
  transform: translateY(-5px);
}

.switchboard-overview-image:hover img {
  transform: scale(1.05);
}

/* Switchboard Benefits Section */
.switchboard-benefits {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.05) 0%, rgba(204,255,0,0.03) 50%, rgba(31,155,74,0.05) 100%);
  text-align: center;
}

.switchboard-benefits h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.switchboard-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.switchboard-benefits .benefit-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.switchboard-benefits .benefit-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.switchboard-benefits .benefit-card:nth-child(1) { transition-delay: 0.1s; }
.switchboard-benefits .benefit-card:nth-child(2) { transition-delay: 0.2s; }
.switchboard-benefits .benefit-card:nth-child(3) { transition-delay: 0.3s; }
.switchboard-benefits .benefit-card:nth-child(4) { transition-delay: 0.4s; }
.switchboard-benefits .benefit-card:nth-child(5) { transition-delay: 0.5s; }
.switchboard-benefits .benefit-card:nth-child(6) { transition-delay: 0.6s; }

.switchboard-benefits .benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,16,9,0.94) 0%, rgba(8,29,18,0.75) 48%, rgba(20,55,35,0.24) 100%);
  z-index: 0;
  transition: background 0.35s ease;
}

.switchboard-benefits .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.switchboard-benefits .benefit-card:hover::before {
  background: linear-gradient(to top, rgba(4,16,9,0.96) 0%, rgba(8,29,18,0.80) 48%, rgba(31,155,74,0.28) 100%);
}

.switchboard-benefits .benefit-content {
  position: relative;
  z-index: 1;
  padding: 24px 22px;
  width: 100%;
}

.switchboard-benefits .benefit-content h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}

.switchboard-benefits .benefit-content p {
  font-size: 0.93rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.80);
}

/* Switchboard Types Section */
.switchboard-types {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.switchboard-types h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.switchboard-types .types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.switchboard-types .type-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.switchboard-types .type-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.switchboard-types .type-card:nth-child(1) { transition-delay: 0.1s; }
.switchboard-types .type-card:nth-child(2) { transition-delay: 0.2s; }
.switchboard-types .type-card:nth-child(3) { transition-delay: 0.3s; }
.switchboard-types .type-card:nth-child(4) { transition-delay: 0.4s; }
.switchboard-types .type-card:nth-child(5) { transition-delay: 0.5s; }
.switchboard-types .type-card:nth-child(6) { transition-delay: 0.6s; }

.switchboard-types .type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,16,9,0.94) 0%, rgba(8,29,18,0.75) 48%, rgba(20,55,35,0.24) 100%);
  z-index: 0;
  transition: background 0.35s ease;
}

.switchboard-types .type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.switchboard-types .type-card:hover::before {
  background: linear-gradient(to top, rgba(4,16,9,0.96) 0%, rgba(8,29,18,0.80) 48%, rgba(31,155,74,0.28) 100%);
}

.switchboard-types .type-content {
  position: relative;
  z-index: 1;
  padding: 24px 22px;
  width: 100%;
}

.switchboard-types .type-content h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}

.switchboard-types .type-content p {
  font-size: 0.93rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.80);
}

/* Switchboard Process Section */
.switchboard-process {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.03) 0%, rgba(255,255,255,0) 100%);
  text-align: center;
}

.switchboard-process h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

/* Switchboard Features Section */
.switchboard-features {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.switchboard-features h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.switchboard-features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.switchboard-features .feature-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.switchboard-features .feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.switchboard-features .feature-card:nth-child(1) { transition-delay: 0.1s; }
.switchboard-features .feature-card:nth-child(2) { transition-delay: 0.2s; }
.switchboard-features .feature-card:nth-child(3) { transition-delay: 0.3s; }
.switchboard-features .feature-card:nth-child(4) { transition-delay: 0.4s; }

.switchboard-features .feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,16,9,0.94) 0%, rgba(8,29,18,0.75) 48%, rgba(20,55,35,0.24) 100%);
  z-index: 0;
  transition: background 0.35s ease;
}

.switchboard-features .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.switchboard-features .feature-card:hover::before {
  background: linear-gradient(to top, rgba(4,16,9,0.96) 0%, rgba(8,29,18,0.80) 48%, rgba(31,155,74,0.28) 100%);
}

.switchboard-features .feature-content {
  position: relative;
  z-index: 1;
  padding: 24px 22px;
  width: 100%;
}

.switchboard-features .feature-content h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}

.switchboard-features .feature-content p {
  font-size: 0.93rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 12px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.80);
}

.switchboard-features .feature-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.switchboard-features .feature-content ul li {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
  text-shadow: 0 1px 6px rgba(0,0,0,0.80);
}

.switchboard-features .feature-content ul li::before {
  content: '✓';
  color: #ccff00;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

/* Switchboard CTA Section */
.switchboard-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f2920 0%, #1a4032 100%);
  color: #fff;
  text-align: center;
}

.switchboard-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ccff00;
}

.switchboard-cta p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.switchboard-cta .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.switchboard-cta .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.switchboard-cta .btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.switchboard-cta .btn.outline:hover {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.3);
}

/* Responsive Styles for Switchboard Page */
@media (max-width: 768px) {
  .switchboard-hero-content h1 {
    font-size: 2rem;
  }
  
  .switchboard-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .switchboard-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .switchboard-types .types-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .switchboard-benefits .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .switchboard-features .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .switchboard-hero {
    padding: 120px 20px 80px 20px;
  }
  
  .switchboard-hero-content h1 {
    font-size: 1.75rem;
  }
  
  .switchboard-overview,
  .switchboard-benefits,
  .switchboard-types,
  .switchboard-process,
  .switchboard-features,
  .switchboard-cta {
    padding: 60px 20px;
  }

  .switchboard-benefits .benefit-card {
    background-attachment: scroll;
  }
  
  .switchboard-overview-content h2,
  .switchboard-benefits h2,
  .switchboard-types h2,
  .switchboard-process h2,
  .switchboard-features h2,
  .switchboard-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .switchboard-hero-content h1 {
    font-size: 1.5rem;
  }
  
  .type-card {
    padding: 30px 20px;
  }
}

/* ============================================
   CAMERA PLACEMENT PAGE STYLES
   ============================================ */

/* Camera Hero Section */
.camera-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 41, 32, 0.85) 0%, rgba(26, 64, 50, 0.85) 50%, rgba(31, 155, 74, 0.85) 100%),
              url('images/img17.jpg') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.camera-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(204,255,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(31,155,74,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.camera-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.camera-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ccff00;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.camera-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.95;
}

.camera-hero .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.camera-hero .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* Camera Hero Button Mobile Responsive */
@media (max-width: 900px) {
  .camera-hero .btn {
    font-size: 0.95rem;
    padding: 10px 0;
    width: 85%;
    min-width: 100px;
    max-width: 260px;
  }
}

@media (max-width: 600px) {
  .camera-hero .btn {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 24px;
  }
}

/* Camera Overview Section */
.camera-overview {
  padding: 80px 0;
  background: #fff;
}

.camera-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.camera-overview-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 24px;
}

.camera-overview-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2f4a3b;
  margin-bottom: 20px;
}

.camera-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.camera-overview-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31, 155, 74, 0.15);
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.camera-overview-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.camera-overview-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  transition: left 1s ease;
  pointer-events: none;
}

.camera-overview-image:hover::before {
  left: -50%;
}

.camera-overview-image:hover {
  box-shadow: 0 20px 60px rgba(31, 155, 74, 0.3);
  transform: translateY(-5px);
}

.camera-overview-image:hover img {
  transform: scale(1.05);
}

/* Camera Benefits Section */
.camera-benefits {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.05) 0%, rgba(204,255,0,0.03) 50%, rgba(31,155,74,0.05) 100%);
  text-align: center;
}

.camera-benefits h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

/* Camera Types Section */
.camera-types {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.camera-types h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.camera-types .types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.camera-types .type-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 340px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(31, 155, 74, 0.18);
  cursor: default;
  transition: all 0.35s ease;
}

.camera-types .type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 20, 0.72) 0%,
    rgba(15, 41, 32, 0.38) 52%,
    rgba(26, 64, 50, 0.10) 100%
  );
  z-index: 1;
  transition: background 0.35s ease;
}

.camera-types .type-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(10, 30, 20, 0.78) 0%,
    rgba(15, 41, 32, 0.48) 55%,
    rgba(31, 155, 74, 0.18) 100%
  );
}

.camera-types .type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(31, 155, 74, 0.3);
}

.camera-types .type-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 24px 24px 26px;
}

.camera-types .type-card h3 {
  color: #ccff00;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.camera-types .type-card p {
  color: rgba(220, 255, 230, 0.94);
  font-size: 0.95rem;
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.camera-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.camera-benefits .benefit-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.camera-benefits .benefit-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.camera-benefits .benefit-card:nth-child(1) { transition-delay: 0.1s; }
.camera-benefits .benefit-card:nth-child(2) { transition-delay: 0.2s; }
.camera-benefits .benefit-card:nth-child(3) { transition-delay: 0.3s; }
.camera-benefits .benefit-card:nth-child(4) { transition-delay: 0.4s; }
.camera-benefits .benefit-card:nth-child(5) { transition-delay: 0.5s; }
.camera-benefits .benefit-card:nth-child(6) { transition-delay: 0.6s; }

.camera-benefits .benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,16,9,0.94) 0%, rgba(8,29,18,0.75) 48%, rgba(20,55,35,0.24) 100%);
  z-index: 0;
  transition: background 0.35s ease;
}

.camera-benefits .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.camera-benefits .benefit-card:hover::before {
  background: linear-gradient(to top, rgba(4,16,9,0.96) 0%, rgba(8,29,18,0.80) 48%, rgba(31,155,74,0.28) 100%);
}

.camera-benefits .benefit-content {
  position: relative;
  z-index: 1;
  padding: 24px 22px;
  width: 100%;
}

.camera-benefits .benefit-content h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}

.camera-benefits .benefit-content p {
  font-size: 0.93rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.80);
}

.camera-features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.camera-features .feature-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.camera-features .feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.camera-features .feature-card:nth-child(1) { transition-delay: 0.1s; }
.camera-features .feature-card:nth-child(2) { transition-delay: 0.2s; }
.camera-features .feature-card:nth-child(3) { transition-delay: 0.3s; }
.camera-features .feature-card:nth-child(4) { transition-delay: 0.4s; }

.camera-features .feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,16,9,0.94) 0%, rgba(8,29,18,0.75) 48%, rgba(20,55,35,0.24) 100%);
  z-index: 0;
  transition: background 0.35s ease;
}

.camera-features .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.camera-features .feature-card:hover::before {
  background: linear-gradient(to top, rgba(4,16,9,0.96) 0%, rgba(8,29,18,0.80) 48%, rgba(31,155,74,0.28) 100%);
}

.camera-features .feature-content {
  position: relative;
  z-index: 1;
  padding: 24px 22px;
  width: 100%;
}

.camera-features .feature-content h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}

.camera-features .feature-content p {
  font-size: 0.93rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.80);
}

/* Camera Process Section */
.camera-process {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.03) 0%, rgba(255,255,255,0) 100%);
  text-align: center;
}

.camera-process h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

/* Camera Features Section */
.camera-features {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.camera-features h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

/* Camera CTA Section */
.camera-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f2920 0%, #1a4032 100%);
  color: #fff;
  text-align: center;
}

.camera-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ccff00;
}

.camera-cta p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.camera-cta .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.camera-cta .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.camera-cta .btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.camera-cta .btn.outline:hover {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.3);
}

/* Responsive Styles for Camera Page */
@media (max-width: 768px) {
  .camera-hero-content h1 {
    font-size: 2rem;
  }
  
  .camera-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .camera-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .camera-types .types-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .camera-benefits .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .camera-features .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .camera-hero {
    padding: 120px 20px 80px 20px;
  }
  
  .camera-hero-content h1 {
    font-size: 1.75rem;
  }
  
  .camera-overview,
  .camera-benefits,
  .camera-types,
  .camera-process,
  .camera-features,
  .camera-cta {
    padding: 60px 20px;
  }

  .camera-benefits .benefit-card {
    background-attachment: scroll;
  }
  
  .camera-overview-content h2,
  .camera-benefits h2,
  .camera-types h2,
  .camera-process h2,
  .camera-features h2,
  .camera-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .camera-hero-content h1 {
    font-size: 1.5rem;
  }

  .camera-types .type-card {
    min-height: 300px;
  }

  .camera-types .type-content {
    padding: 20px;
  }
}

/* ============================================
   FAULT FINDING PAGE STYLES
   ============================================ */

/* Fault Finding Hero Section */
.faultfinding-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 41, 32, 0.85) 0%, rgba(26, 64, 50, 0.85) 50%, rgba(31, 155, 74, 0.85) 100%),
              url('images/img18.jpg') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* ============================================
   HERO GRADIENT LINE — applies to all pages
   ============================================ */
.about-hero::after,
.solar-hero::after,
.commercial-hero::after,
.heatpump-hero::after,
.electrical-hero::after,
.evcharger-hero::after,
.switchboard-hero::after,
.camera-hero::after,
.faultfinding-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #137855 0%, #1f9b4a 30%, #ccff00 60%, #a8d400 80%, #137855 100%);
  z-index: 10;
}

/* ============================================
   HERO HEIGHT NORMALIZATION — equal across all pages
   ============================================ */
.about-hero,
.solar-hero,
.commercial-hero,
.heatpump-hero,
.electrical-hero,
.evcharger-hero,
.switchboard-hero,
.camera-hero,
.faultfinding-hero {
  min-height: 65vh;
  height: 65vh;
}

@media (max-width: 768px) {
  .about-hero,
  .solar-hero,
  .commercial-hero,
  .heatpump-hero,
  .electrical-hero,
  .evcharger-hero,
  .switchboard-hero,
  .camera-hero,
  .faultfinding-hero {
    height: auto;
    min-height: 60vh;
  }
}


.faultfinding-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(204,255,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(31,155,74,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.faultfinding-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.faultfinding-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ccff00;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.faultfinding-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.95;
}

.faultfinding-hero .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.faultfinding-hero .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* Fault Finding Hero Button Mobile Responsive */
@media (max-width: 900px) {
  .faultfinding-hero .btn {
    font-size: 0.95rem;
    padding: 10px 0;
    width: 85%;
    min-width: 100px;
    max-width: 260px;
  }
}

@media (max-width: 600px) {
  .faultfinding-hero .btn {
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 24px;
  }
}

/* Fault Finding Overview Section */
.faultfinding-overview {
  padding: 80px 0;
  background: #fff;
}

.faultfinding-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.faultfinding-overview-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 24px;
}

.faultfinding-overview-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2f4a3b;
  margin-bottom: 20px;
}

.faultfinding-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.faultfinding-overview-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(31, 155, 74, 0.15);
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.faultfinding-overview-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.faultfinding-overview-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  transition: left 1s ease;
  pointer-events: none;
}

.faultfinding-overview-image:hover::before {
  left: -50%;
}

.faultfinding-overview-image:hover {
  box-shadow: 0 20px 60px rgba(31, 155, 74, 0.3);
  transform: translateY(-5px);
}

.faultfinding-overview-image:hover img {
  transform: scale(1.05);
}

/* Fault Finding Benefits Section */
.faultfinding-benefits {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.05) 0%, rgba(204,255,0,0.03) 50%, rgba(31,155,74,0.05) 100%);
  text-align: center;
}

.faultfinding-benefits h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

/* Fault Finding Types Section */
.faultfinding-types {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.faultfinding-types h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

.faultfinding-types .types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.faultfinding-types .type-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.faultfinding-types .type-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.faultfinding-types .type-card:nth-child(1) { transition-delay: 0.1s; }
.faultfinding-types .type-card:nth-child(2) { transition-delay: 0.2s; }
.faultfinding-types .type-card:nth-child(3) { transition-delay: 0.3s; }
.faultfinding-types .type-card:nth-child(4) { transition-delay: 0.4s; }
.faultfinding-types .type-card:nth-child(5) { transition-delay: 0.5s; }
.faultfinding-types .type-card:nth-child(6) { transition-delay: 0.6s; }

.faultfinding-types .type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,16,9,0.94) 0%, rgba(8,29,18,0.75) 48%, rgba(20,55,35,0.24) 100%);
  z-index: 0;
  transition: background 0.35s ease;
}

.faultfinding-types .type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.faultfinding-types .type-card:hover::before {
  background: linear-gradient(to top, rgba(4,16,9,0.96) 0%, rgba(8,29,18,0.80) 48%, rgba(31,155,74,0.28) 100%);
}

.faultfinding-types .type-content {
  position: relative;
  z-index: 1;
  padding: 24px 22px;
  width: 100%;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.faultfinding-types .type-content h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ccff00;
  line-height: 1.3;
  min-height: 2.6em;
  margin: 0 0 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}

.faultfinding-types .type-content p {
  font-size: 0.93rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.80);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.faultfinding-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.faultfinding-benefits .benefit-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.faultfinding-benefits .benefit-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.faultfinding-benefits .benefit-card:nth-child(1) { transition-delay: 0.1s; }
.faultfinding-benefits .benefit-card:nth-child(2) { transition-delay: 0.2s; }
.faultfinding-benefits .benefit-card:nth-child(3) { transition-delay: 0.3s; }
.faultfinding-benefits .benefit-card:nth-child(4) { transition-delay: 0.4s; }
.faultfinding-benefits .benefit-card:nth-child(5) { transition-delay: 0.5s; }
.faultfinding-benefits .benefit-card:nth-child(6) { transition-delay: 0.6s; }

.faultfinding-benefits .benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,16,9,0.94) 0%, rgba(8,29,18,0.75) 48%, rgba(20,55,35,0.24) 100%);
  z-index: 0;
  transition: background 0.35s ease;
}

.faultfinding-benefits .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.faultfinding-benefits .benefit-card:hover::before {
  background: linear-gradient(to top, rgba(4,16,9,0.96) 0%, rgba(8,29,18,0.80) 48%, rgba(31,155,74,0.28) 100%);
}

.faultfinding-benefits .benefit-content {
  position: relative;
  z-index: 1;
  padding: 24px 22px;
  width: 100%;
}

.faultfinding-benefits .benefit-content h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}

.faultfinding-benefits .benefit-content p {
  font-size: 0.93rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.80);
}

.faultfinding-features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.faultfinding-features .feature-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.faultfinding-features .feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.faultfinding-features .feature-card:nth-child(1) { transition-delay: 0.1s; }
.faultfinding-features .feature-card:nth-child(2) { transition-delay: 0.2s; }
.faultfinding-features .feature-card:nth-child(3) { transition-delay: 0.3s; }
.faultfinding-features .feature-card:nth-child(4) { transition-delay: 0.4s; }

.faultfinding-features .feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,16,9,0.94) 0%, rgba(8,29,18,0.75) 48%, rgba(20,55,35,0.24) 100%);
  z-index: 0;
  transition: background 0.35s ease;
}

.faultfinding-features .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.faultfinding-features .feature-card:hover::before {
  background: linear-gradient(to top, rgba(4,16,9,0.96) 0%, rgba(8,29,18,0.80) 48%, rgba(31,155,74,0.28) 100%);
}

.faultfinding-features .feature-content {
  position: relative;
  z-index: 1;
  padding: 24px 22px;
  width: 100%;
}

.faultfinding-features .feature-content h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ccff00;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}

.faultfinding-features .feature-content p {
  font-size: 0.93rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.80);
}

/* Fault Finding Process Section */
.faultfinding-process {
  padding: 40px 0 120px 0;
  background: linear-gradient(180deg, rgba(31,155,74,0.03) 0%, rgba(255,255,255,0) 100%);
  text-align: center;
}

.faultfinding-process h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

/* Fault Finding Features Section */
.faultfinding-features {
  padding: 40px 0 120px 0;
  background: #fff;
  text-align: center;
}

.faultfinding-features h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 20px;
}

/* Fault Finding CTA Section */
.faultfinding-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f2920 0%, #1a4032 100%);
  color: #fff;
  text-align: center;
}

.faultfinding-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #ccff00;
}

.faultfinding-cta p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.faultfinding-cta .btn {
  min-width: 200px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 28px;
  transition: all 0.3s ease;
}

.faultfinding-cta .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.faultfinding-cta .btn.outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.faultfinding-cta .btn.outline:hover {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 155, 74, 0.3);
}

/* Responsive Styles for Fault Finding Page */
@media (max-width: 768px) {
  .faultfinding-hero-content h1 {
    font-size: 2rem;
  }
  
  .faultfinding-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .faultfinding-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .faultfinding-types .types-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faultfinding-benefits .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faultfinding-features .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .faultfinding-hero {
    padding: 120px 20px 80px 20px;
  }
  
  .faultfinding-hero-content h1 {
    font-size: 1.75rem;
  }
  
  .faultfinding-overview,
  .faultfinding-benefits,
  .faultfinding-types,
  .faultfinding-process,
  .faultfinding-features,
  .faultfinding-cta {
    padding: 60px 20px;
  }

  .faultfinding-benefits .benefit-card {
    background-attachment: scroll;
  }
  
  .faultfinding-overview-content h2,
  .faultfinding-benefits h2,
  .faultfinding-types h2,
  .faultfinding-process h2,
  .faultfinding-features h2,
  .faultfinding-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .faultfinding-hero-content h1 {
    font-size: 1.5rem;
  }

  .faultfinding-types .type-card {
    padding: 0;
  }

  .faultfinding-types .type-content {
    min-height: auto;
  }

  .faultfinding-types .type-content p {
    -webkit-line-clamp: unset;
    line-clamp: unset;
  }
}

/* ============================================
   GLOBAL HERO MOBILE RESPONSIVENESS
   ============================================ */
@media (max-width: 768px) {
  .about-hero,
  .solar-hero,
  .commercial-hero,
  .heatpump-hero,
  .electrical-hero,
  .evcharger-hero,
  .switchboard-hero,
  .camera-hero,
  .faultfinding-hero {
    height: auto !important;
    min-height: clamp(380px, 62vh, 560px) !important;
    padding: clamp(96px, 14vw, 120px) 20px clamp(56px, 9vw, 80px) !important;
    background-position: center center;
  }

  .about-hero-content,
  .solar-hero-content,
  .commercial-hero-content,
  .heatpump-hero-content,
  .electrical-hero-content,
  .evcharger-hero-content,
  .switchboard-hero-content,
  .camera-hero-content,
  .faultfinding-hero-content {
    max-width: min(92vw, 780px);
    margin: 0 auto;
  }

  .about-hero-content h1,
  .solar-hero-content h1,
  .commercial-hero-content h1,
  .heatpump-hero-content h1,
  .electrical-hero-content h1,
  .evcharger-hero-content h1,
  .switchboard-hero-content h1,
  .camera-hero-content h1,
  .faultfinding-hero-content h1 {
    font-size: clamp(1.7rem, 6vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .about-hero-content p,
  .solar-hero-content p,
  .commercial-hero-content p,
  .heatpump-hero-content p,
  .electrical-hero-content p,
  .evcharger-hero-content p,
  .switchboard-hero-content p,
  .camera-hero-content p,
  .faultfinding-hero-content p {
    font-size: clamp(0.98rem, 3.6vw, 1.15rem);
    line-height: 1.5;
    margin-bottom: 22px;
  }
}

@media (max-width: 480px) {
  .about-hero,
  .solar-hero,
  .commercial-hero,
  .heatpump-hero,
  .electrical-hero,
  .evcharger-hero,
  .switchboard-hero,
  .camera-hero,
  .faultfinding-hero {
    min-height: clamp(340px, 58vh, 460px) !important;
    padding: clamp(86px, 22vw, 108px) 16px clamp(46px, 12vw, 64px) !important;
  }
}