/*
Theme Name: Denton Chiropractic Center
Theme URI: https://www.dentonchiro.com
Author: Premium Chiro Marketing Agency
Author URI: https://youragency.com
Description: A modern, premium WordPress theme for Denton Chiropractic Center. Features elegant editorial typography, scroll animations, a full appointment booking form, doctor profiles, services grid, testimonials, Google Maps integration, and local SEO-optimized markup. Built specifically for North Texas chiropractic practices.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: Proprietary
Text Domain: denton-chiro
Tags: health, medical, chiropractic, responsive-layout, custom-colors, custom-logo, full-width-template
*/

/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --navy:      #0D1B2A;
  --navy-mid:  #162235;
  --sienna:    #C05C3A;
  --sienna-lt: #D97A55;
  --cream:     #F8F2E8;
  --cream-dk:  #EDE5D4;
  --sand:      #C9B99A;
  --white:     #FFFFFF;
  --text-dark: #0D1B2A;
  --text-mid:  #4A5568;
  --text-lt:   #8A9BB0;
  --font-head: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 12px rgba(13,27,42,0.08);
  --shadow-md: 0 8px 40px rgba(13,27,42,0.14);
  --shadow-lg: 0 20px 80px rgba(13,27,42,0.22);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.wp-block-image img { width: 100%; }

/* ===========================
   ANNOUNCEMENT BAR
=========================== */
.announce-bar {
  background: var(--sienna);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 200;
}
.announce-bar a { color: var(--white); text-decoration: underline; opacity: 0.9; }

/* ===========================
   HEADER / NAV
=========================== */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 30px rgba(13,27,42,0.3);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo-wrap { display: flex; align-items: center; gap: 14px; }
.logo-icon {
  width: 46px; height: 46px;
  background: var(--sienna);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; fill: none; stroke: white; stroke-width: 1.8; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}
.logo-text .tag {
  font-size: 11px;
  color: var(--sand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  color: var(--sand);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-link.active { color: var(--white); }
.nav-cta {
  background: var(--sienna) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--sienna-lt) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,92,58,0.4) !important; }
.header-phone { color: var(--sand); font-size: 14px; font-weight: 600; margin-right: 12px; }
.header-phone:hover { color: white; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: white; display: block; transition: 0.3s; border-radius: 2px; }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  padding: 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  margin-bottom: 40px;
}
.mobile-nav a {
  color: white;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--sienna-lt); }

/* ===========================
   HERO
=========================== */
.hero {
  background: var(--navy);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 40%, rgba(192,92,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-circle { position: absolute; border-radius: 50%; opacity: 0.05; background: var(--sienna); pointer-events: none; }
.hero-bg-circle.c1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-bg-circle.c2 { width: 300px; height: 300px; bottom: 50px; left: 40%; opacity: 0.06; }
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative; z-index: 2;
  animation: fadeUp 0.9s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,92,58,0.15);
  border: 1px solid rgba(192,92,58,0.3);
  color: var(--sienna-lt);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 28px; width: fit-content;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--sienna-lt); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 300; color: var(--white); line-height: 1.05;
  margin-bottom: 24px; letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--sienna-lt); font-weight: 400; }
.hero p { color: var(--sand); font-size: 17px; line-height: 1.7; max-width: 480px; margin-bottom: 40px; font-weight: 300; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sienna); color: var(--white);
  font-weight: 600; font-size: 15px; padding: 16px 32px;
  border-radius: 50px; transition: var(--transition);
}
.btn-primary:hover { background: var(--sienna-lt); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(192,92,58,0.45); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--sand);
  font-weight: 500; font-size: 15px; padding: 16px 28px;
  border-radius: 50px; border: 1.5px solid rgba(201,185,154,0.3); transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--sand); color: var(--white); }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(201,185,154,0.15); }
