/* ═══════════════════════════════════════════════════
   Dr Muhammad Ibrahim — Dental Practice
   Design System from dentist.json
   ═══════════════════════════════════════════════════ */

/* — Google Fonts — */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* — CSS Variables — */
:root {
  --primary: #2CB5D1;
  --primary-variant: #1E9BB5;
  --secondary: #0A2A30;
  --secondary-variant: #0D3A42;
  --background: #FFFFFF;
  --surface: #F0FAFB;
  --on-primary: #FFFFFF;
  --on-secondary: #FFFFFF;
  --on-background: #0A2A30;
  --on-surface: #0A2A30;
  --accent: #19D4A7;
  --error: #E53E3E;
  --text-muted: #6B8A90;
  --divider: #E2EDF0;

  --gradient-start: #0A2A30;
  --gradient-mid: #1a4a52;
  --gradient-end: #2CB5D1;

  --footer-bg: #0A2A30;
  --footer-text: #FFFFFF;
  --footer-muted: rgba(255, 255, 255, 0.4);

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --max-width: 1280px;
  --section-padding: 96px 24px;
  --grid-gap: 32px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  --nav-height: 72px;
}

/* — Reset — */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  background: var(--background);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════
   TYPOGRAPHY
   ═══════════════════════════ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--on-background);
}

h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
}

h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
}

h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}

.overline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.body-large {
  font-size: 18px;
  line-height: 1.7;
}

.body-small {
  font-size: 14px;
  line-height: 1.6;
}

/* — Section Badge — */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(44, 181, 209, 0.1);
  border: 1px solid rgba(44, 181, 209, 0.15);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-badge svg,
.section-badge .badge-icon {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════
   BUTTONS
   ═══════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  padding: 14px 36px;
  cursor: pointer;
  border: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 4px 15px rgba(44, 181, 209, 0.4);
}

.btn-primary:hover {
  background: var(--primary-variant);
  box-shadow: 0 8px 25px rgba(44, 181, 209, 0.5);
  transform: translateY(-2px);
}

