/* ============================================================
   Jersey Meds Pharmacy — Main Stylesheet
   Classic Miami Medical Clinic Aesthetic, circa 2013-2016
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Lato:wght@400;700;900&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #333;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #0099a8; text-decoration: none; }
a:hover { text-decoration: underline; color: #007a87; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --teal:       #0099a8;
  --teal-dark:  #007a87;
  --teal-light: #e0f7fa;
  --coral:      #e8604c;
  --coral-dark: #c94a38;
  --white:      #ffffff;
  --off-white:  #f8f9fb;
  --light-gray: #eeeeee;
  --mid-gray:   #999999;
  --dark-gray:  #555555;
  --text:       #333333;
  --text-light: #666666;
  --border:     #d0d0d0;
  --shadow:     0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.14);
  --radius:     4px;
  --radius-lg:  8px;
}

/* ── HOURS TICKER ── */
.hours-ticker {
  background: var(--teal);
  color: #fff;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  padding: 7px 0;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.hours-ticker__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 20px;
  text-align: center;
}
.hours-ticker__item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hours-ticker__item strong { font-weight: 700; }
.hours-ticker__sep { color: rgba(255,255,255,0.4); }
.hours-ticker a { color: #fff; font-weight: 700; }
.hours-ticker a:hover { text-decoration: underline; }

/* ── TOP NAV ── */
.site-header {
  background: #fff;
  border-bottom: 3px solid var(--teal);
  position: sticky;
  top: 0;
  z-index: 150;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.site-logo__text { line-height: 1.2; }
.site-logo__name {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: var(--teal);
  display: block;
}
.site-logo__tagline {
  font-size: 10px;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-gray);
  padding: 8px 14px;
  border-bottom: 3px solid transparent;
  display: block;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  text-decoration: none;
}
.nav-cta {
  background: var(--coral) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  padding: 8px 18px !important;
  margin-left: 8px;
  border-bottom: 3px solid transparent !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--coral-dark) !important; text-decoration: none !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  transition: 0.2s;
}

/* ── CONTAINER ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 20px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 11px 26px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1.4;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; text-decoration: none; }
.btn-coral {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}
.btn-coral:hover { background: var(--coral-dark); border-color: var(--coral-dark); color: #fff; text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; text-decoration: none; }
.btn-white {
  background: #fff;
  color: var(--teal);
  border-color: #fff;
}
.btn-white:hover { background: var(--teal-light); text-decoration: none; }
.btn-lg { padding: 14px 34px; font-size: 16px; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  padding: 52px 0 44px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Lato', sans-serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
}
.page-hero p { font-size: 16px; opacity: 0.9; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 12px;
}
.breadcrumb a { color: #fff; text-decoration: underline; }

/* ── SECTION HEADINGS ── */
.section-heading {
  text-align: center;
  margin-bottom: 36px;
}
.section-heading h2 {
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.section-heading p { color: var(--text-light); font-size: 15px; max-width: 580px; margin: 0 auto; }
.section-heading .divider {
  width: 50px;
  height: 3px;
  background: var(--coral);
  margin: 12px auto 14px;
  border-radius: 2px;
}

/* ── SECTIONS ── */
.section { padding: 60px 0; }
.section-alt { background: var(--off-white); }
.section-teal { background: var(--teal); color: #fff; }
.section-teal h2, .section-teal h3 { color: #fff; }

/* ── CARDS ── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── GRID LAYOUTS ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── HIGHLIGHT BOXES (HOME) ── */
.highlight-boxes { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: -30px; position: relative; z-index: 10; }
.highlight-box {
  background: #fff;
  border-top: 4px solid var(--teal);
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
  padding: 28px 24px;
  text-align: center;
  transition: border-top-color 0.2s;
}
.highlight-box:nth-child(2) { border-top-color: var(--coral); }
.highlight-box:nth-child(3) { border-top-color: #5bba6f; }
.highlight-box:hover { transform: translateY(-3px); }
.highlight-box__icon { font-size: 38px; margin-bottom: 12px; }
.highlight-box h3 {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.highlight-box p { font-size: 13px; color: var(--text-light); line-height: 1.55; }

/* ── SERVICE CARDS ── */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  transition: box-shadow 0.2s, border-left-color 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-md); border-left-color: var(--coral); }
.service-card__icon { font-size: 30px; margin-bottom: 10px; }
.service-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 7px;
}
.service-card p { font-size: 13px; color: var(--text-light); line-height: 1.55; }

/* ── HOURS TABLE ── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hours-table th {
  background: var(--teal);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hours-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--light-gray);
  color: var(--text);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr:nth-child(even) td { background: var(--off-white); }
.hours-table .closed { color: #cc0000; font-weight: 600; }
.hours-table .open { color: #2a8a3e; font-weight: 600; }

/* ── INFO BOXES ── */
.info-box {
  background: var(--teal-light);
  border: 1px solid #b2ebf2;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--teal-dark);
}
.info-box strong { font-weight: 700; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 20px; }
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step__body h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--teal-dark);
  margin-bottom: 4px;
}
.step__body p { font-size: 13px; color: var(--text-light); }

