/* ===== RESET & VARIABLES ===== */
:root {
  /* Brand Colors - Updated */
  --primary-dark: #1F4D3A;      /* Deep green - primary */
  --secondary-green: #6FAF9F;    /* Soft green - secondary */
  --accent-orange: #F5A623;       /* Warm orange - accent */
  --bg-light: #F5F7F6;           /* Light gray - background */
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
  
  /* Shadows - Updated to use new accent color */
  --shadow-sm: 0 2px 8px rgba(31, 77, 58, 0.1);
  --shadow-md: 0 4px 20px rgba(31, 77, 58, 0.15);
  --shadow-hover: 0 10px 30px rgba(245, 166, 35, 0.2);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  color: var(--primary-dark);
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-orange);
  margin: 15px auto 0;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}


/* ===== HEADER STYLES - WHITE BACKGROUND ===== */
header {
  background: white;
  color: var(--primary-dark);
  position: sticky;
  top: 45px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(31, 77, 58, 0.1);
  border-bottom: 1px solid var(--secondary-green);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
  font-size: 1rem;
  padding: 5px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--accent-orange);
}

 

/* ===== SLIDER ANIMATIONS - MOVING EFFECT ===== */
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.slider-section {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: zoomInOut 12s infinite ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-1 {
  background-image: linear-gradient(rgba(31, 77, 58, 0.7), rgba(31, 77, 58, 0.5)), url('../images/landing page bg.jpg');
  animation: zoomInOut 14s infinite ease-in-out;
}

.slide-2 {
  background-image: linear-gradient(rgba(31, 77, 58, 0.7), rgba(31, 77, 58, 0.5)), url('../images/landing page bg1.jpg');
  animation: zoomInOut 16s infinite ease-in-out;
}

.slide:not(.active) {
  animation-play-state: paused;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 900px;
}

.slide-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: slideText 0.8s ease;
}

.slide-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  animation: slideText 0.8s 0.2s ease both;
}

.slide-content .btn {
  animation: slideText 0.8s 0.4s ease both;
}

@keyframes slideText {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--accent-orange);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent-orange);
  color: var(--primary-dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--primary-dark);
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: white;
  padding: 40px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

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

.benefit-card h3 {
  color: var(--primary-dark);
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: var(--section-padding);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: var(--secondary-green);
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.service-card:hover {
  border-color: var(--accent-orange);
  transform: scale(1.02);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-orange);
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  padding: var(--section-padding);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-orange);
  margin-bottom: 10px;
}

/* ===== PROCESS SECTION ===== */
.process {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent-orange);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

/* ===== CTA SECTION ===== */
.cta {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--accent-orange) 0%, #f8b84a 100%);
  text-align: center;
}

.cta h2 {
  color: var(--primary-dark);
}

