/* ── Recycling Services Page ── */

.section-header {
  margin-bottom: 48px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.8;
  margin: 0 auto;
}

/* ── Hero ── */
.recycling-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  background: #fafdf3;
  color: var(--text);
  overflow: hidden;
  padding: 0 0 80px;
}
.recycling-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/media/01_FW Collection Services.JPG") center/cover no-repeat;
  opacity: 0.12;
  filter: grayscale(1);
  pointer-events: none;
  z-index: 0;
}

.recycling-hero .container {
  position: relative;
  width: 100%;
  z-index: 1;
  display: grid;
  align-content: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 3.6rem;
  align-items: center;
}

/* Left content */
.recycling-hero-content {
  text-align: left;
}

.recycling-hero-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f0e0;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.recycling-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  word-break: keep-all;
  color: var(--primary-dark);
}

.recycling-hero h1 .highlight {
  color: var(--primary);
}

.recycling-hero-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.icon-recycle {
  font-size: 2rem;
}

.icon-ant {
  font-size: 2rem;
}

.recycling-hero-desc-secondary {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

hero-cta .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.hero-cta .btn-white {
  background-color: #fff;
  /* border: 1px solid #ccc; */
  color: var(--primary);
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all 0.2s;
}

.hero-cta .btn-white:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Right media */
.recycling-hero-media {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 560px;
}

.recycling-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
}

.hero-image-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f0b429;
  color: #5c3d00;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-image-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hero-card-text {
  display: flex;
  flex-direction: column;
}

