/* ==========================================================================
   Arunava Talukdar — Insurance Advisor Portfolio
   Base Stylesheet
   Color palette: #dc2626 (red) · #c62121 (red-dark) ·
                  #1a1c1c (near-black) · #444748 (body text)
   Fonts: Space Grotesk (headings) · Inter (body)
   ========================================================================== */

:root {
  /* ---- Brand colors ---- */
  --color-primary: #dc2626;
  --color-primary-dark: #c62121;
  --color-secondary: #1a1c1c;
  --color-accent: #dc2626;
  --color-dark: #1a1c1c;

  /* ---- Neutrals ---- */
  --color-light: #ffffff;
  --color-light-alt: #f9f9f8;
  --color-muted: #6a7282;
  --color-border: #eeeeed;

  /* ---- Text ---- */
  --text-body: #444748;
  --text-heading: #1a1c1c;

  /* ---- Fonts ---- */
  --font-base: 'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;

  /* ---- Spacing scale ---- */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  /* ---- Radius ---- */
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 48px;
  --radius-pill: 9999px;

  /* ---- Shadow ---- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-btn: 0 10px 24px rgba(220, 38, 38, 0.18), 0 2px 4px rgba(0, 0, 0, 0.09);

  /* ---- Motion ---- */
  --transition-base: all 0.25s ease;
}

/* ========== Reset / Base ========== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-base);
  color: var(--text-body);
  background-color: var(--color-light);
  overflow-x: hidden;
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  transition: var(--transition-base);
  padding: 0;
}

button {
  font-family: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

::selection {
  background: var(--color-primary);
  color: var(--color-light);
}


section[id] {
  scroll-margin-top: 90px;
}

/* ========== Typography ========== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: clamp(36px, 4vw + 16px, 60px);
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: clamp(22px, 1.5vw + 16px, 28px);
}

p {
  margin-bottom: var(--space-sm);
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.text-accent {
  color: var(--color-accent) !important;
}

.text-dark {
  color: var(--color-dark) !important;
}

.text-muted {
  color: var(--color-muted) !important;
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

.bg-accent {
  background-color: var(--color-accent) !important;
}

.bg-dark {
  background-color: var(--color-dark) !important;
}

.bg-light-alt {
  background-color: var(--color-light-alt) !important;
}

.eyebrow {
  display: block;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-header.text-center {
  text-align: center;
}

.section-header h2 {
  margin-bottom: 0;
}

/* ========== Buttons ========== */

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  background-image: linear-gradient(93deg, var(--color-primary) 18%, var(--color-primary-dark) 91%);
  color: var(--color-light);
  font-weight: 700;
  font-size: 16px;
  border: none;
  box-shadow: var(--shadow-btn);
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-gradient:hover {
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(220, 38, 38, 0.24), 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-white-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  background: var(--color-light);
  color: var(--text-heading);
  font-weight: 700;
  font-size: 16px;
  border: none;
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-white-pill:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ========== Top Utility Bar ========== */

.topbar {
  background-color: var(--color-primary);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 6px 0;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
}

.topbar-link:hover {
  color: var(--color-light);
}

.topbar-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.90);
  transition: var(--transition-base);
}

.topbar-social a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.topbar-social svg {
  width: 13px;
  height: 13px;
}

/* ========== Site Header / Navigation ========== */

.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 16px 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 172, 172, 0.4);
}

.site-navbar .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary);
  line-height: normal;
}

.site-navbar .nav-link {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-left: 40px;
  padding: 0;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--color-primary);
}

/* ========== Rating badge (Google reviews) ========== */

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px;
  background: var(--color-light);
  border: 1px solid #3686f7;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.google-badge .google-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.google-badge .rating-detail {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.google-badge .rating-label {
  font-size: 9px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
}

.google-badge .rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.google-badge .rating-score {
  font-size: 15px;
  font-weight: 700;
  color: #ffb300;
}

.google-badge .rating-stars {
  display: flex;
  gap: 1px;
}

.google-badge .rating-stars img {
  width: 15px;
  height: 15px;
}

