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

:root {
  --primary: #1e6b5c;
  --primary-dark: #145248;
  --accent: #e07a5f;
  --accent-hover: #c9684f;
  --cream: #faf8f5;
  --cream-dark: #f5f0e8;
  --mint: #e8f5f0;
  --mint-dark: #d4ebe3;
  --text-dark: #2d3748;
  --text-medium: #4a5568;
  --text-light: #718096;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--cream);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.nav {
  background: var(--primary-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
  font-family: inherit;
}

.nav-dropdown-btn:hover {
  opacity: 1;
}

.nav-dropdown-btn svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-btn svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: background 0.2s;
}

.nav-dropdown-menu a:hover {
  background: var(--mint);
  color: var(--primary);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  opacity: 1 !important;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--accent-hover);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

.mobile-menu {
  display: none;
  background: var(--primary-dark);
  padding: 20px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu .mobile-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 25px;
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
  border-bottom: none;
}

.mobile-dropdown {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.mobile-dropdown-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.mobile-dropdown.active .mobile-dropdown-btn svg {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 15px;
}

.mobile-dropdown.active .mobile-dropdown-content {
  max-height: 300px;
}

.mobile-dropdown-content a {
  padding: 10px 0;
  font-size: 0.95rem;
  opacity: 0.85;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-dropdown-content a:last-child {
  border-bottom: none;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 15px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999;
  gap: 10px;
}

.mobile-bottom-bar a {
  flex: 1;
  padding: 14px 10px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.2s;
}

.mobile-bottom-bar .btn-find {
  background: var(--primary);
  color: var(--white);
}

.mobile-bottom-bar .btn-consult {
  background: var(--accent);
  color: var(--white);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--mint) 50%, var(--cream-dark) 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(224, 122, 95, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--primary);
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-search {
  background: var(--white);
  padding: 8px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  display: flex;
  max-width: 480px;
}

.hero-search input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  background: transparent;
  outline: none;
}

.hero-search button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.95rem;
}

.hero-search button:hover {
  background: var(--accent-hover);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--text-medium);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 15px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  width: 45px;
  height: 45px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.hero-badge-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.hero-badge-text span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Media Logos */
.media-logos {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.media-logos-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.media-logos span {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.media-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.5;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-header h2 span {
  color: var(--primary);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.service-card-content {
  padding: 25px;
}

.service-card-content h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.service-card-content p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}

.service-card-link:hover {
  gap: 12px;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  background: var(--cream);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.step {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), #f4a261);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
}

.step h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.steps-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--mint) 0%, var(--cream) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #fbbf24;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.testimonial-author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-author-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Why Choose Us */
.why-choose {
  padding: 80px 0;
  background: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-choose-image {
  position: relative;
}

.why-choose-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.why-choose-content h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.why-choose-content h2 span {
  color: var(--primary);
}

.why-choose-content > p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 30px;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.benefit-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.benefit-text span {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* CTA Banner */
.cta-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--mint-dark) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-banner-text h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.cta-banner-text p {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 25px;
}

.cta-banner-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: var(--cream);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-question span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--text-medium);
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--accent);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-bottom-links a:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-bottom-bar {
    display: flex;
  }

  body {
    padding-bottom: 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    margin: 0 auto 30px;
  }

  .hero-search {
    margin: 0 auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-badge {
    bottom: auto;
    top: -20px;
    left: auto;
    right: -10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .steps-container {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 50px auto 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 50px auto 0;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-image {
    order: -1;
  }

  .cta-banner-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-banner-image {
    order: -1;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .hero-search {
    flex-direction: column;
    border-radius: var(--radius);
    padding: 15px;
  }

  .hero-search input {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 10px;
  }

  .hero-search button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    font-size: 1.1rem;
  }
}

/* ============================================
   PAGE-SPECIFIC STYLES (Unique to other pages)
   ============================================ */

/* Breadcrumb */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
  padding: 15px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--primary);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  color: var(--text-light);
}
.breadcrumb .current {
  color: var(--text-medium);
}

/* State/Province Hero */
.state-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.state-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.state-hero .container {
  position: relative;
  z-index: 1;
}
.state-hero .hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  max-width: none;
}
.state-hero .hero-text {
  flex: 1;
  color: var(--white);
}
.state-hero h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 15px;
}
.state-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin-bottom: 0;
  line-height: 1.7;
}
.state-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}
.state-hero .hero-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.state-hero .hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}
.state-hero .hero-stat {
  text-align: center;
}
.state-hero .hero-stat .number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--white);
}
.state-hero .hero-stat .label {
  font-size: 0.85rem;
  opacity: 0.8;
  color: var(--white);
}
.hero-map {
  width: 200px;
  flex-shrink: 0;
}
.hero-map svg {
  width: 100%;
  height: auto;
}

/* Cities Section */
.cities-section {
  padding: 60px 0;
  background: var(--cream);
}
.cities-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.cities-header h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.city-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: block;
}
.city-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.city-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}
.city-card p {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin: 0;
}

