:root {
  --navy: #0a1628;
  --teal: #0d7377;
  --teal-light: #14a5ab;
  --gold: #c9a84c;
  --cream: #fdf8f2;
  --white: #ffffff;
  --text: #1a2332;
  --muted: #6b7a8d;
  --border: rgba(13,115,119,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

/* ===================== HEADER ===================== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s;
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 70px;
}
.logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.logo-icon {
  width: 44px; height: 44px; background: linear-gradient(135deg,var(--teal),var(--teal-light));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(13,115,119,0.4);
}
.logo-text { color: var(--white); }
.logo-text span { display: block; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.3px; }
.logo-title { font-size: 0.7rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

nav { display: flex; gap: 4px; align-items: center; }
nav a {
  color: rgba(255,255,255,0.8); text-decoration: none; padding: 8px 14px;
  border-radius: 8px; font-size: 0.88rem; font-weight: 500;
  transition: all 0.2s; position: relative;
}
nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
nav a.active { color: var(--gold); }

.btn-book {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(13,115,119,0.4);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(13,115,119,0.5) !important; background: rgba(0,0,0,0) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(13,115,119,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--teal) 1px, transparent 1px), linear-gradient(90deg, var(--teal) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15; color: var(--white); margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em { color: var(--teal-light); font-style: normal; }
.hero p {
  color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.7;
  margin-bottom: 36px; animation: fadeUp 0.8s 0.2s ease both;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white); padding: 14px 28px; border-radius: 50px; text-decoration: none;
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(13,115,119,0.5);
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(13,115,119,0.6); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  font-weight: 600; font-size: 0.95rem; border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Doctor card */
.hero-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 40px; backdrop-filter: blur(10px);
  animation: fadeUp 0.8s 0.2s ease both;
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.doctor-avatar {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 50%, var(--gold) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; border: 4px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 0 8px rgba(13,115,119,0.15), 0 20px 40px rgba(0,0,0,0.3);
}
.hero-card h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.4rem; text-align: center; margin-bottom: 6px; }
.hero-card .subtitle { color: var(--gold); font-size: 0.82rem; text-align: center; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 28px; }

.clinic-slots { display: flex; flex-direction: column; gap: 12px; }
.clinic-slot {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 14px 16px;
  display: flex; align-items: flex-start; gap: 12px;
}
.clinic-icon { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.clinic-info { flex: 1; }
.clinic-name { color: var(--white); font-weight: 600; font-size: 0.88rem; }
.clinic-time { color: rgba(255,255,255,0.45); font-size: 0.78rem; margin-top: 2px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; margin-top: 6px; animation: pulse 2s infinite; }

/* ===================== SECTIONS ===================== */
section { padding: 96px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--teal); }
h2.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.2; margin-bottom: 16px; color: var(--navy);
}
.section-subtitle { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 600px; }

/* ===================== SERVICES ===================== */
.services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px;
}
.service-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px; position: relative; overflow: hidden;
  transition: all 0.4s; cursor: pointer;
  text-decoration: none; color: inherit; display: block;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(13,115,119,0.2); border-color: var(--teal); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon, .service-card:hover .service-title, .service-card:hover .service-desc, .service-card:hover .service-tags span { color: rgba(255,255,255,0.9) !important; }
.service-card:hover .service-tags span { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); }
.service-card > * { position: relative; z-index: 1; }

.service-icon { font-size: 2.6rem; margin-bottom: 20px; display: block; transition: color 0.4s; }
.service-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); transition: color 0.4s; }
.service-desc { color: var(--muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; transition: color 0.4s; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags span {
  background: rgba(13,115,119,0.08); border: 1px solid rgba(13,115,119,0.2);
  color: var(--teal); padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 500;
  transition: all 0.4s;
}

/* ===================== LOCATIONS ===================== */
.locations { background: var(--navy); }
.locations h2, .locations .section-label { color: var(--white); }
.locations .section-label { color: var(--gold); }
.locations .section-label::before { background: var(--gold); }
.locations .section-subtitle { color: rgba(255,255,255,0.5); }

.locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.location-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.location-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(var(--teal), var(--gold));
}
.location-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.location-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.location-name { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.15rem; font-weight: 700; }
.location-badge { background: rgba(13,115,119,0.3); color: var(--teal-light); padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; border: 1px solid rgba(13,115,119,0.4); }
.location-address { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.location-time { display: flex; align-items: center; gap: 8px; color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.location-map-link { display: inline-flex; align-items: center; gap: 6px; color: var(--teal-light); font-size: 0.82rem; text-decoration: none; margin-top: 12px; transition: gap 0.2s; }
.location-map-link:hover { gap: 10px; }

/* ===================== TIPS PREVIEW ===================== */
.tips-preview { background: var(--cream); }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.tip-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px;
  padding: 32px; transition: all 0.3s; text-decoration: none; color: inherit; display: block;
}
.tip-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(13,115,119,0.12); }
.tip-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: rgba(13,115,119,0.12); line-height: 1; margin-bottom: 12px; }
.tip-category { color: var(--teal); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.tip-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
.tip-excerpt { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }
.tip-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-size: 0.85rem; font-weight: 600; margin-top: 16px; }