.google-badge .rating-reviews {
  font-size: 6px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

/* ========== Trust badges (Lifetime support / HDFC ERGO) ========== */

.trust-badge {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.trust-badge .badge-cap {
  position: relative;
  display: block;
  width: 38px;
  height: 74px;
  overflow: hidden;
  flex-shrink: 0;
}

.trust-badge .badge-cap img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  width: 150px;
  height: 74px;
  filter: sepia(1) saturate(5) hue-rotate(300deg) brightness(1.05) contrast(1.1);
}

.trust-badge .badge-cap-right img {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}

.trust-badge.on-dark .badge-cap img {
  filter: brightness(0) invert(1);
}

.trust-badge .badge-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  text-align: center;
  color: #a3a3a3;
  white-space: nowrap;
  padding: 0 4px;
}

.trust-badge .badge-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 4px;
}

.trust-badge .badge-caption {
  font-size: 12px;
  color: #a3a3a3;
  white-space: nowrap;
}

.trust-badge .badge-logo {
  height: 30px;
  width: auto;
}

.trust-badge.on-dark .badge-text,
.trust-badge.on-dark .badge-caption {
  /* color: rgba(255, 255, 255, 0.7); */
  color: #ffffff;
}

/* ========== Hero Section ========== */

.hero-section {
  padding: 80px 0px;
  overflow: hidden;
}

/* .hero-copy {
  max-width: 630px;
} */

.hero-heading {
  font-size: clamp(36px, 3vw + 20px, 48px);
  margin-bottom: var(--space-lg);
  max-width: 630px;
}

.hero-actions {
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero-info .hero-eyebrow {
  margin-bottom: var(--space-sm);
}

.hero-info p {
  color: var(--text-body);
  font-size: 14px;
  max-width: 630px;
  margin-bottom: 0;
}

.hero-media {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 600px;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

/* ========== About / Stats Section ========== */

.about-section {
  background-color: var(--color-light-alt);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.about-header {
  margin-bottom: var(--space-lg);
}

.about-header .about-text-col {
  font-size: 18px;
}

.about-header h2 {
  margin-bottom: 0;
}

.stat-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md);
  height: 100%;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-body);
  opacity: 0.6;
}

/* ========== Services Section ========== */

.services-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.service-card {
  position: relative;
  background: var(--color-light);
  border: 1px solid rgba(68, 71, 72, 0.05);
  border-radius: var(--radius-lg);
  padding: 45px 65px;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -128px;
  right: -128px;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.05);
  filter: blur(50px);
}

.service-icon {
  height: 30px;
  height: 30px;
  margin-bottom: var(--space-sm);
}

.service-card h3 {
  margin-bottom: var(--space-sm);
}

.service-desc {
  opacity: 0.7;
  margin-bottom: var(--space-md);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  color: var(--text-heading);
}

.service-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ========== Process Section ========== */

.process-section {
  background-color: var(--color-light-alt);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.process-copy h2 {
  margin-bottom: var(--space-md);
}

.process-copy .process-desc {
  max-width: 512px;
  margin-bottom: var(--space-lg);
}
.process-copy .btn-gradient{
  max-width: fit-content;
}
.process-panel {
  background: var(--color-light);
  border: 1px solid rgba(220, 38, 38, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 49px;
}

.timeline {
  position: relative;
  list-style: none;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 15px;
  width: 0;
  border-left: 2px dashed rgba(196, 199, 199, 0.5);
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-bottom: 24px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-icon img {
  max-height: 20px;
  max-width: 20px;
}

.timeline-label {
  color: var(--text-heading);
}

/* ========== Final CTA Section ========== */

.cta-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  display: flex;
  justify-content: center;
}

.cta-panel {
  position: relative;
  width: 100%;
  /* max-width: 1240px; */
  background: var(--color-primary);
  background-image: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 96px;
  overflow: hidden;
}

.cta-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cta-copy h2,
.cta-copy p {
  color: var(--color-light);
}

.cta-copy p {
  opacity: 0.9;
  max-width: 512px;
}

/* ========== Testimonials Section ========== */

.testimonials-section {
  background-color: var(--color-light-alt);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  text-align: center;
}

.testimonials-review-btn {
  margin-top: var(--space-md);
  gap: 10px;
}

.testimonials-review-btn .google-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.testimonials-swiper {
  margin-top: var(--space-xl);
  margin-right: calc(-1 * (100vw - 100%) / 2);
  padding: 0 0 56px 0;
  text-align: left;
}

.testimonials-swiper .swiper-slide {
  height: auto;
}

.testimonial-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 41px;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--color-dark);
  opacity: 0.15;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  top: 45%;
  width: 44px;
  height: 44px;
  background: var(--color-light);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
}