/* Provider Card */
.providers-section {
  padding: 60px 0;
}
.providers-section h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 30px;
}
.providers-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.provider-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  transition: all 0.3s ease;
}
.provider-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.provider-card.featured {
  border: 2px solid #f59e0b;
  position: relative;
}
.provider-card.featured::before {
  content: 'Featured';
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #78350f;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
}
.provider-image {
  width: 200px;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.provider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.provider-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.provider-info h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.provider-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 10px;
}
.provider-location svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}
.provider-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.provider-badges .badge {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.provider-badges .badge.primary {
  background: var(--mint);
  color: var(--primary);
}
.provider-badges .badge.gold {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #78350f;
}
.provider-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.provider-rating .stars {
  display: flex;
  gap: 2px;
}
.provider-rating .stars svg {
  width: 16px;
  height: 16px;
  fill: #f59e0b;
}
.provider-rating span {
  font-size: 0.85rem;
  color: var(--text-medium);
}
.provider-actions {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-left: 1px solid #e2e8f0;
}

/* Blog/Article Cards */
.articles-section {
  padding: 60px 0;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.article-image {
  height: 200px;
  overflow: hidden;
}
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.article-card:hover .article-image img {
  transform: scale(1.05);
}
.article-card-content {
  padding: 25px;
}
.article-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.article-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.article-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 15px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Article Layout (Blog Article Page) */
.article-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
  padding: 60px 0;
}

/* Service Page Layout (Full Width) */
.service-content-layout {
  padding: 60px 0;
  background: var(--white);
}
.service-content-layout .container {
  max-width: 1000px;
}
.service-content {
  max-width: 100%;
}
.service-content .content-section {
  margin-bottom: 50px;
}
.service-content .content-section:last-child {
  margin-bottom: 0;
}
.service-content h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 25px;
}
.service-content h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin: 30px 0 15px;
}
.service-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 20px;
}
.service-content .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dark);
}
.service-content ul, .service-content ol {
  margin: 20px 0;
  padding-left: 25px;
}
.service-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 10px;
}

/* Internal Links Styling */
.service-content a:not(.btn):not(.cta-btn):not(.related-card) {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(30, 107, 92, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}
.service-content a:not(.btn):not(.cta-btn):not(.related-card):hover {
  text-decoration-color: var(--primary);
}

/* Service Navigation Box */
.service-nav-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 25px 30px;
  margin: 0 0 40px;
}
.service-nav-box h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.service-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.service-nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: all 0.2s;
  text-decoration: none !important;
}
.service-nav-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--mint);
}
.service-nav-links a.active,
.service-nav-links a.active:hover {
  background: var(--primary) !important;
  color: #ffffff !important;
  border-color: var(--primary) !important;
}
.service-nav-links a.active svg,
.service-nav-links a.active:hover svg {
  fill: #ffffff !important;
}
.service-nav-links a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Cross-Service Links Box */
.cross-service-box {
  background: linear-gradient(135deg, var(--mint) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 40px 0;
}
.cross-service-box h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.cross-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.cross-service-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--white);
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: all 0.3s;
}
.cross-service-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.cross-service-link .icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cross-service-link .icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}
.cross-service-link .text {
  flex: 1;
}
.cross-service-link .text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.cross-service-link .text span {
  font-size: 0.8rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .cross-service-grid {
    grid-template-columns: 1fr;
  }
  .service-nav-links {
    flex-direction: column;
  }
  .service-nav-links a {
    justify-content: center;
  }
}

/* Process Steps (Evaluation Process, etc.) */
.process-steps {
  max-width: 700px;
  margin: 30px 0;
}
.process-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #e2e8f0;
  align-items: start;
}
.process-step:last-child {
  border-bottom: none;
}
.process-step .step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.process-step .step-content {
  padding-top: 8px;
}
.process-step .step-content h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
}
.process-step .step-content p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}
.process-step .step-content ul {
  margin: 10px 0 0;
  padding-left: 20px;
}
.process-step .step-content li {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 5px;
}
.toc-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}
.toc-sidebar h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.toc-sidebar ul {
  list-style: none;
}
.toc-sidebar li {
  margin-bottom: 12px;
}
.toc-sidebar a {
  font-size: 0.9rem;
  color: var(--text-medium);
  transition: color 0.2s;
}
.toc-sidebar a:hover,
.toc-sidebar a.active {
  color: var(--primary);
}
.article-content {
  max-width: 800px;
}
.article-content h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin: 50px 0 20px;
  padding-top: 20px;
}
.article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 25px;
}
.article-content ul, .article-content ol {
  margin: 20px 0;
  padding-left: 25px;
}
.article-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 10px;
}