.btn-outlined {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outlined:hover {
  background: var(--primary);
  color: var(--on-primary);
  transform: translateY(-2px);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.btn-arrow {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════
   NAVIGATION
   ═══════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(10, 42, 48, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════
   HERO SECTION
   ═══════════════════════════ */

.hero {
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 40%, var(--gradient-end) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(44, 181, 209, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-title .tooth-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: floatTooth 3s ease-in-out infinite;
}

.hero-title .tooth-icon img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

@keyframes floatTooth {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
  font-weight: 400;
}

/* Hero Cards Grid */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 40px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.hero-card--info {
  background: linear-gradient(145deg, rgba(44, 181, 209, 0.15), rgba(44, 181, 209, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 32px;
  color: #fff;
}

.hero-card--info h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}

.hero-card--info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: background 0.3s;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.14);
}

.info-item .icon-circle {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item .icon-circle svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.info-item h5 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 2px;
}

.info-item p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-card--image {
  position: relative;
  min-height: 340px;
  background: var(--secondary-variant);
}

.hero-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-card--image .chat-bubble {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-card--dark {
  background: var(--secondary-variant);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card--dark img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.hero-card--dark p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.hero-card--dark .btn-primary {
  align-self: flex-start;
  margin-top: 16px;
}

/* ═══════════════════════════
   MARQUEE
   ═══════════════════════════ */

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 32px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  background: var(--background);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: scrollMarquee 25s linear infinite;
}

.marquee-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--on-background);
  display: flex;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}

.marquee-star {
  color: var(--primary);
  font-size: 28px;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════
   ABOUT / STATS SECTION
   ═══════════════════════════ */

.about {
  padding: var(--section-padding);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left .overline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.about-left h2 {
  margin-bottom: 16px;
}

.about-left p {
  max-width: 500px;
}

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  background: linear-gradient(135deg, var(--surface), #d4edf1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.stat-card {
  background: var(--background);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(44, 181, 209, 0.1);
  transform: translateY(-2px);
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--on-background);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ═══════════════════════════
   SERVICES
   ═══════════════════════════ */

.services {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--surface) 0%, var(--background) 50%, var(--surface) 100%);
  text-align: center;
}

.services .section-header {
  margin-bottom: 56px;
}

.services h2 {
  margin-top: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  background: var(--background);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(10, 42, 48, 0.08);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: var(--primary);
  border-radius: 4px 4px 0 0;
  opacity: 0;
  transition: all 0.4s;
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(10, 42, 48, 0.14);
  transform: translateY(-6px);
  border-color: var(--divider);
}

.service-card:hover::before {
  opacity: 1;
  width: 80%;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--on-background);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.service-link:hover {
  color: var(--primary);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════
   QUALIFICATIONS / DEGREES
   ═══════════════════════════ */

.gallery {
  padding: var(--section-padding);
}

.gallery .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.gallery-text h2 {
  margin-top: 12px;
  margin-bottom: 20px;
}

.gallery-text p {
  margin-bottom: 24px;
}

.qualifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.qualification-card {
  background: var(--background);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.qualification-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transition: width 0.4s ease;
}

.qualification-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(44, 181, 209, 0.12);
  transform: translateY(-4px);
}

.qualification-card:hover::after {
  width: 60%;
}

.qualification-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qualification-icon svg {
  width: 40px;
  height: 40px;
}

.qualification-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.qualification-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════
   TESTIMONIALS / REVIEWS
   ═══════════════════════════ */

.testimonials {
  padding: var(--section-padding);
  background: var(--background);
  text-align: center;
}

.testimonials .section-header {
  margin-bottom: 48px;
}

.testimonials h2 {
  margin-top: 12px;
}

.testimonial-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
}

.testimonial-rating {
  background: var(--surface);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--divider);
}

.rating-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}

.rating-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  color: var(--on-background);
  line-height: 1;
}

.rating-stars {
  margin: 8px 0;
  font-size: 20px;
  color: #F5A623;
}

.rating-count {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.testimonial-nav .nav-prev {
  background: var(--on-background);
  color: #fff;
}

.testimonial-nav .nav-next {
  background: var(--primary);
  color: #fff;
}

.testimonial-nav button:hover {
  transform: scale(1.1);
}

.testimonial-content {
  padding: 40px;
  position: relative;
  min-height: 220px;
}

/* Review Slider */
.review-slide {
  display: none;
  animation: fadeSlide 0.5s ease;
}

.review-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-text {
  font-size: 17px;
  color: var(--on-background);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author h5 {
  margin-bottom: 2px;
}

.testimonial-author p {
  font-size: 13px;
}

/* ═══════════════════════════
   BOOKING / APPOINTMENT
   ═══════════════════════════ */

.booking {
  padding: var(--section-padding);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 181, 209, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.booking .container {
  position: relative;
  z-index: 1;
}

.booking .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.booking h2 {
  margin-top: 12px;
  font-size: clamp(32px, 5vw, 48px);
}

/* Booking Grid Layout */
.booking-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.payment-card,
.form-card {
  background: var(--background);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 10px 40px rgba(10, 42, 48, 0.08);
  border: 1px solid var(--divider);
  height: 100%;
}

.payment-header,
.form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.payment-header svg,
.form-header svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}

.payment-header h3,
.form-header h3 {
  font-size: 22px;
  color: var(--on-background);
  margin: 0;
}

.payment-alert {
  background: rgba(44, 181, 209, 0.08);
  color: var(--on-background);
  padding: 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  text-align: center;
  border: 1px solid rgba(44, 181, 209, 0.15);
}

.payment-alert--success {
  background: rgba(25, 212, 167, 0.08);
  border: 1px solid rgba(25, 212, 167, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 0;
  text-align: left;
}

.payment-alert--success svg {
  flex-shrink: 0;
  stroke: var(--accent);
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.payment-method:hover {
  border-color: var(--primary);
  background: rgba(44, 181, 209, 0.04);
}

.payment-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}

.payment-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-icon.ep {
  background: transparent;
}

.payment-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--on-background);
}

.payment-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Airtable Container */
.airtable-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.airtable-container iframe {
  display: block;
  width: 100%;
  min-height: 950px;
  border: none !important;
  background: transparent;
}

@media (max-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════
   BLOG
   ═══════════════════════════ */

.blog {
  padding: var(--section-padding);
  text-align: center;
}

.blog .section-header {
  margin-bottom: 48px;
}

.blog h2 {
  margin-top: 12px;
}

/* Blog Header Row: Title left, Video right */
.blog-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  text-align: left;
}

.blog-header-left .section-badge {
  margin-bottom: 16px;
}

.blog-header-left h2 {
  margin-top: 12px;
}

/* Blog Video */
.blog-video-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-variant));
  position: relative;
}