.testimonials-swiper .swiper-button-prev {
  left: 0;
}

.testimonials-swiper .swiper-button-next {
  right: 24px;
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.testimonial-stars img {
  width: 20px;
  height: 19px;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-quote.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.testimonial-readmore {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.testimonial-readmore:hover {
  text-decoration: underline;
}

.testimonial-readmore.is-visible {
  display: inline-block;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-footer .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-avatar-initials {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-image: linear-gradient(93deg, var(--color-primary) 18%, var(--color-primary-dark) 91%);
  color: var(--color-light);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.author-name {
  font-weight: 700;
  color: var(--text-heading);
}

.author-role {
  font-size: 14px;
  color: var(--text-body);
}

/* ========== FAQ Section ========== */

.faq-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.faq-list {
  max-width: 768px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-heading);
}

.faq-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  transition: var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 24px;
  color: var(--text-body);
}

/* ========== Insights / Blog Section ========== */

.blog-section {
  background-color: var(--color-light-alt);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.blog-swiper {
  padding: 0 0px 56px;
}

.blog-swiper .swiper-slide {
  height: auto;
}

.blog-card {
  height: 100%;
  background: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--color-dark);
  opacity: 0.15;
}

.blog-swiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
}

.blog-swiper .swiper-button-prev,
.blog-swiper .swiper-button-next {
  top: 45%;
  width: 44px;
  height: 44px;
  background: var(--color-light);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
}

.blog-swiper .swiper-button-prev {
  left: 0;
}

.blog-swiper .swiper-button-next {
  right: 0;
}

.blog-swiper .swiper-button-prev::after,
.blog-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.blog-thumb {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.blog-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.blog-category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.blog-filter-btn {
  border: 1px solid var(--color-border);
  background: var(--color-light);
  color: var(--text-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.blog-filter-btn.active {
  background-image: linear-gradient(93deg, var(--color-primary) 18%, var(--color-primary-dark) 91%);
  border-color: transparent;
  color: var(--color-light);
}

.blog-grid-item.is-hidden {
  display: none;
}

.blog-title {
  font-size: 24px;
  margin-bottom: 0;
}

.blog-desc {
  color: #434752;
  font-size: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: auto;
}

.blog-link img {
  width: 16px;
  height: 16px;
}

/* ========== Comparison Section (About page) ========== */

.comparison-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-light-alt);
}

.comparison-section .section-header h2 {
  font-size: 48px;
}

.comparison-grid {
  display: flex;
  /* flex-wrap: wrap; */
  gap: var(--space-lg);
  align-items: stretch;
}

.comparison-card {
  flex: 1 1 480px;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.comparison-card.is-basic {
  background-color: #f6f6f6;
}

.comparison-card.is-premium {
  background-color: var(--color-primary);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.comparison-card-title {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.comparison-card-title h3 {
  margin-bottom: 0;
}

.comparison-card.is-premium .comparison-card-title h3 {
  color: var(--color-light);
}

.comparison-badge {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  font-size: 14px;
}

.comparison-badge.is-generic {
  background-color: #ffdad6;
  color: #93000a;
}

.comparison-badge.is-premium {
  background-color: var(--color-light);
  color: var(--color-primary);
  font-weight: 700;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-card.is-premium .comparison-list {
  gap: 18px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.comparison-list li span {
  color: var(--text-body);
}

.comparison-card.is-premium .comparison-list li span {
  color: var(--color-light);
}

.comparison-icon {
  flex-shrink: 0;
  width: 14px;
  /* margin-top: 6px; */
}

.comparison-card.is-premium .comparison-icon {
  width: 20px;
  margin-top: 4px;
}

/* ========== Commitment Section (About page) ========== */

.commitment-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  text-align: center;
}

.commitment-section .section-header {
  margin-bottom: var(--space-lg);
}

.commitment-quote {
  position: relative;
  max-width: 748px;
  margin: 0 auto;
  padding: 0 48px;
}

.commitment-quote p {
  margin-bottom: 0;
}

.quote-mark {
  position: absolute;
  width: 64px;
  height: auto;
  opacity: 0.5;
}

.quote-mark-start {
  top: -32px;
  left: -22px;
  transform: rotate(180deg);
}

.quote-mark-end {
  bottom: -36px;
  right: 80px;
  transform: rotate(180deg);
}

.commitment-signature {
  width: 634px;
  max-width: 100%;
  margin: 0 auto;
}

.commitment-signature img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  background: lightgray 0.87px -462.436px / 100% 745.342% no-repeat;
  mix-blend-mode: hard-light;
}

/* ========== 6-Step Clarity Process Section (About page) ========== */

.clarity-section {
  background-color: var(--color-light-alt);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.clarity-section .section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.clarity-section .section-header p {
  max-width: 672px;
  margin: 0 auto;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--color-light);
  border-radius: 32px;
  padding: 33px;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(253, 164, 97, 0.1);
  margin-bottom: var(--space-sm);
}

.step-icon img {
  max-width: 20px;
  max-height: 20px;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: var(--space-xs);
}

.step-card p {
  font-size: 14px;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

/* ========== Insurance Service Page ========== */

.insurance-hero-section {
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background-image: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.hero-pill {
  background: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.insurance-hero-heading {
  color: var(--color-light);
  font-size: clamp(32px, 4vw + 12px, 48px);
  max-width: 700px;
}

.insurance-hero-desc {
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
}

.mini-trust-card {
  border-radius: var(--radius-sm);
  text-align: left;
}

.mini-trust-icon {
  width: 28px;
  height: auto;
  flex-shrink: 0;
  color: var(--color-primary);
  object-fit: cover;
  object-position: left center;
}

.mini-trust-card strong {
  display: block;
  font-size: 14px;
  color: var(--text-heading);
}

.mini-trust-card span {
  font-size: 12px;
  color: var(--text-body);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: var(--color-light);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(220, 38, 38, 0.08);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.why-us-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  background-color: var(--color-light-alt);
}

.why-us-section .step-card {
  position: relative;
  overflow: hidden;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.why-us-section .step-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.06);
  filter: blur(40px);
}

.why-us-section .step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(220, 38, 38, 0.15);
}

.why-us-section .step-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.16);
  transition: var(--transition-base);
}

.why-us-section .step-card:hover .step-icon {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.why-us-section .step-icon-glyph {
  width: 22px;
  height: 22px;
  background-color: var(--color-primary);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: var(--transition-base);
}

.why-us-section .step-card:hover .step-icon-glyph {
  background-color: var(--color-light);
}

.why-us-section .step-card h3 {
  position: relative;
  z-index: 1;
  font-size: 18px;
}

.why-us-section .step-card p {
  position: relative;
  z-index: 1;
  opacity: 0.75;
}

.insurance-detail-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

#health-insurance {
  position: relative;
  overflow: hidden;
}

#health-insurance::before,
#health-insurance::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.06);
  filter: blur(60px);
  z-index: 0;
}

#health-insurance::before {
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
}

#health-insurance::after {
  bottom: -100px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(220, 38, 38, 0.04);
}

#health-insurance>.container {
  position: relative;
  z-index: 1;
}

.detail-section-pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.16);
}