/* Author Box */
.author-box {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  margin-top: 50px;
}
.author-box-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.author-box-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-details h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.author-details .title {
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.author-details p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Provider Profile Page */
.provider-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0;
  position: relative;
}
.provider-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.provider-hero .container {
  position: relative;
  z-index: 1;
}
.provider-hero-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;
}
.provider-hero-main {
  color: var(--white);
}
.provider-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.provider-hero .subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* Consultation Card */
.consultation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.consultation-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 20px;
}
.consultation-card .form-group {
  margin-bottom: 15px;
}
.consultation-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.consultation-card input,
.consultation-card select {
  width: 100%;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
}
.consultation-card input:focus,
.consultation-card select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Find Provider Page */
.locations-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.locations-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.locations-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}
.country-section {
  padding: 50px 0;
}
.country-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.country-header h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
}
.country-flag {
  font-size: 2rem;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.location-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: block;
}
.location-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.location-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.location-card p {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin: 0;
}

/* Responsive - Page Specific */
@media (max-width: 992px) {
  .state-hero .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-map {
    display: none;
  }
  .state-hero h1 {
    font-size: 2.2rem;
  }
  .state-hero .hero-stats {
    justify-content: center;
  }
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .provider-card {
    grid-template-columns: 1fr;
  }
  .provider-image {
    width: 100%;
    height: 200px;
  }
  .provider-actions {
    border-left: none;
    border-top: 1px solid #e2e8f0;
    flex-direction: row;
    justify-content: center;
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .toc-sidebar {
    display: none;
  }
  .provider-hero-grid {
    grid-template-columns: 1fr;
  }
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cities-grid,
  .articles-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .state-hero h1 {
    font-size: 1.8rem;
  }
  .state-hero .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .provider-hero h1 {
    font-size: 1.8rem;
  }
  .locations-hero h1 {
    font-size: 1.8rem;
  }
}

/* ============================================
   SVG SIZE CONSTRAINTS FOR ALL PAGES
   ============================================ */

/* Article Meta Items */
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-medium);
}
.meta-item svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Share Buttons */
.share-buttons {
  display: flex;
  gap: 10px;
}
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.share-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.share-btn:hover svg {
  fill: var(--white);
}
.share-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--text-medium);
}

/* Video Card */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 30px 0;
}
.video-card img {
  width: 100%;
  height: auto;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.play-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
  margin-left: 4px;
}
.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.video-label svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.video-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  opacity: 0.9;
}
.video-duration svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Info Box */
.info-box {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 25px;
  margin: 30px 0;
}
.info-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.info-box-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-box-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}
.info-box-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.info-box ul {
  margin: 0;
  padding-left: 20px;
}
.info-box li {
  margin-bottom: 8px;
  color: var(--text-medium);
}

/* Author Social Links */
.author-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.author-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.author-social a:hover {
  background: var(--primary);
}
.author-social a:hover svg {
  fill: var(--white);
}
.author-social svg {
  width: 18px;
  height: 18px;
  fill: var(--text-medium);
}

/* CTA Banner Button */
.cta-banner .btn,
.cta-banner .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-banner .btn svg,
.cta-banner .btn-primary svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Generic button with SVG */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Article Header */
.article-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0;
  color: var(--white);
}
.article-header-inner {
  max-width: 800px;
}
.article-category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 15px;
}
.article-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.article-excerpt {
  font-size: 1.15rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 25px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-name {
  font-weight: 600;
  font-size: 0.95rem;
}
.author-title {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Featured Image */
.featured-image {
  margin: -30px 0 40px;
  position: relative;
}
.featured-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.featured-image-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* Related Articles */
.related-articles {
  padding: 60px 0;
  background: var(--cream);
}
.related-articles h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 30px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Global SVG fallback */
svg {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .article-title {
    font-size: 1.8rem;
  }
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SERVICE PAGE STYLES (all-on-4, etc.)
   ============================================ */

/* Service Hero */
.service-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.service-hero .container {
  position: relative;
  z-index: 1;
}
.service-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-hero-text {
  color: var(--white);
}
.service-hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.service-hero-text p {
  font-size: 1.15rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 30px;
}
.service-hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: var(--white);
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}
.section-title p {
  font-size: 1.05rem;
  color: var(--text-medium);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.benefit-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.benefit-card .benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.benefit-card .benefit-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--primary);
}
.benefit-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
  padding: 80px 0;
  background: var(--cream);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}
.comparison-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table .check {
  color: var(--primary);
  font-weight: 600;
}
.comparison-table .cross {
  color: #ef4444;
}

/* FAQ Section (service page variant) */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}
.faq-section h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 40px;
}
.faq-section h2 svg {
  width: 36px;
  height: 36px;
  fill: var(--primary);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
}
.cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.cta-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 992px) {
  .service-hero .hero-content {
    grid-template-columns: 1fr;
  }
  .service-hero-image {
    display: none;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .service-hero-text h1 {
    font-size: 2rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FIND A DENTIST PAGE STYLES
   ============================================ */

/* Filters Bar */
.filters-bar {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 60px;
  z-index: 100;
}
.filters-container {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-medium);
}
.filter-group select {
  padding: 10px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  background: var(--white);
  cursor: pointer;
}
.filter-group select:focus {
  outline: none;
  border-color: var(--primary);
}
.search-box {
  flex: 1;
  min-width: 250px;
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
}
.search-box input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,107,92,0.1);
}
.search-box svg {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: var(--text-light);
}