.stat-item .num { font-family: var(--font-head); font-size: 40px; font-weight: 600; color: var(--white); line-height: 1; }
.stat-item .num span { color: var(--sienna-lt); }
.stat-item .label { font-size: 12px; color: var(--sand); margin-top: 4px; letter-spacing: 0.04em; }
.hero-visual { position: relative; overflow: hidden; animation: fadeIn 1.2s ease both 0.3s; }
.hero-img-wrap {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a2f45 0%, #0d1b2a 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.hero-overlay-card {
  position: absolute; bottom: 40px; left: -30px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 18px 24px; box-shadow: var(--shadow-lg); max-width: 240px;
  animation: slideRight 1s ease both 0.7s;
}
.hero-overlay-card .stars { color: #F4B942; font-size: 14px; margin-bottom: 6px; }
.hero-overlay-card .quote { font-size: 13px; color: var(--text-mid); line-height: 1.5; font-style: italic; }
.hero-overlay-card .reviewer { font-size: 12px; font-weight: 600; color: var(--text-dark); margin-top: 8px; }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes slideRight { from{opacity:0;transform:translateX(-20px)} to{opacity:1;transform:translateX(0)} }

/* ===========================
   TRUST BAR
=========================== */
.trust-bar { background: var(--cream-dk); border-top: 1px solid rgba(201,185,154,0.4); border-bottom: 1px solid rgba(201,185,154,0.4); }
.trust-bar-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; overflow-x: auto; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 22px 40px; border-right: 1px solid rgba(201,185,154,0.4); flex-shrink: 0; white-space: nowrap; }
.trust-item:last-child { border-right: none; }
.trust-item .icon { width: 38px; height: 38px; background: var(--sienna); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-item .icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }
.trust-item .text .t1 { font-weight: 600; font-size: 14px; color: var(--text-dark); }
.trust-item .text .t2 { font-size: 12px; color: var(--text-mid); }

/* ===========================
   SECTION COMMONS
=========================== */
.section { padding: 100px 0; }
.section-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.section-label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sienna); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--sienna); }
.section-title { font-family: var(--font-head); font-size: clamp(36px, 4vw, 58px); font-weight: 400; line-height: 1.1; color: var(--text-dark); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--sienna); }
.section-subtitle { font-size: 17px; color: var(--text-mid); line-height: 1.7; max-width: 560px; font-weight: 300; }

/* ===========================
   SERVICES
=========================== */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.service-card { background: var(--cream); padding: 44px 36px; position: relative; transition: var(--transition); cursor: pointer; overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); opacity: 0; transition: var(--transition); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .sc-icon { background: var(--sienna); }
.service-card:hover .sc-icon svg { stroke: white; }
.service-card:hover .sc-title { color: white; }
.service-card:hover .sc-text { color: rgba(255,255,255,0.7); }
.service-card:hover .sc-link { color: var(--sienna-lt); }
.service-card:hover .sc-num { color: rgba(255,255,255,0.06); }
.sc-num { position: absolute; top: 20px; right: 24px; font-family: var(--font-head); font-size: 72px; font-weight: 700; color: rgba(13,27,42,0.05); line-height: 1; transition: var(--transition); pointer-events: none; }
.sc-icon { width: 52px; height: 52px; background: rgba(192,92,58,0.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: var(--transition); position: relative; }
.sc-icon svg { width: 24px; height: 24px; stroke: var(--sienna); fill: none; stroke-width: 1.8; }
.sc-title { font-family: var(--font-head); font-size: 24px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; transition: var(--transition); position: relative; }
.sc-text { font-size: 14px; color: var(--text-mid); line-height: 1.6; transition: var(--transition); position: relative; margin-bottom: 20px; }
.sc-link { font-size: 13px; font-weight: 600; color: var(--sienna); letter-spacing: 0.04em; text-transform: uppercase; transition: var(--transition); position: relative; display: flex; align-items: center; gap: 6px; }
.sc-link::after { content: '→'; transition: transform 0.3s; }
.service-card:hover .sc-link::after { transform: translateX(4px); }

/* ===========================
   CONDITIONS
=========================== */
.conditions-section { background: var(--cream); }
.conditions-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }
.conditions-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.cond-tag { background: var(--white); color: var(--text-dark); font-size: 13.5px; font-weight: 500; padding: 10px 18px; border-radius: 50px; border: 1.5px solid var(--cream-dk); transition: var(--transition); cursor: pointer; }
.cond-tag:hover, .cond-tag.active { background: var(--sienna); color: white; border-color: var(--sienna); transform: translateY(-2px); }
.cond-card { background: var(--navy); border-radius: var(--radius-lg); padding: 50px; color: white; position: sticky; top: 100px; }
.cond-card-title { font-family: var(--font-head); font-size: 32px; font-weight: 400; margin-bottom: 16px; color: white; }
.cond-card-title em { color: var(--sienna-lt); font-style: italic; }
.cond-card p { color: var(--sand); font-size: 15px; line-height: 1.7; font-weight: 300; }
.cond-offer { margin-top: 32px; background: rgba(192,92,58,0.15); border: 1px solid rgba(192,92,58,0.3); border-radius: var(--radius-md); padding: 24px; }
.cond-offer .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sienna-lt); font-weight: 600; margin-bottom: 8px; }
.cond-offer .offer-title { font-family: var(--font-head); font-size: 26px; font-weight: 600; color: white; margin-bottom: 6px; }
.cond-offer .offer-sub { font-size: 13px; color: var(--sand); }
.cond-offer .btn-offer { display: inline-flex; margin-top: 16px; background: var(--sienna); color: white; font-weight: 600; font-size: 14px; padding: 12px 24px; border-radius: 50px; transition: var(--transition); }
.cond-offer .btn-offer:hover { background: var(--sienna-lt); }