.detail-heading-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background-image: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.03) 100%);
  border: 1px solid rgba(220, 38, 38, 0.14);
}

.detail-heading-icon-badge .detail-heading-icon {
  width: 28px;
  height: 28px;
}

.detail-heading-icon {
  width: 36px;
  height: 36px;
  object-fit: cover;
  object-position: left center;
}

.detail-desc {
  max-width: 560px;
}

.health-panel-wrap {
  /* border-radius: var(--radius-lg); */
  overflow: hidden;
  /* box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12); */
}

.health-panel-dark {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(150deg, var(--color-secondary) 0%, #2a2d2d 100%);
  padding: 40px 40px;
  border-radius: 32px;
}

.health-panel-dark::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.3);
  filter: blur(60px);
}

.health-panel-dark>* {
  position: relative;
  z-index: 1;
}

.health-panel-dark h2 {
  color: var(--color-light);
  margin-bottom: var(--space-sm);
}

.health-panel-dark p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
}

.health-panel-cta {
  align-self: flex-start;
  margin-bottom: var(--space-md);
}

.detail-section-pill-dark {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-light);
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.health-panel-stat {
  margin-top: auto;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number-lg {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-light);
  margin-bottom: 4px;
}

.stat-label-light {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.health-panel-light {
  /* background: var(--color-light); */
  padding: 40px 40px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.16);
  transition: var(--transition-base);
}