.blog-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.blog-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.blog-video-placeholder p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-family: var(--font-heading);
  font-weight: 500;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  max-width: var(--max-width);
  margin: 0 auto 40px;
}

.blog-card {
  background: var(--background);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(10, 42, 48, 0.08);
  text-align: left;
  transition: all 0.4s;
  border: 1px solid var(--divider);
  display: block;
  cursor: pointer;
}

.blog-card:hover {
  box-shadow: 0 20px 60px rgba(10, 42, 48, 0.14);
  transform: translateY(-4px);
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 42, 48, 0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.blog-card-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta svg {
  width: 14px;
  height: 14px;
}

.blog-card h3 {
  font-size: 17px;
  line-height: 1.4;
}

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */

.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 24px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col p {
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 14px;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter button {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}

.footer-newsletter button:hover {
  background: var(--primary-variant);
}

.footer-newsletter button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer-links a {
  display: block;
  color: var(--footer-muted);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-schedule li {
  color: var(--footer-muted);
  font-size: 14px;
  padding: 6px 0;
}

/* Footer Brand */
.footer-brand {
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 48px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(40px, 8vw, 90px);
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-brand-name img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--footer-muted);
}

.footer-bottom a {
  color: var(--footer-muted);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ═══════════════════════════
   ANIMATIONS
   ═══════════════════════════ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════
   RESPONSIVE
   ═══════════════════════════ */

@media (max-width: 1024px) {
  .hero-cards {
    grid-template-columns: 1fr;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery .container {
    grid-template-columns: 1fr;
  }

  .qualifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-container {
    grid-template-columns: 1fr;
  }

  .testimonial-rating {
    border-right: none;
    border-bottom: 1px solid var(--divider);
  }

  .blog-header-row {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .blog-header-left {
    text-align: center;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 20px;
  }

  h1,
  .hero-title {
    font-size: 36px !important;
  }

  h2 {
    font-size: 28px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Mobile Nav */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(10, 42, 48, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 999;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .qualifications-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .about-right {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-title .tooth-icon {
    width: 60px;
    height: 60px;
  }

  .hero-title .tooth-icon img {
    width: 40px;
    height: 40px;
  }

  .easypaisa-section {
    padding: 24px;
  }

  .easypaisa-number span,
  .easypaisa-name span {
    font-size: 16px;
  }

  .airtable-container iframe {
    min-height: 700px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .easypaisa-section {
    padding: 20px;
  }

  .qualifications-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 50px 0 40px;
  }

  .easypaisa-number,
  .easypaisa-name {
    padding: 12px 16px;
  }

  .easypaisa-number span,
  .easypaisa-name span {
    font-size: 15px;
  }

  .airtable-container iframe {
    min-height: 800px;
  }

  .blog-video-container {
    aspect-ratio: 4/3;
  }

  .footer-brand-name {
    font-size: 28px !important;
    gap: 12px;
  }

  .footer-brand-name img {
    width: 40px;
    height: 40px;
  }
}

/* ═══════════════════════════
   SERVICE DETAILS MODAL
   ═══════════════════════════ */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(10, 42, 48, 0.6);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--background);
  margin: auto;
  padding: 40px;
  border: 1px solid var(--divider);
  width: 90%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(10, 42, 48, 0.3);
  position: relative;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.close-button {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--text-muted);
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close-button:hover,
.close-button:focus {
  color: var(--primary);
  text-decoration: none;
}

.modal-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: var(--radius-md);
}

.modal-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}

#modalServiceTitle {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--on-background);
}

#modalServiceDescription {
  font-size: 15px;
  line-height: 1.7;
  color: var(--on-background);
  margin-bottom: 24px;
}

#modalServiceBenefits h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--on-background);
}

#modalBenefitsList {
  list-style-type: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

#modalBenefitsList li {
  font-size: 14px;
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
}

#modalBenefitsList li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ═══════════════════════════
   ABOUT DETAILS SECTION
   ═══════════════════════════ */
.about-details {
  padding: var(--section-padding);
  background: var(--surface);
  border-top: 1px solid var(--divider);
}

.about-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.about-details-text h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-details-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.about-feature-item {
  background: var(--background);
  border: 1px solid var(--divider);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-feature-item h5 {
  font-size: 16px;
  color: var(--on-background);
  margin: 0;
}

.about-feature-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════
   BLOG DETAIL SECTIONS (LANDINGS)
   ═══════════════════════════ */
.blog-details-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.blog-detail-section {
  display: none;
  background: var(--background);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 32px;
  box-shadow: 0 10px 40px rgba(10, 42, 48, 0.05);
  animation: slideDown 0.5s ease forwards;
}

.blog-detail-section.active {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-detail-close {
  float: right;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}

.blog-detail-close:hover {
  color: var(--primary);
}

.blog-detail-header {
  margin-bottom: 24px;
}

.blog-detail-header h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--on-background);
}

.blog-detail-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--on-background);
  margin-bottom: 16px;
}

