/*
Theme Name: Recycle Ayika
Theme URI: https://recycleayika.com
Author: Group 7 Waste Engineering Solutions
Author URI: https://recycleayika.com
Description: Custom WordPress theme for Recycle Ayika — Nigeria's trusted e-waste collection and recycling partner. A subsidiary of Group 7 Waste Engineering Solutions. Restoring Value. Renewing Earth.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: recycle-ayika
Tags: one-page, e-waste, recycling, environmental, nigeria
*/

/* ============================================
   RECYCLE AYIKA — VERDANT AUTHORITY THEME
   Color Palette from Logo:
   - Forest Green: #2D5016
   - Olive Green: #769C3A
   - Charcoal: #2C2C2C
   - Cream: #FAF8F3
   - Gold Accent: #C49B2A
   - Sage: #D4DFC7
   Typography:
   - Headings: Playfair Display (serif)
   - Body: Nunito Sans (sans-serif)
   ============================================ */

/* ── CSS RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2C2C2C;
  background-color: #FAF8F3;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C2C2C;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ── TOP BAR ── */
.top-bar {
  background-color: #2C2C2C;
  color: rgba(255,255,255,0.8);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar a {
  color: rgba(255,255,255,0.8);
}

.top-bar a:hover {
  color: #769C3A;
}

.top-bar-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar-right {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ── NAVBAR ── */
.navbar {
  background: #FAF8F3;
  border-bottom: 1px solid rgba(212,223,199,0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.navbar-brand-text h1 {
  font-size: 1.25rem;
  color: #2D5016;
  margin: 0;
  line-height: 1.2;
}

.navbar-brand-text span {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  color: #769C3A;
  font-weight: 600;
}

.navbar-links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2C2C2C;
  position: relative;
  padding-bottom: 2px;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #769C3A;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-links a:hover {
  color: #2D5016;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: #769C3A;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #2D5016;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45,80,22,0.3);
}

/* Mobile menu toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2C2C2C;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  background: #FAF8F3;
  border-top: 1px solid rgba(212,223,199,0.5);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  color: #2C2C2C;
  border-bottom: 1px solid rgba(212,223,199,0.3);
}

.mobile-menu a:hover {
  color: #2D5016;
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,44,44,0.92), rgba(44,44,44,0.72), rgba(44,44,44,0.4));
}

.hero-leaf-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 5 C30 5 45 20 45 35 C45 50 30 55 30 55 C30 55 15 50 15 35 C15 20 30 5 30 5Z' fill='none' stroke='%23769C3A' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(118,156,58,0.2);
  border: 1px solid rgba(118,156,58,0.4);
  border-radius: 50px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  color: #a3c462;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero h2 {
  font-size: 2.5rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h2 span {
  color: #a3c462;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
}

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

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #769C3A;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(118,156,58,0.3);
}

.btn-hero-primary:hover {
  background: #2D5016;
  color: #fff;
  box-shadow: 0 6px 20px rgba(45,80,22,0.4);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #a3c462;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
  max-width: 140px;
}

@media (min-width: 640px) {
  .hero h2 { font-size: 3.25rem; }
  .hero-stat-value { font-size: 2rem; }
  .hero-stats { gap: 3rem; }
}

@media (min-width: 1024px) {
  .hero h2 { font-size: 3.75rem; }
}

/* ── SECTION SHARED STYLES ── */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section { padding: 7rem 0; }
}

.section-label {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #769C3A;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

.section-desc {
  font-size: 1.125rem;
  color: rgba(44,44,44,0.7);
  line-height: 1.7;
  max-width: 800px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── ABOUT SECTION ── */
.about {
  background: #FAF8F3;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-text p {
  font-size: 1.125rem;
  color: rgba(44,44,44,0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: #2C2C2C;
}

.about-brand-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(212,223,199,0.5);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-top: 0.5rem;
}

.about-brand-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.about-brand-card h4 {
  font-size: 1.125rem;
  color: #2D5016;
  margin-bottom: 0.125rem;
}

.about-brand-card span {
  font-size: 0.8125rem;
  color: rgba(44,44,44,0.6);
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(212,223,199,0.3);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-color: rgba(118,156,58,0.4);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(212,223,199,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #2D5016;
  font-size: 1.25rem;
}

.feature-card:hover .feature-icon {
  background: rgba(118,156,58,0.2);
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: rgba(44,44,44,0.6);
  line-height: 1.6;
}

/* ── VISION & MISSION ── */
.vision-mission {
  position: relative;
  overflow: hidden;
}

.vision-mission-bg {
  position: absolute;
  inset: 0;
}

.vision-mission-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-mission-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,80,22,0.88);
}

.vision-mission .container {
  position: relative;
  z-index: 10;
}

.vm-cards {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .vm-cards { grid-template-columns: 1fr 1fr; }
}

.vm-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 2rem;
}

@media (min-width: 1024px) {
  .vm-card { padding: 2.5rem; }
}

.vm-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.vm-icon.vision {
  background: rgba(118,156,58,0.3);
  color: #a3c462;
}

.vm-icon.mission {
  background: rgba(196,155,42,0.3);
  color: #d4b94a;
}

.vm-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.vm-card .vm-statement {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.vm-card .vm-support {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.vision-mission .section-label {
  color: #a3c462;
}

.vision-mission .section-title {
  color: #fff;
}

/* ── COLLECTION CENTRES ── */
.collection {
  background: #FAF8F3;
}

.collection-intro {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .collection-intro {
    grid-template-columns: 2fr 3fr;
  }
}

.collection-intro img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid rgba(212,223,199,0.3);
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .collection-intro img { height: 320px; }
}

.collection-intro-text p {
  font-size: 1.125rem;
  color: rgba(44,44,44,0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.responsibilities-heading {
  margin-bottom: 2rem;
}

.responsibilities-heading h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.responsibilities-heading .underline {
  width: 64px;
  height: 4px;
  background: #769C3A;
  border-radius: 50px;
}

.responsibilities-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .responsibilities-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .responsibilities-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.resp-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(212,223,199,0.3);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.resp-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-color: rgba(118,156,58,0.4);
}

.resp-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.resp-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(212,223,199,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2D5016;
  font-size: 1.125rem;
}

.resp-card:hover .resp-icon {
  background: rgba(118,156,58,0.2);
}

.resp-card h4 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.resp-card p {
  font-size: 0.875rem;
  color: rgba(44,44,44,0.6);
  line-height: 1.6;
}

.remuneration-notice {
  background: rgba(45,80,22,0.05);
  border-left: 4px solid #2D5016;
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.remuneration-notice .notice-icon {
  color: #2D5016;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.remuneration-notice h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.remuneration-notice p {
  color: rgba(44,44,44,0.7);
  line-height: 1.7;
}

/* ── E-WASTE CATEGORIES ── */
.ewaste-categories {
  background: #2C2C2C;
  color: #fff;
}

.ewaste-categories .section-label {
  color: #a3c462;
}

.ewaste-categories .section-title {
  color: #fff;
}

.ewaste-categories .section-desc {
  color: rgba(255,255,255,0.7);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
}

.category-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover {
  background: rgba(118,156,58,0.15);
  border-color: rgba(118,156,58,0.4);
  transform: translateY(-4px);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(118,156,58,0.15);
  border: 1px solid rgba(118,156,58,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #a3c462;
  font-size: 1.5rem;
}

.category-card h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.375rem;
}

.category-card p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background: #FAF8F3;
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 4rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #769C3A, #2D5016);
}

.timeline-step {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: -4rem;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2D5016;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 1;
}

.timeline-step h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.timeline-step p {
  font-size: 1rem;
  color: rgba(44,44,44,0.7);
  line-height: 1.7;
}

/* ── WHY RECYCLE ── */
.why-recycle {
  background: #fff;
}

.reasons-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .reasons-grid { grid-template-columns: repeat(3, 1fr); }
}

.reason-card {
  padding: 1.75rem;
  border-radius: 10px;
  border: 1px solid rgba(212,223,199,0.3);
  background: #FAF8F3;
  transition: all 0.3s ease;
}

.reason-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.reason-card.highlight {
  background: #2D5016;
  border-color: #2D5016;
  color: #fff;
}

.reason-card.highlight h3 {
  color: #fff;
}

.reason-card.highlight p {
  color: rgba(255,255,255,0.8);
}

.reason-card.highlight .reason-icon {
  background: rgba(118,156,58,0.3);
  color: #a3c462;
}

.reason-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(212,223,199,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #2D5016;
  font-size: 1.25rem;
}

.reason-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.reason-card p {
  font-size: 0.9375rem;
  color: rgba(44,44,44,0.65);
  line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #2D5016, #3d6b1e);
  border-radius: 16px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-banner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 3rem;
  }
}

.cta-banner h3 {
  font-size: 1.75rem;
  color: #fff;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
}

.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #C49B2A;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-cta-gold:hover {
  background: #d4ab3a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196,155,42,0.4);
}

/* ── CONTACT SECTION ── */
.contact {
  background: #FAF8F3;
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(212,223,199,0.3);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  border-color: rgba(118,156,58,0.4);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212,223,199,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2D5016;
}

.contact-info-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(44,44,44,0.5);
  font-weight: 700;
}