/* Results Header */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-top: 10px;
}
.results-count {
  font-size: 0.95rem;
  color: var(--text-medium);
}
.results-count strong {
  color: var(--text-dark);
}
.sort-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sort-dropdown label {
  font-size: 0.85rem;
  color: var(--text-medium);
}
.sort-dropdown select {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.85rem;
}

/* Badge styles */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.badge.primary {
  background: var(--mint);
  color: var(--primary);
}
.badge.gold {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #78350f;
}

/* Secondary Button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-secondary svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .filters-container {
    flex-direction: column;
  }
  .search-box {
    width: 100%;
  }
  .filter-group {
    width: 100%;
  }
  .filter-group select {
    flex: 1;
  }
}

/* ============================================
   PROVIDER PROFILE PAGE - ADDITIONAL STYLES
   ============================================ */

/* Profile Sections */
.profile-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 25px;
}
.profile-section h2 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e8f0;
}
.profile-section p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* Doctors Grid */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.doctor-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--cream);
  border-radius: var(--radius);
}
.doctor-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.doctor-card h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.doctor-card p {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin: 0;
}

/* Hours List */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}
.hours-item .label {
  color: var(--text-medium);
}
.hours-item .number {
  color: var(--text-dark);
  font-weight: 500;
}

/* Map Placeholder */
.map-placeholder {
  height: 200px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}
.map-placeholder svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

/* Profile Sidebar */
.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.profile-main {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Provider Hero Badge Override */
.provider-hero .badge {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.provider-hero .badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.provider-hero .badge.gold {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #78350f;
}

/* Provider Stats */
.provider-stats {
  display: flex;
  gap: 30px;
  margin: 20px 0;
}
.provider-stat {
  text-align: center;
}
.provider-stat .number {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--white);
}
.provider-stat .label {
  font-size: 0.85rem;
  opacity: 0.8;
  color: var(--white);
}

/* Provider Contact Info */
.provider-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.provider-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.provider-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

/* Form styles for consultation card */
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}
.btn-submit:hover {
  background: var(--accent-hover);
}
.btn-submit svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .doctors-grid {
    grid-template-columns: 1fr;
  }
  .provider-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* ============================================
   FIND PROVIDER PAGE - ADDITIONAL STYLES
   ============================================ */

/* Locations Section */
.locations-section {
  padding: 60px 0;
}
.locations-section.alt {
  background: var(--cream);
}

/* Country Grid */
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.country-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: block;
}
.country-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.country-flag {
  font-size: 3rem;
  margin-bottom: 15px;
}
.country-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.country-stats {
  display: flex;
  gap: 20px;
}
.country-stat {
  text-align: center;
}
.country-stat .count {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}
.country-stat .label {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Location Link */
.location-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.location-link:hover {
  box-shadow: var(--shadow);
  transform: translateX(5px);
}
.location-link:hover svg {
  transform: translateX(3px);
}
.location-link h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0;
}
.location-link p {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin: 3px 0 0;
}
.location-link svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  transition: transform 0.2s;
}

/* Flag emoji fix */
.flag {
  font-size: 1.5rem;
  margin-right: 10px;
}

@media (max-width: 992px) {
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .country-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BLOG ARTICLE - SPACING & IMAGE FIXES
   ============================================ */

/* Author Avatar - class is directly on img */
img.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Author Box Avatar - class is directly on img */
img.author-box-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Author Box Content */
.author-box-content {
  flex: 1;
}
.author-box-content h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}
.author-box-content .title {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.author-box-content p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

/* Force author-social SVG size */
.author-box .author-social {
  margin-top: 15px;
}
.author-box .author-social a {
  width: 36px;
  height: 36px;
  min-width: 36px;
  max-width: 36px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.author-box .author-social a svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  fill: var(--text-medium);
}

/* Video Card Fixes */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 30px 0;
  cursor: pointer;
}
.video-card img {
  width: 100%;
  height: auto;
  display: block;
}
.video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  max-width: 70px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card .play-btn svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  fill: var(--white);
  margin-left: 4px;
}
.video-card .video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-card .video-label,
.video-card .video-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.9rem;
}
.video-card .video-label svg,
.video-card .video-duration svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  fill: currentColor;
}

/* Related Section */
.related-section {
  padding: 60px 0;
  background: var(--cream);
}
.related-header {
  text-align: center;
  margin-bottom: 40px;
}
.related-header h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.related-header p {
  font-size: 1rem;
  color: var(--text-medium);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.related-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: block;
}
.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.related-card-image {
  height: 180px;
  overflow: hidden;
}
.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.related-card:hover .related-card-image img {
  transform: scale(1.05);
}
.related-card-content {
  padding: 20px;
}
.related-card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.related-card-content h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.related-card-content h3 a {
  color: inherit;
}
.related-card-meta {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Article Content Spacing */
.article-layout {
  padding: 60px 0;
}
.article-content {
  max-width: 800px;
}
.article-content h2 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin: 40px 0 20px;
}
.article-content h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin: 30px 0 15px;
}
.article-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 20px;
}
.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 25px;
}
.article-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 10px;
}

