/* =========================================================
   BN Medical Tourism – Hanna Edition
   Premium CSS Stylesheet
   ========================================================= */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --teal:       #00B4A6;
  --teal-dark:  #008F84;
  --teal-light: #E0F7F5;
  --cyan:       #5CE1E6;
  --pink:       #FFB6C1;
  --gold:       #D4AF37;
  --white:      #FFFFFF;
  --off-white:  #F8FFFE;
  --dark:       #0D1B2A;
  --dark-2:     #1A2E3B;
  --text:       #334E58;
  --text-light: #6B8A96;
  --border:     rgba(0, 180, 166, 0.15);
  --shadow-sm:  0 2px 12px rgba(0,180,166,0.08);
  --shadow-md:  0 8px 32px rgba(0,180,166,0.15);
  --shadow-lg:  0 20px 60px rgba(0,180,166,0.2);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:        72px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.mt-4 { margin-top: 2rem; }

/* ── Gradient Text ─────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 50%, var(--teal-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Header ────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,180,166,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,180,166,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-full { width: 100%; justify-content: center; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.navbar.scrolled .logo-img {
  filter: none;
}

.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .logo-text { color: var(--dark); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.12); }

.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .nav-link:hover { color: var(--teal); background: var(--teal-light); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
}

.nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
}

/* ── Language Switcher ─────────────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
  transition: var(--transition);
}

.navbar.scrolled .lang-switcher {
  background: rgba(0,180,166,0.08);
  border-color: rgba(0,180,166,0.2);
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.lang-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

.lang-btn.active {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,180,166,0.4);
}

.navbar.scrolled .lang-btn { color: var(--text-light); }
.navbar.scrolled .lang-btn:hover { color: var(--teal); background: var(--teal-light); }
.navbar.scrolled .lang-btn.active { color: var(--white); background: var(--teal); }

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D1B2A 0%, #1A3545 40%, #0A2A2A 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,166,0.18) 0%, transparent 70%);
}

.shape-1 {
  width: 700px; height: 700px;
  top: -200px; right: -150px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: 10%;
  background: radial-gradient(circle, rgba(92,225,230,0.1) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite 2s;
}

.shape-3 {
  width: 300px; height: 300px;
  top: 30%; left: 30%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero Text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,166,0.15);
  border: 1px solid rgba(0,180,166,0.3);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge i { color: var(--gold); }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Character */
.hero-character {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.character-glow {
  position: absolute;
  bottom: 0;
  width: 80%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(0,180,166,0.3) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hanna-img {
  position: relative;
  z-index: 1;
  max-height: 580px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,180,166,0.3));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.4rem;
  color: var(--teal);
  flex-shrink: 0;
}

.floating-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}

.floating-card span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
}

.card-1 {
  top: 18%;
  left: -5%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 22%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0,180,166,0.8), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  border-color: var(--teal);
  background: linear-gradient(145deg, #FAFFFF 0%, var(--teal-light) 100%);
}

.service-card.featured::before {
  transform: scaleX(1);
}

.featured-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--teal-light) 0%, rgba(0,180,166,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--teal);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text);
}

.service-list li i {
  color: var(--teal);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* =========================================================
   WHY HANNA
   ========================================================= */
.why-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,180,166,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(92,225,230,0.08) 0%, transparent 50%);
}

.why-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Why Image */
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.why-img-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.why-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(13,27,42,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,180,166,0.3);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
}

.why-badge-float i { color: var(--gold); font-size: 1.2rem; }

/* Why Content */
.why-content .section-tag {
  background: rgba(0,180,166,0.15);
  color: var(--cyan);
}

.why-content .section-title { color: var(--white); }

.why-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
}

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

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,180,166,0.15);
  border: 1px solid rgba(0,180,166,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* =========================================================
   HOSPITALS
   ========================================================= */
.hospitals {
  background: var(--white);
}

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

.hospital-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hospital-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.hospital-card.featured-hospital {
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark-2) 100%);
  border-color: rgba(0,180,166,0.4);
}

.hospital-top-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.hospital-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 18px;
  transition: var(--transition);
}

.featured-hospital .hospital-icon {
  background: rgba(0,180,166,0.2);
}

.hospital-card:hover .hospital-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}

.hospital-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.featured-hospital h3 { color: var(--white); }

.hospital-specialty {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 10px;
}

.hospital-info p:last-of-type {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.featured-hospital .hospital-info p:last-of-type {
  color: rgba(255,255,255,0.6);
}

.hospital-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hospital-tags span {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 4px 10px;
  border-radius: 50px;
}

.featured-hospital .hospital-tags span {
  background: rgba(0,180,166,0.15);
  color: var(--cyan);
}

/* Hospital CTA card */
.hospital-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hospital-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,180,166,0.4);
}