.feature-item:hover .feature-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.feature-icon-glyph {
  width: 18px;
  height: 18px;
  background-color: var(--color-primary);
  -webkit-mask-image: url("../images/icons/icon-check-circle.svg");
  mask-image: url("../images/icons/icon-check-circle.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: var(--transition-base);
}

.feature-item:hover .feature-icon-glyph {
  background-color: var(--color-light);
}

.feature-item h4 {
  font-size: 18px;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.75;
}

.benefit-box {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}

.benefit-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(30px);
}

.benefit-box h4 {
  color: var(--color-light);
  font-size: 24px;
  margin-bottom: var(--space-sm);
}

.benefit-list li span {
  color: var(--color-light);
  font-size: 14px;
}

.benefit-icon {
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-media {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.detail-link-note {
  margin-top: var(--space-md);
  font-size: 14px;
  color: var(--text-body);
  background: var(--color-light-alt);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}

.detail-link-note a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-primary);
  font-weight: 700;
}

.detail-link-note a img {
  width: 12px;
  height: 12px;
}

.choose-plan-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.choose-plan-section .section-header {
  margin-bottom: var(--space-xl);
}

.choose-plan-section .section-header p {
  max-width: 560px;
  margin: var(--space-sm) auto 0;
}

.numbered-step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-image: linear-gradient(93deg, var(--color-primary) 18%, var(--color-primary-dark) 91%);
  color: var(--color-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: var(--space-sm);
}

.numbered-step-circle img {
  filter: invert(10)brightness(15);
}

.numbered-step h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.numbered-step p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.75;
}

.final-cta-panel {
  text-align: center;
}

.final-cta-panel h2 {
  color: var(--color-light);
}

.eyebrow-light {
  display: inline-block;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-sm);
}

.final-cta-desc {
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
  margin: 0 auto var(--space-lg);
}

.cta-mini-badge strong {
  display: block;
  color: var(--color-light);
  font-size: 15px;
}

.cta-mini-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.advisor-note-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  text-align: center;
}

.advisor-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-sm);
}

.advisor-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-heading);
}

.advisor-role {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: var(--space-md);
}

.tag-pill {
  background: var(--color-light-alt);
  color: var(--color-primary);
}

.advisor-disclaimer {
  max-width: 640px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-body);
  opacity: 0.7;
}


/* ========== Mutual Funds Section ========== */

.mf-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  background: #ffffff;
  position: relative;
}

.mf-section::before,
.mf-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.06);
  filter: blur(60px);
  z-index: 0;
}

.mf-section::before {
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
}

.mf-section::after {
  bottom: -100px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(220, 38, 38, 0.04);
}

.mf-description {
  font-size: 16px;
  margin-bottom: 0px;
}

.mf-feature {
  padding: 32px;
  height: 100%;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 32px;
  transition: .3s ease;
}

.mf-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(220, 38, 38, 0.15);
}

.mf-feature-icon {
  color: var(--color-primary);
  font-size: 32px;
  line-height: normal;
  margin-bottom: 16px;
  /* background: linear-gradient(93deg, var(--color-primary) 18%, var(--color-primary-dark) 91%); */
}

.mf-feature h4 {
  font-size: 18px;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.mf-feature p {
  margin: 0;
  font-size: 14px;
  opacity: .75;
}

/* ========== Contact Page ========== */
.contact-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--color-light-alt);
}