/* Info Box Spacing */
.info-box {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 25px;
  margin: 30px 0;
}
.info-box-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.info-box-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-box-icon svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  fill: var(--white);
}
.info-box-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}
.info-box-content {
  margin-left: 60px;
}
.info-box ul {
  margin: 0;
  padding-left: 20px;
}
.info-box li {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Share Buttons Fix */
.share-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.share-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.share-btn svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  fill: var(--text-medium);
}

/* Global SVG constraints */
article svg,
.article-content svg,
.author-box svg {
  max-width: 24px;
  max-height: 24px;
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  .author-box .author-social {
    justify-content: center;
  }
  img.author-box-avatar {
    margin: 0 auto;
  }
}

/* ============================================
   GLOBAL SVG SAFETY NET
   ============================================ */

/* Ensure all SVGs in content areas are constrained */
.article-content svg:not(.logo-icon svg),
.profile-section svg,
.provider-info svg,
section svg:not(.hero svg):not(.logo-icon svg) {
  max-width: 40px;
  max-height: 40px;
}

/* Links with SVG icons */
a svg,
button svg {
  flex-shrink: 0;
}

/* Ensure footer social icons are sized */
.footer-social a svg {
  width: 20px;
  height: 20px;
}

/* Contact items in footer */
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   COMPREHENSIVE FIXES - Dec 26
   ============================================ */

/* ==================== VIDEO CARD FIX ==================== */
.video-card {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 30px 0;
  cursor: pointer;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  align-items: center;
}
.video-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(255,255,255,0.1), transparent);
}
.video-card .play-btn {
  position: relative;
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  z-index: 1;
}
.video-card:hover .play-btn {
  transform: scale(1.1);
}
.video-card .play-btn svg {
  width: 32px !important;
  height: 32px !important;
  fill: var(--white);
  margin-left: 5px;
}
.video-card .video-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.video-card .video-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  margin-bottom: 8px;
}
.video-card .video-label svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor;
}
.video-card .video-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
}
.video-card .video-description {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0 0 12px;
  line-height: 1.5;
}
.video-card .video-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  opacity: 0.8;
}
.video-card .video-duration svg {
  width: 14px !important;
  height: 14px !important;
  fill: currentColor;
}

/* ==================== CTA BANNER FIX ==================== */
.cta-banner {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 40px 0;
  text-align: center;
}
.cta-banner h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
}
.cta-banner .btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.cta-banner .btn svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor;
}

/* ==================== PROVIDER CARD FIX ==================== */
.provider-card {
  display: grid;
  grid-template-columns: 200px 1fr 180px;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.provider-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.provider-card.featured {
  border: 2px solid #f59e0b;
  position: relative;
}
.provider-card.featured::before {
  content: 'FEATURED';
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #78350f;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 10;
}
.provider-card .provider-image {
  width: 200px;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.provider-card .provider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.provider-card .provider-rank {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.provider-card .provider-content {
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.provider-card .provider-name {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin: 0 0 5px;
}
.provider-card .provider-doctors {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin: 0 0 10px;
}
.provider-card .provider-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.provider-card .provider-rating .stars {
  display: flex;
  gap: 2px;
}
.provider-card .provider-rating .stars svg {
  width: 16px !important;
  height: 16px !important;
  fill: #f59e0b;
}
.provider-card .rating-text {
  font-size: 0.9rem;
  color: var(--text-medium);
}
.provider-card .provider-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.provider-card .provider-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: var(--cream);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
}
.provider-card .provider-badges .badge svg {
  width: 14px !important;
  height: 14px !important;
  fill: var(--primary);
}
.provider-card .provider-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-medium);
}
.provider-card .provider-location svg {
  width: 16px !important;
  height: 16px !important;
  fill: var(--primary);
}
.provider-card .provider-actions {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-left: 1px solid #e2e8f0;
  background: var(--cream);
}
.provider-card .provider-actions .btn-primary,
.provider-card .provider-actions .btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.provider-card .provider-actions .btn-primary {
  background: var(--accent);
  color: var(--white);
  border: none;
}
.provider-card .provider-actions .btn-primary:hover {
  background: var(--accent-hover);
}
.provider-card .provider-actions .btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.provider-card .provider-actions .btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}
.provider-card .provider-actions .btn-primary svg,
.provider-card .provider-actions .btn-secondary svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor;
}

/* ==================== STATE HERO BADGE FIX ==================== */
.state-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.state-hero .hero-badge svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor;
}
.state-hero .hero-text {
  color: var(--white);
}
.state-hero .hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}
.state-hero .hero-stat {
  text-align: left;
}
.state-hero .hero-stat .number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  line-height: 1;
}
.state-hero .hero-stat .label {
  font-size: 0.85rem;
  opacity: 0.8;
  color: var(--white);
  margin-top: 5px;
}

