:root {
  --color-primary: #208a22;
  --color-secondary: #ffe114;
  --bg-deep: #050a06;
  --bg-surface: #0a140d;
  --bg-card: #111d14;
  --text-main: #ffffff;
  --text-muted: #9baaa0;
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-soft: 0 12px 24px rgba(0, 0, 0, 0.3);
  --neon-green: 0 0 20px rgba(32, 138, 34, 0.6);
  --neon-yellow: 0 0 15px rgba(255, 225, 20, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 6rem 0;
}

.alt-bg {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-subtitle {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.section-header h2,
.text-content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header p,
.text-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.section-header.text-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* =========================================
    NAVBAR & HAMBURGER MENU
   ========================================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(10, 20, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(32, 138, 34, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--text-main);
  border-radius: 3px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 101;
}

.logo span {
  color: var(--color-secondary);
  text-shadow: var(--neon-yellow);
}

.logo-icon {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: var(--neon-green);
  position: relative;
}

.logo-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--color-secondary);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-secondary);
  box-shadow: var(--neon-yellow);
  transition: width 0.3s ease;
}

.nav-links li a:hover,
.nav-links li .active {
  color: var(--color-secondary);
}

.nav-links li .active::after,
.nav-links li a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 30px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: inset 0 0 10px rgba(32, 138, 34, 0.1);
}

.nav-cta:hover {
  background: var(--color-primary);
  color: var(--bg-deep);
  box-shadow: var(--neon-green);
}

/* =========================================
    BUTTONS
   ========================================= */
.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: #1a701c;
  border-color: #1a701c;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(32, 138, 34, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--text-main);
  background-color: rgba(255, 255, 255, 0.05);
}

/* =========================================
    HERO SECTION
   ========================================= */
.hero-section {
  padding: 12rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(32, 138, 34, 0.1);
  border: 1px solid rgba(32, 138, 34, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 50%;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-main);
}

