﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Dr. Karim Badaoui Â· Cardiologie Â· Casablanca
   Bleu mÃ©dical + Blanc + Rouge cÅ“ur Â· DM Sans + Lora + Cairo
   Brand palette (cardiologie â€” confiance / clinique) :
   Primary  â†’ Bleu mÃ©dical #1565C0
   Accent   â†’ Rouge cÅ“ur   #EF4565
   Text     â†’ Encre froide #15293D
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

:root {
  /* â”€â”€ Primary brand: bleu mÃ©dical (confiance) â”€â”€ */
  --teal:        #8C1C2E;
  --teal-dk:     #6B1222;
  --teal-xdk:    #4E0D18;
  --teal-lt:     #FCEEF0;
  --teal-mid:    #D4899A;
  --pink:        #C0394F;
  --pink-dk:     #9A1E32;
  --pink-lt:     #FCEEF0;
  --pink-mid:    #E8A3B0;
  --coral:       #C0394F;
  --coral-lt:    #FCEEF0;
  --coral-mid:   #E8A3B0;
  --gold:        #C0394F;
  --gold-lt:     #FCEEF0;
  --navy:        #15293D;
  --navy-dk:     #0E1B29;
  --white:       #FFFFFF;
  --off-white:   #FDF7F8;
  --text:        #15293D;
  --text-md:     #51657A;
  --text-lt:     #8A9AAB;
  --border:      #EFD5D9;
  --bg-alt:      #FDF4F5;
  --success:     #10b981;
  --error:       #ef4444;
  --wa-green:    #25d366;
  --r:           12px;
  --r-lg:        18px;
  --r-xl:        26px;
  --sh:          0 2px 20px rgba(140,28,46,.10);
  --sh-lg:       0 8px 40px rgba(140,28,46,.16);
  --sh-card:     0 4px 24px rgba(78,13,24,.08);
  --tr:          0.3s cubic-bezier(.4,0,.2,1);
  --font:        'DM Sans', sans-serif;
  --font-h:      'Lora', Georgia, serif;
  --font-ar:     'Cairo', sans-serif;
  --nav-h:       72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
body.rtl  { font-family: var(--font-ar); direction: rtl; text-align: right; }
h1,h2,h3 { font-family: var(--font-h); }
body.rtl h1,body.rtl h2,body.rtl h3 { font-family: var(--font-ar); }
img { max-width:100%; display:block; }
a   { text-decoration:none; color:inherit; }
ul  { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input,select,textarea { font-family:inherit; }
.container { width:100%; max-width:1200px; margin:0 auto; padding:0 24px; }

/* â”€â”€ Buttons â”€â”€ */
.btn-teal {
  display:inline-flex; align-items:center; gap:9px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dk));
  color: var(--white);
  padding:13px 28px; border-radius:50px;
  font-weight:600; font-size:.9rem;
  transition:var(--tr);
  box-shadow: 0 4px 20px rgba(140,28,46,.35);
  position:relative; overflow:hidden;
}
.btn-teal::after {
  content:''; position:absolute; inset:0; border-radius:50px;
  background:linear-gradient(135deg, rgba(255,255,255,.12), transparent);
  opacity:0; transition:var(--tr);
}
.btn-teal:hover { transform:translateY(-3px); box-shadow:0 10px 28px rgba(140,28,46,.45); }
.btn-teal:hover::after { opacity:1; }
.btn-teal.btn-lg { padding:15px 36px; font-size:1rem; }

.btn-whatsapp-submit {
  width:100%; display:flex; align-items:center; justify-content:center; gap:10px;
  background: var(--wa-green); color: var(--white);
  padding:14px 24px; border-radius:50px; font-weight:600; font-size:1rem;
  transition:var(--tr); margin-top:4px;
}
.btn-whatsapp-submit:hover { background:#1ebe5a; transform:translateY(-2px); box-shadow:0 8px 24px rgba(37,211,102,.4); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR â€” Floating Pill
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1180px;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 56px;
  box-shadow:
    0 4px 28px rgba(78,13,24,0.10),
    0 1px 3px rgba(78,13,24,0.06),
    0 0 0 1px rgba(255,255,255,0.85);
  transition: var(--tr);
}
.navbar.scrolled {
  box-shadow:
    0 8px 40px rgba(78,13,24,0.14),
    0 1px 3px rgba(78,13,24,0.08),
    0 0 0 1px rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.99);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 18px;
  gap: 12px;
}
.navbar-brand { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.about-logo-float-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}
.about-logo-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #eaf3fc 60%, #dbeeff 100%);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow:
    0 8px 32px rgba(140,28,46,.15),
    0 2px 8px rgba(140,28,46,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
  border: 1.5px solid rgba(140,28,46,.10);
  animation: cardFloat 4s ease-in-out infinite;
}
.about-logo-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(140,28,46,.18), rgba(144,194,238,.12), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.about-logo-float {
  width: 240px;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}