/* ==================== RESULTS HEADER ==================== */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px 0;
}

/* ==================== VIDEO MODAL ==================== */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.video-modal.active {
  display: flex;
}
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
}
.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}
.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
}
.video-modal-close:hover {
  color: var(--accent);
}

/* ==================== RESPONSIVE FIXES ==================== */
@media (max-width: 992px) {
  .provider-card {
    grid-template-columns: 1fr;
  }
  .provider-card .provider-image {
    width: 100%;
    height: 200px;
  }
  .provider-card .provider-actions {
    border-left: none;
    border-top: 1px solid #e2e8f0;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .video-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .video-card .play-btn {
    margin: 0 auto 20px;
  }
}

@media (max-width: 576px) {
  .state-hero .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .provider-card .provider-actions {
    flex-direction: column;
  }
}

/* ============================================
   FINAL FIXES - Video Card & Related Articles
   ============================================ */

/* VIDEO CARD - Complete Override */
.video-card {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 30px 0;
  cursor: pointer;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  gap: 25px;
}
.video-card * {
  color: var(--white) !important;
}
.video-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}
.video-card .play-btn {
  position: relative;
  width: 80px;
  height: 80px;
  min-width: 80px;
  max-width: 80px;
  background: var(--accent) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  z-index: 1;
}
.video-card:hover .play-btn {
  background: var(--accent-hover) !important;
  box-shadow: 0 0 0 8px rgba(224, 122, 95, 0.3);
  /* NO transform - prevents movement */
}
.video-card .play-btn svg {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px;
  fill: var(--white) !important;
  margin-left: 5px;
}
.video-card .video-content {
  position: relative;
  z-index: 1;
  flex: 1;
}
.video-card .video-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 10px;
  color: var(--white) !important;
}
.video-card .video-label svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor !important;
}
.video-card .video-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
  color: var(--white) !important;
}
.video-card .video-description {
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 0 0 15px;
  line-height: 1.6;
  color: var(--white) !important;
}
.video-card .video-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  opacity: 0.8;
  color: var(--white) !important;
}
.video-card .video-duration svg {
  width: 14px !important;
  height: 14px !important;
  fill: currentColor !important;
}

/* RELATED ARTICLES - Complete Override */
.related-section {
  padding: 70px 0;
  background: var(--cream);
}
.related-header {
  text-align: center;
  margin-bottom: 50px;
}
.related-header h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.related-header p {
  font-size: 1.05rem;
  color: var(--text-medium);
}
.related-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
}
.related-card {
  display: flex !important;
  flex-direction: column !important;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.related-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.related-card:hover .related-card-image img {
  transform: scale(1.05);
}
.related-card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-card-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.related-card-content h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin: 0 0 12px;
  line-height: 1.4;
  flex: 1;
}
.related-card-content h3 a {
  color: inherit;
  text-decoration: none;
}
.related-card-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .video-card {
    flex-direction: column !important;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .related-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   HERO SECTION FIXES - Dec 30
   ============================================ */

/* STATE HERO - Badge Fix */
.state-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  width: fit-content;
}
.state-hero .hero-badge svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor;
}

/* STATE HERO - Stats Fix */
.state-hero .hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}
.state-hero .hero-stat {
  text-align: left;
}
.state-hero .hero-stat .number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  line-height: 1;
  display: block;
}
.state-hero .hero-stat .label {
  font-size: 0.85rem;
  opacity: 0.8;
  color: var(--white);
  margin-top: 5px;
  display: block;
}

/* STATE HERO - Map */
.state-hero .hero-map {
  flex-shrink: 0;
  width: 200px;
  opacity: 0.6;
}
.state-hero .hero-map svg {
  width: 100%;
  height: auto;
}

/* SERVICE HERO - Button Fix */
.service-hero .btn-primary,
.service-hero-text .btn-primary {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  width: fit-content;
}
.service-hero .btn-primary:hover,
.service-hero-text .btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.service-hero .btn-primary svg,
.service-hero-text .btn-primary svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor;
}

/* SERVICE HERO - Image Fix */
.service-hero-image {
  position: relative;
}
.service-hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ARTICLE HEADER - Author Avatar Fix */
.article-header .author-avatar,
.article-meta .author-avatar,
img.author-avatar {
  width: 45px !important;
  height: 45px !important;
  min-width: 45px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

/* ARTICLE HEADER - Author Info Fix */
.article-header .author-info,
.article-meta .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-header .author-details,
.article-meta .author-details {
  display: flex;
  flex-direction: column;
}
.article-header .author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}
.article-header .author-title {
  font-size: 0.8rem;
  opacity: 0.8;
  color: var(--white);
}

/* ARTICLE HEADER - Meta Items Fix */
.article-header .meta-item,
.article-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0.9;
}
.article-header .meta-item svg,
.article-meta .meta-item svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor;
  opacity: 0.8;
}

