/* ==========================================
   Doma Pharmacy - Main Stylesheet
   Premium Gold & Chrome Theme
   ========================================== */

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

:root {
  --color-primary: #b8860b;
  --color-primary-dark: #966e05;
  --color-gold: #d4a849;
  --color-gold-light: #f0d78c;
  --color-bronze: #8c6239;
  --color-bronze-dark: #6b4423;
  --color-chrome: #c0c0c0;
  --color-chrome-light: #e8e8e8;
  --color-dark: #1c1410;
  --color-text: #3d2e1f;
  --color-text-light: #7a6a5a;
  --color-bg: #fffdf8;
  --color-bg-alt: #f5f0e8;
  --color-bg-dark: #1c1410;
  --color-border: #e0d5c5;
  --color-accent: #b8860b;
  --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-bronze) 100%);
  --gradient-dark: linear-gradient(135deg, #1c1410 0%, #2a1f15 50%, #1c1410 100%);
  --gradient-shine: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-chrome), var(--color-gold-light));
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow: 0 4px 24px rgba(140, 98, 57, 0.08);
  --shadow-lg: 0 12px 40px rgba(140, 98, 57, 0.14);
  --shadow-gold: 0 8px 24px rgba(184, 134, 11, 0.2);
  --transition: 0.3s ease;
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes nudgeHorizontal {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(12px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes blushDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.1); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}

@keyframes blushDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, -30px) scale(1.08); }
  66% { transform: translate(40px, -20px) scale(0.92); }
}

@keyframes blushDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.15); }
}

@keyframes scrollWheel {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.3;
  font-weight: 600;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   Progress Bar
   ========================================== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-bronze), var(--color-gold), var(--color-chrome), var(--color-gold));
  z-index: 10000;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(212, 168, 73, 0.4);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 36px;
  background: var(--gradient-gold);
  color: #fff;
  border: 2px solid transparent;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn:hover {
  background: linear-gradient(135deg, var(--color-bronze) 0%, var(--color-bronze-dark) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.35);
}

.btn-full {
  width: 100%;
}

.btn-hero-primary {
  background: #fff;
  color: var(--color-dark);
  text-shadow: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-hero-primary:hover {
  background: var(--color-gold-light);
  color: var(--color-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(240, 215, 140, 0.4);
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  text-shadow: none;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: #fff;
}

.link-arrow {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 15px;
  transition: all var(--transition);
}

.link-arrow:hover {
  color: var(--color-primary-dark);
  letter-spacing: 0.5px;
}

/* ==========================================
   Section Headers
   ========================================== */
.section-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

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

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 16px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--color-bronze), var(--color-gold), var(--color-chrome));
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ==========================================
   Header
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(184, 134, 11, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 60px;
  width: auto;
  transition: transform var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

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

.nav-list a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
  transition: color var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-list > li > a:hover::after {
  width: 100%;
}

.nav-list a:hover {
  color: var(--color-primary);
}

.nav-contact {
  font-size: 14px;
}

.nav-contact a {
  color: var(--color-text-light);
}

.nav-contact a:hover {
  color: var(--color-primary);
}

.nav-divider {
  margin: 0 8px;
  color: var(--color-border);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle::before {
  content: '\25BC';
  font-size: 0.6rem;
  margin-left: 4px;
  transition: transform var(--transition);
  display: inline-block;
}

.nav-dropdown:hover .dropdown-toggle::before {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 1000;
  border: 1px solid var(--color-border);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 1rem;
}

.dropdown-menu a {
  display: block;
  padding: 0.875rem 1.25rem;
  color: var(--color-dark);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition);
  border-bottom: 1px solid var(--color-bg-alt);
}

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

.dropdown-menu a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  padding-left: 1.5rem;
}

.dropdown-menu a:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}

.dropdown-menu a:last-child {
  border-radius: 0 0 var(--radius) var(--radius);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ==========================================
   Hero
   ========================================== */
.hero {
  padding: 0;
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a1f15 30%, var(--color-bronze-dark) 60%, #2a1f15 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.hero-shape-1 {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 73, 0.4) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192, 192, 192, 0.3) 0%, transparent 70%);
  animation: float 25s ease-in-out infinite reverse;
}

.hero-shape-3 {
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 215, 140, 0.2) 0%, transparent 70%);
  animation: pulse 10s ease-in-out infinite;
}

/* Blush circles */
.hero-blush {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.blush-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 73, 0.6) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation: blushDrift1 18s ease-in-out infinite;
}

.blush-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192, 192, 192, 0.5) 0%, transparent 70%);
  bottom: -5%;
  right: 10%;
  animation: blushDrift2 22s ease-in-out infinite;
}