/* ===================== BLOG PREVIEW ===================== */
.blog-preview { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; margin-top: 56px; }
.blog-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; transition: all 0.3s; text-decoration: none; color: inherit; display: block;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.blog-img {
  height: 220px; background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
  position: relative; overflow: hidden;
}
.blog-img-sm { height: 160px; }
.blog-img .blog-icon { position: relative; z-index: 1; }
.blog-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(201,168,76,0.3), transparent 50%);
}
.blog-body { padding: 28px; }
.blog-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.blog-tag { background: rgba(13,115,119,0.1); color: var(--teal); padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.blog-date { color: var(--muted); font-size: 0.78rem; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; font-weight: 700; }
.blog-card:nth-child(1) .blog-title { font-size: 1.35rem; }
.blog-excerpt { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }
.read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-size: 0.85rem; font-weight: 600; margin-top: 14px; }

/* ===================== FAQ ===================== */
.faq { background: var(--cream); }
.faq-list { max-width: 800px; margin: 56px auto 0; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  padding: 22px 28px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 16px; transition: background 0.2s;
}
.faq-q:hover { background: rgba(13,115,119,0.03); }
.faq-q span { font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(13,115,119,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.2rem; flex-shrink: 0; transition: all 0.3s;
}
.faq-item.open .faq-toggle { background: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-a {
  padding: 0 28px; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--muted); font-size: 0.92rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 28px 22px; }

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: var(--navy); text-align: center; padding: 100px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(13,115,119,0.2), transparent);
}
.cta-section h2 { font-family: 'Playfair Display', serif; color: var(--white); font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 500px; margin: 0 auto 36px; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-wa {
  background: #25D366; color: var(--white); padding: 14px 28px; border-radius: 50px;
  text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s;
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ===================== FOOTER ===================== */
footer {
  background: #060e1a; color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-contact-icon { color: var(--teal-light); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
footer h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }
.footer-bottom p { font-size: 0.82rem; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
  text-decoration: none; font-size: 1rem; transition: all 0.2s;
}
.social-link:hover { background: var(--teal); color: var(--white); }

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white); text-decoration: none;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: float 3s ease-in-out infinite;
}
.wa-float::before {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid #25D366; animation: wa-ripple 2s ease-out infinite;
}
.wa-tooltip {
  position: absolute; right: 70px; white-space: nowrap;
  background: var(--navy); color: var(--white); padding: 8px 14px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 600; pointer-events: none;
  opacity: 0; transform: translateX(8px); transition: all 0.3s;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--navy); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.5); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes wa-ripple {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===================== TRUST STRIP ===================== */
.trust-strip { background: var(--teal); padding: 20px 0; overflow: hidden; }
.trust-inner { display: flex; align-items: center; gap: 48px; white-space: nowrap; animation: scroll-x 20s linear infinite; }
.trust-inner:hover { animation-play-state: paused; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 0.9rem; font-weight: 500; flex-shrink: 0; }
.trust-sep { color: rgba(255,255,255,0.3); font-size: 1.2rem; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== MOBILE ===================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero-card { display: none; }
  .hero-stats { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  nav { display: none; }
  .hamburger { display: flex; }
  nav.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
  .services-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ===================== ABOUT STRIP ===================== */
.about-strip { background: var(--white); padding: 80px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.about-circle {
  width: 280px; height: 280px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center; font-size: 8rem;
  box-shadow: 0 30px 80px rgba(13,115,119,0.25);
  position: relative;
}
.about-circle::before {
  content: ''; position: absolute; inset: -16px; border-radius: 50%;
  border: 1px dashed rgba(13,115,119,0.3); animation: spin 20s linear infinite;
}
.about-badge-float {
  position: absolute; background: var(--white); border-radius: 12px; padding: 10px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--navy); white-space: nowrap;
}
.ab-1 { bottom: 20px; left: -20px; }
.ab-2 { top: 30px; right: -20px; }
.ab-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.credentials { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.credential { display: flex; align-items: center; gap: 12px; }
.cred-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(13,115,119,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.cred-text strong { display: block; font-size: 0.9rem; color: var(--navy); }
.cred-text span { font-size: 0.8rem; color: var(--muted); }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
}