.contact-info-value {
  font-weight: 600;
  color: #2C2C2C;
}

.collectors-callout {
  margin-top: 1.5rem;
  background: #2D5016;
  border-radius: 10px;
  padding: 1.5rem;
  color: #fff;
}

.collectors-callout h4 {
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.collectors-callout p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(212,223,199,0.3);
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.contact-form-wrapper h3 {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(44,44,44,0.7);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(212,223,199,0.5);
  border-radius: 6px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9375rem;
  color: #2C2C2C;
  background: #FAF8F3;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #769C3A;
  box-shadow: 0 0 0 3px rgba(118,156,58,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 2rem;
  background: #2D5016;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: #769C3A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45,80,22,0.3);
}

/* ── FOOTER ── */
.site-footer {
  background: #2C2C2C;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; }
}

.footer-brand img {
  width: 44px;
  height: 44px;
  margin-bottom: 0.5rem;
}

.footer-brand h4 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.125rem;
}

.footer-brand .tagline {
  font-size: 0.75rem;
  color: #769C3A;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #769C3A;
  color: #fff;
}

.footer-col h5 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

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

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #769C3A;
}

.footer-col p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-col a.ext-link {
  display: block;
  font-size: 0.875rem;
  color: #769C3A;
  margin-bottom: 0.375rem;
}

.footer-col a.ext-link:hover {
  color: #a3c462;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* ── FLOATING CTA ── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s ease;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #769C3A;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(118,156,58,0.4);
  transition: all 0.3s ease;
}

.floating-cta a:hover {
  background: #2D5016;
  box-shadow: 0 6px 25px rgba(45,80,22,0.5);
  transform: translateY(-2px);
  color: #fff;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
