/* ================================================
   TopCleanRado — Main Stylesheet (style.css)
   Clean, responsive design with blue branding
   ================================================ */

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

html {
  height: 100%;
}

:root {
  --tcr-primary: #083b4c;
  --tcr-primary-dark: #062f44;
  --tcr-secondary: #d6e1ea;
  --tcr-secondary-dark: #c3d1db;
  --tcr-primary-shadow: rgba(8, 59, 76, 0.25);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  font-family: 'Open Sans', sans-serif;
  background-color: var(--tcr-primary);
  color: #e7f1f8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.btn,
button,
input[type="submit"] {
  font-family: 'Open Sans', sans-serif;
}

.btn {
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.7rem;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-transform: none;
}

.btn-primary {
  background-color: var(--tcr-primary);
  border-color: var(--tcr-primary);
  color: #fff;
  box-shadow: 0 6px 16px var(--tcr-primary-shadow);
  border-width: 2px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus,
.btn-primary:active:hover {
  background-color: var(--tcr-primary-dark);
  border-color: var(--tcr-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-primary {
  background-color: transparent;
  border: 2px solid var(--tcr-secondary-dark);
  color: var(--tcr-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:active:focus,
.btn-outline-primary:active:hover {
  background-color: var(--tcr-primary);
  color: #fff;
  border-color: var(--tcr-primary);
  transform: translateY(-1px);
}

.text-primary,
.link-primary,
.btn-link,
.nav-link.text-primary {
  color: var(--tcr-primary) !important;
}

.link-primary:hover,
.btn-link:hover {
  color: var(--tcr-primary-dark) !important;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid #f5c518;
  outline-offset: 3px;
}
ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ================================================
   Header and Navigation
   ================================================ */
.main-header {
  background-color: #fff;
  border-bottom: 1px solid #e4e9f2;
}

.ios-app-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  min-height: 72px;
  padding: calc(8px + env(safe-area-inset-top)) 14px 8px;
  background: rgba(248, 248, 248, 0.98);
  border-bottom: 1px solid rgba(60, 60, 67, 0.18);
  color: #1d1d1f;
  display: none;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.ios-app-banner[hidden] {
  display: none !important;
}

.ios-app-banner__close {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: #6e6e73;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  font-size: 1rem;
  cursor: pointer;
}

.ios-app-banner__icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 12px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(60, 60, 67, 0.16);
}

.ios-app-banner__copy {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.ios-app-banner__copy strong {
  font-size: 0.95rem;
  color: #1d1d1f;
}

.ios-app-banner__copy span {
  font-size: 0.78rem;
  color: #636366;
}

.ios-app-banner__cta {
  flex: 0 0 auto;
  color: #007aff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 8px 4px;
}

.navbar-brand img {
  width: auto;
  max-height: 84px;
  display: block;
}

.navbar-nav .nav-link,
.profile-links .nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #083b4c;
  position: relative;
  padding-bottom: 0.5rem;
  white-space: nowrap;
}

.navbar-nav .nav-link::after,
.profile-links .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #083b4c;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active,
.profile-links .nav-link:hover,
.profile-links .nav-link:focus {
  color: #004f6e;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after,
.profile-links .nav-link:hover::after,
.profile-links .nav-link:focus::after {
  width: 100%;
}

.profile-links .nav-link {
  padding: 0.25rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.header-actions .btn {
  font-weight: 600;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.language-switcher__toggle {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  color: #083b4c;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 0;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
}

.language-switcher__toggle:hover,
.language-switcher__toggle:focus {
  color: #0f5d4f;
}

.language-switcher__toggle img,
.language-switcher__option img {
  display: block;
  width: 30px;
  min-width: 30px;
  height: 20px;
  object-fit: cover;
  border: 0;
  box-shadow: 0 0 0 1px rgba(8, 59, 76, 0.12);
}

.language-switcher__toggle i {
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.language-switcher:hover .language-switcher__toggle i,
.language-switcher:focus-within .language-switcher__toggle i {
  transform: rotate(180deg);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 1100;
  min-width: 210px;
  padding: 18px;
  background: #fff;
  border: 1px solid #d7e1ef;
  border-radius: 16px;
  box-shadow: 0 16px 35px rgba(8, 59, 76, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.language-switcher:hover .language-switcher__menu,
.language-switcher:focus-within .language-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher__option {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 8px 12px;
  border-radius: 10px;
  color: #1f2b3a;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.language-switcher__option:hover,
.language-switcher__option:focus,
.language-switcher__option.is-active {
  background: #f4f8fc;
  color: #083b4c;
}

.user-icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.login-trigger {
  border: 1px solid #0f5d4f;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #083b4c;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.login-trigger:hover,
.login-trigger:focus {
  color: #ffffff;
  background-color: #0f5d4f;
  transform: translateY(-1px);
}

.login-trigger:focus-visible {
  outline: 2px solid #f5c518;
  outline-offset: 3px;
}

.profile-links .btn-link {
  color: #083b4c;
}

.profile-links .btn-link:hover {
  color: #004f6e;
}

@media (min-width: 992px) {
  .navbar .container,
  .navbar-collapse,
  .navbar-nav,
  .profile-links {
    flex-wrap: nowrap;
  }

  .header-actions {
    width: auto !important;
    min-width: max-content;
  }

  .navbar-nav {
    min-width: max-content;
  }
}

@media (max-width: 991.98px) {
  .header-actions {
    align-items: flex-start;
    gap: 14px;
    padding-top: 12px;
  }

  .language-switcher__menu {
    left: 0;
    right: auto;
  }
}

/* ================================================
   Custom Modals
   ================================================ */
.custom-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
}

.custom-modal-content {
  background-color: #fff;
  margin: 4% auto;
  padding: 30px;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.15);
  position: relative;
  color: #083b4c;
}

.custom-modal-content .close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(8, 59, 76, 0.1);
  --bs-btn-close-color: #083b4c;
  --bs-btn-close-hover-opacity: 1;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 10;
}

.custom-modal-content .close:focus-visible {
  outline: 2px solid #f5c518;
  outline-offset: 2px;
}

.custom-modal-content h1,
.custom-modal-content h2,
.custom-modal-content h3 {
  color: var(--tcr-primary);
}

.custom-modal-content .form-label {
  color: #083b4c;
}

.custom-modal-content .form-control::placeholder {
  color: #6b7f8c;
  opacity: 1;
}

.modal-form-single {
  max-width: 420px;
  margin: 0 auto;
}

.modal-form-single a,
.auth-link {
  color: var(--tcr-primary);
  font-weight: 600;
  text-decoration: none;
}

.modal-form-single a:hover,
.auth-link:hover {
  color: var(--tcr-primary-dark);
  text-decoration: underline;
}

#authMessage,
#forgotMessage {
  min-height: 20px;
}

#authFeedback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

#authFeedback.with-resend #authResendButton {
  display: inline-flex;
}

#authFeedback #authResendButton {
  display: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #083b4c;
}

#authFeedback #authResendButton:hover,
#authFeedback #authResendButton:focus-visible {
  color: #005f7f;
  text-decoration: underline;
}

#authResendHint {
  display: none;
}

#authFeedback.with-resend + #authResendHint {
  display: block;
}

h1, h2, h3 {
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

p {
  color: #dbe5ef;
  margin-bottom: 15px;
}

.surface-light {
  background: #ffffff;
  color: #333;
}

.surface-light h1,
.surface-light h2,
.surface-light h3 {
  color: #003366;
}

.surface-light p {
  color: #444;
}

.policy-card {
  border-radius: 16px;
  padding: 60px 80px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.25);
  margin-top: 40px;
  margin-bottom: 60px;
}

.about-section .about-copy {
  max-width: 540px;
}

.about-section .about-copy p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-values-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.about-values-card h2 {
  text-align: center;
}

.about-values-card ul {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  max-width: 520px;
  padding-left: 0;
}

.about-values-card li {
  line-height: 1.55;
}

.about-care-section {
  margin-top: 42px;
}

.about-care-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 36px;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.about-care-copy span {
  display: block;
  color: #0f5d4f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-care-copy h2 {
  color: #083b4c;
  font-size: 1.8rem;
  line-height: 1.22;
  margin-bottom: 12px;
  text-align: left;
}

.about-care-copy p {
  color: #315d58;
  margin: 0;
}

.about-dog-gallery {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 14px;
  align-items: stretch;
}

.about-dog-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.about-dog-gallery__wide {
  height: 260px;
  object-position: 67% center;
}

.about-dog-gallery__small {
  height: 260px;
  object-position: 44% 42%;
}

/* ================================================
   Hero Section
   ================================================ */
.hero {
  padding: clamp(40px, 10vw, 90px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.hero-image img {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.hero-text {
  flex: 1;
  color: #002244;
  max-width: 520px;
  text-align: left;
}

.hero-text h1 {
  font-size: 0.95rem;
  letter-spacing: 0.35rem;
  color: #0077b6;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: #111;
}

.hero-text p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

.hero-text .deposit-badge {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-text .deposit-badge img {
  width: min(320px, 80%);
  max-width: 360px;
  height: auto;
}

/* ================================================
   Why Choose Section
   ================================================ */
.why-choose {
  background-color: #083b4c;
  padding: 80px 20px;
  color: #fff;
}

.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.why-text {
  flex: 1;
  color: #fff;
}

.why-text h2 {
  font-size: 2rem;
  color: #f5c518;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.why-text h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 10px;
}

.why-text p {
  color: #dcdcdc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.why-text ul {
  margin-top: 15px;
  list-style: disc;
  padding-left: 20px;
}

.why-text li {
  margin-bottom: 8px;
  color: #eaeaea;
}

.why-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ================================================
   Footer
   ================================================ */
.main-footer {
  background-color: #fff;
  text-align: center;
  padding: 30px 0;
  color: #000; /* black text */
  font-family: 'Open Sans', sans-serif;
  border-top: 1px solid #eee;
}

.main-footer .copyright {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #000; /* black text */
}

.footer-nav a {
  text-decoration: none;
  color: #000; /* black links */
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #444; /* slightly lighter hover effect */
}

/* (Bootstrap handles general contact/form layout) */
/* ================================================
   Reviews
   ================================================ */

.reviews {
  background: #083b4c;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.reviews-container {
  max-width: 1000px;
  margin: 0 auto;
}

.reviews h2,
.reviews p {
  color: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
  margin-top: 32px;
}

.reviews-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-card {
  background: #ffffff;
  border: 1px solid rgba(8, 59, 76, 0.15);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 36px);
  text-align: left;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(420px, 1.3fr);
  align-items: center;
  gap: clamp(22px, 4vw, 44px);
}

.app-card h3 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  margin: 12px 0 10px;
  color: #083b4c;
  line-height: 1.12;
}

.app-card p {
  margin-bottom: 16px;
  color: #1d3b45;
  font-size: 1.05rem;
  line-height: 1.55;
}

.app-card__copy {
  max-width: 460px;
}

.app-card__media {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.app-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(8, 59, 76, 0.12);
  color: #083b4c;
}

.app-list {
  padding-left: 18px;
  margin: 0 0 20px;
  color: #1d3b45;
}

.app-list li {
  margin-bottom: 8px;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  justify-content: flex-start;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-badge-link:not(.is-disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.store-badge-link.is-disabled {
  cursor: default;
  opacity: 0.7;
}

.store-badge {
  height: 56px;
  width: auto;
  display: block;
}

.app-featured-graphic {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(6, 49, 45, 0.22);
}

.google-map-reviews iframe {
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.4);
  width: 100%;
}

.map-wrapper {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.reviews .btn {
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.reviews .btn:hover {
  transform: translateY(-2px);
}
/* ================================================
   Social
   ================================================ */

.social-follow {
  text-align: center;
  padding: 40px 0;
  background-color: var(--tcr-primary);
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

.social-follow p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.social-follow .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--tcr-primary);
  color: #fff;
  font-size: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-follow .social-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.social-follow .social-icon:hover {
  background-color: var(--tcr-primary-dark);
  transform: translateY(-3px);
}

/* ================================================
   Cookie Banner
   ================================================ */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1050;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-content {
  background: #ffffff;
  color: #000000;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(8, 59, 76, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-content p {
  margin: 0;
  color: #000000;
  flex: 1 1 240px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


/* Footer uses Bootstrap nav utilities */

/* VetBook overrides */
:root {
  --tcr-primary: #0f5d4f;
  --tcr-primary-dark: #0a4a3f;
  --tcr-secondary: #d9efe8;
  --tcr-secondary-dark: #b4dfd2;
  --tcr-primary-shadow: rgba(15, 93, 79, 0.25);
}

body {
  background: linear-gradient(180deg, #0f5d4f 0%, #0a3c46 55%, #082d36 100%);
}

.brand-mark {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.6rem;
  color: #0f5d4f;
}

.vet-hero .hero-text h1 {
  color: #fff;
  text-align: left;
}

.vet-hero .hero-text {
  background: rgba(4, 42, 46, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  padding: clamp(24px, 4vw, 42px);
}

.vet-hero .hero-text p {
  color: #d8efe8;
  max-width: 680px;
}

.vet-hero .hero-benefits {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.vet-hero .hero-benefits li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #f4fffb;
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 1.35;
  padding: 9px 12px;
}

.vet-hero .hero-benefits li::before {
  background: #73d6bd;
  border-radius: 999px;
  content: "";
  flex: 0 0 8px;
  height: 8px;
  width: 8px;
}

.vet-hero .btn-outline-primary {
  border-color: #bfe4d8;
  color: #e9f8f2;
  background: transparent;
}

.vet-hero .btn-outline-primary:hover,
.vet-hero .btn-outline-primary:focus,
.vet-hero .btn-outline-primary:active {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-media {
  flex: 0 1 440px;
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
}

.vet-section .feature-card,
.practice-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  color: #24423d;
  height: 100%;
}

.practice-card h2,
.vet-section .feature-card h3 {
  color: #0f5d4f;
  text-align: left;
}

.practice-card p,
.vet-section .feature-card p,
.practice-card a {
  color: #24423d;
}

.practice-card .btn,
.practice-card .btn-primary {
  color: #ffffff;
}

.practice-card .btn:hover,
.practice-card .btn-primary:hover {
  color: #ffffff;
}

.partner-preview__wrap {
  background: rgba(4, 42, 46, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(24px, 4vw, 42px);
}

.partner-preview__copy h2 {
  color: #ffffff;
  margin: 14px 0 12px;
  text-align: left;
}

.partner-preview__copy p,
.partner-preview__steps p {
  color: #d8efe8;
}

.partner-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.partner-preview .btn-outline-primary {
  border-color: #bfe4d8;
  color: #e9f8f2;
}

.partner-preview .btn-outline-primary:hover,
.partner-preview .btn-outline-primary:focus,
.partner-preview .btn-outline-primary:active {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}

.partner-preview__steps {
  display: grid;
  gap: 14px;
}

.partner-preview__steps article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 18px;
}

.partner-preview__steps strong {
  align-items: center;
  background: #73d6bd;
  border-radius: 999px;
  color: #07332d;
  display: inline-flex;
  font-weight: 800;
  height: 32px;
  justify-content: center;
  margin-bottom: 10px;
  width: 32px;
}

.partner-preview__steps h3 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 6px;
  text-align: left;
}

.partner-preview__steps p {
  margin-bottom: 0;
}

.site-footer {
  background: #f7f9f8;
  border-top: 1px solid #d6dfdb;
  margin-top: auto;
  padding-top: 42px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-col h3 {
  color: #101d1a;
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-align: left;
}

.footer-col a {
  display: block;
  color: #21312d;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #0f5d4f;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.partner-list span {
  background: #dcefe8;
  color: #18493f;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.85rem;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid #d6dfdb;
  padding: 14px 0 18px;
}

.footer-bottom p {
  color: #2d3e39;
  margin: 0;
  text-align: center;
}

@media (max-width: 991px) {
  .app-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-card__copy {
    max-width: 680px;
    margin: 0 auto;
  }

  .partner-preview__wrap {
    grid-template-columns: 1fr;
  }

  .store-links {
    justify-content: center;
  }

  .hero-media {
    max-width: 620px;
    height: 360px;
  }

  .footer-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-media {
    height: 300px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }
}
