/*
Theme Name: Carolina Junk Out
Theme URI: https://carolinajunkout.com
Author: Carolina Junk Out
Description: Custom WordPress theme for Carolina Junk Out junk removal service in Charlotte, NC.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: carolina-junk-out
*/

/* =============================================
   CSS VARIABLES & BASE
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #2B9FD9;
  --primary-light: rgba(43, 159, 217, 0.1);
  --primary-shadow: rgba(43, 159, 217, 0.2);
  --dark: #0F172A;
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;
  --white: #FFFFFF;
  --radius: 1rem;
  --radius-sm: 0.75rem;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.07);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.07);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #fff;
  color: var(--slate-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; padding-top: 80px; }

/* =============================================
   UTILITIES
============================================= */
.container {
  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; } }

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

.section-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.125rem; color: var(--slate-600); }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 0.875rem 2rem;
  box-shadow: 0 4px 14px var(--primary-shadow);
}
.btn-primary:hover { background: #2490C8; color: #fff; }

.btn-primary-lg {
  background: var(--primary);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  height: 3.5rem;
  box-shadow: 0 4px 14px var(--primary-shadow);
}
.btn-primary-lg:hover { background: #2490C8; color: #fff; }

.btn-outline-lg {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  height: 3.5rem;
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-outline-lg:hover { background: #fff; color: var(--dark); }

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px var(--primary-shadow);
}
.btn-sm:hover { background: #2490C8; color: #fff; }

/* =============================================
   HEADER
============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  height: 80px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.site-logo img { height: 70px !important; width: auto !important; }

.main-nav { display: none; gap: 0.25rem; }
@media (min-width: 768px) { .main-nav { display: flex; } }

.main-nav a {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover { color: var(--slate-900); background: var(--slate-50); }
.main-nav a.active { color: var(--primary); background: var(--primary-light); }

.header-cta { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .header-cta { display: flex; } }

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-700);
  font-weight: 500;
  transition: color 0.15s;
}
.header-phone:hover { color: var(--primary); }
.header-phone svg { color: var(--primary); }

/* Mobile menu */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  color: var(--slate-700);
  transition: background 0.15s;
}
.mobile-menu-toggle:hover { background: var(--slate-100); }
@media (min-width: 768px) { .mobile-menu-toggle { display: none; } }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #fff;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.mobile-nav-close {
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav a {
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-600);
  margin-bottom: 0.25rem;
  display: block;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover { background: var(--slate-50); color: var(--slate-900); }
.mobile-nav a.active { background: var(--primary-light); color: var(--primary); }
.mobile-nav-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--slate-700);
  font-weight: 500;
  padding: 0.75rem;
  transition: color 0.15s;
}
.mobile-nav-phone:hover { color: var(--primary); }

/* =============================================
   HERO SECTION
============================================= */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 6rem 1rem;
}
.hero-title {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--slate-300);
  margin-bottom: 2.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }

.hero-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) { .hero-badges { grid-template-columns: repeat(3, 1fr); } }

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--slate-300);
  font-weight: 500;
}
.hero-badge svg { color: var(--primary); flex-shrink: 0; }

/* =============================================
   WHAT WE REMOVE SECTION
============================================= */
.bg-white { background: #fff; }
.bg-slate { background: var(--slate-50); }
.bg-dark { background: var(--dark); color: #fff; }

.items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .items-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .items-grid { grid-template-columns: repeat(3, 1fr); } }

.item-card {
  background: #fff;
  border: 1px solid var(--slate-100);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}
.item-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.item-icon {
  width: 56px; height: 56px;
  border-radius: 0.75rem;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
}
.item-card:hover .item-icon { background: var(--primary); color: #fff; }

.item-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.item-card p { color: var(--slate-600); font-size: 1rem; line-height: 1.6; flex-grow: 1; margin-bottom: 1.5rem; }
.item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.15s;
}
.item-link:hover { color: #2490C8; text-decoration: underline; text-underline-offset: 4px; }

/* =============================================
   HOW IT WORKS SECTION
============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 16%; right: 16%;
    height: 2px;
    background: var(--slate-200);
    z-index: 0;
  }
}

.step-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-100);
  transition: box-shadow 0.3s, transform 0.3s;
}
.step-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.step-icon-wrap {
  position: relative;
  width: 6rem; height: 6rem;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.step-icon-wrap svg { color: var(--primary); }
.step-num {
  position: absolute;
  top: -0.5rem; right: -0.5rem;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
}
.step-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.step-card p { color: var(--slate-600); line-height: 1.7; }

/* =============================================
   WHY CHOOSE US SECTION
============================================= */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--slate-50);
  border-radius: var(--radius);
  border: 1px solid var(--slate-100);
  transition: box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  background: #fff;
  border-color: rgba(43,159,217,0.2);
}
.feature-icon { color: var(--primary); flex-shrink: 0; margin-top: 0.25rem; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.feature-card p { color: var(--slate-600); line-height: 1.7; }

/* =============================================
   TESTIMONIALS SECTION
============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card {
  background: rgba(30,41,59,0.5);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid #334155;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover { box-shadow: 0 20px 40px rgba(43,159,217,0.1); transform: translateY(-4px); }

.stars { display: flex; gap: 0.25rem; margin-bottom: 1.5rem; }
.star { color: var(--primary); font-size: 1.125rem; }

.testimonial-quote {
  font-size: 1.0625rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: #fff; margin-bottom: 0.125rem; }
.author-location { font-size: 0.875rem; color: #94A3B8; }

/* =============================================
   SERVICE AREA SECTION
============================================= */
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .service-area-grid { grid-template-columns: repeat(2, 1fr); } }