/* ARTICLE HEADER - Layout Fix */
.article-header .article-meta {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* General btn-primary with SVG fix */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.btn-primary svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .service-hero .hero-content {
    grid-template-columns: 1fr;
  }
  .service-hero-image {
    display: none;
  }
  .state-hero .hero-map {
    display: none;
  }
}

@media (max-width: 768px) {
  .state-hero .hero-stats {
    flex-wrap: wrap;
    gap: 25px;
  }
  .article-header .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* ============================================
   HERO SECTION COMPLETE FIXES
   ============================================ */

/* STATE HERO - Complete Override */
.state-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.state-hero .container {
  position: relative;
  z-index: 1;
}
.state-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 40px;
  align-items: center;
}
.state-hero .hero-text {
  color: var(--white);
}
.state-hero .hero-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-size: 0.85rem !important;
  margin-bottom: 20px !important;
  width: fit-content !important;
  position: static !important;
  transform: none !important;
}
.state-hero .hero-badge svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor !important;
}
.state-hero h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 15px;
}
.state-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin-bottom: 30px;
  color: var(--white);
}
.state-hero .hero-stats {
  display: flex !important;
  gap: 40px !important;
  margin-top: 30px !important;
}
.state-hero .hero-stat {
  text-align: left;
}
.state-hero .hero-stat .number {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  font-family: 'Playfair Display', serif;
  color: var(--white) !important;
  line-height: 1 !important;
  display: block !important;
}
.state-hero .hero-stat .label {
  font-size: 0.85rem !important;
  opacity: 0.8 !important;
  color: var(--white) !important;
  margin-top: 5px !important;
  display: block !important;
}
.state-hero .hero-map {
  width: 200px;
  opacity: 0.5;
}
.state-hero .hero-map svg {
  width: 100%;
  height: auto;
}

/* SERVICE HERO - Complete Override */
.service-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.service-hero .container {
  position: relative;
  z-index: 1;
}
.service-hero .hero-content {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: center !important;
}
.service-hero-text {
  color: var(--white);
}
.service-hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--white);
}
.service-hero-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--white);
}
.service-hero-text .btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 14px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  width: auto !important;
  height: auto !important;
  max-width: none !important;
}
.service-hero-text .btn-primary svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  fill: currentColor !important;
  flex-shrink: 0 !important;
}
.service-hero-image {
  position: relative;
}
.service-hero-image img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
  display: block !important;
}

/* ARTICLE HEADER - Complete Override */
.article-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0;
  position: relative;
}
.article-header .container {
  position: relative;
  z-index: 1;
}
.article-header-inner {
  max-width: 800px;
}
.article-header .article-category {
  display: inline-block;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.article-header .article-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.article-header .article-excerpt {
  font-size: 1.15rem;
  color: var(--white);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 25px;
}
.article-header .article-meta {
  display: flex !important;
  align-items: center !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
}
.article-header .author-info {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.article-header .author-avatar,
.article-header img.author-avatar {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  flex-shrink: 0 !important;
}
.article-header .author-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}
.article-header .author-name {
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  color: var(--white) !important;
}
.article-header .author-title {
  font-size: 0.8rem !important;
  color: var(--white) !important;
  opacity: 0.8 !important;
}
.article-header .meta-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.9rem !important;
  color: var(--white) !important;
  opacity: 1 !important;
}
.article-header .meta-item svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  fill: currentColor !important;
}

/* Responsive */
@media (max-width: 992px) {
  .service-hero .hero-content {
    grid-template-columns: 1fr !important;
  }
  .service-hero-image {
    display: none !important;
  }
  .state-hero .hero-content {
    grid-template-columns: 1fr !important;
  }
  .state-hero .hero-map {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .state-hero .hero-stats {
    gap: 25px !important;
  }
  .state-hero .hero-stat .number {
    font-size: 2rem !important;
  }
  .article-header .article-meta {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
  }
  .article-header .article-title {
    font-size: 1.8rem;
  }
}

/* ============================================
   VIDEO CARD PLAY BUTTON FIX
   ============================================ */

/* Play button - 80% of original size (80px -> 64px) */
.video-card .play-btn {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  max-width: 64px !important;
  background: var(--accent) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: box-shadow 0.3s ease, background 0.3s ease !important;
  /* No transform in base state */
}

/* Hover - ONLY glow, NO movement */
.video-card:hover .play-btn {
  background: var(--accent-hover) !important;
  box-shadow: 0 0 0 8px rgba(224, 122, 95, 0.3) !important;
  transform: none !important; /* Explicitly prevent any movement */
}

.video-card .play-btn svg {
  width: 26px !important;
  height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  fill: var(--white) !important;
  margin-left: 4px !important;
}

/* ============================================
   VIDEO CARD LAYOUT FIX
   ============================================ */

.video-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 25px !important;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  border-radius: var(--radius-lg) !important;
  padding: 30px !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
}