/* ===========================
   DOCTORS
=========================== */
.doctors-section { background: var(--white); }
.doctors-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.doctors-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.doctor-card { position: relative; border-radius: var(--radius-md); overflow: hidden; background: var(--cream); transition: var(--transition); cursor: pointer; }
.doctor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.doctor-avatar { aspect-ratio: 3/4; background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.doctor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-initial { font-family: var(--font-head); font-size: 52px; font-weight: 600; color: rgba(255,255,255,0.2); letter-spacing: -2px; }
.role-badge { position: absolute; bottom: 12px; left: 12px; background: var(--sienna); color: white; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 50px; }
.doctor-info { padding: 20px 20px 24px; }
.doctor-info .dname { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--text-dark); }
.doctor-info .dtitle { font-size: 12px; color: var(--text-mid); margin-top: 3px; }
.doctor-info .dexcerpt { font-size: 12.5px; color: var(--text-mid); line-height: 1.5; margin-top: 10px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.doctor-card .card-link { display: block; text-align: center; padding: 12px; border-top: 1px solid var(--cream-dk); font-size: 12px; font-weight: 600; color: var(--sienna); text-transform: uppercase; letter-spacing: 0.06em; transition: var(--transition); }
.doctor-card:hover .card-link { background: var(--sienna); color: white; }

/* ===========================
   WHY CHOOSE US
=========================== */
.why-section { background: var(--navy); position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(192,92,58,0.12) 0%, transparent 70%); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.why-content .section-label { color: var(--sienna-lt); }
.why-content .section-title { color: var(--white); }
.why-content .section-subtitle { color: var(--sand); }
.why-features { margin-top: 44px; display: flex; flex-direction: column; gap: 24px; }
.why-feat { display: flex; gap: 18px; align-items: flex-start; padding: 24px; border-radius: var(--radius-md); border: 1px solid rgba(201,185,154,0.1); transition: var(--transition); }
.why-feat:hover { border-color: rgba(192,92,58,0.3); background: rgba(192,92,58,0.05); }
.why-feat-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(192,92,58,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.why-feat-icon svg { width: 20px; height: 20px; stroke: var(--sienna-lt); fill: none; stroke-width: 2; }
.feat-title { font-weight: 600; color: white; font-size: 15px; margin-bottom: 5px; }
.feat-text { font-size: 13.5px; color: var(--sand); line-height: 1.6; font-weight: 300; }
.why-big-number { position: absolute; top: -30px; right: -20px; font-family: var(--font-head); font-size: 180px; font-weight: 700; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; }
.why-visual-wrap { position: relative; }
.hours-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: var(--radius-lg); padding: 44px; }
.hours-card h3 { font-family: var(--font-head); font-size: 28px; font-weight: 600; color: white; margin-bottom: 28px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--sand); font-weight: 500; }
.hours-row .time { color: white; font-weight: 600; font-size: 13px; }
.hours-row.closed .time { color: var(--text-lt); }
.today-badge { font-size: 10px; background: rgba(192,92,58,0.2); color: var(--sienna-lt); border: 1px solid rgba(192,92,58,0.3); padding: 2px 8px; border-radius: 50px; margin-left: 8px; font-weight: 600; }
.cta-hours { margin-top: 28px; display: flex; gap: 12px; }
.cta-hours a { flex: 1; text-align: center; padding: 14px; border-radius: var(--radius-md); font-size: 13.5px; font-weight: 600; transition: var(--transition); }
.cta-hours .a-call { background: var(--sienna); color: white; }
.cta-hours .a-call:hover { background: var(--sienna-lt); }
.cta-hours .a-book { background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.15); }
.cta-hours .a-book:hover { background: rgba(255,255,255,0.15); }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testi-card { background: var(--white); border-radius: var(--radius-md); padding: 36px; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1.5px solid transparent; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(192,92,58,0.15); }
.testi-stars { color: #F4B942; font-size: 16px; margin-bottom: 16px; }
.testi-text { font-family: var(--font-head); font-size: 18px; font-weight: 400; font-style: italic; color: var(--text-dark); line-height: 1.6; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--cream-dk); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 18px; font-weight: 600; color: var(--sienna); flex-shrink: 0; }
.testi-author .aname { font-weight: 600; font-size: 14px; }
.testi-author .aloc { font-size: 12px; color: var(--text-mid); }
.testi-google { margin-left: auto; font-size: 12px; color: var(--text-lt); font-weight: 700; }

