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

:root {
  --primary: #1B5E20;
  --primary-light: #2E7D32;
  --primary-dark: #0D3B13;
  --accent: #FF6F00;
  --accent-light: #FF8F00;
  --accent-dark: #E65100;
  --dark: #1a1a2e;
  --dark-light: #16213e;
  --text: #333;
  --text-light: #666;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --bg-warm: #fff8e1;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--dark); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 600; }

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto 48px; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.3;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,111,0,.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,111,0,.45);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,.2);
}

.btn-lg { padding: 18px 44px; font-size: 1.15rem; }

.pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,111,0,.35); }
  50% { box-shadow: 0 4px 40px rgba(255,111,0,.6); }
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
}

.header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 10px 0;
}
.header.menu-open,
.header.menu-open.scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  transition: none !important;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.header.scrolled .logo { color: var(--dark); }

.logo i {
  font-size: 1.6rem;
  color: var(--accent);
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }
.header.scrolled .nav a { color: var(--text); }
.header.scrolled .nav a:hover { color: var(--primary); }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-dark) !important; color: #fff !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  width: 28px;
  height: 21px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
  position: absolute;
  left: 0;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }
.header.scrolled .hamburger span { background: var(--dark); }

/* Hamburger -> X when menu open */
.hamburger.open span { background: #fff !important; }
.hamburger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(46,125,50,.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,111,0,.15) 0%, transparent 40%);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-image {
  display: none;
}

@media (min-width: 969px) {
  .hero-image {
    display: block;
    position: relative;
    z-index: 2;
    width: 420px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    object-fit: cover;
    flex-shrink: 0;
  }
}

@media (min-width: 1100px) {
  .hero-image {
    width: 500px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
}
.hero-badge i { color: var(--accent); }

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}
.hero-stat { text-align: center; }
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}
.hero-stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* Floating shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  animation: float 6s ease-in-out infinite;
}
.hero-shape-1 { width: 400px; height: 400px; background: var(--accent); top: -100px; right: -100px; animation-delay: 0s; }
.hero-shape-2 { width: 250px; height: 250px; background: var(--primary); bottom: -50px; left: -50px; animation-delay: 2s; }
.hero-shape-3 { width: 150px; height: 150px; background: #fff; top: 40%; right: 10%; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-light);
  padding: 24px 0;
  border-bottom: 1px solid #e9ecef;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}
.trust-item i { font-size: 1.3rem; color: var(--primary); }

/* ===== SERVICES ===== */
.services { padding: 96px 0; }

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

.service-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 24px;
}
.service-icon.accent { background: linear-gradient(135deg, var(--accent-light), var(--accent)); }
.service-icon.dark { background: linear-gradient(135deg, var(--dark-light), var(--dark)); }

.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: .95rem; margin-bottom: 20px; }
.service-link {
  font-weight: 600;
  color: var(--primary);
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { gap: 12px; color: var(--accent); }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 96px 0;
  background: var(--bg-light);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { margin-bottom: 10px; font-size: 1.15rem; }
.step p { color: var(--text-light); font-size: .9rem; }

/* ===== WHAT WE COLLECT ===== */
.collect { padding: 96px 0; }

.collect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.collect-item {
  background: var(--bg-light);
  border: 1px solid #e9ecef;
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.collect-item:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.collect-item i { font-size: 1.8rem; color: var(--primary); margin-bottom: 10px; display: block; }
.collect-item:hover i { color: #fff; }
.collect-item span { font-weight: 600; font-size: .9rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,111,0,.2) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 { color: #fff; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 36px; }

.cta-phone {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.cta-phone i { color: var(--accent); }
.cta-phone a { color: #fff; }
.cta-phone a:hover { color: var(--accent); }

/* ===== BENEFITS ===== */
.benefits { padding: 96px 0; background: var(--bg-light); }

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

.benefit {
  display: flex;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(27,94,32,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}
.benefit h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.benefit p { font-size: .9rem; color: var(--text-light); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 96px 0; }

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

.testimonial {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: var(--radius-lg);
  padding: 36px;
}
.testimonial-stars {
  color: #FFC107;
  font-size: 1rem;
  margin-bottom: 16px;
}
.testimonial p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  font-size: .95rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}
.testimonial-name { font-weight: 700; font-size: .9rem; }
.testimonial-location { font-size: .8rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq { padding: 96px 0; background: var(--bg-light); }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
}
.faq-question i { transition: var(--transition); color: var(--primary); font-size: .9rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; }

.footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: .9rem; }
.footer ul li a:hover { color: var(--accent); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .9rem;
}
.footer-contact li i { color: var(--accent); margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  text-align: center;
  font-size: .85rem;
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
}

/* ===== PAGE-SPECIFIC: DEBARASARE ===== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(255,111,0,.12) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 600px; }
.page-hero .breadcrumb {
  margin-bottom: 24px;
  font-size: .9rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb span { color: var(--accent); }

.content-section { padding: 80px 0; }
.content-section:nth-child(even) { background: var(--bg-light); }

.content-block {
  max-width: 800px;
  margin: 0 auto;
}
.content-block h2 { margin-bottom: 20px; }
.content-block p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.content-block ul {
  margin: 16px 0 24px 0;
}
.content-block ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-light);
  font-size: 1rem;
}
.content-block ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: .85rem;
}

/* Price card used on debarasare page */
.price-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
  text-align: center;
  max-width: 500px;
  margin: 40px auto 0;
}
.price-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.4rem; }
.price-card p { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.price-card .price-phone {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.price-card .price-phone a { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(26,26,46,.98);
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 1001;
  }
  .nav.active a {
    color: #fff !important;
    font-size: 1.3rem;
    font-weight: 600;
  }
  .nav.active a::after { display: none; }

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

  .hero-stats { gap: 24px; }
}

@media (max-width: 768px) {
  .hero-content { padding: 100px 0 60px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }

  .trust-items { gap: 24px; }

  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { justify-content: center; }
}