.video-card .play-btn {
  position: relative !important;
  order: 0 !important;
  flex-shrink: 0 !important;
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  background: var(--accent) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: box-shadow 0.3s ease, background 0.3s ease !important;
}

.video-card .video-content {
  order: 1 !important;
  flex: 1 !important;
  text-align: left !important;
}

/* Ensure no absolute positioning on play button */
.video-card:hover .play-btn {
  position: relative !important;
  transform: none !important;
  box-shadow: 0 0 0 8px rgba(224, 122, 95, 0.3) !important;
  background: var(--accent-hover) !important;
}

/* ============================================
   FIND DENTISTS BUTTON FIX
   ============================================ */

.btn-find,
button.btn-find {
  background: var(--accent) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 14px 28px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: background 0.3s, transform 0.2s !important;
  font-family: 'Inter', sans-serif !important;
}

.btn-find:hover,
button.btn-find:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-2px) !important;
}

/* Hero search button specific */
.hero-search .btn-find {
  border-radius: 0 8px 8px 0 !important;
  padding: 14px 24px !important;
}

/* ============================================
   SERVICE PAGE - ADDITIONAL RESPONSIVE STYLES
   ============================================ */

/* Benefits 4-column grid */
.benefits-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Cost section grid */
.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 40px auto 0;
}

/* Candidates section grid */
.candidates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 40px auto 0;
}

/* Intro content wrapper */
.intro-content {
  max-width: 800px;
  margin: 0 auto;
}
.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 25px;
}
.intro-content p:last-child {
  margin-bottom: 0;
}

/* Candidate cards */
.candidate-card {
  margin: 0;
}
.candidate-card.positive {
  border-left: 4px solid var(--primary);
}
.candidate-card.caution {
  border-left: 4px solid var(--accent);
}
.candidate-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.candidate-card h3 svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.candidate-card.positive h3 {
  color: var(--primary);
}
.candidate-card.positive h3 svg {
  fill: var(--primary);
}
.candidate-card.caution h3 {
  color: var(--accent);
}
.candidate-card.caution h3 svg {
  fill: var(--accent);
}
.candidate-card ul {
  margin: 0;
  padding-left: 20px;
}
.candidate-card li {
  margin-bottom: 10px;
  color: var(--text-medium);
}
.candidate-card li:last-child {
  margin-bottom: 0;
}

/* Cost cards */
.cost-card {
  margin: 0;
}
.cost-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  border: none;
  padding: 0;
}
.cost-card ul {
  margin: 0;
  padding-left: 20px;
}
.cost-card li {
  margin-bottom: 10px;
  color: var(--text-medium);
}
.cost-card li:last-child {
  margin-bottom: 0;
}

/* Table horizontal scroll wrapper */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-wrapper .comparison-table {
  min-width: 700px;
}

/* Service page responsive */
@media (max-width: 992px) {
  .benefits-grid-4col {
    grid-template-columns: repeat(2, 1fr);
  }
  .cost-grid,
  .candidates-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .benefits-grid-4col {
    grid-template-columns: 1fr;
  }
  .intro-content p {
    font-size: 1rem;
  }
}

/* ============================================
   VIDEO CARD - PLAY BUTTON LEFT MIDDLE FIX
   ============================================ */

.video-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important; /* Vertically center everything */
  justify-content: flex-start !important;
  gap: 30px !important;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  border-radius: var(--radius-lg) !important;
  padding: 35px !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
}

.video-card .play-btn {
  position: static !important; /* Remove any absolute positioning */
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
  order: -1 !important; /* Force to be first */
  flex-shrink: 0 !important;
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  min-height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  background: var(--accent) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: box-shadow 0.3s ease, background 0.3s ease !important;
  margin: 0 !important;
}

.video-card .play-btn svg {
  width: 24px !important;
  height: 24px !important;
  fill: white !important;
  margin-left: 3px !important;
}

.video-card .video-content {
  order: 1 !important;
  flex: 1 !important;
  text-align: left !important;
}

.video-card:hover .play-btn {
  position: static !important;
  transform: none !important;
  box-shadow: 0 0 0 8px rgba(224, 122, 95, 0.3) !important;
  background: var(--accent-hover) !important;
}

/* ============================================
   FINAL VIDEO CARD FIX - OVERRIDE ALL
   ============================================ */

.video-card,
div.video-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 30px !important;
  padding: 35px !important;
}

.video-card .play-btn,
div.video-card .play-btn,
.video-card > .play-btn {
  position: static !important;
  position: relative !important;
  top: unset !important;
  right: unset !important;
  left: unset !important;
  bottom: unset !important;
  transform: none !important;
  order: -1 !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  max-width: 64px !important;
  min-height: 64px !important;
  max-height: 64px !important;
}

.video-card .video-content,
div.video-card .video-content {
  order: 1 !important;
  flex: 1 !important;
  text-align: left !important;
}

.video-card:hover .play-btn,
div.video-card:hover .play-btn {
  position: static !important;
  position: relative !important;
  transform: none !important;
  top: unset !important;
  left: unset !important;
}