.about-logo-card-glow {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 28px;
  background: radial-gradient(ellipse, rgba(140,28,46,.22) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 0;
}
@keyframes cardFloat {
  0%   { transform: translateY(0px) rotate(0deg); }
  25%  { transform: translateY(-12px) rotate(.4deg); }
  50%  { transform: translateY(-20px) rotate(0deg); }
  75%  { transform: translateY(-12px) rotate(-.4deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes glowPulse {
  0%   { opacity: .5; transform: translateX(-50%) scaleX(1); }
  50%  { opacity: .15; transform: translateX(-50%) scaleX(.65); }
  100% { opacity: .5; transform: translateX(-50%) scaleX(1); }
}
.brand-icon {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(140,28,46,.18);
  border: 1.5px solid rgba(140,28,46,.12);
  overflow: hidden;
  transition: var(--tr);
  flex-shrink: 0;
}
.brand-icon-logo { width: 40px; height: 40px; object-fit: contain; display: block; }
.navbar-brand:hover .brand-icon { transform:scale(1.07); box-shadow:0 6px 20px rgba(140,28,46,.3); }
.brand-text { display:flex; flex-direction:column; line-height:1.15; }
/* Pill is always white â€” brand rose text */
.brand-name {
  font-weight: 700; font-size: .98rem; color: var(--navy);
  font-family: var(--font-h); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand-specialty { font-size: .63rem; color: var(--teal); font-weight: 500; white-space: nowrap; }

.nav-links { display:flex; align-items:center; gap:1px; }
.nav-links a {
  padding: 7px 13px; border-radius: 40px;
  font-size: .83rem; font-weight: 500; color: var(--text-md);
  transition: var(--tr); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--teal);
  background: var(--teal-lt);
}

.navbar-actions { display:flex; align-items:center; gap:8px; flex-shrink:0; }

/* Language switcher â€” divider style like the example */
/* â”€â”€ Language dropdown (flags) â”€â”€ */
.lang-switcher { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 7px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 40px; padding: 7px 12px;
  color: var(--text); font-weight: 700; font-size: .78rem; letter-spacing: .3px;
  transition: var(--tr);
}
.lang-current:hover { border-color: var(--teal-mid); }
.lang-current .lang-flag { font-size: 1.05rem; line-height: 1; }
.lang-current i { font-size: .6rem; color: var(--text-lt); transition: var(--tr); }
.lang-switcher.open .lang-current { border-color: var(--teal); background: var(--white); }
.lang-switcher.open .lang-current i { transform: rotate(180deg); }

.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 170px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--sh-lg);
  padding: 6px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--tr); z-index: 1100;
}
.lang-switcher.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-btn {
  display: flex; align-items: center; gap: 11px;
  width: 100%; text-align: left;
  padding: 10px 12px; border-radius: 10px;
  font-size: .9rem; font-weight: 600; color: var(--text);
  transition: var(--tr);
}
.lang-btn .lang-flag { font-size: 1.2rem; line-height: 1; flex-shrink: 0; }
.lang-btn:hover { background: var(--teal-lt); color: var(--teal); }
.lang-btn.active { background: var(--teal); color: var(--white); }

.btn-appointment {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--teal); color: var(--white);
  padding: 9px 20px; border-radius: 50px;
  font-size: .83rem; font-weight: 700;
  transition: var(--tr); white-space: nowrap;
  box-shadow: 0 3px 14px rgba(140,28,46,.35);
  letter-spacing: .2px;
}
.btn-appointment:hover { background: var(--teal-dk); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(140,28,46,.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 50%; transition: var(--tr);
  background: var(--bg-alt); border: 1px solid var(--border);
}
.hamburger span {
  display: block; height: 2px; width: 18px;
  background: var(--navy); border-radius: 2px; transition: var(--tr);
}
.hamburger.open { background: var(--teal-lt); border-color: var(--teal); }
.hamburger.open span { background: var(--teal); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO â€” SPLIT SCREEN
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â”€â”€ Hero entrance keyframes â”€â”€ */
@keyframes hero-fade-up {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:none; }
}
@keyframes hero-slide-right {
  from { opacity:0; transform:translateX(-24px); }
  to   { opacity:1; transform:none; }
}
@keyframes hero-zoom-in {
  from { opacity:0; transform:scale(.92) translateY(18px); }
  to   { opacity:1; transform:none; }
}
@keyframes ring-breathe {
  0%,100% { transform:translate(-50%,-50%) scale(1);   opacity:.5; }
  50%      { transform:translate(-50%,-50%) scale(1.06); opacity:1; }
}
@keyframes shimmer-slide {
  0%   { left:-80%; }
  100% { left:160%; }
}

.hero {
  min-height: 100vh; position: relative;
  background: var(--white); overflow: hidden;
  display: flex; flex-direction: column;
  padding-top: calc(var(--nav-h) + 32px);
}

/* Rose diagonal right panel */
.hero-bg-right {
  position:absolute; top:0; right:0; bottom:0;
  width:52%;
  background: linear-gradient(135deg,
    var(--teal-xdk) 0%,
    var(--teal-dk)  30%,
    var(--teal)     62%,
    #2A5FA0         82%,
    #3A6FB5         100%);
  clip-path: polygon(9% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index:0;
}
/* Top-right atmospheric glow */
.hero-bg-right::before {
  content:'';
  position:absolute; top:-100px; right:-60px;
  width:600px; height:600px; border-radius:50%;
  background: radial-gradient(circle, rgba(255,255,255,.10) 0%, transparent 60%);
  animation: hbr-glow 9s ease-in-out infinite;
}
/* Bottom-left gold accent glow */
.hero-bg-right::after {
  content:'';
  position:absolute; bottom:-40px; left:5%;
  width:420px; height:420px; border-radius:50%;
  background: radial-gradient(circle, rgba(201,162,75,.22) 0%, transparent 65%);
  filter:blur(50px);
  animation: hbr-glow 12s ease-in-out infinite reverse;
}
@keyframes hbr-glow {
  0%,100% { transform:scale(1);    opacity:.7; }
  50%      { transform:scale(1.18); opacity:1; }
}

.hero-particles { position:absolute; inset:0; pointer-events:none; z-index:1; overflow:hidden; }

/* Hero grid â€” fills space below floating navbar */
.hero-grid {
  display: grid; grid-template-columns: 48% 52%;
  flex: 1; position: relative; z-index: 2;
  min-height: calc(100vh - var(--nav-h) - 32px);
}

/* LEFT: white text side â€” subtle rose radial accent in corner */
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 48px 64px 0;
  padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  background: radial-gradient(ellipse 60% 50% at 0% 50%,
    rgba(140,28,46,.04) 0%,
    transparent 70%);
}
/* On desktop both wrappers are transparent flex-column pass-throughs */
.hero-top, .hero-bottom {
  display: contents; /* invisible wrappers on desktop */
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:600; color:var(--teal);
  text-transform:uppercase; letter-spacing:.8px;
  margin-bottom:20px;
  animation: hero-slide-right .7s cubic-bezier(.4,0,.2,1) both .15s;
}
.hero-dot {
  width:8px; height:8px; border-radius:50%;
  background:var(--teal); flex-shrink:0;
  animation: dot-pulse 2.5s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { box-shadow:0 0 0 0 rgba(140,28,46,.6); }
  50%      { box-shadow:0 0 0 8px rgba(140,28,46,0); }
}
.hero-name {
  font-size:clamp(2.8rem, 5vw, 4.2rem);
  font-weight:700; line-height:1.1;
  color:var(--navy); margin-bottom:8px; letter-spacing:-.03em;
  animation: hero-fade-up .8s cubic-bezier(.4,0,.2,1) both .3s;
}
.hero-tagline {
  font-size:clamp(1.1rem, 2vw, 1.5rem);
  color:var(--text-md); margin-bottom:18px; font-family:var(--font-h);
  font-style:normal; line-height:1.3;
  animation: hero-fade-up .7s ease both .5s;
}
.hero-tagline em { color:var(--teal); font-style:italic; }
.hero-desc {
  font-size:.97rem; color:var(--text-md); line-height:1.75;
  margin-bottom:28px; max-width:460px;
  animation: hero-fade-up .7s ease both .65s;
}
.hero-cred-list { display:flex; flex-direction:column; gap:10px; margin-bottom:32px; animation: hero-fade-up .7s ease both .8s; }
.hero-cred {
  display:flex; align-items:center; gap:11px;
  font-size:.85rem; color:var(--text);
  transition:var(--tr);
}
.hero-cred:hover { transform:translateX(4px); }
.hero-cred i {
  width:32px; height:32px;
  background:var(--teal-lt); color:var(--teal);
  border-radius:9px; display:flex; align-items:center; justify-content:center;
  font-size:.8rem; flex-shrink:0;
  transition:var(--tr);
}
.hero-cred:hover i { background:var(--teal); color:var(--white); transform:scale(1.1); }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:36px; animation: hero-fade-up .7s ease both 1.0s; }
.btn-hero-wa {
  display:inline-flex; align-items:center; gap:9px;
  background:var(--wa-green); color:var(--white);
  padding:14px 28px; border-radius:50px; font-weight:600; font-size:.95rem;
  transition:var(--tr); box-shadow:0 4px 16px rgba(37,211,102,.3);
}
.btn-hero-wa:hover { background:#1ebe5a; transform:translateY(-2px); box-shadow:0 8px 24px rgba(37,211,102,.4); }
.btn-hero-outline {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:var(--teal);
  padding:13px 24px; border-radius:50px; font-weight:600; font-size:.9rem;
  border:2px solid var(--teal-mid); transition:var(--tr);
}
.btn-hero-outline:hover { background:var(--teal-lt); border-color:var(--teal); }
.hero-stats-row {
  display:flex; align-items:center; gap:0;
  padding-top:28px; border-top:1px solid var(--border);
  animation: hero-fade-up .6s ease both 1.15s;
}
.hs-item { text-align:center; padding:0 20px; }
.hs-item:first-child { padding-left:0; }
.hs-item strong {
  display:block; font-size:1.9rem; font-weight:800;
  color:var(--teal); line-height:1; font-family:var(--font-h);
  letter-spacing:-.02em;
}
.hs-item span { font-size:.72rem; color:var(--text-lt); text-transform:uppercase; letter-spacing:.5px; margin-top:4px; display:block; }
.hs-sep { width:1px; height:36px; background:var(--border); flex-shrink:0; }

/* RIGHT: image over rose panel */
.hero-right {
  display:flex; align-items:center; justify-content:center;
  padding:48px 40px 48px 60px;
  position:relative;
}
/* Decorative breathing ring 1 */
.hero-right::before {
  content:''; position:absolute; border-radius:50%;
  width:480px; height:480px;
  border:1px solid rgba(255,255,255,.12);
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  animation: ring-breathe 5s ease-in-out infinite;
  pointer-events:none;
}
/* Decorative breathing ring 2 */
.hero-right::after {
  content:''; position:absolute; border-radius:50%;
  width:620px; height:620px;
  border:1px solid rgba(255,255,255,.06);
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  animation: ring-breathe 5s ease-in-out infinite reverse;
  pointer-events:none;
}

.hero-img-wrap {
  position:relative; width:100%; max-width:420px;
  animation: hero-zoom-in .9s cubic-bezier(.4,0,.2,1) both .3s;
}

.hiw-photo {
  width:100%; aspect-ratio:4/5;
  border-radius:var(--r-xl);
  overflow:hidden; position:relative;
  box-shadow:
    0 32px 80px rgba(0,0,0,.4),
    0 0 0 3px rgba(255,255,255,.28),
    0 0 60px rgba(140,28,46,.4),
    0 0 120px rgba(140,28,46,.18);
  border:none;
  animation: hiw-float 7s ease-in-out infinite;
}
/* Shimmer sweep over photo */
.hiw-photo::after {
  content:''; position:absolute; top:0; bottom:0;
  left:-80%; width:60%;
  background:linear-gradient(105deg, transparent 30%, rgba(255,255,255,.12) 50%, transparent 70%);
  animation: shimmer-slide 4s ease-in-out infinite 1.5s;
  pointer-events:none;
}
@keyframes hiw-float {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-14px); }
}
.hiw-photo img {
  width:100%; height:100%; object-fit:cover; object-position:top center;
}
.hiw-placeholder {
  position:absolute; inset:0;
  background: linear-gradient(150deg, rgba(140,28,46,.4), rgba(78,13,24,.6));
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:12px; color:rgba(255,255,255,.6); font-size:.9rem;
}
.hiw-placeholder i { font-size:4.5rem; opacity:.3; }

