/* ============================================
   JUST JUNK IT PHOENIX — STYLESHEET
   Clean, trust-forward, conversion-optimized
   ============================================ */

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

:root {
  --green:      #1a7a3c;
  --green-dark: #135c2c;
  --green-light:#22a050;
  --orange:     #f97316;
  --orange-dark:#ea6a0a;
  --black:      #111827;
  --dark:       #1f2937;
  --white:      #ffffff;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-600:   #4b5563;
  --text:       #111827;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }

/* ---- UTILS ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--black); }
.section--green { background: var(--green-dark); }
.hidden { display: none !important; }
.accent-green { color: var(--green); }
.accent-orange { color: var(--orange); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-label--light { color: #6ee7b7; }
.section-title { font-size: clamp(26px, 4vw, 38px); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.section-title--light { color: var(--white); }
.section-sub { font-size: 17px; color: var(--gray-500); max-width: 560px; margin-bottom: 48px; line-height: 1.7; }
.section-sub--light { color: #d1fae5; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-size: 15px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s ease; white-space: nowrap; font-family: var(--font);
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn--full { width: 100%; }

.btn--orange { background: var(--orange); color: var(--white); }
.btn--orange:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,0.4); }

.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn--ghost-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn--ghost-green:hover { background: var(--green); color: var(--white); }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--green-dark);
  padding: 8px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #d1fae5;
  letter-spacing: 0.02em;
}
.topbar a { color: #6ee7b7; text-decoration: none; font-weight: 800; }
.topbar a:hover { text-decoration: underline; }

/* ---- NAV ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__logo-icon {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav__logo-text { font-size: 18px; font-weight: 900; color: var(--black); letter-spacing: -0.01em; }
.nav__logo-text span { color: var(--green); }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { color: var(--gray-600); text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.2s; }
.nav__links a:hover, .nav__links a.active { color: var(--green); }

.nav__phone { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800; color: var(--black); text-decoration: none; }
.nav__phone:hover { color: var(--green); }
.nav__phone-icon { color: var(--green); font-size: 18px; }

.nav__toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--black); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--white); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu__close { position: absolute; top: 20px; right: 24px; background: none; border: none; font-size: 28px; cursor: pointer; }
.mobile-link { color: var(--black); text-decoration: none; font-size: 22px; font-weight: 800; }
.mobile-link:hover { color: var(--green); }
.mobile-phone { font-size: 20px; font-weight: 900; color: var(--green); text-decoration: none; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: #d1fae5; font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero__badge::before { content: '★'; color: #fbbf24; }

.hero__title { font-size: clamp(34px, 5vw, 56px); font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero__title span { color: #fbbf24; }

.hero__sub { font-size: 18px; color: #d1fae5; line-height: 1.65; margin-bottom: 32px; max-width: 520px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero__trust { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: #d1fae5; font-size: 13px; font-weight: 600; }
.trust-item::before { content: '✓'; color: #fbbf24; font-weight: 900; font-size: 14px; }

/* HERO FORM */
.hero__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.hero__form-title { font-size: 20px; font-weight: 800; color: var(--black); margin-bottom: 6px; }
.hero__form-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-size: 15px; font-family: var(--font); color: var(--text); background: var(--white);
  transition: border-color 0.2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,122,60,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-note-small { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 10px; }

/* ---- SERVICES STRIP ---- */
.services-strip { background: var(--orange); padding: 16px 0; }
.services-strip__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 32px; }
.services-strip__item { color: var(--white); font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.services-strip__item::before { content: '●'; font-size: 8px; color: rgba(255,255,255,0.6); }

/* ---- WHY US ---- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { text-align: center; padding: 32px 20px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--gray-200); transition: transform 0.2s, box-shadow 0.2s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card__icon { font-size: 36px; margin-bottom: 14px; display: block; }
.why-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 24px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; text-decoration: none; color: inherit; display: block; }
.service-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card__icon { font-size: 32px; margin-bottom: 14px; display: block; }
.service-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; color: var(--black); }
.service-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 14px; }
.service-card__link { font-size: 14px; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 4px; }

/* ---- PROCESS ---- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: var(--gray-200); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step__num { width: 56px; height: 56px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; color: var(--white); margin: 0 auto 16px; border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--green); }
.process-step h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ---- LOCATIONS ---- */
.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.location-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px 18px; text-decoration: none; color: var(--text); display: flex; align-items: center; gap: 10px; transition: border-color 0.2s, background 0.2s; font-size: 14px; font-weight: 600; }
.location-card:hover { border-color: var(--green); background: #f0fdf4; color: var(--green); }
.location-card::before { content: '📍'; font-size: 16px; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 24px; }
.testimonial-card__stars { color: #fbbf24; font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card__text { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: var(--white); flex-shrink: 0; }
.testimonial-card__name { font-size: 14px; font-weight: 700; color: var(--black); }
.testimonial-card__location { font-size: 12px; color: var(--gray-400); }

/* ---- CTA BANNER ---- */
.cta-banner { padding: 72px 0; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 900; color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: #d1fae5; font-size: 17px; }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item__q { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 16px; font-weight: 700; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font); }
.faq-item__q:hover { color: var(--green); }
.faq-item__icon { font-size: 20px; font-weight: 400; color: var(--green); transition: transform 0.2s; flex-shrink: 0; }
.faq-item__icon.open { transform: rotate(45deg); }
.faq-item__a { display: none; padding: 0 0 20px; font-size: 15px; color: var(--gray-600); line-height: 1.75; }
.faq-item__a.open { display: block; }

/* ---- FOOTER ---- */
.footer { background: var(--black); padding: 60px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand-name { font-size: 20px; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.footer__brand-name span { color: var(--green-light); }
.footer__brand-desc { font-size: 14px; color: var(--gray-400); line-height: 1.7; margin-bottom: 20px; }
.footer__phone { font-size: 18px; font-weight: 800; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.footer__phone:hover { color: var(--green-light); }
.footer__col-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 16px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: var(--gray-400); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__copy { font-size: 13px; color: var(--gray-500); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 13px; color: var(--gray-500); text-decoration: none; }
.footer__legal a:hover { color: var(--white); }

/* ---- INNER PAGE SHARED ---- */
.page-hero { background: linear-gradient(135deg, var(--green-dark), var(--green)); padding: 80px 0 60px; }
.page-hero__breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.page-hero__breadcrumb a { color: #d1fae5; text-decoration: none; }
.page-hero__breadcrumb a:hover { text-decoration: underline; }
.page-hero__title { font-size: clamp(30px, 5vw, 52px); font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px; }
.page-hero__sub { font-size: 17px; color: #d1fae5; max-width: 600px; line-height: 1.65; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__form-wrap { max-width: 540px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }
  .hero { padding: 48px 0 56px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}
