/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #334155;
  background-color: #fff;
}

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

/* Header Styles */
.header {
  background-color: #ffffff;
  color: #0f766e;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  color: #14b8a6;
  font-weight: 700;
}

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

.nav a {
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.nav a:hover,
.nav a.active {
  color: #14b8a6;
  background-color: rgba(20, 184, 166, 0.1);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #14b8a6;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background-color: #f0fdfa;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%2314b8a6" opacity="0.1"/><circle cx="25" cy="25" r="1" fill="%2314b8a6" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%2314b8a6" opacity="0.1"/><circle cx="25" cy="75" r="1" fill="%2314b8a6" opacity="0.1"/><circle cx="75" cy="25" r="1" fill="%2314b8a6" opacity="0.1"/></svg>');
  opacity: 0.5;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.eco-icon {
  font-size: 1.2rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #0f766e;
  font-weight: 800;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #334155;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.eco-illustration {
  width: 400px;
  height: 400px;
  position: relative;
}

.eco-circle {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.eco-leaf {
  width: 150px;
  height: 150px;
  background: #ffffff;
  border-radius: 0 75px 0 75px;
  position: absolute;
  top: 30%;
  left: 30%;
  transform: rotate(45deg);
}

.eco-drop {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50% 50% 50% 0;
  position: absolute;
  bottom: 30%;
  right: 30%;
  transform: rotate(-45deg);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: #14b8a6;
  color: white;
}

.btn-primary:hover {
  background-color: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #14b8a6;
  border: 2px solid #14b8a6;
}

.btn-secondary:hover {
  background-color: rgba(20, 184, 166, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #14b8a6;
  border: 1px solid #14b8a6;
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-outline:hover {
  background-color: rgba(20, 184, 166, 0.1);
}

.btn-full {
  width: 100%;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0f766e;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Eco Impact Section */
.eco-impact {
  padding: 5rem 0;
  background-color: #ffffff;
}

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

.impact-card {
  background: #f0fdfa;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.15);
}

.impact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.impact-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #14b8a6;
  margin-bottom: 0.5rem;
}

.impact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #0f766e;
}

.impact-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Services Section */
.eco-services {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.services-tabs {
  max-width: 900px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #64748b;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  color: #14b8a6;
}

.tab-btn.active {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #14b8a6;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #0f766e;
}

.service-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 80px;
}

.service-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #14b8a6;
  margin-bottom: 1.5rem;
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background-color: #ffffff;
}

.process-flow {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-flow::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #14b8a6;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  background: #14b8a6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  z-index: 1;
}

.step-content {
  padding-top: 0.5rem;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #0f766e;
}

.step-content p {
  color: #64748b;
  line-height: 1.6;
}

/* Eco Technology */
.eco-technology {
  padding: 5rem 0;
  background-color: #f0fdfa;
}

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #0f766e;
  font-weight: 700;
}

.tech-text > p {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.tech-features {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.tech-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #0f766e;
}

.feature-text p {
  color: #64748b;
  line-height: 1.6;
}

.tech-image {
  display: flex;
  justify-content: center;
}

.tech-illustration {
  width: 400px;
  height: 400px;
  position: relative;
}

.tech-circle {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tech-wave {
  width: 200px;
  height: 100px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100px 100px 0 0;
}

.tech-drop {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50% 50% 50% 0;
  position: absolute;
  top: 30%;
  left: 30%;
  transform: rotate(-45deg);
}

/* Eco Certifications */
.eco-certifications {
  padding: 5rem 0;
  background-color: #ffffff;
}

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

.certification-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #e2e8f0;
}

.certification-card:hover {
  transform: translateY(-5px);
  border-color: #14b8a6;
}

.certification-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.certification-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #0f766e;
}

.certification-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Eco Blog Preview */
.eco-blog {
  padding: 5rem 0;
  background-color: #f0fdfa;
}

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

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #0f766e;
}

.blog-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-link {
  color: #14b8a6;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.blog-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Contact CTA */
.contact-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background-color: white;
  color: #14b8a6;
}

.cta-buttons .btn-primary:hover {
  background-color: #f0fdfa;
}

.cta-buttons .btn-secondary {
  color: white;
  border-color: white;
}

.cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
  background-color: #0f172a;
  color: white;
  padding: 4rem 0 1rem;
}

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

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #14b8a6;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.eco-stats {
  display: grid;
  gap: 1rem;
}

.eco-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #14b8a6;
}

.stat-label {
  color: #94a3b8;
  font-size: 0.9rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info strong {
  color: white;
}

.contact-info a {
  color: #14b8a6;
  text-decoration: none;
}

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

.hours p {
  margin-bottom: 0.5rem;
  color: #94a3b8;
}

.eco-note {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
}

.eco-note p {
  margin: 0;
  color: #14b8a6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: #14b8a6;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-legal p {
  color: #94a3b8;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #14b8a6;
}

.eco-footer-badge {
  text-align: center;
  padding: 0.75rem;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 8px;
  color: #14b8a6;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transition: bottom 0.3s ease;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-content p {
  color: #64748b;
  margin: 0;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Legal Page Styles */
.legal-page {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
  color: #0f766e;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.last-updated {
  color: #64748b;
  font-style: italic;
  margin-bottom: 2rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  color: #0f766e;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-section h3 {
  color: #0f766e;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.legal-section p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-section ul {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.opt-out-section {
  background: #f0fdfa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #14b8a6;
}

.opt-out-box h3 {
  color: #14b8a6;
  margin-bottom: 1rem;
}

.contact-box {
  background: #f0fdfa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #14b8a6;
}

.contact-box h3 {
  color: #14b8a6;
  margin-bottom: 1rem;
}

.contact-box ul {
  list-style: none;
  padding: 0;
}

.contact-box li {
  margin-bottom: 0.5rem;
}

.contact-box a {
  color: #14b8a6;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

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

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
  }

  .nav li {
    border-bottom: 1px solid #e2e8f0;
  }

  .nav li:last-child {
    border-bottom: none;
  }

  .nav a {
    display: block;
    padding: 1rem;
    border-radius: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-content,
  .tech-content {
    grid-template-columns: 1fr;
  }

  .hero-text {
    order: 1;
  }

  .hero-image,
  .tech-image {
    order: 0;
    margin-bottom: 2rem;
  }

  .eco-illustration,
  .tech-illustration {
    width: 300px;
    height: 300px;
  }

  .eco-circle,
  .tech-circle {
    width: 220px;
    height: 220px;
  }

  .tabs-nav {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
  }

  .process-flow::before {
    left: 25px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .process-step {
    gap: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }
}

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

  .section-header h2 {
    font-size: 2rem;
  }

  .impact-number {
    font-size: 2rem;
  }

  .eco-illustration,
  .tech-illustration {
    width: 250px;
    height: 250px;
  }

  .eco-circle,
  .tech-circle {
    width: 180px;
    height: 180px;
  }

  .eco-leaf,
  .tech-wave {
    width: 100\