.blog-detail-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-detail-content li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.extra-blogs {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  margin-top: 32px;
  animation: fadeIn 0.5s ease forwards;
}

.extra-blogs.active {
  display: grid;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1024px) {
  .about-details-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .extra-blogs.active {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .about-features-list {
    grid-template-columns: 1fr;
  }
  .extra-blogs.active {
    grid-template-columns: 1fr;
  }
  .blog-detail-section {
    padding: 24px;
  }
}

/* ═══════════════════════════
   SERVICE DETAIL EXPAND SECTIONS
   ═══════════════════════════ */
.service-detail-panel {
  display: none;
  background: var(--background);
  border: 1px solid var(--divider);
  border-top: 4px solid var(--primary);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-top: -8px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(10, 42, 48, 0.1);
  animation: panelSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-detail-panel.active {
  display: block;
}

@keyframes panelSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sdp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.sdp-col {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 24px;
}

.sdp-col-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sdp-col-label svg {
  width: 16px; height: 16px;
  stroke: var(--primary); fill: none; stroke-width: 2;
}

.sdp-col h4 {
  font-size: 17px;
  color: var(--on-background);
  margin-bottom: 12px;
}

.sdp-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sdp-col ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.sdp-col ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 10px;
  top: 4px;
}

.sdp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--divider);
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.sdp-footer p {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
  min-width: 200px;
}

.sdp-close-btn {
  background: none;
  border: 1px solid var(--divider);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.sdp-close-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (max-width: 900px) {
  .sdp-inner { grid-template-columns: 1fr; }
  .service-detail-panel { padding: 24px; }
}

/* ═══════════════════════════
   TESTIMONIAL CARD SLIDER
   ═══════════════════════════ */
.testimonials-new {
  padding: var(--section-padding);
  background: var(--surface);
  text-align: center;
}

.testimonials-new .section-header {
  margin-bottom: 48px;
}

.reviews-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.rstat {
  text-align: center;
}

.rstat-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--on-background);
  line-height: 1;
}