/* Specialty chips â€” sit BELOW the photo, never on the face */
.hiw-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 4px 0;
}
.hiw-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50px; padding: 9px 18px;
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.95);
  white-space: nowrap; transition: var(--tr);
  animation: hiw-chip-in .5s cubic-bezier(.4,0,.2,1) both 1.1s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.hiw-chip:nth-child(2) { animation-delay: 1.25s; }
.hiw-chip:nth-child(3) { animation-delay: 1.4s; }
@keyframes hiw-chip-in { from{opacity:0;transform:translateY(12px) scale(.95)} to{opacity:1;transform:none} }
.hiw-chip:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.5); transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.2); }
.hiw-ci {
  width: 26px; height: 26px; border-radius: 7px;
  background: rgba(255,255,255,.18); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; flex-shrink: 0;
}
.hiw-chip-rating {
  background: rgba(255,255,255,.95);
  color: var(--navy);
  border-color: rgba(255,255,255,.9);
  gap: 8px;
}
.hiw-chip-rating:hover { background: var(--white); }
.hiw-stars { color: #f59e0b; font-size: .82rem; letter-spacing: 1px; }
.hiw-chip-rating span { font-size: .78rem; color: var(--text-md); font-weight: 600; }

/* scroll indicator */
.hero-scroll-btn {
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  z-index:5; width:40px; height:40px; border-radius:50%;
  border:2px solid var(--border); color:var(--text-lt);
  display:flex; align-items:center; justify-content:center; font-size:.85rem;
  animation:scroll-bounce 2s ease-in-out infinite; transition:var(--tr);
}
.hero-scroll-btn:hover { border-color:var(--teal); color:var(--teal); }
@keyframes scroll-bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* Particles */
.hero-particle { position:absolute; bottom:-10px; animation: p-up linear infinite; }
.hp-dot    { border-radius:50%; background:rgba(255,255,255,.5); animation-name:p-up; }
.hp-diamond{ background:rgba(201,162,75,.6); animation-name:p-spin; }
.hp-plus   { animation-name:p-drift; }
.hp-plus::before,.hp-plus::after { content:''; position:absolute; background:rgba(255,255,255,.55); border-radius:1px; }
.hp-plus::before { width:100%; height:28%; top:36%; left:0; }
.hp-plus::after  { width:28%; height:100%; top:0; left:36%; }
.hp-ring   { background:transparent; border-radius:50%; border:1px solid rgba(255,255,255,.3); animation-name:p-ring; bottom:auto; }

@keyframes p-up   { 0%{transform:translateY(0)scale(0);opacity:0} 8%{opacity:.7;transform:translateY(-50px)scale(1)} 90%{opacity:.6} 100%{transform:translateY(-110vh)scale(.5);opacity:0} }
@keyframes p-spin { 0%{transform:translateY(0)rotate(45deg)scale(0);opacity:0} 8%{opacity:.7} 100%{transform:translateY(-110vh)rotate(405deg)scale(.5);opacity:0} }
@keyframes p-drift{ 0%{transform:translateY(0)translateX(0);opacity:0} 8%{opacity:.6} 33%{transform:translateY(-33vh)translateX(20px)} 66%{transform:translateY(-66vh)translateX(-18px)} 100%{transform:translateY(-110vh)translateX(10px);opacity:0} }
@keyframes p-ring { 0%{transform:scale(.2);opacity:.5} 100%{transform:scale(3);opacity:0} }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VALUE STRIP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.value-strip {
  background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:52px 0;
}
.vs-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
}
.vs-item {
  text-align:center; padding:28px 28px;
  border-right:1px solid var(--border);
  position:relative;
  transition:var(--tr);
}
.vs-item:last-child { border-right:none; }
.vs-item:hover { background:var(--teal-lt); }
.vs-icon {
  width:56px; height:56px; border-radius:14px;
  background:var(--teal-lt); color:var(--teal);
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; margin:0 auto 16px;
  transition:var(--tr);
}
.vs-item:hover .vs-icon { background:var(--teal); color:var(--white); transform:scale(1.08); }
.vs-item h3 { font-size:.95rem; font-weight:700; color:var(--navy); margin-bottom:7px; font-family:var(--font-h); }
.vs-item p  { font-size:.82rem; color:var(--text-lt); line-height:1.6; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTIONS BASE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section { padding:88px 0; }
.section-alt { background:var(--bg-alt); }
.section-header { text-align:center; margin-bottom:60px; }
.section-tag {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--teal-lt); color:var(--teal);
  padding:6px 16px; border-radius:50px;
  font-size:.75rem; font-weight:700; margin-bottom:14px;
  letter-spacing:.8px; text-transform:uppercase;
}
.section-header h2 {
  font-size:clamp(1.65rem, 3vw, 2.4rem); font-weight:700;
  color:var(--navy); margin-bottom:12px; letter-spacing:-.02em; line-height:1.2;
}
.section-header p { color:var(--text-lt); font-size:.97rem; max-width:560px; margin:0 auto; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-grid { display:grid; grid-template-columns:320px 1fr; gap:60px; align-items:start; }
.about-image-col { display:flex; flex-direction:column; gap:18px; }
.about-photo-wrap {
  position:relative; width:100%; aspect-ratio:3/4;
  border-radius:var(--r-xl); overflow:hidden;
  box-shadow:var(--sh-lg); border:3px solid var(--border);
  background:var(--bg-alt);
}
.about-photo-wrap img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.about-ph {
  position:absolute; inset:0;
  background:linear-gradient(135deg, var(--teal-lt), var(--bg-alt));
  display:flex; align-items:center; justify-content:center;
  color:var(--teal); font-size:5rem; opacity:.25;
}
.about-photo-badge {
  position:absolute; bottom:16px; left:50%; transform:translateX(-50%);
  background:var(--white); border-radius:50px; padding:8px 18px;
  display:flex; align-items:center; gap:7px;
  font-size:.77rem; font-weight:700; color:var(--teal);
  box-shadow:var(--sh-card); white-space:nowrap;
}
.about-photo-badge i { color:var(--success); }
.about-contact-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:20px; display:flex; flex-direction:column; gap:10px;
  box-shadow:var(--sh);
}
.acc-item {
  display:flex; align-items:flex-start; gap:11px;
  font-size:.84rem; color:var(--text); border-radius:9px;
  padding:8px 10px; transition:var(--tr);
}
.acc-item:hover { background:var(--teal-lt); }
.acc-item i { color:var(--teal); font-size:1rem; margin-top:2px; flex-shrink:0; }
.acc-wa i { color:var(--wa-green); }
.acc-ph i { color:var(--teal); }
.acc-wa a, .acc-ph a { color:var(--teal-dk); font-weight:600; }
.acc-addr { color:var(--text-md); }
.acc-addr span { line-height:1.5; }

