/* ==========================================================================
   VERHUISLIFTVERGELIJKER.NL — Main Stylesheet
   ========================================================================== */

/* ---------- IMPORTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---------- VARIABLES ---------- */
:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --green-darker: #0f5132;
  --green-light: #dcfce7;
  --green-50: #f0fdf4;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fff7ed;
  --blue: #1e40af;
  --blue-light: #eff6ff;
  --dark: #111827;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --max-w: 1200px;
  --transition: 0.2s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5 { font-weight: 700; color: var(--dark); line-height: 1.2; }
button { font-family: inherit; cursor: pointer; }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
}

/* ---------- SECTION HEADERS ---------- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green-dark);
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.section-header h2 { font-size: 2.25rem; margin-bottom: 16px; }
.section-header p { font-size: 1.125rem; color: var(--gray-500); max-width: 640px; margin: 0 auto; }

@media (max-width: 768px) {
  .section-header h2 { font-size: 1.75rem; }
  .section-header { margin-bottom: 40px; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border: none; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all var(--transition);
  min-height: 48px;
}
.btn:active { transform: scale(0.98); }
.btn-green { background: var(--green); color: var(--white); box-shadow: 0 2px 8px rgba(22,163,74,0.3); }
.btn-green:hover { background: var(--green-dark); color: var(--white); box-shadow: 0 4px 12px rgba(22,163,74,0.4); }
.btn-white { background: var(--white); color: var(--dark); box-shadow: var(--shadow-md); }
.btn-white:hover { background: var(--gray-50); color: var(--dark); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; border: 2px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 2px 8px rgba(249,115,22,0.3); }
.btn-orange:hover { background: var(--orange-dark); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 17px; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ==================== HEADER ==================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.header-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.header-logo {
  display: flex; align-items: center; gap: 0; text-decoration: none;
}
.header-logo svg.logo-svg { height: 38px; width: auto; }
@media (max-width: 768px) {
  .header-logo svg.logo-svg { height: 32px; }
}

.header-nav { display: flex; align-items: center; gap: 8px; }
.header-nav a {
  color: var(--gray-600); font-weight: 500; font-size: 15px;
  padding: 8px 16px; border-radius: 8px; transition: all var(--transition);
}
.header-nav a:hover { color: var(--dark); background: var(--gray-100); }
.header-nav a.active { color: var(--green); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 10px 22px; font-size: 14px; }

.hamburger {
  display: none; background: none; border: none; padding: 8px;
  flex-direction: column; gap: 5px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: 0.3s;
}

.mobile-menu {
  display: none; position: absolute; top: 72px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px 24px; box-shadow: var(--shadow-lg);
}
.mobile-menu a {
  display: block; padding: 14px 0; font-weight: 500; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100); font-size: 16px;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

@media (max-width: 768px) {
  .header-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: block; }
}

/* ==================== HERO ==================== */
.hero {
  position: relative; overflow: hidden;
  min-height: 600px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero-text { color: var(--white); }
.hero-text h1 { font-size: 3.25rem; font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero-text h1 span { color: #4ade80; }
.hero-text p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 28px; line-height: 1.7; }
.hero-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  padding: 10px 18px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600; color: var(--white);
}
.hero-badge svg { width: 18px; height: 18px; color: #4ade80; }

/* Hero form */
.hero-form-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 36px; box-shadow: var(--shadow-xl);
}
.hero-form-card h2 { font-size: 1.35rem; margin-bottom: 6px; }
.hero-form-card .subtitle { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%; padding: 13px 16px; border: 2px solid var(--gray-200);
  border-radius: var(--radius); font-size: 15px; font-family: inherit;
  transition: border-color var(--transition); background: var(--white);
  appearance: none; min-height: 48px; color: var(--dark);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px;
}
.form-group input:focus, .form-group select:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 3px rgba(22,163,74,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero-content { grid-template-columns: 1fr; padding: 48px 24px 32px; gap: 32px; }
  .hero-text h1 { font-size: 2rem; }
  .hero-form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==================== TRUST BAR ==================== */
.trust-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.trust-grid {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  padding: 20px 0;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--gray-600); }
.trust-item svg { width: 20px; height: 20px; color: var(--green); }
.trust-item strong { color: var(--dark); }

/* ==================== HOW IT WORKS ==================== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 44px; left: 16.66%; right: 16.66%;
  height: 2px; background: var(--gray-200); z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-icon {
  width: 88px; height: 88px; margin: 0 auto 24px;
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.step-icon svg { width: 32px; height: 32px; color: var(--green); }
.step-number {
  position: absolute; top: -4px; right: -4px;
  width: 28px; height: 28px; background: var(--green); color: var(--white);
  border-radius: 50%; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-card h3 { font-size: 1.125rem; margin-bottom: 10px; }
.step-card p { font-size: 0.95rem; color: var(--gray-500); }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
}

/* ==================== COMPARISON / PROVIDERS ==================== */
.providers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.provider-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); position: relative;
}
.provider-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.provider-card.featured { border: 2px solid var(--green); }
.featured-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--green); color: var(--white);
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700;
}
.card-img { height: 200px; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.provider-card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.stars { color: #facc15; font-size: 14px; letter-spacing: 1px; }
.rating-text { font-size: 13px; color: var(--gray-500); }
.card-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-100); }
.price-from { font-size: 13px; color: var(--gray-500); }
.price-amount { font-size: 2rem; font-weight: 900; color: var(--dark); }
.price-unit { font-size: 14px; color: var(--gray-500); }
.card-features { margin-bottom: 20px; }
.card-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; font-size: 14px; color: var(--gray-700);
}
.card-features li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