.rstat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.rstat-stars {
  color: #F5A623;
  font-size: 22px;
  line-height: 1;
}

.rstat-divider {
  width: 1px;
  height: 48px;
  background: var(--divider);
}

.review-cards-track-wrap {
  position: relative;
  overflow: hidden;
  max-width: var(--max-width);
  margin: 0 auto;
}

.review-cards-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card-new {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--background);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(10,42,48,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
}

.rc-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  flex-shrink: 0;
}

.rc-meta {
  flex: 1;
}

.rc-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--on-background);
}

.rc-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.rc-stars {
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 1px;
}

.rc-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
  font-style: italic;
}

.rc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  background: rgba(44,181,209,0.08);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-top: auto;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.reviews-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.reviews-nav .rnav-prev { background: var(--surface); border: 1px solid var(--divider); color: var(--on-background); }
.reviews-nav .rnav-next { background: var(--primary); color: #fff; }
.reviews-nav button:hover { transform: scale(1.08); }
.reviews-nav button svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.reviews-dots {
  display: flex;
  gap: 8px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--divider);
  cursor: pointer;
  transition: all 0.3s;
}

.reviews-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .review-card-new { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 600px) {
  .review-card-new { flex: 0 0 calc(100%); }
  .rstat-divider { display: none; }
}

/* ════════════════════════════════════════════
   AEO: COST COMPARISON TABLE
   ════════════════════════════════════════════ */
.cost-table-section {
  padding: var(--section-padding);
  background: var(--background);
  text-align: center;
}

.cost-table-section .section-header {
  margin-bottom: 40px;
}

.cost-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  background: var(--background);
  box-shadow: 0 10px 40px rgba(10, 42, 48, 0.06);
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 15px;
  min-width: 600px;
}

.cost-table caption {
  caption-side: top;
  text-align: left;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  background: var(--surface);
  border-bottom: 1px solid var(--divider);
}

.cost-table thead {
  background: var(--secondary);
}

.cost-table th {
  padding: 16px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  border-bottom: 2px solid var(--primary);
}

.cost-table td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--divider);
  color: var(--on-surface);
  text-align: left;
}

.cost-table tbody tr:hover {
  background: var(--surface);
}

.cost-table tbody tr:last-child td {
  border-bottom: none;
}

.cost-table td:first-child {
  font-weight: 600;
  color: var(--on-background);
}

.cost-table td:nth-child(2) {
  font-weight: 600;
  color: var(--primary);
}

/* ════════════════════════════════════════════
   AEO: FAQ / PAA SECTION
   ════════════════════════════════════════════ */
.faq-aeo {
  background: var(--surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.faq-item-aeo {
  background: var(--background);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-item-aeo:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(44, 181, 209, 0.08);
}

.faq-item-aeo h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--on-background);
  line-height: 1.4;
}

.faq-item-aeo p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ════════════════════════════════════════════
   WHATSAPP & CALL FLOATING BUTTONS
   ════════════════════════════════════════════ */
.whatsapp-float,
.call-float {
  position: fixed;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-float {
  bottom: 90px;
  background: #25D366;
}

.whatsapp-float:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.call-float {
  bottom: 24px;
  background: var(--primary);
}

.call-float:hover {
  background: var(--primary-variant);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(44, 181, 209, 0.4);
}

.whatsapp-float svg,
.call-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-float span,
.call-float span {
  display: inline;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cost-table {
    font-size: 14px;
  }

  .cost-table th,
  .cost-table td {
    padding: 12px 16px;
  }

  .whatsapp-float,
  .call-float {
    padding: 10px 16px;
    font-size: 13px;
    right: 12px;
  }

  .whatsapp-float {
    bottom: 76px;
  }

  .call-float {
    bottom: 16px;
  }
}
