/* ========================================================================
   Volkswagen Leases — Clean VW-Inspired Design System
   ======================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #001e50;
  --navy-dark: #00132e;
  --navy-hover: #002d72;
  --blue-link: #0066b1;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --gray-50: #fafafa;
  --gray-100: #f2f2f2;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --success: #16a34a;
  --error: #dc2626;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 100px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-card: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.07);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.08);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy-hover); }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; font-weight: 700; }

.section-subtitle {
  color: var(--gray-500);
  font-size: 1rem;
  font-weight: 400;
  max-width: 540px;
  margin: 0.5rem auto 0;
  line-height: 1.6;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Decorative accent line - now navy */
.accent-line {
  width: 40px;
  height: 3px;
  background: var(--navy);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* --- Buttons — VW pill style --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.5;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-hover);
  border-color: var(--navy-hover);
  color: var(--white);
}

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

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
}

.btn-sm { padding: 8px 20px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================================================
   NAVIGATION — Clean VW style
   ======================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
}
.nav-brand span {
  font-weight: 600;
  color: var(--navy);
}

.nav-links {
  display: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--gray-900); }
.nav-links a.active {
  color: var(--gray-900);
  border-bottom-color: var(--navy);
}

.nav-ctas {
  display: none;
  gap: 10px;
  align-items: center;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 1px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 12px 24px;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-mobile a:hover { background: var(--gray-50); color: var(--gray-900); }

.nav-mobile .btn {
  display: block;
  margin: 8px 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-ctas { display: flex; }
  .nav-toggle { display: none; }
}

/* ========================================================================
   HERO — Clean, white-centric
   ======================================================================== */
.hero {
  background: var(--navy);
  background-image: linear-gradient(rgba(0,30,80,.72), rgba(0,30,80,.82)), url('/assets/images/volkswagen-golf-gti-night-driving-hero.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,.08);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
}

@media (min-width: 768px) {
  .hero { padding: 112px 0 96px; }
}

/* ========================================================================
   TRUST / VALUE PROPS
   ======================================================================== */
.trust-bar {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: -32px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.trust-item {
  text-align: center;
  padding: 32px 20px;
  border-bottom: 1px solid var(--gray-200);
}
.trust-item:last-child { border-bottom: none; }

.trust-item i {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
  display: block;
}

.trust-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.trust-item p {
  color: var(--gray-500);
  font-size: 0.85rem;
}

@media (min-width: 480px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: none; border-right: 1px solid var(--gray-200); }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) { border-bottom: 1px solid var(--gray-200); }
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-item { border-bottom: none; border-right: 1px solid var(--gray-200); }
  .trust-item:last-child { border-right: none; }
}

/* ========================================================================
   HOW IT WORKS
   ======================================================================== */
.how-it-works {
  padding: 80px 0;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 48px;
}

.step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  transition: all var(--transition);
}

.step:hover .step-number {
  background: var(--navy);
  color: var(--white);
}

.step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.step p {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========================================================================
   SECTION COMMON
   ======================================================================== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ========================================================================
   SPECIALS TEASER
   ======================================================================== */
.specials-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

@media (min-width: 480px) { .specials-teaser-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .specials-teaser-grid { grid-template-columns: repeat(3, 1fr); } }

/* ========================================================================
   CARDS — Clean VW-inspired thin border
   ======================================================================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--gray-100);
}

.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.card-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.card-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.card-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray-500);
}

/* Clickable card links */
a.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
a.card-link:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: inherit;
}
a.card-link:hover .card-cta { color: var(--navy); }

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-top: 8px;
  transition: color var(--transition);
}

/* ========================================================================
   "OUR BEST WORK" IMAGE GRID
   ======================================================================== */
.best-work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.best-work-grid .bw-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
}

.best-work-grid .bw-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .best-work-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================================
   INSTAGRAM MOSAIC
   ======================================================================== */
.instagram-section {
  padding: 80px 0;
  text-align: center;
  background: var(--gray-50);
}

.instagram-section h2 {
  margin-bottom: 8px;
}

.instagram-text {
  color: var(--gray-500);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.ig-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--gray-200);
  cursor: pointer;
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ig-tile:hover img { transform: scale(1.04); }

