/* Ottawa Barrhaven Animal Hospital — clean rebuild */
:root {
  --primary: #f47b3b;
  --primary-dark: #d8631f;
  --secondary: #1f3b5b;
  --accent: #ffb38a;
  --bg: #ffffff;
  --bg-soft: #fff7f0;
  --text: #2b2b2b;
  --text-muted: #6b6b6b;
  --border: #ececec;
  --shadow: 0 8px 24px rgba(31,59,91,.08);
  --shadow-lg: 0 16px 40px rgba(31,59,91,.12);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; color: var(--secondary); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: 1.3rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  font-size: 0.95rem;
}
.btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn--outline:hover { background: #fff; color: var(--primary); }
.btn--secondary { background: var(--secondary); }
.btn--secondary:hover { background: #142640; }

/* ===== HEADER ===== */
.topbar {
  background: var(--secondary);
  color: #fff;
  padding: 10px 0;
  font-size: 0.88rem;
}
.topbar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.topbar a { color: #fff; opacity: .85; transition: opacity .2s; }
.topbar a:hover { opacity: 1; }
.topbar ul { list-style: none; display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .socials { gap: 14px; }

.header {
  background: #fff;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { max-height: 60px; width: auto; }
.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
  font-weight: 600;
  color: var(--secondary);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav a:hover, .nav a.active { color: var(--primary); }
.nav a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px; background: var(--primary); border-radius: 3px;
}
.header .btn { padding: 10px 22px; font-size: 0.88rem; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--secondary); cursor: pointer; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(31,59,91,.75) 0%, rgba(31,59,91,.3) 60%, transparent 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 720px; margin-bottom: 26px; }
.hero p { font-size: 1.15rem; max-width: 600px; margin-bottom: 32px; opacity: .95; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
a.hero-rating {
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  cursor: pointer;
}
a.hero-rating:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.hero-stars {
  color: #f5b400;
  letter-spacing: 2px;
  font-size: 1.25rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.hero-rating strong {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
}
.hero-rating-meta {
  color: rgba(255,255,255,0.95);
  font-size: 0.98rem;
}
.hero-rating-meta i.fa-google {
  color: #4285F4;
  font-size: 0.95rem;
  margin-right: 2px;
}

.btn--hero {
  padding: 16px 32px;
  font-size: 1.02rem;
}


/* Page hero (smaller) */
.page-hero {
  background: linear-gradient(110deg, var(--secondary), #2a4f78);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero .crumbs { opacity: .85; font-size: 0.95rem; }
.page-hero .crumbs a { color: #fff; }

/* ===== SECTION SCAFFOLD ===== */
section { padding: 90px 0; }
.section-soft { background: var(--bg-soft); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.section-title h2 { margin-bottom: 14px; }
.section-title p { color: var(--text-muted); max-width: 640px; margin: 0 auto; }

/* ===== FEATURED CARDS (3 boxes under hero) ===== */
.featured {
  margin-top: -60px;
  position: relative;
  z-index: 2;
  padding: 0;
}
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card .icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.feature-card:nth-child(2) .icon { background: linear-gradient(135deg, #4fb89c, #8fdcc6); }
.feature-card:nth-child(3) .icon { background: linear-gradient(135deg, #6f8dd0, #aebfe6); }
.feature-card h3 { margin-bottom: 6px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-lg); }
.about-badge {
  position: absolute;
  bottom: 60px; left: 20px;
  background: var(--primary);
  color: #fff;
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge .num { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about-badge .label { font-size: 0.85rem; opacity: .95; margin-top: 4px; }
.about-content .eyebrow {
  color: var(--primary); font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  font-size: 0.85rem; margin-bottom: 12px; display: block;
}
.about-content h2 { margin-bottom: 22px; }
.about-content p { color: var(--text-muted); margin-bottom: 16px; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover img { transform: scale(1.08); }
.service-card .body { padding: 22px 24px; }
.service-card h3 { margin-bottom: 6px; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== HOURS + VALUES ===== */
.hours-values { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: stretch; }
.hours-box {
  background: linear-gradient(135deg, var(--secondary), #2a4f78);
  color: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hours-box h3 { color: #fff; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.2); }
.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 0.95rem;
}
.hours-list li:last-child { border: 0; }
.hours-list .closed { color: var(--accent); font-weight: 600; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.value-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: transform .2s;
}
.value-card:hover { transform: translateY(-3px); }
.value-card:nth-child(2) { border-color: #4fb89c; }
.value-card:nth-child(3) { border-color: #6f8dd0; }
.value-card:nth-child(4) { border-color: var(--accent); }
.value-card .v-icon { font-size: 1.8rem; margin-bottom: 12px; }
.value-card h3 { font-size: 1.05rem; letter-spacing: 1px; margin-bottom: 6px; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 30px; }
.team-card { text-align: center; }
.team-card .photo {
  border-radius: 50%;
  overflow: hidden;
  width: 220px; height: 220px;
  margin: 0 auto 22px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  border: 4px solid #fff;
  transition: transform .3s;
}
.team-card:hover .photo { transform: scale(1.04); }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .role { color: var(--primary); font-weight: 600; font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.team-card h3 { margin-bottom: 8px; }
.team-card .bio { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; padding: 0 10px; margin-top: 4px; }
.team-card .bio-more { padding: 0 10px; margin-top: 6px; }
.team-card .bio-more summary { color: var(--primary); font-weight: 600; font-size: 0.88rem; cursor: pointer; list-style: none; display: inline-block; }
.team-card .bio-more summary::-webkit-details-marker { display: none; }
.team-card .bio-more summary::after { content: " \25BE"; font-size: 0.75rem; }
.team-card .bio-more[open] summary::after { content: " \25B4"; }
.team-card .bio-more p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; margin-top: 8px; }

/* Team cards become clickable to open the modal; hide inline See more */
.team-card { cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.team-card:focus { outline: 2px solid var(--primary); outline-offset: 4px; }
.team-card .bio-more { display: none; }

/* ===== TEAM MODAL ===== */
.team-modal { display: none; position: fixed; inset: 0; z-index: 1000; }
.team-modal.is-open { display: block; }
.team-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.team-modal__content { position: relative; background: #fff; max-width: 480px; width: calc(100% - 32px); margin: 5vh auto; border-radius: 16px; padding: 32px 28px; text-align: center; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.team-modal__close { position: absolute; top: 10px; right: 14px; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: #666; line-height: 1; padding: 4px 10px; }
.team-modal__close:hover { color: #000; }
.team-modal__photo { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; background: #f4f4f4; }
.team-modal__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-modal__role { color: var(--primary); font-weight: 600; font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.team-modal__name { margin-bottom: 16px; font-size: 1.4rem; }
.team-modal__bio p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 12px; text-align: left; }
@media (max-width: 480px) {
  .team-modal__content { padding: 24px 20px; margin: 3vh auto; max-height: 94vh; }
  .team-modal__photo { width: 130px; height: 130px; }
}

/* ===== CONTACT INFO STRIP ===== */
.contact-strip {
  background: var(--bg-soft);
}
.contact-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-box {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  color: inherit;
  text-decoration: none;
  display: block;
}
a.contact-box { cursor: pointer; }
.contact-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
a.contact-box:hover h4 { color: var(--primary); }
.contact-box .icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.contact-box h4 { margin-bottom: 8px; }
.contact-box p, .contact-box a { color: var(--text-muted); font-size: 0.95rem; }
.contact-box a:hover { color: var(--primary); }

/* ===== CONTACT FORM ===== */
.contact-form-wrap { max-width: 800px; margin: 0 auto; }
.contact-form {
  background: #fff;
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row--single { grid-template-columns: 1fr; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-soft);
  transition: border-color .2s, background .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; margin-top: 6px; }

.map { margin-top: 50px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(110deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { opacity: .95; margin-bottom: 28px; font-size: 1.1rem; }

/* ===== CTA STRIP (top-of-page action bar) ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 32px 0;
}
.cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.cta-strip-text h3 { color: #fff; margin: 0 0 4px; font-size: 1.4rem; }
.cta-strip-text p { color: rgba(255,255,255,0.95); margin: 0; font-size: 0.98rem; }
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-strip-actions .btn { background: #fff; color: var(--primary); border: 2px solid #fff; }
.cta-strip-actions .btn:hover { background: rgba(255,255,255,0.92); color: var(--primary-dark); }
.cta-strip-actions .btn--ghost { background: transparent; color: #fff; }
.cta-strip-actions .btn--ghost:hover { background: #fff; color: var(--primary); }
@media (max-width: 720px) {
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; width: 100%; }
}

/* ===== FOOTER ===== */
.footer { background: var(--secondary); color: #cbd6e4; padding: 70px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer h4 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; }
.footer p { color: #b8c4d4; margin-bottom: 12px; font-size: 0.92rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; font-size: 0.92rem; }
.footer ul a:hover { color: var(--primary); }
.footer .brand img { max-height: 60px; margin-bottom: 18px; background: #fff; padding: 8px 12px; border-radius: 8px; }
.footer .socials { display: flex; gap: 12px; margin-top: 16px; }
.footer .socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  color: #fff;
}
.footer .socials a:hover { background: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #8a98ab;
}

/* ===== STICKY CALL BUTTON (bottom-right, always visible) ===== */
.sticky-call {
  position: fixed; bottom: 30px; right: 30px;
  width: 56px; height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 0;
  box-shadow: 0 8px 24px rgba(244, 123, 59, 0.45);
  font-size: 1.4rem;
  text-decoration: none;
  z-index: 99;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.sticky-call:hover, .sticky-call:focus {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(244, 123, 59, 0.55);
}
@media (max-width: 720px) {
  .sticky-call { bottom: 22px; right: 18px; width: 52px; height: 52px; font-size: 1.25rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .featured-grid, .contact-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .hours-values { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: #fff; padding: 20px; gap: 10px; box-shadow: var(--shadow-lg); }
  .nav.open { display: flex; }
  .header { position: relative; }
  section { padding: 60px 0; }
  .hero { height: 500px; }
  .contact-form { padding: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .about-badge { position: static; display: inline-block; margin-top: 20px; }
}
@media (max-width: 560px) {
  .topbar { display: none; }
  .featured { margin-top: 30px; }
  .featured-grid, .contact-strip-grid, .values-grid, .footer-grid { grid-template-columns: 1fr; }
}

/* Mobile hero: text on solid dark-blue panel, dog visible below — no overlap */
@media (max-width: 720px) {
  .hero {
    height: 770px;
    background-size: 140% auto;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-color: var(--secondary);
    align-items: flex-start;
    padding-top: 40px;
  }
  .hero::before {
    background: linear-gradient(180deg,
      rgba(31,59,91,1) 0%,
      rgba(31,59,91,1) 68%,
      rgba(31,59,91,.55) 73%,
      transparent 78%);
  }
  .btn--hero {
    padding: 14px 26px;
    font-size: 0.95rem;
  }
}

/* ===== TRUST STRIP (under hero/featured) ===== */
.trust-strip {
  background: #fff;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  list-style: none;
}
.trust-strip-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.98rem;
  line-height: 1.3;
}
.trust-strip-list li i {
  color: var(--primary);
  font-size: 1.6rem;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .trust-strip-list { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 560px) {
  .trust-strip-list { grid-template-columns: 1fr; gap: 16px; }
  .trust-strip { padding: 26px 0; }
}

/* ===== REVIEWS ===== */
.reviews-section { padding: 90px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { color: #f5b400; display: flex; gap: 3px; font-size: 1.05rem; }
.review-text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.review-meta {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.review-meta i { color: #4285F4; font-size: 1.05rem; }
.review-meta strong { color: var(--secondary); font-weight: 600; }
.reviews-cta { text-align: center; margin-top: 40px; }
@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .reviews-section { padding: 60px 0; }
}

/* ===== CONTACT FORM SELECT (inquiry-type dropdown) ===== */
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%236b6b6b' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
  transition: border-color .2s, background-color .2s;
}
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #fff;
}
.contact-form select:invalid { color: #999; }