@media (max-width: 768px) {
  .providers-grid { grid-template-columns: 1fr; }
}

/* ==================== PHOTO GALLERY ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white; padding: 24px 16px 16px; font-size: 14px; font-weight: 600;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
}

/* ==================== STATS ==================== */
.stats-section { background: var(--dark); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; padding: 24px 0; }
.stat-value { font-size: 3rem; font-weight: 900; color: #4ade80; line-height: 1; margin-bottom: 8px; }
.stat-desc { font-size: 14px; color: var(--gray-400); font-weight: 500; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-value { font-size: 2.25rem; }
}

/* ==================== ADVANTAGES ==================== */
.advantages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.adv-card {
  display: flex; gap: 20px; padding: 28px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); transition: all var(--transition);
}
.adv-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.adv-icon {
  width: 52px; height: 52px; min-width: 52px;
  background: var(--green-50); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.adv-icon svg { width: 24px; height: 24px; color: var(--green); }
.adv-card h3 { font-size: 1rem; margin-bottom: 6px; }
.adv-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

@media (max-width: 768px) {
  .advantages-grid { grid-template-columns: 1fr; }
}

/* ==================== REVIEWS ==================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
}
.review-stars { color: #facc15; font-size: 18px; margin-bottom: 16px; }
.review-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-light); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.review-name { font-weight: 600; font-size: 15px; color: var(--dark); }
.review-location { font-size: 13px; color: var(--gray-500); }

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ==================== CITIES ==================== */
.cities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.city-card {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  font-weight: 600; font-size: 15px; color: var(--dark);
  transition: all var(--transition);
}
.city-card svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }
.city-card:hover { border-color: var(--green); background: var(--green-50); color: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ==================== FAQ ==================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: border-color var(--transition); }
.faq-item:hover { border-color: var(--gray-300); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none;
  font-size: 16px; font-weight: 600; font-family: inherit;
  color: var(--dark); cursor: pointer; text-align: left;
  min-height: 48px; transition: background var(--transition);
}
.faq-q:hover { background: var(--gray-50); }
.faq-q svg { width: 20px; height: 20px; color: var(--gray-400); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); color: var(--green); }
.faq-a { padding: 0 24px 20px; color: var(--gray-600); font-size: 15px; line-height: 1.7; display: none; }
.faq-a.open { display: block; }

/* ==================== CTA BANNER ==================== */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--dark);
}
.cta-banner-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.cta-banner-content {
  position: relative; z-index: 1;
  text-align: center; padding: 80px 24px; max-width: 700px; margin: 0 auto;
}
.cta-banner-content h2 { font-size: 2.25rem; color: var(--white); margin-bottom: 16px; }
.cta-banner-content p { font-size: 1.15rem; color: var(--gray-300); margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .cta-banner-content { padding: 56px 24px; }
  .cta-banner-content h2 { font-size: 1.6rem; }
}

/* ==================== FOOTER ==================== */
.site-footer { background: var(--gray-900); color: var(--white); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.footer-brand span { color: #4ade80; }
.footer-desc { font-size: 14px; color: var(--gray-400); line-height: 1.7; }
.site-footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px; color: var(--gray-400); }
.footer-links a { display: block; font-size: 14px; color: var(--gray-300); padding: 5px 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--gray-500);
}
.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==================== PAGE-SPECIFIC ==================== */
/* Page hero (for subpages) */
.page-hero {
  position: relative; min-height: 360px;
  display: flex; align-items: center;
}
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 80px 24px;
  color: var(--white);
}
.page-hero-content h1 { font-size: 2.75rem; color: var(--white); margin-bottom: 12px; }
.page-hero-content p { font-size: 1.15rem; opacity: 0.9; max-width: 560px; }

@media (max-width: 768px) {
  .page-hero { min-height: 280px; }
  .page-hero-content h1 { font-size: 1.75rem; }
  .page-hero-content { padding: 48px 24px; }
}

/* Content page */
.content-section { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.content-img img { width: 100%; height: 400px; object-fit: cover; }
.content-text h2 { font-size: 1.75rem; margin-bottom: 16px; }
.content-text p { margin-bottom: 16px; color: var(--gray-600); }
.content-text ul { margin: 16px 0; }
.content-text ul li { display: flex; gap: 10px; padding: 8px 0; font-size: 15px; }
.content-text ul li svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid.reverse { direction: ltr; }
  .content-img img { height: 280px; }
}

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-card {
  background: var(--green-50); border-radius: var(--radius-lg); padding: 36px;
}
.contact-info-card h3 { font-size: 1.25rem; margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--white); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.contact-icon svg { width: 22px; height: 22px; color: var(--green); }
.contact-item h4 { font-size: 15px; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 14px; color: var(--gray-600); }

.contact-form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px; }
.contact-form-card h3 { font-size: 1.25rem; margin-bottom: 24px; }
.contact-form-card textarea {
  width: 100%; padding: 13px 16px; border: 2px solid var(--gray-200);
  border-radius: var(--radius); font-size: 15px; font-family: inherit;
  min-height: 120px; resize: vertical;
  transition: border-color var(--transition);
}
.contact-form-card textarea:focus { border-color: var(--green); outline: none; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ==================== ACCESSIBILITY ==================== */
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