.ig-tile .ig-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.9);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  font-size: 0.95rem;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

@media (min-width: 480px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .ig-tile { aspect-ratio: auto; }
  .ig-tile:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
  .ig-tile:nth-child(2) { grid-column: 3; grid-row: 1; }
  .ig-tile:nth-child(3) { grid-column: 4; grid-row: 1; }
  .ig-tile:nth-child(4) { grid-column: 1; grid-row: 3; }
  .ig-tile:nth-child(5) { grid-column: 2; grid-row: 3; }
  .ig-tile:nth-child(6) { grid-column: 3 / 5; grid-row: 2 / 4; }
}

/* ========================================================================
   FAQ ACCORDION
   ======================================================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--navy); }

.faq-question i {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--gray-400);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question { color: var(--navy); }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 500px; }

/* ========================================================================
   FORMS
   ======================================================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid .full-width { grid-column: 1 / -1; }
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,30,80,.08);
}

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

.form-group .error-text {
  color: var(--error);
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: var(--error); }
.form-group.has-error .error-text { display: block; }

/* Honeypot */
.ohnohoney {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-status {
  text-align: center;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  display: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-status.success {
  display: block;
  background: #f0fdf4;
  color: var(--success);
  border: 1px solid #bbf7d0;
}

.form-status.error {
  display: block;
  background: #fef2f2;
  color: var(--error);
  border: 1px solid #fecaca;
}

/* Lead form section — navy background */
.lead-form-section {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
}

.lead-form-section h2 { color: var(--white); }
.lead-form-section .section-subtitle { color: rgba(255,255,255,.6); }
.lead-form-section .form-group label { color: rgba(255,255,255,.8); }

.lead-form-section .form-group input,
.lead-form-section .form-group select,
.lead-form-section .form-group textarea {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: var(--white);
}

.lead-form-section .form-group input::placeholder,
.lead-form-section .form-group textarea::placeholder {
  color: rgba(255,255,255,.35);
}

.lead-form-section .form-group input:focus,
.lead-form-section .form-group select:focus,
.lead-form-section .form-group textarea:focus {
  border-color: rgba(255,255,255,.5);
  box-shadow: 0 0 0 3px rgba(255,255,255,.1);
}

.lead-form-section .form-group select option {
  color: var(--gray-800);
  background: var(--white);
}

/* Contact form wrap */
.contact-form-wrap {
  max-width: 700px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--gray-400);
  font-size: 0.88rem;
  padding: 4px 0;
}
.footer-col a:hover { color: var(--white); }

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-col p i {
  margin-right: 8px;
  color: var(--gray-500);
  width: 14px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.3fr 0.8fr 1fr; }
}

/* ========================================================================
   PAGE HERO (interior pages)
   ======================================================================== */
.page-hero {
  background: var(--navy);
  background-image: linear-gradient(rgba(0,30,80,.78), rgba(0,30,80,.85)), url('/assets/images/2026-volkswagen-jetta-front-view.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 8px;
}
.page-hero p {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ========================================================================
   SPECIALS PAGE
   ======================================================================== */
.specials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 480px) { .specials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .specials-grid { grid-template-columns: repeat(3, 1fr); } }

.disclaimer {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: 40px;
}

/* ========================================================================
   BLOG PAGE
   ======================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 480px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card .card-body h3 a {
  color: var(--gray-900);
  transition: color var(--transition);
}
.blog-card .card-body h3 a:hover { color: var(--navy); }

.blog-card .card-meta {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}

/* ========================================================================
   CONTACT PAGE
   ======================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

.contact-info-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 28px;
}

.contact-info-card h3 { margin-bottom: 20px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info-item i {
  color: var(--navy);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-info-item p { font-size: 0.88rem; color: var(--gray-600); }
.contact-info-item strong { color: var(--gray-800); }

.map-placeholder {
  width: 100%;
  height: 240px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--gray-400);
  font-size: 0.88rem;
  margin-top: 16px;
}

/* ========================================================================
   UTILITIES
   ======================================================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* Placeholder images */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gray-300);
}

/* Selection */
::selection {
  background: var(--navy);
  color: var(--white);
}