.service-area-text h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
.service-area-text p { font-size: 1.125rem; color: var(--slate-600); margin-bottom: 1.25rem; line-height: 1.7; }
.service-area-text a.phone-link { color: var(--primary); font-weight: 600; }
.service-area-text a.phone-link:hover { text-decoration: underline; }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 400px;
}
@media (min-width: 1024px) { .map-container { height: 500px; } }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* =============================================
   FAQ SECTION
============================================= */
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 48rem; margin: 0 auto; }

.faq-item {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.faq-trigger {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.15s;
}
.faq-trigger:hover { color: var(--primary); }
.faq-trigger svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--primary);
}
.faq-item.open .faq-trigger svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--slate-600);
  line-height: 1.7;
  font-size: 1rem;
}
.faq-item.open .faq-answer { display: block; }

/* =============================================
   SERVICES PAGE
============================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-100);
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.service-card-image { height: 220px; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-image img { transform: scale(1.05); }

.service-card-body { padding: 1.75rem; }
.service-card-body h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card-body p { color: var(--slate-600); line-height: 1.7; margin-bottom: 1.25rem; }

/* =============================================
   PRICING PAGE
============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: #fff;
  border: 2px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light), var(--shadow-lg);
  transform: scale(1.03);
  z-index: 1;
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }

.popular-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1.25rem;
  border-radius: 0 0 0.75rem 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-name { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 2rem;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--slate-400); }
.pricing-features { text-align: left; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.875rem; }
.pricing-feature { display: flex; align-items: center; gap: 0.75rem; color: var(--slate-600); font-size: 0.9375rem; }
.pricing-feature svg { color: var(--primary); flex-shrink: 0; }

/* =============================================
   ABOUT PAGE
============================================= */
.mission-section {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}
.mission-section h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 2rem; color: #fff; }
.mission-quote {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--slate-300);
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .story-grid { grid-template-columns: repeat(2, 1fr); } }

.story-text h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
.story-text p { font-size: 1.125rem; color: var(--slate-600); margin-bottom: 1.5rem; line-height: 1.7; }

.story-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xl); position: relative; }
.story-image img { width: 100%; height: auto; }
.story-image-overlay { position: absolute; inset: 0; background: rgba(43,159,217,0.1); mix-blend-mode: multiply; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-100);
  text-align: center;
}
.value-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.value-card h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.value-card p { color: var(--slate-600); font-size: 0.9375rem; line-height: 1.6; }

/* =============================================
   CONTACT PAGE
============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; } }

.contact-info-card {
  background: var(--dark);
  color: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}
.contact-info-card h3 { font-size: 1.5rem; margin-bottom: 2rem; color: #fff; }
.contact-info-list { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-item svg { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.contact-info-label { font-size: 0.875rem; font-weight: 500; color: #94A3B8; margin-bottom: 0.25rem; }
.contact-info-value { font-size: 1.0625rem; }
.contact-info-value a { transition: color 0.15s; }
.contact-info-value a:hover { color: var(--primary); }

.contact-form-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-100);
}
@media (min-width: 768px) { .contact-form-card { padding: 2.5rem; } }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1.5rem; }
.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--dark);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.form-textarea { min-height: 150px; resize: vertical; }
.form-submit {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  font-size: 1.0625rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 14px var(--primary-shadow);
}
.form-submit:hover { background: #2490C8; }
.form-submit:active { transform: scale(0.99); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* Form notice (replaces toast) */
.form-notice {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-weight: 500;
  font-size: 0.9375rem;
}
.form-notice.success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; display: block; }
.form-notice.error { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; display: block; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p { color: var(--slate-400); font-size: 0.9375rem; line-height: 1.7; max-width: 24rem; }

.footer-col h4 { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { color: var(--slate-300); font-size: 0.9375rem; transition: color 0.15s; }
.footer-col ul a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.875rem; }
.footer-contact-item svg { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact-item span { color: var(--slate-300); font-size: 0.9375rem; line-height: 1.5; }
.footer-contact-item a { color: var(--slate-300); transition: color 0.15s; }
.footer-contact-item a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { font-size: 0.875rem; color: var(--slate-400); }

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  background: var(--slate-50);
  padding: 5rem 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.125rem; color: var(--slate-600); max-width: 48rem; margin: 0 auto; line-height: 1.7; }

/* =============================================
   SVG ICONS (inline)
============================================= */
.icon { display: inline-block; width: 1em; height: 1em; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-lg { font-size: 1.75rem; }
.icon-xl { font-size: 2.5rem; }

/* =============================================
   RESPONSIVE HELPERS
============================================= */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}