.hospital-cta-inner {
  text-align: center;
}

.hospital-cta-inner i {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.hospital-cta-inner h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.hospital-cta-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hospital-cta-inner .btn-primary {
  background: rgba(255,255,255,0.18);
  box-shadow: none;
  border: 2px solid rgba(255,255,255,0.5);
}

.hospital-cta-inner .btn-primary:hover {
  background: var(--white);
  color: var(--teal-dark);
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  background: var(--off-white);
}

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

.about-desc {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 4px;
}

.vision-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
}

.vision-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vision-item h4 i { color: var(--teal); }

.vision-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* About Image */
.about-img-wrap {
  position: relative;
}

.about-hanna {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 20px 60px rgba(0,180,166,0.2));
}

.about-card-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  right: -20px;
  display: flex;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.about-stat {
  flex: 1;
  text-align: center;
}

.about-stat .num {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.about-stat .lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  overflow: hidden;
}

.testimonials .section-title { color: var(--white); }

.testimonials-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto 32px;
}

.testimonial-card {
  display: none;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}

.testimonial-card.active { display: block; animation: fadeSlide 0.5s ease; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.testimonial-card p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar i {
  font-size: 2.5rem;
  color: var(--teal);
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--teal);
  transform: scale(1.4);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: var(--off-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 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(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid #E8EFF2;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  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(0,180,166,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success i {
  font-size: 3rem;
  color: var(--teal);
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
  font-size: 1rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-hanna {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.contact-hanna-img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  object-position: top;
  border-radius: 50% 50% 50% 0;
  border: 3px solid var(--teal);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.speech-bubble {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  border-bottom-left-radius: 4px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  box-shadow: var(--shadow-sm);
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.channel-item:hover {
  border-color: var(--teal);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.channel-item > i:first-child {
  font-size: 1.5rem;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}

.channel-item.whatsapp > i:first-child { color: #25D366; }
.channel-item.instagram > i:first-child { color: #E4405F; }
.channel-item.line > i:first-child { color: #00B900; }
.channel-item.email-channel > i:first-child { color: var(--teal); }

.channel-item > div { flex: 1; }
.channel-item strong { display: block; font-size: 0.9rem; color: var(--dark); }
.channel-item span { font-size: 0.82rem; color: var(--text-light); }

.channel-item .arrow { color: var(--text-light); font-size: 0.75rem; }

.contact-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--teal-dark);
  font-weight: 500;
}

.contact-note i { color: var(--teal); flex-shrink: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 32px;
  filter: brightness(0) invert(1);
}

.footer-logo span {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul li a:hover { color: var(--teal); }
.footer-links ul li a i { font-size: 0.8rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-sub { margin-top: 4px; }

/* =========================================================
   SCROLL TOP & WHATSAPP FLOAT
   ========================================================= */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,180,166,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover { background: var(--teal-dark); transform: translateY(-3px); }

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: var(--transition);
}

/* =========================================================
   AOS (Simple Fade Animations)
   ========================================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hospitals-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav mobile */
  .nav-toggle { display: flex; }

  .nav-right { gap: 8px; }

  .lang-switcher {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
  }
  .navbar.scrolled .lang-switcher {
    background: rgba(0,180,166,0.08);
    border-color: rgba(0,180,166,0.2);
  }

  .lang-btn { padding: 4px 8px; font-size: 0.68rem; }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    gap: 4px;
  }

  .nav-menu.open { display: flex; }

  .nav-link {
    color: var(--text) !important;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .nav-link:hover { background: var(--teal-light); color: var(--teal) !important; }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
    border-radius: var(--radius-sm) !important;
  }

  /* Hero mobile */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
    gap: 40px;
  }

  .hero-text { order: 1; }
  .hero-character { order: 2; }

  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }

  .hanna-img { max-height: 420px; }

  .card-1 { top: 8%; left: 0; }
  .card-2 { bottom: 8%; right: 0; }

  .floating-card { padding: 8px 12px; font-size: 0.75rem; }
  .floating-card i { font-size: 1rem; }

  /* Sections mobile */
  .services-grid  { grid-template-columns: 1fr; }
  .why-inner      { grid-template-columns: 1fr; gap: 40px; }
  .hospitals-grid { grid-template-columns: 1fr; }
  .about-inner    { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner  { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; gap: 32px; }

  .about-vision { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }

  .why-img-wrap img { height: 420px; }
  .about-card-float { position: static; margin-top: 16px; }

  .testimonial-card { padding: 32px 24px; }

  .contact-form-wrap { padding: 32px 24px; }

  .floating-card.card-1,
  .floating-card.card-2 { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
}
