/* ==========================================
   CLARITY COMPARE - SIMPLE & CLEAN STYLES
   Replicating Reference Layout (Insure247/Quotezone style)
   Typography: Poppins
   Theme: Clean White, Light Grey, Soft Blue Band, Green CTA Button
   ========================================== */

:root {
  --primary-dark: #1E293B;
  --text-body: #334155;
  --text-muted: #64748B;
  --accent-red: #DC2626;
  --btn-green: #16A34A;
  --btn-green-hover: #15803D;
  --sky-blue-bg: #DCEBFE;
  --light-bg: #F8FAFC;
  --border-color: #E2E8F0;
  --radius-pill: 9999px;
  --radius-card: 12px;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: var(--text-body);
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Header --- */
.site-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  background: #FFFFFF;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  height: 44px;
  width: auto;
}

.quotezone-partner {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #64748B;
  font-weight: 500;
}

.quotezone-logo {
  height: 22px;
  width: auto;
}

/* --- Insurer Logos Banner --- */
.insurer-banner {
  background: #F8FAFC;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.insurer-banner-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.insurer-logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.25rem;
  flex-wrap: wrap;
}

.insurer-logo-img {
  max-height: 32px;
  height: 32px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.04));
}

.insurer-logo-img:hover {
  transform: translateY(-2px) scale(1.05);
}

/* --- Hero Section --- */
.hero-section {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border-color);
}

