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

:root {
  --green-deep: #0b1710;
  --green-mid: #1a4228;
  --green-light: #3a7a50;
  --green-bright: #5aab72;
  --green-pale: #1e3828;
  --green-mist: #0f1c14;
  --cream: #0c1610;
  --warm-white: #111d16;
  --earth: #8b6914;
  --earth-light: #c9a84c;
  --earth-pale: #1a160a;
  --text-dark: #dff0e6;
  --text-mid: #9dbfaa;
  --text-light: #618f72;
  --border: rgba(74, 140, 92, 0.14);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.55);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  position: relative;
  overflow: hidden;
  padding-inline: 2rem;
  padding-top: 315px;
  padding-bottom: 60px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px),
  radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px),
  radial-gradient(circle at 60% 80%, #fff 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 100px 100px;
}

.hero-leaf {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.12;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--earth-light);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--earth-light);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

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

.btn-alert {
  display: inline-block;
  background: var(--earth-light);
  color: var(--green-deep);
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-alert:hover {
  background: #e0b840;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
  color: #212529;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Hero visual card */
.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 2rem;
}

.hero-card-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.hero-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
  cursor: default;
}

.hero-service-item:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-service-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.hero-service-item .check {
  margin-left: auto;
  width: 20px;
  height: 20px;
  background: rgba(74, 140, 92, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #a8e6c0;
}

/* SECTION BASE */
section {
  padding: 90px 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5aab72;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
  text-align: center;
}

/* SERVICES */
#services {
  background: var(--warm-white);
}

.services-header {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 140, 92, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74, 140, 92, 0.25);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card.featured {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #162b1e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 26px;
}

.service-card.featured .service-icon-wrap {
  background: rgba(255, 255, 255, 0.12);
}

.service-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-card.featured .service-name {
  color: #fff;
}

.service-desc {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.service-card.featured .service-desc {
  color: rgba(255, 255, 255, 0.65);
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.4rem;
}

.service-features li {
  font-size: 13.5px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card.featured .service-features li {
  color: rgba(255, 255, 255, 0.75);
}

.service-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card.featured .service-features li::before {
  background: var(--earth-light);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--green-mid);
  text-decoration: none;
  transition: gap 0.2s;
}

.service-card.featured .service-link {
  color: var(--earth-light);
}

.service-link:hover {
  gap: 10px;
}

.service-links {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;

  .service-info {
    button {
      position: relative;
      z-index: 1000;
      padding: 12px 20px;
      border-radius: 25px;
      margin-right: 10px;
      font-size: 14px;
      color: #ffffff;
    }

    .btn-alert {
      color: #0b1710;
    }
  }
}

/* WHY US */
#why {
  background: var(--green-mist);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.why-pills {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-pill {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #111e17;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  transition: all 0.2s;
}

.why-pill:hover {
  border-color: rgba(74, 140, 92, 0.3);
  box-shadow: var(--shadow);
}

.why-pill-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #162b1e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-pill h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.why-pill p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.55;
  font-weight: 300;
}

.why-visual {
  background: var(--green-deep);
  border-radius: 24px;
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-visual::before {
  content: '🌿';
  position: absolute;
  font-size: 140px;
  right: -20px;
  bottom: -20px;
  opacity: 0.08;
  line-height: 1;
}

.why-visual-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.why-visual-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  font-weight: 300;
}

.why-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.why-metric {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1rem 1.2rem;
}

.why-metric-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--earth-light);
  line-height: 1;
  margin-bottom: 4px;
}

.why-metric-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-testimonial {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.2rem;
}

.why-testimonial-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.why-testimonial-author {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* PROCESS */
#process {
  background: var(--warm-white);
}

.process-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.process-header .section-desc {
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--border);
  border-top: 1px dashed rgba(74, 140, 92, 0.25);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 60px;
  height: 60px;
  background: #162b1e;
  border: 2px solid #2a4a34;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-mid);
  margin: 0 auto 1.2rem;
  transition: all 0.3s;
}

.process-step:hover .process-num {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: #fff;
  transform: scale(1.08);
}

.process-step h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 300;
}

/* PRICING */
#pricing {
  background: var(--cream);
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-header .section-desc {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card.popular {
  background: var(--green-deep);
  border-color: var(--green-deep);
  position: relative;
  transform: scale(1.03);
}

.price-card.popular:hover {
  transform: scale(1.03) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--earth-light);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-service-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.5rem;
}

.price-card.popular .price-service-name {
  color: rgba(255, 255, 255, 0.5);
}

.price-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.price-card.popular .price-card-title {
  color: #fff;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 1rem 0;
}

.price-from {
  font-size: 13px;
  color: var(--text-light);
}

.price-card.popular .price-from {
  color: rgba(255, 255, 255, 0.5);
}

.price-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.price-card.popular .price-num {
  color: var(--earth-light);
}

.price-period {
  font-size: 13px;
  color: var(--text-light);
}

.price-card.popular .price-period {
  color: rgba(255, 255, 255, 0.5);
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 1.2rem 0;
}

.price-card.popular .price-divider {
  background: rgba(255, 255, 255, 0.1);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.price-features li {
  font-size: 13.5px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
}

.price-card.popular .price-features li {
  color: rgba(255, 255, 255, 0.75);
}

.price-check {
  width: 18px;
  height: 18px;
  background: #162b1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #5aab72;
  flex-shrink: 0;
}

.price-card.popular .price-check {
  background: rgba(255, 255, 255, 0.12);
  color: var(--earth-light);
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 1.5px solid var(--green-mid);
  color: var(--green-mid);
  background: transparent;
  width: 100%;
}

.btn-pricing:hover {
  background: var(--green-mid);
  color: #fff;
}

.price-card.popular .btn-pricing {
  background: var(--earth-light);
  border-color: var(--earth-light);
  color: var(--green-deep);
}

.price-card.popular .btn-pricing:hover {
  background: #e0b840;
}

/* TESTIMONIALS */
#testimonials {
  background: var(--green-mist);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header .section-desc {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #111e17;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
  transition: all 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--earth-light);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: 12px;
  color: var(--text-light);
}

/* CONTACT */
#contact {
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.contact-method:hover {
  border-color: rgba(74, 140, 92, 0.3);
  background: var(--green-mist);
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  background: #162b1e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-method-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

/* Form */
.contact-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
}

.form-title {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #1a2d20;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(74, 140, 92, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--green-mid);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 0.8rem;
}

/* FOOTER */
footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  font-weight: 300;
  max-width: 280px;
}

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

.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-col a:hover {
  color: #fff;
}

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

.footer-copyright {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-eco {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 5px 12px;
}

/* SCROLL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* MOBILE MENU TOGGLE */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 22px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    /*display: none;*/
  }

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

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

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

  .price-card.popular {
    transform: none;
  }

  .price-card.popular:hover {
    transform: translateY(-4px);
  }

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

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

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

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

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

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

/* SUCCESS MESSAGE */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--green-mid);
}

.form-success .success-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.form-success h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 14px;
  color: var(--text-light);
}
