/* Garden Edge Company — Homepage Styles */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,0.92) 0%,
    rgba(13,27,42,0.75) 45%,
    rgba(13,27,42,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(181,101,29,0.2);
  border: 1px solid rgba(212,132,42,0.5);
  color: var(--corten-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero-tagline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-tagline strong { color: var(--corten-light); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
}
.hero-trust svg { color: var(--corten-light); flex-shrink: 0; }
.hero-image-panel { display: flex; justify-content: center; }
.hero-img-stack {
  position: relative;
  width: 420px;
  max-width: 100%;
}
.hero-img-main {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 55%;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* SECTION HEADERS */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--corten);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* COUNTRY SECTION */
.country-section { background: var(--off-white); }
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.country-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none !important;
  color: var(--text);
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}
.country-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--navy);
  transform: scaleY(0);
  transition: transform 0.22s ease;
}
.country-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.country-card:hover::before { transform: scaleY(1); }
.country-flag {
  width: 60px;
  height: 40px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.country-flag svg { width: 100%; height: 100%; }
.country-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 2px;
  font-family: 'DM Sans', sans-serif;
}
.country-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.country-arrow {
  margin-left: auto;
  color: var(--navy);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.22s ease;
}
.country-card:hover .country-arrow { opacity: 1; transform: translateX(0); }

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.benefit-card {
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.22s ease;
}
.benefit-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--sky);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* REVIEWS */
.reviews-section { background: var(--navy); }
.reviews-section .section-label { color: var(--corten-light); }
.reviews-section h2 { color: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 28px;
}
.stars {
  color: #f5c518;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.93rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; color: var(--white); font-size: 0.9rem; }
.reviewer span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* PRODUCTS */
.products-section { background: var(--off-white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.product-item {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 32px;
  transition: all 0.22s ease;
}
.product-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.product-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-item h3 { margin-bottom: 10px; }
.product-item p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.product-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-specs li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-specs li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--corten);
  flex-shrink: 0;
}

/* FIFI */
.fifi-section { background: #f0f4f0; }
.fifi-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}
.fifi-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--corten);
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 400;
}
.fifi-footer {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.fifi-image-wrap {
  display: flex;
  justify-content: center;
}
.fifi-placeholder {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f0e8, #c8d8c8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-align: center;
  border: 3px solid rgba(0,0,0,0.08);
  gap: 8px;
}
.fifi-placeholder p { margin: 0; font-weight: 600; font-size: 1rem; }

/* FAQ */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; }

/* BUYING GUIDE */
.buying-guide-section { background: var(--off-white); }
.guide-inner { max-width: 900px; }
.guide-inner h3 {
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.guide-inner h4 { margin: 1.5rem 0 0.5rem; color: var(--blue); }
.guide-inner p { color: var(--text-muted); font-size: 0.95rem; }

/* COMPANY */
.company-section { background: var(--white); }
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.company-details { margin-top: 32px; }
.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.detail-row svg { color: var(--blue-mid); flex-shrink: 0; margin-top: 2px; }
.detail-row strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); margin-bottom: 2px; }
.detail-row span { font-size: 0.93rem; color: var(--text); }
.trust-signals { display: flex; flex-direction: column; gap: 24px; justify-content: center; }
.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--off-white);
  border-radius: 6px;
}
.trust-item svg { color: var(--blue-mid); flex-shrink: 0; margin-top: 2px; }
.trust-item strong { display: block; margin-bottom: 4px; }
.trust-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* CONTACT */
.contact-section { background: var(--navy); }
.contact-section .section-label { color: var(--corten-light); }
.contact-inner { text-align: center; }
.contact-inner h2 { color: var(--white); margin-bottom: 16px; }
.contact-inner > p { color: rgba(255,255,255,0.7); margin-bottom: 48px; }
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  text-align: left;
}
.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px;
}
.contact-method svg { color: var(--corten-light); flex-shrink: 0; margin-top: 2px; }
.contact-method strong { display: block; color: var(--white); margin-bottom: 4px; }
.contact-method a { color: rgba(255,255,255,0.8); font-size: 0.9rem; display: block; margin-bottom: 4px; }
.contact-method a:hover { color: var(--corten-light); }
.contact-method span { font-size: 0.8rem; color: rgba(255,255,255,0.5); display: block; }

/* FINAL CTA */
.final-cta-section {
  background: linear-gradient(135deg, var(--corten) 0%, var(--corten-light) 100%);
  text-align: center;
  padding: 80px 0;
}
.final-cta-section h2 { color: var(--white); margin-bottom: 16px; }
.final-cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.final-cta-section .btn-primary {
  background: var(--white);
  color: var(--corten);
  border-color: var(--white);
}
.final-cta-section .btn-primary:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding-top: 120px; }
  .hero-image-panel { display: none; }
  .fifi-inner { grid-template-columns: 1fr; gap: 40px; }
  .fifi-image-wrap { display: none; }
  .company-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .country-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 8px; }
}