.hero-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.hero-card-title.en {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Scroll down indicator */
.hero-scroll-down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* ── Why Choose Us ── */
.why-section {
  padding: 100px 0;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-card {
  background: #fafdf3;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: left;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.why-card-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  font-size: 1.8rem;
}

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

.why-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.why-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.why-card ul li {
  font-size: 1rem;
  color: var(--text-muted);
  padding: 8px 0;
  line-height: 1.6;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.why-list li {
  font-size: 1rem;
  color: var(--text-muted);
  padding: 4px 0;
  line-height: 1.6;
}

/* ── Circular Economy Flow ── */
.flow-section {
  padding: 100px 0;
  background: #f1f1ed;
  text-align: center;
}

.flow-section .section-subtitle {
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ── Circular Economy Flow ── */
.flow-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin: 40px 0;
}

.flow-image {
  width: 100%;
  height: 30rem;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.flow-image img {
  width: 100%;
  object-position: center 36%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.flow-diagram {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0;
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  min-width: 160px;
  max-width: 160px;
  aspect-ratio: 1/1;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.flow-item .emoji {
  font-size: 1.6rem;
}

.flow-arrow {
  font-size: 2.1rem;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Tailored Solutions ── */
.solutions-section {
  padding: 100px 0;
  background: #fff;
}

/* Tab Navigation */

.solution {
  justify-self: center;
}

.solution-tabs {
  display: inline-block;
  /* display: flex; */
  justify-content: center;
  gap: 16px;
  /* padding: 0 1.2rem; */
  background-color: #f1f1ed;
  margin-bottom: 48px;
  flex-wrap: wrap;
  border-radius: 6000rem;
}

.solution-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 100rem;
  /* background: #fff; */
  border: none;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text -muted);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.solution-tab:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.solution-tab.active {
  background: var(--primary);
  border-radius: 12rem;
  /* border-color: var(--primary); */
  color: #fff;
}

/* Tab Panels */
.solution-panel {
  display: none;
  animation: slideIn 0.4s ease;
}

.solution-panel.active {
  display: block;
}

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

.solution-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  direction: rtl;
}

.solution-card > * {
  direction: ltr;
}

.solution-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
}

.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-content {
  padding: 20px 0;
}

.solution-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.solution-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.solution-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-muted);
  background: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.solution-features li .check {
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Pricing ── */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.pricing-grid > div {
  display: flex;
  flex-direction: column;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  align-items: stretch;
  padding: 32px 28px;
  text-align: left;
  /* border: 2px solid var(--primary); */
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  flex: 1;
}

.pricing-card_selected {
  border-radius: 0 0 1rem 1rem;
  background: #fff;
  padding: 32px 28px;
  text-align: left;
  align-items: stretch;
  flex: 1;
}

/* .pricing-card:hover,
.pricing-card_selected:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
} */

.pricing-top-badge {
  display: inline-block;
  background: #a3d900;
  color: #1a3300;
  padding: 6px 18px;
  border-radius: 1rem 1rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  /* margin-bottom: 12px; */
}
.pricing-top-badge_unselect {
  display: inline-block;
  opacity: 0%;
  background: #899d4c;
  color: #1a3300;
  padding: 6px 18px;
  border-radius: 1rem 1rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  /* margin-bottom: 12px; */
}

.pricing-card h3,
.pricing-card_selected h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.plan-label {
  font-size: 1rem;
  color: #be9c13;
  font-weight: 600;
  margin-bottom: 4px;
}

.pricing-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-btn {
  display: block;
  margin: 0 0 24px;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
}

.pricing-features {
  text-align: left;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  font-size: 1rem;
  color: var(--text-muted);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li .check {
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
}

/* ── Rewards ── */
.rewards-section {
  padding: 100px 0;
  background: #fff;
}

.rewards-timeline {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  /* margin: 48px auto 0; */
  /* max-width: 1000px; */
  position: relative;
}

.reward-step {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 40px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-left: -24px;
  clip-path: polygon(
    0 0,
    calc(100% - 24px) 0,
    100% 50%,
    calc(100% - 24px) 100%,
    0 100%
  );
}

.reward-step:first-child {
  margin-left: 0;
  z-index: 4;
}

.reward-step:nth-child(2) {
  z-index: 3;
}
.reward-step:nth-child(3) {
  z-index: 2;
}
.reward-step:nth-child(4) {
  z-index: 1;
}

/* Alternating chevron colours — earth tones */
.reward-step:nth-child(odd) {
  background: #7a6a5a;
  width: 100%;
}

.reward-step:nth-child(even) {
  background: #f0ebe3;
  width: 100%;
}

.reward-step:nth-child(odd) h4,
.reward-step:nth-child(odd) p {
  color: #fff;
}

.reward-step:nth-child(even) h4 {
  color: #4a3f35;
}

.reward-step:nth-child(even) p {
  color: #7a6a5a;
}

.reward-step-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 12px;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
}

.reward-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.reward-step p {
  font-size: 1rem;
  line-height: 1.6;
}

.reward-discount {
  display: inline-block;
  background: #facc15;
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 8px;
}

/* ── Footprint ── */
.footprint-section {
  padding: 100px 0;
  background: var(--bg-alt);
  text-align: center;
}

.footprint-map {
  /* max-width: 1024px; */
  width: 100%;
  /* margin: 40px auto 0; */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.footprint-map img {
  width: 100%;
  height: auto;
}

/* ── Driver Story ── */
.story-section {
  padding: 100px 0;
  background: #fff;
}

.story-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.story-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.story-embed {
  width: 100%;
}

.video-crop-container {
  width: 100%;
  max-width: 450px;
  height: 700px;
  overflow: hidden;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 12px;
  margin: 0 auto;
}

.video-crop-container iframe {
  position: absolute;
  top: -65px !important;
  left: 0;
  width: 100% !important;
  height: calc(100% + 150px) !important;
}

.story-image-full {
  width: 100%;
  height: 30rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 32px;
}

.story-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
}

.story-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.story-content blockquote {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 20px;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

.story-link:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ── CTA ── */
.recycling-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff9f4 0%, #eee7e2 50%, #eae8e6 100%);
  color: var(--text);
  text-align: center;
}

.recycling-cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.recycling-cta p {
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.recycling-cta .contact-options {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.recycling-cta .contact-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 16px 28px;
  border-radius: var(--radius-lg);
  color: var(--text);
  transition:
    background 0.2s,
    color 0.2s;
}

.recycling-cta .contact-option:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.recycling-cta .contact-option .icon {
  font-size: 1.4rem;
}

.recycling-cta .contact-option .label {
  font-size: 1rem;
  opacity: 0.7;
}

.recycling-cta .contact-option .value {
  font-size: 1.1rem;
  font-weight: 700;
}


/* ── Inline styles moved from recycling.html ── */
.recycling-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  word-break: keep-all;
   color: var(--primary-dark);
}
.recycling-hero h1 .highlight {
  color: var(--primary);
}
.hero-desc {
  color: var(--text);
}
/* ── Inline styles converted to classes ── */
.section-header {
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }



  .recycling-hero-content {
    text-align: left;
    max-width: 100%;
  }

  .hero-desc,
  .recycling-hero-desc-secondary {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    /* grid-template-rows: repeat(1fr 1fr); */
  }
  .story-content{
    /* width: 100%; */
   
    flex-direction: column;
     justify-content:center;
    
  }

  .recycling-hero-media {
    aspect-ratio: 16/10;
    max-height: 400px;
  }
.story-content {
        display: flex;
        flex-direction: column;
        align-items: center;    /* This centers the button and text blocks */
        text-align: center;     /* This ensures the text inside <h3> and <span> is centered */
    }
  .why-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .story-top {
    grid-template-columns: 1fr;
  }

  .story-image-full {
    height: 20rem;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rewards-timeline {
    flex-direction: column;
    align-items: center;
    padding: 0 3rem;
    gap: 0;
  }

  .reward-step {
    width: 100%;
    /* max-width: 320px; */
    margin-left: 0;
    margin-top: -20px;
    padding: 32px 12px;
    clip-path: polygon(
      0 0px,
      50% 0,
      100% 0px,
      100% calc(100% - 20px),
      50% 100%,
      0 calc(100% - 20px)
    );
  }

  .reward-step:first-child {
    margin-top: 0;
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 20px),
      50% 100%,
      0 calc(100% - 20px)
    );
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 3rem 1.8rem;
  }
  .section .container {
    padding: 0;
  }
  .pricing-section,
  .footprint-section,
  .story-section,
  .solutions-section,
  .flow-section {
    padding: 3rem 1.8rem;
  }

  .recycling-hero {
    min-height: auto;
    padding: 9rem 1.8rem 3rem;
  }
  .recycling-hero .container {
    align-content: start;
  }
  .solution-tabs {
    display: inline-block;
    /* display: flex; */
    justify-content: center;
    gap: 16px;

    background-color: #f1f1ed;
    margin-bottom: 48px;
    flex-wrap: wrap;
    /* padding: 8px; */
    border-radius: 60rem;
  }
  .recycling-hero h1 {
    font-size: 2rem;
    word-break: keep-all;
  }

  .recycling-hero-media {
    aspect-ratio: 4/5;
    max-height: 360px;
  }

  .hero-image-card {
    padding: 12px 16px;
  }

  .hero-card-title {
    font-size: 1rem;
  }

  .hero-card-title.en {
    font-size: 0.75rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    order: -1;
  }

  .flow-image {
    max-width: 100%;
    width: 100%;
  }

  .flow-diagram {
    flex-direction: column;
  }

  .story-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

  .flow-item {
    width: 100%;
    max-width: 320px;
    aspect-ratio: auto;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }

  .flow-item .emoji {
    font-size: 1.4rem;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }
  .recyclingbutton{
    justify-content: center;
    
  }
}
@media (max-width: 380px) {
.solution-tabs{
  padding: 0rem;
}
   .solution-tab {
    display: inline-flex;
    /* display: flex; */
    justify-content: center;
    gap: 0rem;
padding: 1rem 1rem;
    background-color: #f1f1ed;
    margin-bottom: 0px;
    flex-wrap: wrap;
   
    border-radius: 60rem;
  }
  .solution-tab.active {
  background: var(--primary);
  border-radius: 12rem;
  /* border-color: var(--primary); */
  color: #fff;
}
.container{
  padding: 0rem;
}
}