.cta h2::after {
  background: var(--primary-dark);
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--accent-orange);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-section p {
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .top-bar {
    top: 0;
  }
  
  .logo-img {
    height: 45px;
    max-width: 140px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(31, 77, 58, 0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu a {
    color: var(--primary-dark);
    padding: 12px 0;
  }
  
  header {
    top: 70px;
  }
  
  .slider-section {
    height: 500px;
  }
  
  .slide-content h1 {
    font-size: 2.5rem;
  }
  
  .slide-content p {
    font-size: 1.2rem;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .top-bar-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .top-bar-left {
    flex-direction: column;
    gap: 5px;
  }
  
  header {
    top: 90px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .slider-section {
    height: 400px;
  }
  
  .slide-content h1 {
    font-size: 1.8rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .benefits-grid,
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===== INTRODUCTION SECTION ===== */
.intro-section {
  padding: 80px 0;
  background: white;
}

.intro-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.intro-text h2::after {
  margin-left: 0;
}

.intro-subtitle {
  font-size: 1.2rem;
  color: var(--accent-orange);
  margin-bottom: 25px;
  font-weight: 600;
}

.intro-content p {
  margin-bottom: 20px;
  color: #4a5568;
  line-height: 1.8;
}

.intro-stats {
  display: flex;
  gap: 40px;
  margin: 30px 0;
}

.intro-stat-item {
  text-align: center;
}

.intro-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1.2;
}

.intro-stat-label {
  font-size: 0.9rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary {
  background: var(--primary-dark);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #123529;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.intro-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.intro-experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--accent-orange);
  color: var(--primary-dark);
  padding: 20px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.exp-years {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-description {
  font-size: 1.2rem;
  color: #718096;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 40px;
}

.brand-item {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  padding: 10px 20px;
  background: white;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.brand-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: var(--accent-orange);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 80px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 15px;
  position: relative;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--accent-orange);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
}

.testimonial-text {
  margin: 20px 0;
  font-style: italic;
  color: #4a5568;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  border-top: 1px solid #e2e8f0;
  padding-top: 15px;
}

.testimonial-author strong {
  display: block;
  color: var(--primary-dark);
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #718096;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.btn-large {
  padding: 18px 45px;
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .intro-wrapper {
    grid-template-columns: 1fr;
  }
  
  .intro-stats {
    justify-content: center;
  }
  
  .intro-experience-badge {
    width: 100px;
    height: 100px;
    padding: 15px;
  }
  
  .exp-years {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .intro-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .brands-grid {
    gap: 15px;
  }
  
  .brand-item {
    font-size: 1rem;
    padding: 8px 15px;
  }
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #123529 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: white;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== STORY SECTION ===== */
.about-story {
  padding: 80px 0;
  background: white;
}

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

.story-content h2 {
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.story-content h2::after {
  margin-left: 0;
}

.story-content h3 {
  color: var(--accent-orange);
  margin: 25px 0 15px;
  font-size: 1.5rem;
}

.story-content p {
  margin-bottom: 20px;
  color: #4a5568;
  line-height: 1.8;
}

.story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.story-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(31, 77, 58, 0.8);
  color: white;
  padding: 15px;
  text-align: center;
  backdrop-filter: blur(5px);
}

/* ===== MISSION VISION ===== */
.mission-vision {
  padding: 80px 0;
  background: var(--bg-light);
}

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

.mv-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.mv-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--accent-orange);
}

.mv-card h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

/* ===== VALUES SECTION ===== */
.values-section {
  padding: 60px 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--secondary-green);
  border-radius: 10px;
  transition: all 0.3s;
}

.value-item:hover {
  transform: translateY(-5px);
  background: var(--accent-orange);
  color: var(--primary-dark);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.value-item h4 {
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.value-item:hover h4 {
  color: var(--primary-dark);
}

/* ===== COMPLIANCE SECTION ===== */
.compliance-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #123529 100%);
  color: white;
}

.compliance-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.compliance-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--accent-orange);
}

.compliance-content h2 {
  color: white;
  margin-bottom: 20px;
}

.compliance-content h2::after {
  background: var(--accent-orange);
}

.compliance-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.8;
}

.compliance-badge {
  display: inline-block;
  background: var(--accent-orange);
  color: var(--primary-dark);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ===== TEAM SECTION ===== */
.team-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.team-member {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.member-image {
  height: 200px;
  background: var(--secondary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--primary-dark);
}

.member-info {
  padding: 20px;
  text-align: center;
}

.member-info h4 {
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.member-info p {
  color: var(--accent-orange);
  font-weight: 600;
  margin-bottom: 10px;
}

.member-bio {
  font-size: 0.9rem;
  color: #718096;
}

/* ===== ANIMATED SERVICES GRID WITH ICONS ===== */
.services-animated-grid {
  padding: 60px 0 80px;
  background: var(--bg-light);
}

.animated-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.animated-grid-row:last-child {
  margin-bottom: 0;
}

/* Animated Card */
.animated-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(31, 77, 58, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #eaeaea;
  position: relative;
}

/* Hover Animation - Card lifts and glows */
.animated-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(245, 166, 35, 0.15);
  border-color: var(--accent-orange);
}

/* Card Image with Icon Overlay */
.animated-card-image {
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

.animated-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

/* Image zoom on hover */
.animated-card:hover .animated-card-image img {
  transform: scale(1.1);
}

/* Service Icon - Floating on image */
.animated-card-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
  z-index: 2;
  border: 2px solid white;
}

/* Icon animation on hover */
.animated-card:hover .animated-card-icon {
  transform: rotate(360deg) scale(1.1);
  background: white;
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}

/* Card Content */
.animated-card-content {
  padding: 20px;
  transition: all 0.3s;
}

.animated-card-content h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-weight: 600;
  transition: color 0.3s;
}

/* Title color change on hover */
.animated-card:hover .animated-card-content h3 {
  color: var(--accent-orange);
}

.animated-card-content p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  transition: color 0.3s;
}

/* Details Section */
.animated-card-details {
  background: var(--bg-light);
  padding: 15px;
  border-radius: 6px;
  margin-top: 10px;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

/* Details highlight on hover */
.animated-card:hover .animated-card-details {
  background: #fff3e0;
  border-left-color: var(--accent-orange);
}

.animated-card-details h4 {
  color: var(--primary-dark);
  font-size: 0.95rem;
  margin: 10px 0 5px;
  font-weight: 600;
  transition: color 0.3s;
}

.animated-card-details h4:first-of-type {
  margin-top: 0;
}

.animated-card-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.animated-card-details li {
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 5px;
  padding-left: 18px;
  position: relative;
  transition: transform 0.2s, color 0.2s;
}

/* List item animation on hover */
.animated-card:hover .animated-card-details li {
  transform: translateX(3px);
  color: var(--primary-dark);
}

.animated-card-details li::before {
  content: "•";
  color: var(--accent-orange);
  position: absolute;
  left: 5px;
  font-weight: bold;
  transition: transform 0.3s;
}

.animated-card:hover .animated-card-details li::before {
  transform: scale(1.3);
  color: var(--primary-dark);
}

/* Brands card specific */
.animated-card .brands-grid-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .animated-grid-row {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .animated-grid-row {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .animated-grid-row {
    grid-template-columns: 1fr;
  }
  
  .animated-card-image {
    height: 180px;
  }
  
  .animated-card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
}

/* ===== FOOTER EMOJIS - MATCH TOP BAR ===== */
.footer-section p i,
.footer-section p .emoji,
.footer-section p span[style*="color"] {
  color: var(--accent-orange) !important;
  font-size: 1.1rem;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

.footer-section p {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

/* Fix for emoji characters */
.footer-section p:contains("📍")::before,
.footer-section p:contains("📧")::before,
.footer-section p:contains("📞")::before {
  color: var(--accent-orange);
}

/* Specific fixes for each contact method */
.footer-section p i.fas,
.footer-section p i.far,
.footer-section p i.fab {
  color: var(--accent-orange);
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

/* If using emoji characters directly */
.footer-section p .contact-emoji {
  color: var(--accent-orange);
  font-size: 1.2rem;
  margin-right: 8px;
}

/* ===== SUNSET GLOW BUTTON ===== */
.solar-package-btn {
  background: linear-gradient(145deg, #ff9a3c, #ffb347) !important;
  color: #1F4D3A !important;
  padding: 8px 24px !important;
  border-radius: 40px;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none !important;
  box-shadow: 0 8px 20px rgba(255, 154, 60, 0.3) !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.solar-package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 154, 60, 0.5) !important;
  background: linear-gradient(145deg, #ffb347, #ff9a3c) !important;
  color: white !important;
}

.solar-package-btn::after {
  display: none !important;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-page-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  color: #163b2e;  /* Updated primary color */
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  font-size: 1.8rem;
  color: var(--accent-orange);
  min-width: 40px;
}

.contact-detail div {
  flex: 1;
}

.contact-detail strong {
  display: block;
  color: #163b2e;  /* Updated primary color */
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-detail p {
  color: #666;
  line-height: 1.5;
}

.highlight-box {
  background: #163b2e;  /* Updated primary color */
  color: white;
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
}

.highlight-box p:first-child {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 10px;
}

.contact-form-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  color: #163b2e;  /* Updated primary color */
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.success-message {
  background: #4CAF50;
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.success-message.show {
  display: block;
}

.error-message {
  background: #f44336;
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.error-message.show {
  display: block;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #163b2e;  /* Updated primary color */
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.btn-submit {
  background: var(--accent-orange);
  color: #163b2e;  /* Updated primary color */
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
  position: relative;
}

.btn-submit:hover {
  background: #e0940d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.btn-submit:disabled {
  background: #cccccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Map Section Styles */
.map-section {
  padding: 60px 0 80px;
  background: white;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.map-title {
  text-align: center;
  color: #163b2e;  /* Updated primary color */
  margin-bottom: 30px;
}

.map-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #163b2e;  /* Updated primary color */
}

.map-title p {
  color: #666;
  font-size: 1.1rem;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 30px;
  border: 3px solid var(--accent-orange);
}

.google-map {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.city-tag {
  background: #f0f0f0;
  padding: 10px 25px;
  border-radius: 50px;
  color: #163b2e;  /* Updated primary color */
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.city-tag:hover {
  background: var(--accent-orange);
  color: white;
  transform: translateY(-2px);
  border-color: #163b2e;  /* Updated primary color */
}

.map-note {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 10px;
  color: #163b2e;  /* Updated primary color */
  font-weight: 500;
}

.map-note span {
  color: var(--accent-orange);
  font-size: 1.2rem;
  margin-right: 10px;
}

.hero-contact {
  background: linear-gradient(135deg, #163b2e 0%, #163b2e 100%);  /* Updated primary color */
  color: white;
  padding: 60px 0;
  text-align: center;
}

.hero-contact h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: white;
}

.hero-contact p {
  font-size: 1.2rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 25px;
  }
  
  .google-map {
    height: 350px;
  }
  
  .city-tag {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .hero-contact h1 {
    font-size: 2.5rem;
  }
}

/* Fixed Top Bar - No Shrinking */
.top-bar {
  background: #1b4735;
  padding: 14px 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: none; /* Remove any transition effects */
}

/* Optional: Subtle pattern overlay */
.top-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.top-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.top-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 6px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
}

.top-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.top-links i {
  font-size: 15px;
  color: #ffd966;
  transition: transform 0.2s ease;
}

.top-links a:hover i {
  transform: scale(1.1);
  color: #ffe08c;
}

/* Responsive */
@media (max-width: 640px) {
  .top-bar {
    padding: 10px 0;
  }
  
  .top-links {
    gap: 16px;
  }
  
  .top-links a {
    font-size: 12px;
    padding: 4px 12px;
    gap: 8px;
  }
  
  .top-links i {
    font-size: 12px;
  }
}

/* Body padding to prevent content from hiding behind fixed bar */
body {
  margin: 0;
  padding-top: 70px; /* Fixed padding - will not change on scroll */
}

/* If you have a navigation menu below, add margin-top to it */
.nav-menu {
  margin-top: 0; /* Ensure no extra spacing */
  position: relative;
  z-index: 999;
}

/* Navigation Menu - Prevent any scroll effects */
.nav-menu {
  position: relative; /* or sticky if needed */
  top: auto;
  margin-top: 0;
  transition: none; /* Remove transitions */
}

/* Remove any JavaScript scroll classes */
.top-bar.scrolled,
.nav-menu.scrolled {
  /* Remove or disable these classes */
  padding: 0; /* Don't change padding */
}


/* ===== FIXED TOP BAR - NO SHRINKING ===== */
.top-bar {
  background: #1b4735;
  padding: 14px 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: none;
}

.top-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.top-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.top-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 6px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
}

.top-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.top-links i {
  font-size: 15px;
  color: #ffd966;
  transition: transform 0.2s ease;
}

.top-links a:hover i {
  transform: scale(1.1);
  color: #ffe08c;
}

/* Responsive */
@media (max-width: 640px) {
  .top-bar {
    padding: 10px 0;
  }
  
  .top-links {
    gap: 16px;
  }
  
  .top-links a {
    font-size: 12px;
    padding: 4px 12px;
    gap: 8px;
  }
  
  .top-links i {
    font-size: 12px;
  }
}

/* Ensure proper stacking order */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;  /* Higher than header */
}

header {
  position: sticky;
  top: 70px;  /* Matches top bar height */
  z-index: 999;  /* Lower than top bar */
}

/* Prevent any transform or transition that might cause movement */
header, .nav-menu, .header-container {
  transition: none;
  transform: none;
}

/* Remove any JavaScript scroll effects */
header.scrolled,
.nav-menu.scrolled,
header.sticky,
.nav-menu.sticky {
  top: 70px !important;
  transform: none !important;
  position: sticky !important;
}

/* ===== TOP BAR - MODERN MINIMAL ===== */
.top-bar {
  background: #1b4735;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-size: 13px;
}

.top-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.top-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}

.top-links a:hover {
  color: #ffd966;
}

.top-links i {
  font-size: 12px;
  color: #ffd966;
}

/* ===== HEADER - CLEAN ===== */
header {
  background: white;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom: 1px solid #eaeaea;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #2c3e2f;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
  padding: 6px 0;
}

.nav-menu a:hover {
  color: #f5a623;
}

.solar-package-btn {
  background: #f5a623 !important;
  color: #1b4735 !important;
  padding: 6px 18px !important;
  border-radius: 30px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: all 0.2s !important;
}

.solar-package-btn:hover {
  background: #e09512 !important;
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #1b4735;
}

@media (max-width: 768px) {
  .top-bar {
    padding: 6px 0;
  }
  
  header {
    top: 48px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 16px 20px;
    gap: 10px;
    border-top: 1px solid #eaeaea;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .logo-img {
    height: 50px;
  }
}

/* ===== PAGE HEADER - EQUAL SPACING ===== */
/* ===== PAGE HEADER - CENTERED WITH DECORATION (NO ICON) ===== */
.page-header {
  background: linear-gradient(135deg, #1b4735 0%, #0f3527 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

/* Animated background effect */
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,217,102,0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

/* Icon completely removed */

.page-header h1 {
  font-size: 3rem;
  color: white;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.header-divider {
  width: 60px;
  height: 3px;
  background: #ffd966;
  margin: 0 auto 12px;
  border-radius: 3px;
}

.page-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-header {
    min-height: 250px;
    padding: 15px 0;
  }
  
  .page-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .header-divider {
    margin-bottom: 10px;
  }
  
  .page-header p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    min-height: 220px;
    padding: 15px 0;
  }
  
  .page-header h1 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  
  .header-divider {
    width: 50px;
    margin-bottom: 8px;
  }
  
  .page-header p {
    font-size: 0.9rem;
  }
}

/* ===== SOLAR PACKAGES BUTTON - PREMIUM DARK STYLE ===== */
.solar-package-btn {
  background: #1b4735;
  color: #ffd966;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid #ffd966;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
}

/* Glow effect before hover */
.solar-package-btn {
  animation: subtleGlow 2s infinite;
}

@keyframes subtleGlow {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(255, 217, 102, 0.2);
    border-color: #ffd966;
  }
  50% {
    box-shadow: 0 4px 18px rgba(255, 217, 102, 0.4);
    border-color: #ffb347;
  }
}

.solar-package-btn:hover {
  background: #ffd966;
  color: #1b4735;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 217, 102, 0.5);
  border-color: #ffd966;
  animation: none;
}


/* ===== PACKAGES SECTION - 4 EQUAL TILES ===== */
.packages-section {
  padding: 60px 0;
  background: #f5f7f6;
}

/* 4 Column Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Package Card */
.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(27, 71, 53, 0.1);
}

/* Package Image */
.package-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #1b4735, #0f3527);
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

/* Package Badge */
.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff9a3c, #ffb347);
  color: #1b4735;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Package Content */
.package-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-content h3 {
  font-size: 1.1rem;
  color: #1b4735;
  margin: 0 0 5px;
  font-weight: 700;
}

.package-size {
  font-size: 0.9rem;
  font-weight: 800;
  color: #ff9a3c;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Best For Section */
.package-best {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: px solid #ff9a3c;
}

.package-best i {
  color: #ff9a3c;
  font-size: 0.9rem;
}

.package-best span {
  font-size: 0.8rem;
  color: #4a5568;
  font-weight: 500;
  line-height: 1.4;
}

/* Powers Section */
.package-powers h4 {
  font-size: 0.7rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px;
  font-weight: 600;
}

.package-powers ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.package-powers li {
  font-size: 0.75rem;
  color: #4a5568;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-powers li i {
  color: #ff9a3c;
  font-size: 0.7rem;
  width: 18px;
}

/* Description */
.package-description {
  font-size: 0.75rem;
  color: #6c757d;
  line-height: 1.5;
  margin: 10px 0 15px;
  padding-top: 10px;
  border-top: 1px solid #eef2f6;
}

/* Package Button */
.package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff9a3c, #ffb347);
  color: #1b4735;
  padding: 10px 0;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.package-btn i {
  font-size: 0.8rem;
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 154, 60, 0.3);
  color: #1b4735;
}

/* Package Note */
.package-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff9f0;
  padding: 18px 22px;
  border-radius: 12px;
  margin: 30px 0;
  border-left: px solid #ff9a3c;
}

.package-note i {
  color: #ff9a3c;
  font-size: 1.2rem;
  margin-top: 2px;
}

.package-note p {
  margin: 0;
  font-size: 0.8rem;
  color: #6c757d;
  line-height: 1.5;
}

.package-note p strong {
  color: #1b4735;
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #1b4735, #0f3527);
  padding: 50px 40px;
  border-radius: 20px;
  margin: 40px 0 20px;
}

.cta-section h2 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cta-section h2::after {
  display: none;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  background: #128C7E;
  color: white;
}

.cta-btn i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .packages-grid {
    gap: 25px;
  }
  
  .package-image {
    height: 180px;
  }
}

@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .cta-section {
    padding: 40px 30px;
  }
  
  .cta-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .packages-section {
    padding: 40px 0;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .package-image {
    height: 200px;
  }
  
  .package-content h3 {
    font-size: 1rem;
  }
  
  .cta-section {
    padding: 35px 25px;
  }
  
  .cta-section h2 {
    font-size: 1.3rem;
  }
  
  .cta-btn {
    padding: 12px 28px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .package-content {
    padding: 18px;
  }
  
  .package-best span {
    font-size: 0.75rem;
  }
  
  .package-powers li {
    font-size: 0.7rem;
  }
  
  .package-description {
    font-size: 0.7rem;
  }
  
  .package-note {
    padding: 15px;
  }
  
  .package-note p {
    font-size: 0.7rem;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
  
  .cta-section h2 {
    font-size: 1.2rem;
  }
  
  .cta-section p {
    font-size: 0.85rem;
  }
}




/* ===== MOBILE RESPONSIVENESS - FULL FIX ===== */

/* Base Mobile Styles */
@media (max-width: 768px) {
  
  /* Body padding adjustment */
  body {
    padding-top: 0;
  }
  
  /* Top Bar - Mobile */
  .top-bar {
    padding: 8px 0;
    position: relative;
    top: 0;
  }
  
  .top-links {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
  
  .top-links a {
    font-size: 11px;
    padding: 4px 0;
  }
  
  /* Header - Mobile */
  header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 999;
  }
  
  .header-container {
    padding: 8px 15px;
  }
  
  .logo-img {
    height: 45px;
    max-width: 140px;
  }
  
  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    color: #1b4735;
    cursor: pointer;
    padding: 5px;
  }
  
  /* Mobile Navigation Menu */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eaeaea;
    z-index: 998;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  
  .nav-menu a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
  }
  
  .solar-package-btn {
    display: inline-block !important;
    width: auto !important;
    margin-top: 5px;
  }
  
  /* Page Header - Mobile */
  .page-header {
    padding: 40px 0 35px;
    margin-top: 0;
  }
  
  .page-header h1 {
    font-size: 1.6rem;
    padding: 0 15px;
  }
  
  .page-header p {
    font-size: 0.9rem;
    padding: 0 20px;
  }
  
  .header-divider {
    width: 50px;
    margin: 12px auto;
  }
  
  /* Packages Grid - Mobile */
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 10px;
  }
  
  .package-card {
    margin-bottom: 0;
  }
  
  .package-image {
    height: 180px;
  }
  
  .package-content {
    padding: 18px;
  }
  
  .package-content h3 {
    font-size: 1rem;
  }
  
  .package-size {
    font-size: 0.9rem;
  }
  
  .package-best {
    padding: 8px 12px;
  }
  
  .package-best span {
    font-size: 0.75rem;
  }
  
  .package-powers li {
    font-size: 0.7rem;
  }
  
  .package-description {
    font-size: 0.7rem;
  }
  
  .package-btn {
    padding: 10px 0;
    font-size: 0.75rem;
  }
  
  /* Package Note - Mobile */
  .package-note {
    margin: 25px 15px;
    padding: 15px;
  }
  
  .package-note p {
    font-size: 0.7rem;
  }
  
  /* CTA Section - Mobile */
  .cta-section {
    margin: 30px 15px 20px;
    padding: 30px 20px;
  }
  
  .cta-section h2 {
    font-size: 1.3rem;
  }
  
  .cta-section p {
    font-size: 0.85rem;
    padding: 0 10px;
  }
  
  .cta-btn {
    padding: 12px 25px;
    font-size: 0.85rem;
  }
  
  /* Footer - Mobile */
  footer {
    padding: 40px 0 20px;
    margin-top: 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
    padding: 0 15px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-section h3 {
    margin-bottom: 12px;
    font-size: 1rem;
  }
  
  .footer-section p {
    font-size: 0.75rem;
    justify-content: center;
  }
  
  .footer-section i {
    margin-right: 5px;
  }
  
  .footer-bottom {
    font-size: 0.65rem;
    padding: 15px 15px 0;
  }
  
  /* Container padding for mobile */
  .container {
    padding: 0 15px;
  }
  
  /* Section Intro - Mobile */
  .section-intro {
    padding: 0 10px;
  }
  
  .section-intro p {
    font-size: 0.9rem;
  }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
  
  /* Top Bar */
  .top-links {
    gap: 8px;
  }
  
  .top-links a {
    font-size: 10px;
  }
  
  /* Header */
  .logo-img {
    height: 40px;
  }
  
  .mobile-menu-btn {
    font-size: 22px;
  }
  
  /* Page Header */
  .page-header {
    padding: 35px 0 30px;
  }
  
  .page-header h1 {
    font-size: 1.4rem;
  }
  
  .page-header p {
    font-size: 0.8rem;
  }
  
  /* Package Cards */
  .package-image {
    height: 160px;
  }
  
  .package-content {
    padding: 15px;
  }
  
  .package-content h3 {
    font-size: 0.95rem;
  }
  
  .package-size {
    font-size: 0.85rem;
  }
  
  .package-best {
    padding: 6px 10px;
  }
  
  .package-best span {
    font-size: 0.7rem;
  }
  
  .package-powers li {
    font-size: 0.65rem;
    margin-bottom: 4px;
  }
  
  .package-description {
    font-size: 0.65rem;
    margin: 8px 0 12px;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 25px 15px;
  }
  
  .cta-section h2 {
    font-size: 1.2rem;
  }
  
  .cta-section p {
    font-size: 0.8rem;
  }
  
  .cta-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  
  /* Footer */
  .footer-section h3 {
    font-size: 0.9rem;
  }
  
  .footer-section p {
    font-size: 0.7rem;
  }
}

/* Tablet Devices (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Landscape Mode Fix for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  
  .page-header {
    padding: 30px 0;
  }
  
  .packages-grid {
    gap: 20px;
  }
  
  .package-image {
    height: 150px;
  }
  
  .nav-menu {
    max-height: 80vh;
    overflow-y: auto;
  }
}

/* Fix for Sticky Elements on Mobile */
@media (max-width: 768px) {
  
  .top-bar {
    position: relative;
  }
  
  header {
    position: sticky;
    top: 0;
  }
  
  body {
    padding-top: 0;
  }
}

/* Ensure Images are Responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Fix for Container on All Devices */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Improve Touch Targets on Mobile */
@media (max-width: 768px) {
  .nav-menu a,
  .package-btn,
  .cta-btn,
  .top-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  button {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Fix for Overflow Issues */
body {
  overflow-x: hidden;
  width: 100%;
}

.packages-section,
.footer-content,
.page-header {
  overflow-x: hidden;
}

/* Improve Readability on Mobile */
@media (max-width: 768px) {
  p, li, a {
    line-height: 1.5;
  }
  
  h1, h2, h3 {
    line-height: 1.3;
  }
}

/* Mobile Menu Animation */
@media (max-width: 768px) {
  .nav-menu {
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ===== COMPLETE MOBILE RESPONSIVE FIX ===== */

/* Tablet and Mobile Devices */
@media (max-width: 1024px) {
  /* Container padding */
  .container {
    padding: 0 20px;
  }
  
  /* Headings */
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  /* Hero Section */
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  /* Stats row */
  .stats-row .stat {
    margin-bottom: 20px;
  }
  
  /* Grid layouts */
  .mv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  /* General */
  .section {
    padding: 50px 0;
  }
  
  /* Headings */
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  /* Top Bar */
  .top-bar {
    padding: 10px 0;
  }
  
  .top-bar-center {
    flex-direction: column;
    gap: 12px;
  }
  
  .top-bar-solar-link,
  .top-bar-transparent-link,
  .top-bar-transparent-80-link {
    width: 100%;
    justify-content: center;
    padding: 10px 20px !important;
    box-sizing: border-box;
  }
  
  /* Header */
  header {
    top: auto;
    position: relative;
  }
  
  .header-container {
    flex-wrap: wrap;
    padding: 15px 20px;
  }
  
  .logo {
    flex: 1;
  }
  
  .logo-img {
    height: 50px;
    max-width: 150px;
  }
  
  .mobile-menu-btn {
    display: block;
    font-size: 1.8rem;
  }
  
  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-menu a {
    display: block;
    padding: 15px 20px;
    text-align: center;
  }
  
  .nav-menu a::after {
    display: none;
  }
  
  .nav-menu a.active {
    background: var(--accent-orange);
    color: var(--primary-dark);
  }
  
  /* Slider */
  .slider-section {
    height: 500px;
  }
  
  .slide-content h1 {
    font-size: 2rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  /* Intro Section */
  .intro-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .intro-text h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .intro-text h2::after {
    margin: 15px auto 0;
  }
  
  .intro-subtitle {
    text-align: center;
  }
  
  .intro-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .intro-experience-badge {
    width: 90px;
    height: 90px;
    padding: 15px;
    right: 20px;
    bottom: 20px;
  }
  
  .exp-years {
    font-size: 1.5rem;
  }
  
  .exp-text {
    font-size: 0.7rem;
  }
  
  /* Benefits Grid */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Services Grid */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Features Grid */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  /* Process Steps */
  .process-steps {
    flex-direction: column;
    gap: 30px;
  }
  
  .step {
    width: 100%;
  }
  
  /* Brands Grid */
  .brands-grid {
    gap: 15px;
  }
  
  .brand-item {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
  
  /* Testimonials Grid */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  /* CTA Section */
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn-large {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 14px 25px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
  }
  
  .footer-section p {
    justify-content: center;
  }
  
  /* Page Header */
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  /* Story Grid */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .story-content h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .story-content h2::after {
    margin: 15px auto 0;
  }
  
  /* Mission Vision Grid */
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mv-card {
    padding: 30px 20px;
  }
  
  .mv-card h3 {
    font-size: 1.5rem;
  }
  
  /* Values Grid */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  /* Team Grid */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Animated Services Grid */
  .animated-grid-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .animated-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  /* Contact Page */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 25px;
  }
  
  .google-map {
    height: 300px;
  }
  
  .city-tag {
    padding: 6px 15px;
    font-size: 0.85rem;
  }
}

/* Mobile Devices */
@media (max-width: 640px) {
  .animated-grid-row {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .intro-stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .brands-grid {
    gap: 10px;
  }
  
  .brand-item {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  /* Top Bar */
  .top-bar-center {
    gap: 10px;
  }
  
  .top-bar-solar-link,
  .top-bar-transparent-link,
  .top-bar-transparent-80-link {
    font-size: 0.8rem !important;
    padding: 8px 15px !important;
  }
  
  /* Headings */
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  /* Slider */
  .slider-section {
    height: 400px;
  }
  
  .slide-content h1 {
    font-size: 1.5rem;
  }
  
  .slide-content p {
    font-size: 0.9rem;
  }
  
  .slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  /* Buttons */
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .feature-item {
    padding: 20px;
  }
  
  /* Team Members */
  .member-image {
    height: 150px;
    font-size: 3.5rem;
  }
  
  .member-info {
    padding: 15px;
  }
  
  /* Map */
  .google-map {
    height: 250px;
  }
  
  .map-title h2 {
    font-size: 1.8rem;
  }
  
  /* Compliance Badge */
  .compliance-badge {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  
  /* Testimonials */
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
  }
}

/* Fix for images */
img {
  max-width: 100%;
  height: auto;
}

/* Ensure container doesn't overflow */
.container,
.contact-grid,
.map-container,
.services-animated-grid {
  overflow-x: hidden;
}


/* ===== MOBILE ONLY TOP BAR FIX ===== */
/* This only affects mobile devices, desktop stays the same */

@media (max-width: 768px) {
  .top-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  
  .top-links a {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 8px 0;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .top-links {
    gap: 6px;
  }
  
  .top-links a {
    font-size: 0.8rem;
  }
}

/* ===== MV GRID - CENTERED ===== */
.mv-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.mv-card {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.mv-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--accent-orange);
}

.mv-card h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.mv-card p {
  color: #4a5568;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .mv-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .mv-card {
    width: 100%;
    max-width: 500px;
  }
}

/* ===== VALUES SECTION WITH SUBTITLES ===== */
.values-section {
  padding: 60px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-orange);
  margin: 15px auto 0;
}

.section-header p {
  font-size: 1.2rem;
  color: #718096;
  max-width: 700px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--secondary-green);
  border-radius: 10px;
  transition: all 0.3s;
}

.value-item:hover {
  transform: translateY(-5px);
  background: var(--accent-orange);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.value-item h4 {
  color: var(--primary-dark);
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.value-description {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.5;
  margin-top: 10px;
}

.value-item:hover .value-description {
  color: white;
}

.value-item:hover h4 {
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .value-item {
    padding: 25px 15px;
  }
  
  .value-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .value-item {
    padding: 20px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
}

/* ===== BENEFITS SECTION - SIMPLE & CLEAN ===== */
.benefits {
  padding: 80px 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-orange);
  margin: 12px auto 0;
}

.section-description {
  font-size: 1rem;
  color: #5a6e7a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 4 cards in one row */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.benefit-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: inline-block;
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 0.9rem;
  color: #5a6e7a;
  line-height: 1.5;
}

/* Quote Box */
.solar-quote {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  background: var(--primary-dark);
  border-radius: 12px;
  color: white;
}

.solar-quote p {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 400;
}

.solar-quote strong {
  color: var(--accent-orange);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .benefits {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 0.95rem;
  }
  
  .solar-quote p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    padding: 25px 15px;
  }
}

/* ===== SERVICES SECTION - SIMPLE & CLEAN ===== */
.services {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-orange);
  margin: 12px auto 0;
}

.section-description {
  font-size: 1rem;
  color: #5a6e7a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Grid - 3 columns for professional layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Service Card - Clean Minimal Design */
.service-card {
  background: white;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  border-radius: 12px;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  color: var(--accent-orange);
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  font-size: 0.9rem;
  color: #5a6e7a;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 0.95rem;
  }
}

/* ===== SERVICES SECTION - SOFT GREEN BACKGROUND ===== */
.services {
  padding: 80px 0;
  background: var(--bg-light);
}

/* Or use this for a different green tone */
.services {
  padding: 80px 0;
  background: #a6ceb1;
}




/* ========== TESTIMONIAL SECTION ONLY ========== */
/* All styles are scoped to .testimonials and its children */

.testimonials {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff, #f1f5f9);
}

.testimonials .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.testimonials .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials .section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3c2c, #2b7a4b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.testimonials .section-description {
    font-size: 1.1rem;
    color: #334155;
    border-bottom: 2px solid #e2e8f0;
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* Slider Wrapper & Track */
.testimonials .testimonials-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    margin: 1rem 0 2rem 0;
}

.testimonials .testimonials-track {
    display: flex;
    gap: 28px;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    will-change: transform;
}

/* Testimonial Card */
.testimonials .testimonial-card {
    flex: 0 0 calc((100% / 3) - (28px * 2 / 3));
    background: white;
    border-radius: 28px;
    padding: 2rem 1.8rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
    border: 1px solid rgba(43, 122, 75, 0.1);
    display: flex;
    flex-direction: column;
}

.testimonials .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 40px -16px rgba(0, 0, 0, 0.12);
    border-color: rgba(43, 122, 75, 0.3);
}

.testimonials .testimonial-quote {
    font-size: 5rem;
    line-height: 1;
    font-family: serif;
    color: #2b7a4b;
    opacity: 0.5;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.testimonials .testimonial-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.55;
    margin: 0.75rem 0 1.5rem 0;
    flex: 1;
}

.testimonials .testimonial-author {
    border-top: 1px solid #e9edf2;
    padding-top: 1.2rem;
    margin-top: 0.5rem;
}

.testimonials .testimonial-author strong {
    font-size: 1.05rem;
    color: #0f2c1f;
    display: block;
}

.testimonials .testimonial-author span {
    font-size: 0.85rem;
    color: #5b6e8c;
    display: block;
    margin-top: 4px;
}

/* Controls */
.testimonials .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.testimonials .nav-btn {
    background: white;
    border: 1px solid #cbd5e1;
    width: 48px;
    height: 48px;
    border-radius: 60px;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1e462e;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.testimonials .nav-btn:hover {
    background-color: #2b7a4b;
    border-color: #2b7a4b;
    color: white;
    transform: scale(1.02);
}

.testimonials .nav-btn:active {
    transform: scale(0.96);
}

.testimonials .dots-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.testimonials .dot {
    width: 10px;
    height: 10px;
    background-color: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.testimonials .dot.active {
    background-color: #2b7a4b;
    width: 26px;
    border-radius: 20px;
}

.testimonials .slide-counter {
    font-size: 0.85rem;
    background: #eef2ff;
    padding: 6px 14px;
    border-radius: 40px;
    color: #1e462e;
    font-weight: 500;
}

/* Responsive - Scoped to Testimonials */
@media (max-width: 900px) {
    .testimonials .testimonial-card {
        flex: 0 0 calc((100% / 2) - (28px * 1 / 2));
    }
    .testimonials .section-header h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 640px) {
    .testimonials .testimonial-card {
        flex: 0 0 100%;
    }
    .testimonials .testimonials-track {
        gap: 20px;
    }
    .testimonials .container {
        padding: 0 20px;
    }
    .testimonials {
        padding: 3rem 0;
    }
}