/* ── CONTACT FORM ── */
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 5px;
}
.form-group label .req { color: var(--coral); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,153,168,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.form-submit { margin-top: 8px; }
.form-message { margin-top: 12px; font-size: 14px; padding: 10px 14px; border-radius: var(--radius); display: none; }
.form-message.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; display: block; }
.form-message.error { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; display: block; }

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.map-placeholder__pin { font-size: 48px; }

/* ── INSURANCE LOGOS ── */
.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.insurance-badge {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-gray);
  box-shadow: var(--shadow);
}

/* ── PHOTO PLACEHOLDERS ── */
.photo-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
}
.photo-placeholder svg { opacity: 0.3; position: absolute; }

/* ── FOOTER ── */
.site-footer {
  background: #1a2332;
  color: #ccc;
  padding: 50px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}
.footer-logo__name {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--teal);
  display: block;
  margin-bottom: 4px;
}
.footer-logo__tag { font-size: 12px; color: #888; margin-bottom: 12px; display: block; }
.footer-col p { color: #aaa; font-size: 13px; line-height: 1.7; }
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col ul a {
  color: #aaa;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--teal); text-decoration: none; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 9px; font-size: 13px; color: #aaa; }
.footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: #aaa; }
.footer-contact-item a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid #2d3a4a;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #666;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--teal); }
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #aaa !important;
  font-size: 13px;
}
.instagram-link:hover { color: #e1306c !important; text-decoration: none !important; }

/* ── HERO (HOME) ── */
.home-hero {
  background: linear-gradient(135deg, #005f6b 0%, #007a87 40%, #0099a8 100%);
  color: #fff;
  padding: 70px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.home-hero::after {
  content: '+';
  font-size: 400px;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  right: -60px;
  top: -80px;
  pointer-events: none;
  line-height: 1;
}
.home-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.home-hero__eyebrow {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.home-hero h1 {
  font-family: 'Lato', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.home-hero p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 500px;
}
.home-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── ABOUT SECTION ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-split__img {
  height: 360px;
  background: linear-gradient(135deg, #b2ebf2 0%, #80deea 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.about-split__body h2 {
  font-family: 'Lato', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.about-split__body p { font-size: 14px; color: var(--text-light); margin-bottom: 14px; line-height: 1.7; }
.about-stat-row { display: flex; gap: 24px; margin-top: 20px; flex-wrap: wrap; }
.about-stat { text-align: center; }
.about-stat__num {
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--teal);
  display: block;
}
.about-stat__label { font-size: 12px; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── TESTIMONIAL STRIP ── */
.testimonial-strip {
  background: var(--teal);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.testimonial-strip blockquote {
  font-size: 18px;
  font-style: italic;
  max-width: 680px;
  margin: 0 auto 12px;
  opacity: 0.95;
  line-height: 1.65;
}
.testimonial-strip cite { font-size: 13px; opacity: 0.75; font-style: normal; }

/* ── EQUIPMENT CARDS ── */
.equip-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.equip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.equip-card__img {
  height: 160px;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}
.equip-card__body { padding: 18px 16px; }
.equip-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 6px;
}
.equip-card p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.equip-card ul { font-size: 13px; color: var(--text-light); display: flex; flex-direction: column; gap: 4px; }
.equip-card ul li::before { content: '✓ '; color: var(--teal); font-weight: 700; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(90deg, var(--coral) 0%, #d4513f 100%);
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
}
.cta-band p { font-size: 16px; opacity: 0.9; margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── PRIVACY/TERMS ── */
.legal-content { max-width: 820px; margin: 0 auto; padding: 48px 20px; }
.legal-content h1 { font-family: 'Lato', sans-serif; font-size: 30px; font-weight: 900; color: var(--teal-dark); margin-bottom: 8px; }
.legal-content h2 { font-family: 'Lato', sans-serif; font-size: 19px; font-weight: 700; color: var(--teal-dark); margin: 28px 0 10px; }
.legal-content p { font-size: 14px; color: var(--text-light); margin-bottom: 14px; line-height: 1.75; }
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.legal-content ul li { font-size: 14px; color: var(--text-light); margin-bottom: 6px; line-height: 1.65; }
.legal-updated { font-size: 13px; color: var(--mid-gray); margin-bottom: 28px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__img { height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col:first-child { grid-column: 1 / -1; }
  .highlight-boxes { grid-template-columns: 1fr 1fr; }
  .highlight-boxes .highlight-box:last-child { grid-column: 1 / -1; }
  .home-hero h1 { font-size: 30px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); padding: 10px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 200; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 20px; border-bottom: 1px solid var(--light-gray); font-size: 15px; }
  .main-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .site-header { position: sticky; }
  .nav-cta { margin-left: 0; border-radius: 0 !important; }
  .hours-ticker__inner { gap: 14px; font-size: 12px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .home-hero { padding: 50px 0 80px; }
  .home-hero h1 { font-size: 26px; }
  .section { padding: 44px 0; }
  .page-hero h1 { font-size: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .highlight-boxes { grid-template-columns: 1fr; }
  .highlight-boxes .highlight-box:last-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stat-row { gap: 16px; }
  .contact-form { padding: 24px 16px; }
}

/* ── CONTACT SPLIT LAYOUT ── */
.contact-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-split { grid-template-columns: 1fr; gap: 24px; }
}

/* ── LOCATIONS SPLIT LAYOUT ── */
.locations-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .locations-split { grid-template-columns: 1fr; gap: 24px; }
}
