/* ============================================================
   MANANT PHYSIOTHERAPY - Main Stylesheet
   Brand: Teal #1A7B8C | Coral #E8624A | Light #F0F9FA | White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --teal:       #1A7B8C;
  --teal-dark:  #125E6B;
  --teal-light: #2AA0B4;
  --coral:      #E8624A;
  --coral-dark: #C94D38;
  --bg-light:   #F0F9FA;
  --bg-soft:    #E8F4F6;
  --text-dark:  #1C2B35;
  --text-mid:   #4A6070;
  --text-light: #7A96A4;
  --white:      #FFFFFF;
  --border:     #D0E8ED;
  --shadow-sm:  0 2px 12px rgba(26,123,140,0.08);
  --shadow-md:  0 8px 32px rgba(26,123,140,0.14);
  --shadow-lg:  0 20px 60px rgba(26,123,140,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-mid); line-height: 1.75; }
a  { text-decoration: none; color: inherit; }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-sub   { color: var(--text-mid); max-width: 580px; margin: 0 auto 48px; font-size: 1.05rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: all var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,98,74,0.35); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-white  { background: var(--white); color: var(--teal); }
.btn-white:hover { background: var(--bg-light); transform: translateY(-2px); }
.btn-teal   { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,123,140,0.35); }

/* ── HEADER / NAV ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

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

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 44px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name  { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--teal); }
.logo-tag   { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  color: var(--text-dark); transition: all var(--transition); white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--teal); background: var(--bg-light); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all var(--transition);
  border: 1px solid var(--border); z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 0.875rem; color: var(--text-dark);
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--teal); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { font-size: 0.875rem; font-weight: 600; color: var(--teal); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-soft) 60%, rgba(26,123,140,0.08) 100%);
  padding-top: 72px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,123,140,0.08) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; left: -50px; bottom: -50px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,74,0.06) 0%, transparent 70%);
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-eyebrow span { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); }
.eyebrow-line { width: 40px; height: 2px; background: var(--coral); border-radius: 2px; }

.hero h1 { margin-bottom: 20px; color: var(--text-dark); }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-desc { font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 32px; }
.stat h3 { font-size: 2rem; color: var(--teal); font-family: 'Playfair Display', serif; }
.stat p  { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-image-wrap { position: relative; }
.hero-img-main {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); object-fit: cover;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  min-height: 480px; display: flex; align-items: center; justify-content: center;
}

.hero-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--white); border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.badge-icon { width: 40px; height: 40px; background: var(--bg-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.badge-text strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.badge-text span   { font-size: 0.75rem; color: var(--text-light); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--teal); padding: 20px 0; }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 500; }
.trust-item span:first-child { font-size: 1.2rem; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--border); transition: all var(--transition);
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p  { font-size: 0.9rem; margin-bottom: 16px; }
.service-link { font-size: 0.85rem; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-image img { width: 100%; display: block; }
.why-features { display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; gap: 16px; }
.feature-icon { width: 48px; height: 48px; background: var(--bg-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.feature-text h4 { margin-bottom: 4px; }
.feature-text p  { font-size: 0.9rem; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #FBB840; margin-bottom: 14px; font-size: 0.9rem; }
.testimonial-card p { font-size: 0.95rem; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.reviewer-info strong { display: block; font-size: 0.9rem; }
.reviewer-info span   { font-size: 0.75rem; color: var(--text-light); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%); color: var(--white); text-align: center; padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.05); }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; }
.cta-actions   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }

.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.blog-thumb { height: 200px; background: var(--bg-soft); position: relative; overflow: hidden; }
.blog-thumb-inner {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-soft) 100%);
}
.blog-cat { position: absolute; top: 14px; left: 14px; background: var(--teal); color: var(--white); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 12px; font-size: 0.78rem; color: var(--text-light); }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card p  { font-size: 0.875rem; margin-bottom: 16px; }
.blog-read   { font-size: 0.85rem; font-weight: 600; color: var(--teal); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; }
.contact-icon { width: 44px; height: 44px; background: var(--bg-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-item p  { color: var(--text-dark); font-size: 0.95rem; }

.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); font-family: 'Inter', sans-serif;
  font-size: 0.95rem; color: var(--text-dark); transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,123,140,0.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── MAP ── */
