/* ========================================
   Root Variables & Base Styles
   ======================================== */

:root {
  --primary-color: #2872af;
  --primary-dark: #1f5283;
  --primary-light: #3a8fc7;
  --secondary-color: #1a1a1a;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #0f0f0f;
  --border-color: #e0e0e0;
  --accent-gold: #d4af37;
  --success-color: #27ae60;
  --error-color: #e74c3c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--text-light);
  line-height: 1.6;
}

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

/* ========================================
   Navigation
   ======================================== */

.navbar {
  background-color:#ffffff;
  color: var(--text-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo-image {
  height: 100px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-light);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color:#1f5283;
  margin: 5px 0;
  transition: 0.3s;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px;
  gap: 40px;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0f4f8 100%);
}

.hero-content {
  flex: 1;
  animation: slideInLeft 0.8s ease;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 0.8s ease;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Buttons & CTAs
   ======================================== */

.cta-button,
.cta-button-large,
.submit-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover,
.cta-button-large:hover,
.submit-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 114, 175, 0.3);
}

.cta-button-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* ========================================
   Why Recycle Section
   ======================================== */

.why-recycle {
  background-color: #ffffff;
  color: var(--text-light);
  padding: 80px 0;
}

.why-recycle h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  color: var(--primary-light);
}

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

.benefit-card {
  background-color: #d7d3d3;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border-top: 3px solid var(--primary-light);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

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

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-light);
}

.benefit-card p {
  color: #000000;
  line-height: 1.8;
}

/* ========================================
   Services Section
   ======================================== */

.services {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  color: var(--text-dark);
}

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

.service-card {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

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

.service-card p {
  color: #666;
  line-height: 1.8;
}

/* ========================================
   Commitment Section
   ======================================== */

.commitment {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 80px 0;
}

.commitment h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
}

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

.commitment-item {
  text-align: center;
}

.commitment-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.commitment-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.commitment-item p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* ========================================
   Complimentary Services
   ======================================== */

.complimentary {
  padding: 80px 0;
  background-color: var(--text-light);
}

.complimentary h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-dark);
}

.section-intro {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.service-item h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-item p {
  color: #666;
}

/* ========================================
   Process Section
   ======================================== */

.process {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 80px 0;
}

.process h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
}

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

.process-step {
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-light);
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 15px;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.process-step p {
  color: #ccc;
  line-height: 1.8;
}

/* ========================================
   Who Benefits Section
   ======================================== */

.who-benefits {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.who-benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  color: var(--text-dark);
}

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

.beneficiary-card {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.beneficiary-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

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

.beneficiary-card p {
  color: #666;
  line-height: 1.8;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.cta-section > div > p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-radius: 10px;
}

.info-block h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.info-block p {
  font-size: 1rem;
  opacity: 0.95;
}

.phone-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
}

.phone-link:hover {
  text-decoration: underline;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 50px 0 20px;
}
.footer-logo-image {
  width: 250px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  color: var(--primary-light);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-section p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 10px;
}

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

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

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-light);
}

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

/* ========================================
   About Page Styles
   ======================================== */

.about-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.about-section {
  padding: 80px 0;
}

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

.about-text {
  animation: fadeIn 0.8s ease;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.about-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.about-image {
  animation: fadeIn 0.8s ease;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Mission Section
   ======================================== */

.mission-section {
  background-color: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}

.mission-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.mission-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Promise Section
   ======================================== */

.promise-section {
  padding: 80px 0;
}

.promise-section h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

.promise-item {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  border-top: 4px solid var(--primary-color);
}

.promise-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.promise-item p {
  color: #666;
  line-height: 1.8;
}

/* ========================================
   Values Section
   ======================================== */

.values-section {
  border-top: #1f5283 4px solid;
    border-bottom: #1f5283 4px solid;
  background-color: #ffffff;
  color: var(--text-light);
  padding: 80px 0;
}

.values-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-light);
}

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

.value-card {
  background-color:#00000030;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.value-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-light);
}

.value-card h3 {
  color: var(--primary-light);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-card p {
  color: #181818;
}

/* ========================================
   Services Highlight Section
   ======================================== */

.services-highlight {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.services-highlight h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.services-highlight .services-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 50px;
}

/* ========================================
   Community Commitment Section
   ======================================== */

.community-commitment {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
}

.community-commitment h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.community-commitment p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

/* ========================================
   Contact Page Styles
   ======================================== */

.contact-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

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

.contact-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-container h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(40, 114, 175, 0.1);
}

.submit-button {
  margin-top: 15px;
  padding: 14px 30px;
  font-size: 1rem;
}

.contact-info-container h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.contact-info-container .info-block {
  background-color: var(--bg-light);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.contact-info-container .info-block h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.contact-info-container .info-block p {
  color: #666;
  margin-bottom: 8px;
}

.contact-info-container .info-block ul {
  list-style: none;
}

.contact-info-container .info-block ul li {
  color: #666;
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.contact-info-container .info-block ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.contact-info-container .info-block a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-info-container .info-block a:hover {
  text-decoration: underline;
}

.contact-image {
  margin-top: 30px;
}

.contact-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Map Section
   ======================================== */

.map-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.map-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text-dark);
}

.map-iframe {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Animations
   ======================================== */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.fade-in {
  animation: fadeIn 0.8s ease;
}

.fade-in-up {
  animation: slideUp 0.6s ease forwards;
}

.fade-in-up:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in-up:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in-up:nth-child(3) {
  animation-delay: 0.3s;
}

.fade-in-up:nth-child(4) {
  animation-delay: 0.4s;
}

.fade-in-up:nth-child(5) {
  animation-delay: 0.5s;
}

.fade-in-up:nth-child(6) {
  animation-delay: 0.6s;
}

.slide-up {
  animation: slideUp 0.6s ease forwards;
}

.slide-up:nth-child(1) {
  animation-delay: 0.1s;
}

.slide-up:nth-child(2) {
  animation-delay: 0.2s;
}

.slide-up:nth-child(3) {
  animation-delay: 0.3s;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 50px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
  }

  .nav-menu.active {
    display: flex;
  }
.logo-image {
    width: 300px;
    height: 60px;
  }
  .nav-menu li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .menu-toggle {
    display: flex;
  }

  .services h2,
  .who-benefits h2,
  .commitment h2,
  .process h2,
  .why-recycle h2,
  .complimentary h2 {
    font-size: 1.8rem;
  }

  .benefits-grid,
  .services-grid,
  .commitment-grid,
  .process-grid,
  .beneficiaries-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-info {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .map-section iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .cta-button,
  .cta-button-large {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .why-recycle h2,
  .services h2,
  .commitment h2,
  .process h2,
  .who-benefits h2,
  .complimentary h2 {
    font-size: 1.5rem;
  }

  .about-hero-content h1,
  .contact-hero-content h1 {
    font-size: 1.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