.blush-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(240, 215, 140, 0.45) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: blushDrift3 20s ease-in-out infinite;
}

.blush-4 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.4) 0%, transparent 70%);
  top: 15%;
  right: 20%;
  animation: blushDrift1 25s ease-in-out infinite reverse;
}

.blush-5 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(192, 192, 192, 0.35) 0%, transparent 70%);
  bottom: 20%;
  left: 15%;
  animation: blushDrift2 16s ease-in-out infinite reverse;
}

.hero-container {
  display: grid;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 140px 0 100px;
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 168, 73, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 168, 73, 0.4);
  animation: scaleIn 0.8s ease 0.2s backwards;
  color: var(--color-gold-light);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.gradient-text {
  background: var(--gradient-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
  font-weight: 400;
  max-width: 520px;
  font-family: var(--font-body);
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
}

/* Hero Visual Card */
.hero-visual {
  animation: fadeInUp 1s ease 0.3s backwards, nudgeHorizontal 4s ease-in-out infinite;
  transform-origin: center;
}

.hero-card {
  background: rgba(255, 253, 248, 0.97);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 3px solid rgba(212, 168, 73, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(212, 168, 73, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-card.floating {
  animation: float 6s ease-in-out infinite;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 168, 73, 0.15) 0%, transparent 70%);
  opacity: 0.6;
  animation: pulse 8s ease-in-out infinite;
}

.card-content {
  position: relative;
  z-index: 1;
}

.location-pin {
  width: 70px;
  height: 70px;
  background: var(--gradient-gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 12px 30px rgba(184, 134, 11, 0.3);
}

.location-pin svg {
  width: 32px;
  height: 32px;
}

.hero-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: center;
  color: var(--color-dark);
}

.hero-card p {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--color-text);
  font-weight: 500;
}

.card-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 1.25rem 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--color-bg-alt);
  font-size: 0.95rem;
}

.info-item:hover {
  background: var(--gradient-gold);
  color: #fff;
  transform: translateX(5px);
  box-shadow: var(--shadow-gold);
}

.info-item svg {
  flex-shrink: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  width: 100%;
  justify-content: center;
  padding: 1rem;
  background: var(--gradient-gold);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
}

.card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
  gap: 1rem;
}

/* Concierge Card */
.concierge-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  animation: fadeInUp 1s ease 0.3s backwards, float 6s ease-in-out infinite;
}

.concierge-glow {
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(212, 168, 73, 0.12) 0%, transparent 60%);
  animation: pulse 8s ease-in-out infinite;
}

.concierge-inner {
  position: relative;
  z-index: 1;
  background: rgba(28, 20, 16, 0.85);
  backdrop-filter: blur(24px);
  border: 2px solid rgba(212, 168, 73, 0.25);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(212, 168, 73, 0.15),
    0 0 60px rgba(212, 168, 73, 0.06);
}

.concierge-rx {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: rgba(212, 168, 73, 0.08);
  border: 2px solid rgba(212, 168, 73, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(212, 168, 73, 0.15);
}

.concierge-rx svg {
  width: 48px;
  height: 48px;
}

.concierge-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(212, 168, 73, 0.7);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.concierge-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.concierge-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 73, 0.4), rgba(192, 192, 192, 0.3), rgba(212, 168, 73, 0.4), transparent);
  margin: 1.25rem 0;
}

.concierge-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.concierge-stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-top: 0.35rem;
}

.concierge-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-chrome) 50%, var(--color-gold) 100%);
  color: var(--color-dark);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 100px;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(212, 168, 73, 0.3);
  text-decoration: none;
}

.concierge-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 168, 73, 0.45);
}

.concierge-cta svg {
  stroke: var(--color-dark);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.7;
  animation: fadeInUp 1.2s ease 0.8s backwards;
  z-index: 2;
}

.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--color-gold-light);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--color-gold-light);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}

/* ==========================================
   Why Choose Us
   ========================================== */
.why-choose-us {
  padding: 80px 0;
  background: var(--gradient-dark);
  color: #fff;
  text-align: center;
  position: relative;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-chrome), var(--color-gold), transparent);
}

.wcu-header {
  margin-bottom: 2rem;
}

.wcu-badge {
  display: inline-block;
  background: rgba(212, 168, 73, 0.2);
  border: 2px solid rgba(212, 168, 73, 0.4);
  color: var(--color-gold-light);
  padding: 0.4rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.wcu-header h2 {
  font-size: 2rem;
  background: var(--gradient-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.wcu-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.pill-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 168, 73, 0.3);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all var(--transition);
  cursor: default;
}

.pill-item:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 168, 73, 0.3);
}