.badge-pill {
  /* background-color: rgba(220, 38, 38, 0.08); */
  border: 1px solid rgba(220, 38, 38, 0.16);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.headline {
  font-size: 48px;
}

.lede {
  color: var(--muted);
  font-size: 16px;
  max-width: 420px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 26px;
}

.info-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  background-color: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.info-label {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.info-value {
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
}

.info-value a{
  color: var(--ink);
}

.form-card {
  background: #fff;
  border: 1px solid rgba(220, 38, 38, 0.16);
  border-radius: 32px;
  padding: 36px;
  /* box-shadow: 0 20px 60px -30px rgba(76, 47, 214, .25); */
}

.form-label {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-label .req {
  color: var(--violet);
}

.form-control,
.form-select {
  border: 1px solid rgba(220, 38, 38, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  background: #fdfcff;
}

.form-control::placeholder {
  color: #b3aec4;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(108, 75, 244, .12);
  background: #fff;
}

.phone-group {
  display: flex;
  gap: 0;
}

.phone-code {
  border: 1px solid var(--line);
  border-right: none;
  border-radius: 12px 0 0 12px;
  background: #fdfcff;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  color: var(--ink);
  font-weight: 600;
}

.phone-group .form-control {
  border-radius: 0 12px 12px 0;
}

textarea.form-control {
  resize: none;
  min-height: 120px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px 34px;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 14px 30px -12px rgba(76, 47, 214, .55);
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-submit:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(76, 47, 214, .6);
}

.section-header.content{
  max-width: 960px;
}
.quotation-form{
  padding: 24px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.quotation-form h3{
  font-size: 24px;
}
.quotation-form p{
  font-size: 14px;
}

.content-section{
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  /* background: var(--color-light-alt); */
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.content-box{
  padding: 36px;
  border-radius: 32px;
  background: var(--color-light-alt);
}
.content-box h3{
  font-size: 48px;
}
.content-box p:last-child{
  margin-bottom: 0;
}

/* ========== Blog Article Detail ========== */

.article-title {
  font-size: 48px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-lg);
  color: var(--text-body);
  font-size: 14px;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-meta-item i {
  color: var(--color-primary);
}

.article-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.article-cover {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.article-content h2 {
  margin-top: var(--space-md);
  font-size: 32px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  font-size: 20px;
  margin-bottom: var(--space-xs);
}

.article-content ul {
  margin: 0 0 var(--space-sm);
  padding-left: 20px;
}

.article-content li {
  margin-bottom: 8px;
}

.mistake-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.mistake-item:last-of-type {
  border-bottom: none;
}

.mistake-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(93deg, var(--color-primary) 18%, var(--color-primary-dark) 91%);
  color: var(--color-light);
  font-weight: 700;
  font-size: 16px;
}

.mistake-item h3 {
  margin-bottom: 6px;
}

.mistake-item p:last-child {
  margin-bottom: 0;
}

.article-table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.article-table {
  margin-bottom: 0;
}

.article-table th,
.article-table td {
  padding: 14px 16px;
  vertical-align: middle;
  font-size: 14px;
}

.article-table thead th {
  background: var(--color-light-alt);
  font-weight: 700;
  color: var(--text-heading);
  border-bottom: 2px solid var(--color-border);
}

.article-table tbody th {
  font-weight: 600;
  color: var(--text-heading);
  background: var(--color-light-alt);
}

.icon-yes {
  color: #16a34a;
}

.icon-no {
  color: var(--color-muted);
}

.callout-box {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.16);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.callout-icon {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--color-primary);
  margin-top: 2px;
}

.callout-box p:last-child,
.callout-box ul {
  margin-bottom: 0;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-light-alt);
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
}

.article-share a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.article-share a img {
  width: 18px;
  height: 18px;
}

.article-share a:hover img {
  filter: brightness(0) invert(1);
}

/* ========== Footer ========== */

.site-footer {
  background-color: var(--color-dark);
  color: var(--color-muted);
}

.footer-main {
  padding: 48px 0px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.footer-tagline {
  color: #6a7282;
  margin-bottom: var(--space-md);
}

.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(74, 85, 101, 0.25);
  border-radius: var(--radius-pill);
  padding: 16px 22px;
  margin-bottom: var(--space-lg);
}

.footer-rating .google-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.footer-rating .rating-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 4px;
}

.footer-rating .rating-stars img {
  width: 16px;
  height: 16px;
}

.footer-rating .rating-text {
  font-size: 14px;
  color: #99a1af;
}

.footer-follow-label,
.footer-col-label {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a5565;
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: 11px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(153, 161, 175, 0.15);
}

.footer-social img {
  width: 22px;
  height: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  color: #99a1af;
  font-size: 16px;
}

.footer-links a:hover {
  color: var(--color-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(153, 161, 175, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 19px;
  height: 19px;
}

.contact-label {
  display: block;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4a5565;
  margin-bottom: 2px;
}

.contact-value,
.contact-value a {
  font-size: 18px;
  color: #99a1af;
}

.contact-value a:hover {
  color: var(--color-light);
}

.footer-hours-row+.footer-hours-row {
  margin-top: 14px;
}

.footer-bottom {
  background-color: var(--color-border);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: 18px 0;
}

.footer-bottom-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.footer-bottom-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-body);
}

.footer-copy {
  font-size: 14px;
  color: var(--text-body);
  opacity: 0.8;
}

.footer-copy a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-copy a:hover {
  color: var(--color-primary);
}