.map-section { background: var(--bg-light); }
.map-embed iframe { width: 100%; height: 420px; border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow-md); }

/* ── FOOTER ── */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tag  { color: rgba(255,255,255,0.5); }
.footer-brand p { margin-top: 16px; font-size: 0.875rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.social-link:hover { background: var(--teal); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white); padding: 120px 0 60px; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--white); }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all var(--transition); text-align: center; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-photo { height: 220px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.team-body { padding: 20px; }
.team-body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-body .role { color: var(--teal); font-size: 0.85rem; font-weight: 600; }
.team-body p    { font-size: 0.83rem; margin-top: 8px; }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; position: relative; }
.step { text-align: center; padding: 32px 20px; }
.step-num { width: 56px; height: 56px; background: var(--teal); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; margin: 0 auto 16px; }
.step h4 { margin-bottom: 8px; }
.step p  { font-size: 0.875rem; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 0.95rem; transition: background var(--transition); }
.faq-q:hover { background: var(--bg-light); }
.faq-q .arrow { transition: transform var(--transition); font-size: 0.8rem; color: var(--teal); }
.faq-item.open .faq-q { color: var(--teal); background: var(--bg-light); }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 20px; color: var(--text-mid); font-size: 0.925rem; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── BLOG PAGE ── */
.blog-article { max-width: 820px; margin: 0 auto; }
.article-meta { display: flex; gap: 20px; color: var(--text-light); font-size: 0.85rem; margin-bottom: 32px; flex-wrap: wrap; }
.article-body h2 { margin: 36px 0 16px; }
.article-body h3 { margin: 28px 0 12px; color: var(--teal); }
.article-body p  { margin-bottom: 18px; }
.article-body ul { margin: 0 0 18px 20px; }
.article-body ul li { color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; }
.article-callout { background: var(--bg-light); border-left: 4px solid var(--teal); border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 28px 0; }
.article-callout p { color: var(--text-dark); font-style: italic; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse      { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float      { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shimmer    { from { background-position: -200% 0; } to { background-position: 200% 0; } }

.animate-fade-up  { opacity: 0; animation: fadeInUp  0.7s ease forwards; }
.animate-fade-left{ opacity: 0; animation: fadeInLeft 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero-grid, .why-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding-top: 72px; min-height: auto; padding-bottom: 48px; }
  .hero-stats { gap: 20px; }
  .nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px; box-shadow: var(--shadow-md); max-height: calc(100vh - 72px); overflow-y: auto; }
  .nav.open { display: flex; }
  .hamburger { display: flex; }
  .hero-badge { bottom: auto; left: auto; right: 16px; top: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .trust-items { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: var(--bg-light); opacity: 1; visibility: hidden; max-height: 0; overflow: hidden; transform: none; transition: max-height 0.3s ease; padding: 0; }
  .nav-dropdown.mobile-open .dropdown-menu { visibility: visible; max-height: 400px; padding: 8px; }
  .header-cta .btn { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ── UTILITY ── */
.bg-light { background: var(--bg-light); }
.bg-teal  { background: var(--teal); }
.text-teal { color: var(--teal); }
.text-coral { color: var(--coral); }
.mt-8  { margin-top: 32px; }
.mb-8  { margin-bottom: 32px; }
.highlight { color: var(--teal); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulse 2s infinite; transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.1); }

/* ── PHONE FLOAT ── */
.phone-float {
  position: fixed; bottom: 96px; right: 28px; z-index: 999;
  width: 48px; height: 48px; background: var(--coral); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: 0 4px 16px rgba(232,98,74,0.4);
  transition: transform var(--transition);
}
.phone-float:hover { transform: scale(1.1); }

/* Sticky appointment bar */
.appt-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--teal); color: var(--white); padding: 12px 20px; z-index: 998; justify-content: space-between; align-items: center; }
@media (max-width: 768px) { .appt-bar { display: flex; } }
.appt-bar span { font-size: 0.9rem; font-weight: 500; }

/* SVG placeholder images */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: rgba(255,255,255,0.9); gap: 12px;
}
.img-placeholder .icon { font-size: 5rem; opacity: 0.7; }
.img-placeholder .label { font-size: 1rem; font-weight: 600; opacity: 0.9; }