.hero-content h1 span {
  color: var(--color-primary);
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 90%;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.stacked-images-container {
  position: relative;
  width: 100%;
  height: 600px;
  perspective: 1000px;
}

.stacked-img {
  position: absolute;
  width: 80%;
  height: 65%;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  overflow: hidden;
  /* Fixed transition: Only transition transform and box-shadow, leave opacity to GSAP */
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.stacked-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.img-back {
  top: 0;
  right: 0;
  transform: translateZ(-150px) translateY(0);
  opacity: 0.4;
  z-index: 1;
}

.img-middle {
  top: 15%;
  right: 10%;
  transform: translateZ(-75px) translateY(0);
  opacity: 0.7;
  z-index: 2;
}

.img-front {
  bottom: 0;
  left: 0;
  z-index: 3;
}

.img-front img {
  filter: brightness(0.9);
}

.stacked-images-container:hover .img-back {
  transform: translateZ(-150px) translateY(-15px);
}

.stacked-images-container:hover .img-middle {
  transform: translateZ(-75px) translateY(-10px);
}

.floating-card {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background-color: var(--bg-card);
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 260px;
}

.floating-card-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 225, 20, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.floating-card-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.floating-card-content p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =========================================
    SUB-HERO BANNER
   ========================================= */
.solution-banner {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-surface);
  padding: 4rem 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.solution-features {
  display: flex;
  gap: 2rem;
}

.feature-item .icon-wrapper {
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* =========================================
    GRIDS & LAYOUTS
   ========================================= */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* =========================================
    CARDS
   ========================================= */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  /* Fixed transition */
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.card-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: rgba(32, 138, 34, 0.1);
  color: var(--color-primary);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(32, 138, 34, 0.2);
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover .card-icon-wrapper {
  background-color: var(--color-primary);
  color: var(--bg-deep);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(32, 138, 34, 0.4);
}

.card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* =========================================
    UPDATED PRICING CARDS WITH IMAGES
   ========================================= */

.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.pricing-image {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pricing-card:hover .pricing-image img {
  transform: scale(1.05);
}

.pricing-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--bg-card), transparent);
  pointer-events: none;
}

.pricing-content {
  padding: 0 2rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pricing-card.popular {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(32, 138, 34, 0.1);
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pricing-content .price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: var(--color-secondary);
}

.pricing-content .price span {
  font-size: 1.5rem;
  vertical-align: super;
}

.tier-desc {
  margin-bottom: 2rem;
  min-height: 50px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* =========================================
    RESIDENTIAL POWER PACKAGES (SP-PREFIXED)
   ========================================= */

.sp-pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.sp-power-node {
  background: linear-gradient(
    160deg,
    rgba(32, 138, 34, 0.08) 0%,
    var(--bg-card) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  /* Fixed transition */
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.sp-power-node:hover {
  transform: translateY(-10px);
  border-color: rgba(32, 138, 34, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.sp-node-featured {
  background: linear-gradient(
    160deg,
    rgba(32, 138, 34, 0.2) 0%,
    var(--bg-card) 100%
  );
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(32, 138, 34, 0.15);
  transform: scale(1.02);
}

.sp-node-featured:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 20px 40px rgba(255, 225, 20, 0.15);
}

.sp-featured-tag {
  position: absolute;
  top: 0;
  right: 2.5rem;
  background-color: var(--color-secondary);
  color: var(--bg-deep);
  padding: 0.5rem 1.2rem;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  letter-spacing: 1px;
}

.sp-node-enterprise {
  background: linear-gradient(
    160deg,
    rgba(255, 225, 20, 0.05) 0%,
    var(--bg-card) 100%
  );
  border: 1px dashed rgba(255, 225, 20, 0.3);
}

.sp-node-enterprise:hover {
  border: 1px solid var(--color-secondary);
}

.sp-node-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.sp-node-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 65px;
}

.sp-node-price-block {
  margin: 1.5rem 0 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-currency {
  font-size: 1.5rem;
  vertical-align: top;
  color: var(--color-primary);
  font-weight: 600;
  margin-right: 4px;
}

.sp-amount {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.sp-node-featured .sp-currency,
.sp-node-featured .sp-amount {
  color: var(--color-secondary);
}

.sp-node-specs {
  list-style: none;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.sp-node-specs li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.4;
}

.sp-node-specs li svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.sp-node-featured .sp-node-specs li svg {
  color: var(--color-secondary);
}

.sp-btn {
  width: 100%;
  padding: 1.2rem;
  border-radius: 12px;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.sp-btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sp-btn-outline:hover {
  background: rgba(32, 138, 34, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.sp-btn-solid {
  background: var(--color-primary);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(32, 138, 34, 0.3);
}

.sp-btn-solid:hover {
  background: #1a701c;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(32, 138, 34, 0.4);
}

.sp-btn-enterprise {
  background: transparent;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

.sp-btn-enterprise:hover {
  background: var(--color-secondary);
  color: var(--bg-deep);
}

/* =========================================
    OUR EXPERTISE / WHY US SECTION
   ========================================= */

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  /* Fixed transition */
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.expertise-item:hover {
  background: rgba(32, 138, 34, 0.05);
  border-color: var(--color-primary);
  transform: translateX(8px);
}

.expertise-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(32, 138, 34, 0.1);
  color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.expertise-item:hover .expertise-icon {
  background: var(--color-primary);
  color: var(--bg-deep);
  box-shadow: 0 0 15px rgba(32, 138, 34, 0.4);
}

.expertise-text h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.expertise-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* =========================================
    ULTRA GLOWY CTA SECTION
   ========================================= */

.cta-glow-wrapper {
  position: relative;
  border-radius: 30px;
  padding: 2px;
  background: rgba(32, 138, 34, 0.2);
  box-shadow:
    0 20px 50px rgba(32, 138, 34, 0.2),
    0 0 80px rgba(255, 225, 20, 0.05);
  overflow: hidden;
  z-index: 1;
}

.cta-glow-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    var(--color-primary),
    transparent 30%,
    var(--color-secondary),
    transparent 60%
  );
  animation: border-spin 6s linear infinite;
  z-index: -1;
}

.cta-box {
  position: relative;
  background: rgba(5, 10, 6, 0.9);
  backdrop-filter: blur(24px);
  padding: 6rem 3rem;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(32, 138, 34, 0.15) 0%,
    transparent 70%
  );
  top: -250px;
  left: -250px;
  z-index: -1;
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 225, 20, 0.1) 0%,
    transparent 70%
  );
  bottom: -200px;
  right: -200px;
  z-index: -1;
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite alternate-reverse;
}

.cta-box h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.cta-box h2 span {
  color: var(--color-secondary);
  text-shadow: 0 0 20px rgba(255, 225, 20, 0.4);
}

.cta-box p {
  font-size: 1.25rem;
  color: #e8f5e9;
  max-width: 750px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-glow {
  background: var(--color-primary);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 20px rgba(32, 138, 34, 0.6),
    inset 0 0 10px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  animation: button-shine 3s infinite;
  z-index: -1;
}

.btn-glow:hover {
  background: #1a701c;
  box-shadow:
    0 0 35px rgba(32, 138, 34, 0.9),
    inset 0 0 15px rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-outline-glow {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline-glow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

@keyframes border-spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes button-shine {
  0% {
    left: -100%;
  }
  20% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}

@keyframes pulse-glow {
  0% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* =========================================
    TESTIMONIALS SECTION 
   ========================================= */
.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-card .stars {
  color: var(--color-secondary);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.testimonial-card .quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.client-info h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.client-info span {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================
    FOOTER
   ========================================= */
.site-footer {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1.5rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: var(--color-primary);
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 1.5rem;
}

.legal-links a:hover {
  color: var(--color-primary);
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-info li:hover {
  color: var(--text-main);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 0.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-main);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.social-icon:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--bg-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(32, 138, 34, 0.3);
}