/* ===========================
   NEW PATIENTS
=========================== */
.new-patient-section { background: var(--white); }
.np-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.np-card { border-radius: var(--radius-md); padding: 40px 36px; position: relative; overflow: hidden; transition: var(--transition); }
.np-card.card-a { background: var(--navy); }
.np-card.card-b { background: var(--sienna); }
.np-card.card-c { background: var(--cream); border: 2px solid var(--cream-dk); }
.np-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.np-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.np-card.card-c .np-icon { background: rgba(192,92,58,0.1); }
.np-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; }
.np-card.card-c .np-icon svg { stroke: var(--sienna); }
.np-title { font-family: var(--font-head); font-size: 26px; font-weight: 600; color: white; margin-bottom: 10px; line-height: 1.2; }
.np-card.card-c .np-title { color: var(--text-dark); }
.np-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 24px; }
.np-card.card-c .np-text { color: var(--text-mid); }
.np-btn { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); color: white; font-size: 13px; font-weight: 600; padding: 11px 22px; border-radius: 50px; transition: var(--transition); border: 1px solid rgba(255,255,255,0.25); }
.np-btn:hover { background: rgba(255,255,255,0.25); }
.np-card.card-c .np-btn { background: var(--sienna); color: white; border-color: var(--sienna); }
.np-card.card-c .np-btn:hover { background: var(--sienna-lt); }