.hero-section .container {
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-left {
  max-width: 540px;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 0.85rem;
}

.hero-bullets li i {
  color: var(--btn-green);
  font-size: 1.1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Reg Form */
.reg-form-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.reg-plate-wrapper {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 2px solid #000000;
  border-radius: 9999px;
  padding: 0 1.5rem;
  min-width: 320px;
  height: 54px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.reg-input-field {
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0;
  width: 100%;
  color: #1E293B;
}

.reg-input-field:focus,
.reg-input-field:active {
  outline: none;
  border: none;
  box-shadow: none;
}

.reg-input-field::placeholder {
  color: #64748B;
  font-weight: 800;
  opacity: 1;
}

.btn-get-quotes {
  background: #16A34A;
  color: #FFFFFF;
  border: none;
  height: 54px;
  padding: 0 2.25rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.btn-get-quotes i {
  transition: transform 0.25s ease;
}

.btn-get-quotes:hover {
  background: #15803D;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
}

.btn-get-quotes:hover i {
  transform: translateX(5px);
}

.retrieve-link {
  font-size: 0.85rem;
  color: var(--accent-red);
  text-decoration: underline;
  display: inline-block;
  font-weight: 500;
}

.hero-car-img {
  width: 100%;
  max-width: 440px;
}

/* --- How to save money section --- */
.steps-section {
  padding: 4rem 0;
  background: #FFFFFF;
  text-align: center;
}

.steps-heading {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.steps-heading span {
  font-weight: 800;
}

.steps-subheading {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.step-header-red {
  color: var(--accent-red);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-box-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.step-box-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Looking for something else? Section --- */
.categories-section {
  background-color: var(--sky-blue-bg);
  padding: 3.5rem 0;
  text-align: center;
}

.categories-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.category-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.category-pill-btn {
  background: #FFFFFF;
  border-radius: var(--radius-pill);
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}

.category-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  border-color: #BFDBFE;
}

.category-pill-btn i {
  color: var(--primary-dark);
  font-size: 1.1rem;
}

/* --- Why Use Section --- */
.why-section {
  padding: 4.5rem 0;
  background: #FFFFFF;
}

.why-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-red);
  margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-left-text {
  text-align: center;
}

.why-callout {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-red);
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.why-subcallout {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-red);
  font-style: italic;
}

.why-right-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.why-circle-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-circle-icon.navy { background: #2A2F4C; }
.why-circle-icon.pink { background: #E11D48; }
.why-circle-icon.gold { background: #EAB308; }

.why-item-text {
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
}

/* --- Insurance Articles --- */
.articles-section {
  padding: 4rem 0;
  background: #F8FAFC;
}

.articles-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.article-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card-link:hover .article-card {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 190px;
}

.article-content {
  padding: 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.article-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.article-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.article-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.article-arrow {
  color: #2563EB;
  font-size: 1.25rem;
  display: inline-block;
  transition: transform 0.25s ease;
}

.article-card-link:hover .article-arrow {
  transform: translateX(6px);
  color: #1D4ED8;
}

.articles-cta-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-read-all-articles {
  background: #16A34A;
  color: #FFFFFF;
  border: none;
  height: 54px;
  padding: 0 2.5rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
  text-decoration: none;
}

.btn-read-all-articles i {
  transition: transform 0.25s ease;
}

.btn-read-all-articles:hover {
  background: #15803D;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.4);
  color: #FFFFFF;
}

.btn-read-all-articles:hover i {
  transform: translateX(5px);
}

/* --- Contact Info Banner & Regulatory Notice --- */
.contact-banner {
  background: #FFFFFF;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-color);
}

.contact-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: #F1F5F9;
  padding: 1.5rem 2rem;
  border-radius: 12px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.contact-detail i {
  color: var(--btn-green);
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.social-btn:hover {
  background: #E2E8F0;
}

.regulatory-box {
  background: #F1F5F9;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- Map Section --- */
.footer-map-section {
  width: 100%;
  line-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #F1F5F9;
  border-top: 1px solid #E2E8F0;
}

.footer-map-section iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* --- Footer --- */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  border-top: 6px solid #2563EB;
  padding: 3.5rem 0 1.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.3fr 1.2fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  height: 44px;
  margin-bottom: 0.75rem;
}

.footer-about-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #94A3B8;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.15rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-circle:hover {
  background: #2563EB;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #60A5FA;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-list a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-list a:hover {
  color: #FFFFFF;
}

.footer-dropdown {
  margin-bottom: 0.6rem;
}

.footer-dropdown summary {
  font-size: 0.85rem;
  font-weight: 600;
  color: #E2E8F0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.footer-dropdown summary::-webkit-details-marker {
  display: none;
}

.footer-dropdown summary:hover {
  color: #60A5FA;
}

.footer-dropdown summary::after {
  content: '›';
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.footer-dropdown[open] summary::after {
  transform: rotate(90deg);
}

.footer-sublist {
  list-style: none;
  padding-left: 0.75rem;
  margin: 0.35rem 0 0.6rem 0;
  border-left: 2px solid rgba(37, 99, 235, 0.4);
}

.footer-sublist li {
  margin-bottom: 0.35rem;
}

.footer-sublist a {
  font-size: 0.82rem;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-sublist a:hover {
  color: #FFFFFF;
}

.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email-link:hover {
  color: #FFFFFF;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #64748B;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Quote Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #F1F5F9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
}

/* --- Exit Intent Window Jump Modal --- */
.exit-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

.exit-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.exit-modal-card {
  background: #ffffff;
  border-radius: 12px;
  width: 100%;
  max-width: 620px;
  padding: 2.25rem 2.25rem 2.5rem 2.25rem;
  position: relative;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-modal-overlay.active .exit-modal-card {
  transform: scale(1);
}

.exit-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  background: #2563eb;
  color: #ffffff;
  border: 3px solid #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.exit-modal-close:hover {
  background: #1d4ed8;
  transform: scale(1.1);
}

.exit-modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.exit-modal-header img {
  height: 26px;
  width: auto;
}

.exit-modal-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.exit-modal-body {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto 1.75rem auto;
}

.exit-modal-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.exit-reg-box {
  display: flex;
  align-items: center;
  border: 2px solid #000000;
  border-radius: 9999px;
  overflow: hidden;
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  flex: 1;
  min-width: 0;
  background: #ffffff;
  padding: 0 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

.exit-reg-input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1e293b;
  font-family: inherit;
  background: transparent;
  text-align: center;
  box-sizing: border-box;
}

.exit-reg-input::placeholder {
  color: #64748b;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 1;
}

.exit-modal-btn {
  background: #16a34a;
  color: #ffffff;
  border: none;
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  padding: 0 1.75rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
  box-sizing: border-box;
}

.exit-modal-btn:hover {
  background: #15803d;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .why-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-left {
    max-width: 100%;
  }
  .hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: 1.5rem;
  }
  .hero-car-img {
    margin: 0 auto;
    display: block;
  }
  .category-pill-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .article-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 0.75rem 0;
  }
  .brand-logo {
    height: 34px;
  }
  .quotezone-partner span {
    display: none !important;
  }
  .quotezone-logo {
    height: 15px !important;
    width: auto;
  }
  .exit-modal-card {
    padding: 1.75rem 1.25rem 2rem 1.25rem;
  }
  .exit-modal-form {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    width: 100%;
  }
  .exit-reg-box {
    border-radius: 9999px;
    width: 100%;
    height: 52px;
    min-height: 52px;
    max-height: 52px;
    box-sizing: border-box;
    padding: 0 1rem;
  }
  .exit-reg-input {
    font-size: 0.95rem;
  }
  .exit-modal-btn {
    width: 100%;
    height: 52px;
    min-height: 52px;
    max-height: 52px;
    border-radius: 9999px;
    box-sizing: border-box;
    font-size: 0.8rem;
    padding: 0 0.85rem;
    letter-spacing: 0.01em;
  }
  .exit-modal-close {
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
  }
  .insurer-banner {
    padding: 1.25rem 0;
  }
  .insurer-logo-grid {
    gap: 1.25rem 1.75rem;
  }
  .insurer-logo-img {
    max-height: 24px;
    height: 24px;
  }
}

@media (max-width: 550px) {
  .category-pill-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Floating Buttons (Bottom Right Stacked) --- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9990;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp-btn:hover {
  background: #20BA5A;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}

.scroll-top-btn {
  position: fixed;
  bottom: 6rem;
  right: 2.15rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2563EB;
  color: #FFFFFF;
  border: none;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9990;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.scroll-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.scroll-top-btn:hover {
  background: #1D4ED8;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 0;
  }
  .brand-logo {
    height: 34px;
  }
  .quotezone-partner span {
    display: none !important;
  }
  .quotezone-logo {
    height: 15px !important;
    width: auto;
  }
  .floating-whatsapp-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
  }
  .scroll-top-btn {
    bottom: 4.75rem;
    right: 1.35rem;
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }
}

/* --- About & Contact Page Component Styles --- */
.page-hero-banner {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  padding: 3.5rem 0 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.page-hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.6;
}

/* About Quotezone Card */
.quotezone-reference-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-left: 5px solid #2563EB;
  border-radius: 12px;
  padding: 2rem 2.25rem;
  margin: 2rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  position: relative;
}

.quotezone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #EFF6FF;
  color: #1D4ED8;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quotezone-badge img {
  height: 16px;
  width: auto;
}

.quotezone-ref-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.quotezone-ref-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quotezone-ref-text a {
  color: #2563EB;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.quotezone-ref-text a:hover {
  color: #1D4ED8;
}

/* Feature Grid for About Page */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.about-feature-card {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #DCEBFE;
  color: #2563EB;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.about-feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Contact Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin: 2.5rem 0 3.5rem 0;
}

.contact-card-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.1);
  border-color: #93C5FD;
}

.contact-card-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #EFF6FF;
  color: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.contact-card-icon-box.whatsapp-bg {
  background: #DCFCE7;
  color: #16A34A;
}

.contact-card-icon-box.location-bg {
  background: #FEF3C7;
  color: #D97706;
}

.contact-card-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.contact-card-main-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  word-break: break-word;
}

.contact-card-action-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  background: #2563EB;
  color: #FFFFFF;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.contact-card-action-btn:hover {
  background: #1D4ED8;
  color: #FFFFFF;
}

.contact-card-action-btn.whatsapp-btn {
  background: #25D366;
}

.contact-card-action-btn.whatsapp-btn:hover {
  background: #20BA5A;
}

.contact-card-action-btn.location-btn {
  background: #1E293B;
}

.contact-card-action-btn.location-btn:hover {
  background: #0F172A;
}

@media (max-width: 900px) {
  .contact-cards-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