/* ==========================================
   About / Services Overview
   ========================================== */
.about {
  padding: 100px 0;
}

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

.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-border);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.video-wrapper img,
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition);
}

.play-btn svg {
  width: 80px;
  height: 80px;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.about-content .section-badge {
  margin-bottom: 1rem;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 28px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ==========================================
   Services Cards
   ========================================== */
.services {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(184, 134, 11, 0.18);
  border-color: var(--color-gold);
}

/* Icon-driven service cards */
.service-icon-hero {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-bronze-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  margin: 0 auto 0;
  box-shadow: 0 8px 24px rgba(140, 98, 57, 0.2);
  transition: all 0.4s ease;
  border: 3px solid var(--color-gold);
}

.service-icon-hero svg {
  width: 32px;
  height: 32px;
}

.service-card--icon {
  text-align: center;
  padding-top: 40px;
}

.service-card--icon:hover .service-icon-hero {
  transform: rotate(8deg) scale(1.12);
  background: var(--gradient-gold);
  color: #fff;
  box-shadow: 0 12px 32px rgba(184, 134, 11, 0.35);
}

.service-body {
  padding: 28px;
}

.service-body h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-body p {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ==========================================
   Specialties
   ========================================== */
.specialties {
  padding: 80px 0;
  background: var(--color-bg);
}

.specialty-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.specialty-pill {
  background: #fff;
  border: 2px solid var(--color-dark);
  color: var(--color-dark);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all var(--transition);
  cursor: default;
}

.specialty-pill:hover {
  background: var(--gradient-gold);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ==========================================
   Testimonials Grid
   ========================================== */
.testimonials-section {
  padding: 100px 0;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 134, 11, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(192, 192, 192, 0.04) 0%, transparent 50%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.testimonial-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-verified {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-text {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* ==========================================
   Testimonial Quote (dark band)
   ========================================== */
.testimonial {
  padding: 80px 0;
  background: var(--gradient-dark);
  color: #fff;
  position: relative;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-chrome), var(--color-gold), transparent);
}

.testimonial::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-chrome), var(--color-gold), transparent);
}

.testimonial blockquote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote p {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
  background: var(--gradient-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial blockquote footer {
  font-size: 15px;
  color: var(--color-gold);
  font-weight: 500;
  opacity: 0.7;
}

/* ==========================================
   Appointment
   ========================================== */
.appointment {
  padding: 100px 0;
}

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

.appointment-content .section-badge {
  margin-bottom: 1rem;
}

.appointment-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.appointment-content p {
  color: var(--color-text-light);
  margin-bottom: 28px;
  line-height: 1.8;
}

.appointment-hours {
  background: var(--color-bg-alt);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.appointment-hours::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-bronze), var(--color-gold), var(--color-chrome), var(--color-gold), var(--color-bronze));
}

.appointment-hours h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 600;
  color: var(--color-dark);
}

.hours-row .time {
  color: var(--color-text-light);
}

/* ==========================================
   Location / Map
   ========================================== */
.location {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.location .link-arrow {
  display: block;
  text-align: center;
  margin-bottom: 32px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ==========================================
   FAQs
   ========================================== */
.faqs {
  padding: 100px 0;
  background: var(--color-bg);
}

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

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 2px solid var(--color-border);
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: var(--color-gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

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

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-chrome), var(--color-gold), transparent);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 73, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: 2.25rem;
  max-width: 700px;
  margin: 0 auto 0.75rem;
  background: var(--gradient-shine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.cta-option {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 168, 73, 0.3);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  color: #fff;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-option:hover {
  background: rgba(212, 168, 73, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--color-gold);
}

.cta-option svg {
  stroke: var(--color-gold-light);
}

.cta-option span {
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.6;
}

.cta-option strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-gold-light);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  padding: 64px 0 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--color-text-light);
  font-size: 15px;
  max-width: 400px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #fff;
  transition: all var(--transition);
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

.footer-col li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--color-text-light);
}

.footer-col a {
  font-size: 15px;
  color: var(--color-text-light);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--color-text-light);
}

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

.footer-legal-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* ==========================================
   Contact / Callback Form
   ========================================== */
.contact-form-section {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.contact-form {
  max-width: 720px;
  margin: 48px auto 0;
  background: var(--color-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-bronze), var(--color-gold), var(--color-chrome), var(--color-gold), var(--color-bronze));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

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

.form-group .req {
  color: var(--color-primary);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px; /* >=16px prevents iOS Safari auto-zoom on focus */
  color: var(--color-text);
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 73, 0.15);
}