/* ===========================
   CONTACT FORM
=========================== */
.contact-section { background: var(--cream-dk); position: relative; overflow: hidden; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.info-item { display: flex; gap: 14px; margin-bottom: 28px; align-items: flex-start; }
.info-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--sienna); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.info-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }
.info-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mid); margin-bottom: 4px; }
.info-value { font-size: 16px; font-weight: 600; color: var(--text-dark); }
.info-value a { color: inherit; }
.info-value a:hover { color: var(--sienna); }
.info-sub { font-size: 13px; color: var(--text-mid); margin-top: 2px; }
.social-row { display: flex; gap: 12px; margin-top: 36px; }
.social-btn { width: 42px; height: 42px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); transition: var(--transition); color: var(--text-mid); font-size: 14px; font-weight: 700; }
.social-btn:hover { background: var(--sienna); color: white; transform: translateY(-2px); }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 52px; box-shadow: var(--shadow-md); }
.form-title { font-family: var(--font-head); font-size: 32px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-subtitle { font-size: 15px; color: var(--text-mid); margin-bottom: 28px; }
.offer-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(192,92,58,0.1); border: 1px solid rgba(192,92,58,0.25); color: var(--sienna); font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 50px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; border: 1.5px solid var(--cream-dk); background: var(--cream);
  border-radius: var(--radius-sm); padding: 13px 16px;
  font-family: var(--font-body); font-size: 14px; color: var(--text-dark);
  transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sienna); background: white; box-shadow: 0 0 0 3px rgba(192,92,58,0.1); }
.form-group textarea { height: 100px; resize: none; }
.form-submit { width: 100%; background: var(--sienna); color: white; border: none; font-family: var(--font-body); font-size: 15px; font-weight: 600; padding: 16px; border-radius: 50px; cursor: pointer; transition: var(--transition); margin-top: 8px; }
.form-submit:hover { background: var(--sienna-lt); transform: translateY(-1px); box-shadow: 0 8px 25px rgba(192,92,58,0.4); }
.form-disclaimer { font-size: 11px; color: var(--text-lt); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ===========================
   MAP
=========================== */
.map-section { background: var(--white); padding: 0; }
.map-wrap { height: 420px; position: relative; }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: sepia(10%) contrast(1.05); }
.map-overlay-card { position: absolute; top: 40px; left: 60px; background: var(--navy); color: white; border-radius: var(--radius-md); padding: 28px 32px; box-shadow: var(--shadow-lg); max-width: 280px; }
.map-overlay-card h4 { font-family: var(--font-head); font-size: 22px; font-weight: 600; margin-bottom: 14px; }
.map-overlay-card .addr { font-size: 14px; color: var(--sand); line-height: 1.6; }
.get-dir { display: inline-flex; margin-top: 16px; background: var(--sienna); color: white; font-size: 13px; font-weight: 600; padding: 10px 20px; border-radius: 50px; transition: var(--transition); }
.get-dir:hover { background: var(--sienna-lt); }

/* ===========================
   FOOTER
=========================== */
footer { background: var(--navy); color: var(--sand); padding: 80px 0 0; }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; border-bottom: 1px solid rgba(201,185,154,0.1); }
.footer-brand .brand-tagline { font-size: 14px; color: var(--text-lt); line-height: 1.7; margin-top: 16px; font-weight: 300; max-width: 280px; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-lt); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--sienna-lt); }
.footer-bottom { max-width: 1320px; margin: 0 auto; padding: 24px 40px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-lt); }
.footer-bottom a { color: var(--text-lt); }
.footer-bottom a:hover { color: var(--sienna-lt); }

/* ===========================
   FLOATING BUTTON
=========================== */
.fab-wrap { position: fixed; bottom: 32px; right: 32px; display: flex; flex-direction: column; gap: 12px; z-index: 500; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: var(--transition); cursor: pointer; }
.fab:hover { transform: scale(1.1); }
.fab-call { background: var(--sienna); }
.fab svg { width: 24px; height: 24px; fill: white; }

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===========================
   WORDPRESS SPECIFIC
=========================== */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
.aligncenter { display: block; margin: 20px auto; }
.screen-reader-text { position: absolute; left: -9999px; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .doctors-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .hero-content { padding: 80px 40px; }
  .conditions-layout, .why-layout, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .section-inner { padding: 0 20px; }
  .hero-content { padding: 60px 20px; }
  .header-inner { padding: 0 20px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .services-grid, .testimonials-grid, .np-grid, .doctors-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .map-overlay-card { left: 20px; top: 20px; }
}
