/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background-color: #1A2A6C;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-bottom: 3px solid #4CAF50;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  background-color: #F0F8F0;
  color: #1A2A6C;
  padding-top: 90px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-area h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.kgatlape {
  color: #FFFFFF;
  background-color: #1A2A6C;
}

.solar-shop {
  color: #1A2A6C;
  background-color: #4CAF50;
  padding: 0.2rem 0.8rem;
  border-radius: 5px;
  display: inline-block;
  font-size: 1.2rem;
}

.tagline {
  color: #FFFFFF;
  font-size: 0.7rem;
  font-style: italic;
  opacity: 0.9;
  margin-top: 0.1rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

nav ul li a:hover {
  color: #4CAF50;
  border-bottom-color: #4CAF50;
}

.page-title {
  background: linear-gradient(135deg, #1A2A6C 0%, #0F1A45 100%);
  padding: 2.5rem 1rem;
  text-align: center;
}

.page-title h1 {
  color: #4CAF50;
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.page-title p {
  color: #FFFFFF;
  font-size: 0.85rem;
}

.about-section {
  padding: 2rem 1rem;
  background-color: #FFFFFF;
}

.about-content h2 {
  text-align: center;
  color: #1A2A6C;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.about-description {
  text-align: center;
  color: #555;
  font-size: 0.85rem;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.about-feature {
  text-align: center;
  padding: 0.8rem;
  background-color: #F0F8F0;
  border-radius: 10px;
  border-left: 3px solid #4CAF50;
}

.about-feature h3 {
  color: #1A2A6C;
  font-size: 0.75rem;
  margin-bottom: 0.3rem;
}

.about-feature p {
  color: #666;
  font-size: 0.65rem;
}

.contact-section {
  padding: 2rem 1rem;
  background-color: #F0F8F0;
}

.contact-title {
  text-align: center;
  color: #1A2A6C;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-card {
  background-color: #FFFFFF;
  padding: 1rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  border: 1px solid #E0E8E0;
}

.contact-card:hover {
  transform: translateY(-3px);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background-color: #1A2A6C;
  color: #4CAF50;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem auto;
}

.contact-card-title {
  color: #1A2A6C;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}

.contact-card-value {
  color: #333;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 0.6rem;
}

.contact-btn {
  display: inline-block;
  background-color: #4CAF50;
  color: #1A2A6C;
  padding: 0.4rem 1rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.7rem;
}

.contact-btn:hover {
  background-color: #1A2A6C;
  color: #4CAF50;
}

.visit-us {
  text-align: center;
  background-color: #1A2A6C;
  padding: 1.2rem;
  border-radius: 12px;
}

.visit-title {
  color: #4CAF50;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

.visit-address {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: bold;
}

.map-section {
  padding: 2rem 1rem;
  background-color: #FFFFFF;
}

.map-container h3 {
  color: #1A2A6C;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  text-align: center;
}

.map-placeholder {
  background-color: #F0F8F0;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px dashed #4CAF50;
  text-align: center;
}

.map-placeholder p {
  color: #666;
  font-size: 0.8rem;
}

.map-note {
  font-size: 0.7rem;
  margin-top: 0.3rem;
  color: #999;
}

.footer {
  background-color: #1A2A6C;
  color: #FFFFFF;
  border-top: 3px solid #4CAF50;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 1rem 0.8rem 1rem;
}

.footer-brand {
  text-align: center;
  margin-bottom: 0.8rem;
}

.footer-brand h2 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.footer-kgatlape {
  color: #FFFFFF;
}

.footer-solar {
  color: #1A2A6C;
  background-color: #4CAF50;
  padding: 0.1rem 0.4rem;
  border-radius: 5px;
  display: inline-block;
  font-size: 0.8rem;
}

.footer-tagline {
  color: #4CAF50;
  font-size: 0.6rem;
  letter-spacing: 2px;
  margin-top: 0.2rem;
}

.footer-copyright {
  text-align: center;
  font-size: 0.5rem;
  opacity: 0.7;
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
  header {
    padding: 0.6rem 0.8rem;
  }

  .header-container {
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }

  .logo-area h1 {
    font-size: 1.1rem;
    justify-content: center;
  }

  .solar-shop {
    font-size: 0.8rem;
    padding: 0.1rem 0.5rem;
  }

  .tagline {
    font-size: 0.55rem;
  }

  nav ul {
    gap: 1rem;
    justify-content: center;
  }

  nav ul li a {
    font-size: 0.8rem;
  }

  body {
    padding-top: 115px;
  }

  .page-title {
    padding: 1.8rem 1rem;
  }

  .page-title h1 {
    font-size: 1.3rem;
  }

  .page-title p {
    font-size: 0.75rem;
  }

  .about-section {
    padding: 1.5rem 0.8rem;
  }

  .about-content h2 {
    font-size: 1.2rem;
  }

  .about-description {
    font-size: 0.75rem;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .about-feature {
    padding: 0.6rem;
  }

  .about-feature h3 {
    font-size: 0.7rem;
  }

  .about-feature p {
    font-size: 0.6rem;
  }

  .contact-section {
    padding: 1.5rem 0.8rem;
  }

  .contact-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .contact-card {
    padding: 0.8rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .contact-card-title {
    font-size: 0.8rem;
  }

  .contact-card-value {
    font-size: 0.75rem;
  }

  .contact-btn {
    padding: 0.35rem 0.8rem;
    font-size: 0.65rem;
  }

  .visit-us {
    padding: 1rem;
  }

  .visit-title {
    font-size: 0.8rem;
  }

  .visit-address {
    font-size: 0.75rem;
  }

  .map-section {
    padding: 1.5rem 0.8rem;
  }

  .map-container h3 {
    font-size: 1rem;
  }

  .map-placeholder {
    padding: 1rem;
  }

  .map-placeholder p {
    font-size: 0.7rem;
  }

  .footer-container {
    padding: 0.8rem 0.8rem 0.5rem 0.8rem;
  }

  .footer-brand h2 {
    font-size: 0.9rem;
  }

  .footer-solar {
    font-size: 0.65rem;
  }

  .footer-tagline {
    font-size: 0.55rem;
  }

  .footer-copyright {
    font-size: 0.45rem;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 120px;
  }

  .page-title h1 {
    font-size: 1.2rem;
  }

  .about-content h2 {
    font-size: 1.1rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 1.1rem;
  }
}