.form-group textarea {
  resize: vertical;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 24px;
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.form-consent label {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-light);
}

.form-consent a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  min-height: 20px;
}

.form-status.success {
  color: #2a6b4a;
}

.form-status.error {
  color: #b3261e;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .footer-legal-links {
    justify-content: center;
  }
}

/* ==========================================
   Responsive
   ========================================== */

/* Desktop: hero two-column */
@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablet landscape */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .about-content h2,
  .appointment-content h2 {
    font-size: 30px;
  }
}

/* Tablet portrait & mobile */
@media (max-width: 768px) {
  /* Header & Nav */
  .mobile-toggle {
    display: flex;
  }

  .header-inner {
    height: 70px;
  }

  .logo img {
    height: 48px;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 24px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
    box-shadow: 0 10px 40px rgba(140, 98, 57, 0.15);
    overflow-y: auto;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .nav-list > li > a {
    font-size: 17px;
  }

  .nav-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    margin-top: 8px;
  }

  .nav-divider {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-container {
    padding: 110px 0 60px;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1rem;
  }

  .hero-visual {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-blush {
    filter: blur(60px);
    opacity: 0.25;
  }

  .scroll-indicator {
    display: none;
  }

  /* Section spacing */
  .about,
  .services,
  .specialties,
  .testimonials-section,
  .appointment,
  .location,
  .contact-form-section,
  .faqs {
    padding: 60px 0;
  }

  .why-choose-us {
    padding: 50px 0;
  }

  .cta-section {
    padding: 60px 0;
  }

  /* Section headers */
  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .section-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .section-header-center {
    margin-bottom: 32px;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card--icon {
    padding-top: 28px;
  }

  .service-icon-hero {
    width: 64px;
    height: 64px;
  }

  .service-icon-hero svg {
    width: 26px;
    height: 26px;
  }

  .service-body {
    padding: 20px;
  }

  .service-body h3 {
    font-size: 19px;
  }

  .service-body p {
    font-size: 14px;
  }

  /* Why Choose Us */
  .wcu-header h2 {
    font-size: 1.4rem;
  }

  .wcu-header p {
    font-size: 0.9rem;
  }

  .pill-grid {
    gap: 0.5rem;
  }

  .pill-item {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  /* Specialties */
  .specialty-pills {
    gap: 0.5rem;
  }

  .specialty-pill {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  /* Testimonial quote band */
  .testimonial {
    padding: 50px 0;
  }

  .testimonial blockquote p {
    font-size: 20px;
    line-height: 1.5;
  }

  .testimonial blockquote footer {
    font-size: 14px;
  }

  /* Appointment */
  .appointment-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .appointment-content h2 {
    font-size: 26px;
  }

  .appointment-hours {
    padding: 28px;
  }

  .hours-row {
    padding: 12px 0;
    font-size: 0.95rem;
  }

  /* Location */
  .map-wrapper iframe {
    height: 220px;
  }

  /* Contact / callback form */
  .contact-form {
    margin-top: 32px;
    padding: 32px 24px;
  }

  .contact-form .btn-full {
    width: 100%;
  }

  .form-consent {
    gap: 10px;
  }

  .form-consent label {
    font-size: 13px;
  }

  /* FAQs */
  .faq-question {
    padding: 16px 20px;
    font-size: 15px;
    gap: 12px;
  }

  .faq-answer p {
    padding: 0 20px 16px;
    font-size: 14px;
  }

  /* CTA */
  .cta-inner h2 {
    font-size: 1.4rem;
  }

  .cta-inner p {
    font-size: 0.95rem;
  }

  .cta-options {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-option {
    padding: 1.5rem 1.25rem;
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }

  .cta-option svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .cta-option span {
    font-size: 0.9rem;
  }

  .cta-option strong {
    font-size: 1rem;
  }

  /* Footer */
  .footer {
    padding: 48px 0 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand .logo {
    display: inline-block;
  }

  .footer-brand p {
    max-width: 100%;
  }

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

  .footer-col {
    text-align: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 22px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .pill-item,
  .specialty-pill {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .wcu-header h2 {
    font-size: 1.25rem;
  }

  .cta-inner h2 {
    font-size: 1.2rem;
  }

  .testimonial blockquote p {
    font-size: 18px;
  }

  .about-content h2,
  .appointment-content h2 {
    font-size: 22px;
  }

  .service-body h3 {
    font-size: 17px;
  }

  .faq-question {
    font-size: 14px;
    padding: 14px 16px;
  }

  .faq-answer p {
    padding: 0 16px 14px;
    font-size: 13px;
  }
}