.about-content-col { display:flex; flex-direction:column; gap:20px; }
.about-content-col p { color:var(--text-md); line-height:1.85; font-size:.95rem; }
.lang-section { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.lang-label { font-size:.82rem; font-weight:600; color:var(--navy); }
.lang-chip {
  display:inline-flex; align-items:center; gap:6px;
  background:var(--teal-lt); border:1px solid var(--teal-mid);
  padding:5px 13px; border-radius:50px; font-size:.8rem; font-weight:500; color:var(--navy);
}

.diplomas-section h3 {
  font-size:1.2rem; font-weight:700; color:var(--navy);
  margin-bottom:18px; padding-bottom:10px;
  border-bottom:2px solid var(--border);
}
.diplomas-list { display:flex; flex-direction:column; gap:10px; }
.diploma-item {
  display:flex; align-items:center; gap:13px; padding:14px 16px;
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--r); transition:var(--tr);
  opacity:0; transform:translateX(-20px);
}
.diploma-item.visible { opacity:1; transform:none; }
.diploma-item:hover { border-color:var(--teal); box-shadow:var(--sh); }
.dip-ongoing { border-color:var(--gold) !important; background:var(--gold-lt) !important; }
.dip-badge {
  margin-left:auto; flex-shrink:0;
  background:linear-gradient(135deg, var(--gold), #d4a870);
  color:var(--white); font-size:.65rem; font-weight:700;
  padding:3px 10px; border-radius:50px; letter-spacing:.3px;
}
.dip-icon {
  width:38px; height:38px; border-radius:9px;
  background:var(--teal-lt); color:var(--teal);
  display:flex; align-items:center; justify-content:center; font-size:.9rem; flex-shrink:0;
}
.dip-ongoing .dip-icon { background:var(--gold-lt); color:var(--gold); }
.diploma-item > div:not(.dip-icon) { display:flex; flex-direction:column; gap:2px; }
.diploma-item strong { font-size:.85rem; color:var(--navy); font-weight:600; font-family:var(--font); }
.diploma-item span   { font-size:.77rem; color:var(--text-lt); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.service-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--r-lg); padding:32px 26px;
  transition:var(--tr); opacity:0; transform:translateY(24px); overflow:hidden;
  position:relative;
}
.service-card::after {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--teal), var(--coral));
  transform:scaleX(0); transition:var(--tr); transform-origin:left;
}
.service-card.visible  { opacity:1; transform:none; }
.service-card:hover    { transform:translateY(-6px); box-shadow:var(--sh-lg); border-color:var(--teal); }
.service-card:hover::after { transform:scaleX(1); }
.sc-icon {
  width:54px; height:54px; border-radius:var(--r);
  display:flex; align-items:center; justify-content:center;
  font-size:1.35rem; margin-bottom:20px; transition:var(--tr);
}
.sc-teal   { background:var(--teal-lt); color:var(--teal); }
.sc-coral  { background:var(--pink-lt); color:var(--pink); }
.sc-violet { background:#f3e6ec; color:#943055; }
.sc-green  { background:#eaf1f4; color:#3a6b80; }
.sc-gold   { background:var(--gold-lt); color:var(--gold); }
.service-card:hover .sc-icon { transform:scale(1.08) rotate(-5deg); }
.service-card:hover .sc-teal   { background:var(--teal); color:var(--white); }
.service-card:hover .sc-coral  { background:var(--pink); color:var(--white); }
.service-card:hover .sc-violet { background:#943055; color:var(--white); }
.service-card:hover .sc-green  { background:#3a6b80; color:var(--white); }
.service-card:hover .sc-gold   { background:var(--gold); color:var(--white); }
.service-card h3 { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:10px; line-height:1.35; }
.service-card p  { font-size:.84rem; color:var(--text-lt); line-height:1.8; }
/* Service card action buttons (Urgence / Domicile) */
.sc-btn {
  display:inline-flex; align-items:center; gap:8px;
  margin-top:16px; padding:10px 18px; border-radius:50px;
  font-weight:700; font-size:.84rem; transition:var(--tr);
}
.sc-btn-wa { background:var(--wa-green); color:var(--white); box-shadow:0 4px 14px rgba(37,211,102,.3); }
.sc-btn-wa:hover { background:#1ebe5a; transform:translateY(-2px); box-shadow:0 8px 22px rgba(37,211,102,.4); }
.sc-btn-urgence { background:#e23b3b; color:var(--white); box-shadow:0 4px 14px rgba(226,59,59,.3); letter-spacing:.3px; }
.sc-btn-urgence:hover { background:#c62f2f; transform:translateY(-2px); box-shadow:0 8px 22px rgba(226,59,59,.45); }
/* Home visit = gold (distinct from the green WhatsApp button) */
.sc-btn-domicile { background:var(--gold); color:var(--navy); box-shadow:0 4px 14px rgba(201,162,75,.3); }
.sc-btn-domicile:hover { background:var(--pink-dk); color:var(--white); transform:translateY(-2px); box-shadow:0 8px 22px rgba(201,162,75,.45); }
/* In the contact list all action buttons share one size & are centered */
.ci-btns .sc-btn { justify-content:center; margin-top:0; padding:12px 18px; font-size:.88rem; font-weight:600; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FEATURE SECTIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.feature-section { padding:96px 0; }
.feature-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center;
}
.feature-reversed .feature-text-col { order:1; }
.feature-reversed .feature-img-col  { order:2; }

.fi-wrap {
  position:relative; border-radius:var(--r-xl); overflow:hidden;
  aspect-ratio:2/3; box-shadow:var(--sh-lg); /* 1024Ã—1536 real image ratio */
}
.fi-wrap img { width:100%; height:100%; object-fit:cover; object-position:center top; position:relative; z-index:1; }
.fi-placeholder {
  position:absolute; inset:0; z-index:0;
  display:flex; align-items:center; justify-content:center;
  font-size:6rem; color:rgba(255,255,255,.35);
}
.fi-teal   .fi-placeholder { background:linear-gradient(140deg, #f7eaee 0%, #cf8ca1 40%, #6e1b36 100%); }
.fi-coral  .fi-placeholder { background:linear-gradient(140deg, #fbf4e3 0%, #e3c47e 40%, #c9a24b 100%); }
.fi-violet .fi-placeholder { background:linear-gradient(140deg, #f3e6ec 0%, #c98aa3 40%, #943055 100%); }
.fi-badge {
  position:absolute; bottom:22px; left:22px; z-index:3;
  background:rgba(255,255,255,.96); backdrop-filter:blur(14px);
  border-radius:50px; padding:9px 18px;
  display:flex; align-items:center; gap:8px;
  font-size:.8rem; font-weight:700; color:var(--navy);
  box-shadow:0 6px 20px rgba(0,0,0,.12);
}
.fi-badge-right { left:auto; right:22px; }
.fi-badge i { color:var(--teal); }

.reveal-left  { opacity:0; transform:translateX(-36px); transition:opacity .7s ease, transform .7s ease; }
.reveal-right { opacity:0; transform:translateX(36px);  transition:opacity .7s ease, transform .7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity:1; transform:none; }

.feature-text-col { display:flex; flex-direction:column; gap:0; }
.feature-text-col .section-tag { margin-bottom:14px; }
.feature-text-col h2 {
  font-size:clamp(1.55rem, 2.5vw, 2.1rem); font-weight:700; color:var(--navy);
  margin-bottom:16px; line-height:1.25; letter-spacing:-.02em;
}
.feature-text-col p { color:var(--text-md); line-height:1.85; font-size:.95rem; margin-bottom:24px; }
.feature-list { display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
.feature-list li {
  display:flex; align-items:flex-start; gap:11px;
  font-size:.9rem; color:var(--text); line-height:1.5;
}
.feature-list li i {
  width:22px; height:22px; border-radius:50%;
  background:var(--teal-lt); color:var(--teal);
  display:flex; align-items:center; justify-content:center;
  font-size:.68rem; flex-shrink:0; margin-top:1px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CABINET GALLERY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cabinet-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.cabinet-media-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--navy-dk);
}
.cabinet-media-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.cabinet-media-wrap video {
  width: 100%; display: block;
}
.cabinet-label {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 7px 16px;
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: var(--teal);
  box-shadow: var(--sh);
}
.cabinet-cta { text-align: center; margin-top: 48px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INSTAGRAM REELS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  justify-items: center;
  align-items: start;
}
.insta-embed-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.insta-iframe {
  width: 320px;
  height: 560px;
  border-radius: 12px;
  box-shadow: var(--sh-lg);
  display: block;
}
.insta-follow-row {
  text-align: center;
  margin-top: 44px;
}
.btn-insta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  transition: var(--tr);
  box-shadow: 0 4px 20px rgba(220,39,67,.35);
}
.btn-insta:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(220,39,67,.45); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PATIENT JOURNEY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.journey-section {}
.journey-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:0;
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--r-xl); overflow:hidden;
  box-shadow:var(--sh);
}
.journey-step {
  padding:44px 36px; position:relative;
  border-right:1px solid var(--border);
  transition:var(--tr);
  opacity:0; transform:translateY(20px);
}
.journey-step.visible { opacity:1; transform:none; }
.journey-step:last-child { border-right:none; }
.journey-step:hover { background:var(--teal-lt); }
.js-num {
  font-size:3rem; font-weight:800; color:var(--teal-mid);
  line-height:1; margin-bottom:20px; font-family:var(--font-h);
  letter-spacing:-.03em;
}
.journey-step:hover .js-num { color:var(--teal); }
.js-icon {
  width:52px; height:52px; border-radius:14px;
  background:var(--teal-lt); color:var(--teal);
  display:flex; align-items:center; justify-content:center;
  font-size:1.25rem; margin-bottom:18px; transition:var(--tr);
}
.journey-step:hover .js-icon { background:var(--teal); color:var(--white); }
.journey-step h3 { font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:10px; }
.journey-step p  { font-size:.84rem; color:var(--text-lt); line-height:1.75; }
.js-arrow {
  position:absolute; top:50%; right:-1px;
  transform:translateY(-50%);
  width:32px; height:32px; border-radius:50%;
  background:var(--teal); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:.75rem; z-index:2;
  box-shadow:0 2px 8px rgba(140,28,46,.3);
}
.journey-step:last-child .js-arrow { display:none; }
.journey-cta { text-align:center; margin-top:44px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TRUST SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.trust-section {
  background:linear-gradient(150deg, var(--navy-dk) 0%, var(--navy) 50%, var(--teal-xdk) 100%);
  padding:96px 0; color:var(--white); position:relative; overflow:hidden;
}
.trust-section::before {
  content:''; position:absolute; top:-100px; left:-100px;
  width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle, rgba(140,28,46,.18) 0%, transparent 65%);
  pointer-events:none;
}
.trust-section::after {
  content:''; position:absolute; bottom:-100px; right:-50px;
  width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle, rgba(201,162,75,.15) 0%, transparent 65%);
  pointer-events:none;
}
.light-header h2 { color:var(--white) !important; }
.light-header p  { color:rgba(255,255,255,.6) !important; }
.light-tag { background:rgba(255,255,255,.08) !important; color:var(--gold) !important; border:1px solid rgba(201,162,75,.3); }

.trust-stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:64px; position:relative; z-index:1; }
.trust-stat-card {
  text-align:center; padding:36px 16px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r-lg); transition:var(--tr);
  opacity:0; transform:translateY(20px); position:relative;
}
.trust-stat-card.visible { opacity:1; transform:none; }
.trust-stat-card::before {
  content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, var(--teal), var(--gold));
  transform:scaleX(0); transition:var(--tr);
}
.trust-stat-card:hover { background:rgba(255,255,255,.09); transform:translateY(-4px); }
.trust-stat-card:hover::before { transform:scaleX(1); }
.tsn {
  font-size:2.8rem; font-weight:800; color:var(--gold);
  line-height:1; display:inline; font-family:var(--font-h);
}
.tsp { font-size:1.8rem; color:var(--gold); vertical-align:top; margin-top:6px; display:inline; }
.tsl { font-size:.82rem; color:rgba(255,255,255,.55); display:block; margin-top:8px; }

.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:48px; position:relative; z-index:1; }
.testimonial-card {
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-lg); padding:28px; transition:var(--tr);
  opacity:0; transform:translateY(20px);
}
.testimonial-card.visible { opacity:1; transform:none; }
.testimonial-card:hover { background:rgba(255,255,255,.1); border-color:rgba(201,162,75,.25); transform:translateY(-4px); }
.tc-stars { color:#f59e0b; font-size:.9rem; letter-spacing:2px; margin-bottom:16px; }
.testimonial-card p {
  font-size:.88rem; line-height:1.85; color:rgba(255,255,255,.8);
  margin-bottom:22px; font-style:italic;
}
.tc-author { display:flex; align-items:center; gap:11px; }
.tc-av {
  width:44px; height:44px; border-radius:50%;
  background:linear-gradient(135deg, var(--teal), var(--gold));
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:1rem; color:var(--white); flex-shrink:0;
}
.tc-author strong { display:block; font-size:.88rem; color:var(--white); font-weight:600; }
.tc-author span   { font-size:.75rem; color:rgba(255,255,255,.45); margin-top:1px; display:block; }

.trust-badges-row { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; position:relative; z-index:1; }
.tb-item {
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 20px; border:1px solid rgba(201,162,75,.3); border-radius:50px;
  font-size:.84rem; font-weight:500; color:rgba(255,255,255,.8);
  transition:var(--tr);
}
.tb-item i { color:var(--gold); font-size:.82rem; }
.tb-item:hover { background:rgba(201,162,75,.15); border-color:var(--gold); color:var(--white); transform:translateY(-2px); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   APPOINTMENT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.appt-grid { display:grid; grid-template-columns:320px 1fr; gap:44px; align-items:start; }
.appt-info {
  background:linear-gradient(150deg, var(--navy) 0%, var(--teal-dk) 100%);
  border-radius:var(--r-lg); padding:36px 26px; color:var(--white);
  position:sticky; top:calc(var(--nav-h) + 20px);
  box-shadow: 0 12px 40px rgba(78,13,24,.2);
}
.appt-info h3 { font-size:1.4rem; font-weight:700; margin-bottom:4px; }
.appt-info > p { color:rgba(255,255,255,.65); font-size:.82rem; margin-bottom:22px; }
.appt-details { display:flex; flex-direction:column; gap:13px; margin-bottom:22px; }
.appt-detail {
  display:flex; align-items:flex-start; gap:11px; font-size:.87rem; line-height:1.5;
}
.appt-detail i {
  width:32px; height:32px; background:rgba(255,255,255,.1); border-radius:8px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:.85rem;
}
.appt-detail a { color:rgba(255,255,255,.9); font-weight:500; }
.appt-detail a:hover { color:var(--gold); }
.appt-note {
  display:flex; align-items:flex-start; gap:9px;
  background:rgba(255,255,255,.08); border-radius:var(--r); padding:13px;
  font-size:.79rem; color:rgba(255,255,255,.7);
  border:1px solid rgba(255,255,255,.1);
}
.appt-note i { color:var(--wa-green); font-size:1rem; margin-top:1px; flex-shrink:0; }

.appt-form {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--r-lg); padding:36px 32px; box-shadow:var(--sh);
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:18px; }
.form-group label { font-size:.82rem; font-weight:600; color:var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:11px 14px; border:1.5px solid var(--border);
  border-radius:var(--r); font-size:.88rem; color:var(--text);
  background:var(--white); transition:var(--tr); outline:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:var(--teal); box-shadow:0 0 0 3px rgba(140,28,46,.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color:var(--error); }
.form-group textarea { resize:vertical; min-height:88px; }
.field-error { font-size:.76rem; color:var(--error); margin-top:3px; }
.form-group select {
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237A8FA3' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 13px center; padding-right:36px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOURS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hours-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:36px; }
.hours-card {
  border-radius:var(--r-lg); padding:30px 24px; text-align:center;
  border:2px solid var(--border); background:var(--white); transition:var(--tr);
  opacity:0; transform:translateY(18px);
}
.hours-card.visible { opacity:1; transform:none; }
.hours-card.open    { border-color:var(--teal); }
.hours-card.partial { border-color:var(--gold); }
.hours-card.closed  { opacity:.65; }
.hours-card.closed.visible { opacity:.65; }
.hc-day {
  display:flex; align-items:center; justify-content:center; gap:8px;
  font-size:.82rem; font-weight:700; color:var(--text-lt);
  text-transform:uppercase; letter-spacing:.7px; margin-bottom:14px;
}
.hours-card.open .hc-day    { color:var(--teal-dk); }
.hours-card.partial .hc-day { color:var(--gold); }
.hc-time { font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:14px; }
.hc-status {
  display:inline-flex; align-items:center; gap:5px;
  padding:5px 13px; border-radius:50px; font-size:.78rem; font-weight:600;
}
.open-status   { background:#dcfce7; color:var(--success); }
.closed-status { background:#fee2e2; color:var(--error); }
.hc-note {
  display:inline-flex; align-items:center; gap:5px;
  font-size:.78rem; color:var(--gold); background:var(--gold-lt);
  padding:5px 13px; border-radius:50px;
}
.hours-contact-row {
  display:flex; justify-content:center; gap:44px; flex-wrap:wrap;
  padding:24px 28px; background:var(--teal-lt); border-radius:var(--r-lg);
  border:1px solid var(--teal-mid);
}
.hcr-item { display:flex; align-items:center; gap:10px; font-size:.88rem; color:var(--text); }
.hcr-item i { color:var(--teal); font-size:1.1rem; }
.hcr-item a { font-weight:700; color:var(--teal-dk); }
.hcr-item a:hover { color:var(--teal); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.blog-card {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--r-lg); overflow:hidden; transition:var(--tr);
  opacity:0; transform:translateY(18px);
}
.blog-card.visible { opacity:1; transform:none; }
.blog-card:hover   { transform:translateY(-6px); box-shadow:var(--sh-lg); border-color:var(--teal); }
.bc-img { position:relative; height:155px; display:flex; align-items:center; justify-content:center; }
.bc-img-1 { background:linear-gradient(135deg, var(--teal-xdk), var(--teal)); }
.bc-img-2 { background:linear-gradient(135deg, #5a3020, var(--coral)); }
.bc-img-3 { background:linear-gradient(135deg, #1a2a50, #3a60a0); }
.bc-img-4 { background:linear-gradient(135deg, #3a1a50, #7a4aaa); }
.bc-ic {
  width:66px; height:66px; border-radius:50%;
  background:rgba(255,255,255,.14); display:flex; align-items:center;
  justify-content:center; color:var(--white); font-size:1.8rem;
}
.bc-cat {
  position:absolute; top:12px; left:12px;
  background:rgba(255,255,255,.18); backdrop-filter:blur(6px);
  color:var(--white); padding:4px 11px; border-radius:50px;
  font-size:.72rem; font-weight:700; border:1px solid rgba(255,255,255,.25);
}
.bc-body { padding:20px 18px; }
.bc-body h3 {
  font-size:.9rem; font-weight:700; color:var(--navy); margin-bottom:8px;
  line-height:1.4; display:-webkit-box; -webkit-line-clamp:2;
  -webkit-box-orient:vertical; overflow:hidden;
}
.bc-body p {
  font-size:.8rem; color:var(--text-lt); line-height:1.7; margin-bottom:14px;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.bc-link { color:var(--teal); font-size:.82rem; font-weight:600; transition:var(--tr); }
.bc-link:hover { color:var(--teal-dk); letter-spacing:.3px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; max-width:940px; margin:0 auto; }
.faq-item {
  background:var(--white); border:1.5px solid var(--border); border-radius:var(--r);
  overflow:hidden; transition:var(--tr); opacity:0; transform:translateY(14px);
}
.faq-item.visible { opacity:1; transform:none; }
.faq-item.open    { border-color:var(--teal); box-shadow:var(--sh); }
.faq-question {
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:18px 20px; text-align:left; font-size:.86rem; font-weight:600;
  color:var(--navy); transition:var(--tr);
}
.faq-question:hover { color:var(--teal); }
.faq-question i { flex-shrink:0; color:var(--teal); transition:transform .3s ease; font-size:.8rem; }
.faq-item.open .faq-question i { transform:rotate(180deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-answer p {
  padding:0 20px 18px; font-size:.85rem; color:var(--text-md);
  line-height:1.85; border-top:1px solid var(--border); padding-top:14px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-grid { display:grid; grid-template-columns:340px 1fr; gap:44px; align-items:start; }
.contact-info { display:flex; flex-direction:column; gap:12px; }
.ci-card {
  display:flex; align-items:center; gap:14px;
  background:var(--white); border:1.5px solid var(--border);
  border-radius:var(--r); padding:16px 18px; transition:var(--tr);
  opacity:0; transform:translateX(-16px);
}
.ci-card.visible  { opacity:1; transform:none; }
.ci-card:hover    { border-color:var(--teal); box-shadow:var(--sh); }
.ci-icon {
  width:44px; height:44px; border-radius:10px;
  background:var(--teal-lt); color:var(--teal);
  display:flex; align-items:center; justify-content:center; font-size:.95rem; flex-shrink:0;
}
.ci-wa  { background:#dcfce7; color:var(--wa-green); }
.ci-ph  { background:var(--gold-lt); color:var(--gold); }
.ci-card h4 { font-size:.74rem; font-weight:700; color:var(--text-lt); text-transform:uppercase; letter-spacing:.7px; margin-bottom:2px; font-family:var(--font); }
.ci-card p, .ci-card a { font-size:.88rem; color:var(--navy); font-weight:600; line-height:1.5; }
.ci-card a:hover { color:var(--teal); }
.ci-btns { display:flex; flex-direction:column; gap:9px; margin-top:4px; }
.btn-wa-cta, .btn-map {
  display:flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 18px; border-radius:50px; font-weight:600; font-size:.88rem; transition:var(--tr);
}
.btn-wa-cta { background:var(--wa-green); color:var(--white); }
.btn-wa-cta:hover { background:#1ebe5a; transform:translateY(-2px); box-shadow:0 5px 16px rgba(37,211,102,.3); }
.btn-map { background:var(--teal-lt); color:var(--teal-dk); border:1.5px solid var(--teal-mid); }
.btn-map:hover { background:var(--teal); color:var(--white); border-color:var(--teal); transform:translateY(-2px); }
.map-container { border-radius:var(--r-lg); overflow:hidden; border:2px solid var(--border); box-shadow:var(--sh); height:460px; }
.map-container iframe { width:100%; height:100%; display:block; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer { background:var(--navy-dk); color:rgba(255,255,255,.7); padding:60px 0 0; }
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:40px;
  padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.07);
}
.footer-logo {
  display:flex; align-items:center; gap:10px; margin-bottom:12px;
}
.footer-brand p { font-size:.82rem; line-height:1.7; margin-bottom:4px; }
.footer-addr { display:flex; align-items:flex-start; gap:8px; font-size:.8rem; margin-top:8px !important; line-height:1.5; }
.footer-addr i { color:var(--gold); margin-top:2px; flex-shrink:0; }
.footer-social { display:flex; gap:9px; margin-top:16px; }
.footer-social a {
  width:36px; height:36px; background:rgba(255,255,255,.07); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.5); font-size:.88rem; transition:var(--tr);
}
.footer-social a:hover { background:var(--teal); color:var(--white); }
.footer-nav h4, .footer-services h4, .footer-contact h4 {
  font-size:.78rem; font-weight:700; color:var(--white); text-transform:uppercase;
  letter-spacing:1px; margin-bottom:16px; font-family:var(--font);
}
.footer-nav ul, .footer-services ul { display:flex; flex-direction:column; gap:7px; }
.footer-nav a, .footer-services a { font-size:.82rem; color:rgba(255,255,255,.55); transition:var(--tr); }
.footer-nav a:hover, .footer-services a:hover { color:var(--gold); padding-left:4px; }
.footer-contact p {
  display:flex; align-items:flex-start; gap:9px;
  font-size:.82rem; margin-bottom:9px; line-height:1.5;
}
.footer-contact i { color:var(--gold); margin-top:2px; flex-shrink:0; }
.footer-contact a { color:rgba(255,255,255,.65); }
.footer-contact a:hover { color:var(--gold); }
.footer-bottom { padding:18px 0; text-align:center; font-size:.79rem; color:rgba(255,255,255,.3); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FLOATING BUTTONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.wa-float {
  position:fixed; bottom:26px; right:26px; z-index:999;
  width:56px; height:56px; background:var(--wa-green); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:1.65rem;
  box-shadow:0 6px 24px rgba(37,211,102,.5); transition:var(--tr);
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 10px 32px rgba(37,211,102,.6); }
.wa-float::before {
  content:''; position:absolute; inset:-8px; border-radius:50%;
  background:rgba(37,211,102,.2); animation:wa-pulse 2.8s ease infinite;
}
@keyframes wa-pulse { 0%{transform:scale(.9);opacity:.8} 70%{transform:scale(1.45);opacity:0} 100%{transform:scale(1.45);opacity:0} }
.wa-tooltip {
  position:absolute; right:calc(100% + 12px);
  background:var(--navy-dk); color:var(--white);
  padding:6px 14px; border-radius:8px; font-size:.8rem; font-weight:600;
  white-space:nowrap; opacity:0; pointer-events:none;
  transform:translateX(6px); transition:var(--tr);
}
.wa-tooltip::after {
  content:''; position:absolute; left:100%; top:50%; transform:translateY(-50%);
  border:5px solid transparent; border-left-color:var(--navy-dk);
}
.wa-float:hover .wa-tooltip { opacity:1; transform:translateX(0); }

.phone-float {
  position:fixed; bottom:96px; right:26px; z-index:998;
  width:46px; height:46px; background:var(--teal); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:1.05rem;
  box-shadow:0 4px 16px rgba(140,28,46,.4); transition:var(--tr);
}
.phone-float:hover { background:var(--teal-dk); transform:scale(1.1); }


