/* ============================================
   Dr. Babita Kemiya — Physiotherapy
   Premium UI · Smooth Animations
   ============================================ */

:root {
  --bg: #06101e;
  --bg-2: #0a1628;
  --bg-3: #0f1d33;
  --surface: rgba(255,255,255,0.03);
  --surface-2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --border-2: rgba(255,255,255,0.14);

  --primary: #06b6d4;
  --primary-2: #0891b2;
  --teal: #14b8a6;
  --teal-2: #0d9488;
  --accent: #f59e0b;
  --accent-2: #fb923c;

  --text: #f1f5f9;
  --text-soft: #cbd5e1;
  --text-mute: #94a3b8;
  --text-dim: #64748b;

  --grad-primary: linear-gradient(135deg, #06b6d4 0%, #0d9488 50%, #0e7490 100%);
  --grad-warm: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%);
  --grad-light: linear-gradient(135deg, #67e8f9 0%, #5eead4 100%);
  --grad-bg: radial-gradient(ellipse at top, #0f1d33 0%, #06101e 70%);

  --shadow-sm: 0 4px 12px rgba(0,0,0,.25);
  --shadow-md: 0 16px 40px rgba(0,0,0,.35);
  --shadow-lg: 0 32px 80px rgba(6,182,212,.18);
  --shadow-glow: 0 0 60px rgba(6,182,212,.35);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --ease: cubic-bezier(.65,.05,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

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

html, body { max-width: 100vw; overflow-x: clip; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--grad-bg);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Hide scrollbar across browsers */
html { scrollbar-width: none; -ms-overflow-style: none; }
body::-webkit-scrollbar, html::-webkit-scrollbar { display: none; width: 0; height: 0; }

img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
input, textarea, select { font-family:inherit; }

::selection { background:var(--primary); color:#001018; }

/* Custom cursor disabled — using native cursor */
.cursor-dot, .cursor-ring { display: none !important; }

/* ===== Loader ===== */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1.1s ease, visibility 1.1s ease;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-pulse {
  width: 100px; height: 100px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: white;
  animation: heartbeat 1.2s ease-in-out infinite;
  box-shadow: var(--shadow-glow);
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
.loader-content p {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}
.loader-content span {
  color: var(--text-mute);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== Animated Background ===== */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}
.blob-1 { width: 600px; height: 600px; background: #06b6d4; top: -200px; left: -200px; animation: blobFloat 20s ease-in-out infinite; }
.blob-2 { width: 500px; height: 500px; background: #0d9488; top: 40%; right: -150px; animation: blobFloat 25s ease-in-out infinite reverse; }
.blob-3 { width: 700px; height: 700px; background: #f59e0b; bottom: -300px; left: 30%; opacity: .15; animation: blobFloat 30s ease-in-out infinite; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(80px,-60px) scale(1.1); }
  66% { transform: translate(-60px,80px) scale(.95); }
}

.grid-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* ===== Layout ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 1320px;
  transition: top .4s, transform .4s;
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,22,40,.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 16px 12px 24px;
  box-shadow: var(--shadow-md);
  transition: all .4s var(--ease-out);
}
.navbar.scrolled .nav-container {
  background: rgba(6,16,30,.92);
  border-color: var(--border-2);
  padding: 10px 14px 10px 22px;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
  box-shadow: 0 6px 20px rgba(6,182,212,.4);
  position: relative;
  overflow: hidden;
}
.logo-icon::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 3s infinite;
}
@keyframes shine {
  to { transform: translateX(100%); }
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; color: var(--text); }
.logo-sub { font-size: 11px; color: var(--text-mute); letter-spacing: .5px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 100px;
  transition: color .3s, background .3s;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-links a.active { color: var(--text); background: var(--surface-2); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--grad-primary);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: white;
  box-shadow: 0 6px 24px rgba(6,182,212,.4);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(6,182,212,.55); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: calc(100% + 12px); left: 0; right: 0;
    background: rgba(10,22,40,.96);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    gap: 6px;
  }
  .nav-links.open a { width: 100%; padding: 12px 16px; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex; align-items: center;
  overflow: hidden;
  max-width: 100vw;
}
.hero-container { max-width: 100%; }

.hero-decorations { position: absolute; inset: 0; pointer-events: none; }
.floating-icon {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 22px;
  animation: floatY 6s ease-in-out infinite;
}
.icon-1 { top: 18%; left: 6%; animation-delay: 0s; }
.icon-2 { top: 70%; left: 4%; animation-delay: 1.2s; color: var(--accent); }
.icon-3 { top: 30%; right: 4%; animation-delay: 2.4s; color: var(--teal); }
.icon-4 { top: 80%; right: 10%; animation-delay: 3.6s; }
.icon-5 { top: 8%; right: 30%; animation-delay: 1.8s; color: var(--accent); }

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(6,182,212,.1);
  border: 1px solid rgba(6,182,212,.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
}
.dot-pulse {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
}
.dot-pulse::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(3.5); opacity: 0; }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.2vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  color: #fff;
}
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.text-gradient-light {
  background: var(--grad-light);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-subtitle strong { color: var(--text); font-weight: 600; }

.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .3s var(--ease-out), box-shadow .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.btn i { transition: transform .3s; }
.btn:hover i { transform: translateX(4px); }
.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 10px 32px rgba(6,182,212,.35);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 48px rgba(6,182,212,.5); }
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn-outline:hover { background: var(--surface-2); border-color: var(--primary); }

.btn-white {
  background: white;
  color: var(--bg);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,255,255,.2); }

.btn-ghost-white {
  background: rgba(255,255,255,.15);
  color: white;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(10px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }

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

.hero-trust {
  display: flex; align-items: center; gap: 28px;
}
.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.trust-item span { font-size: 13px; color: var(--text-mute); margin-top: 4px; }
.trust-item span::after { content: '+'; color: var(--accent); margin-left: 2px; display: inline; }
.trust-divider { width: 1px; height: 40px; background: var(--border-2); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1.1;
  max-width: 520px;
  margin: 0 auto;
}
.image-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(6,182,212,.4) 0%, transparent 70%);
  filter: blur(60px);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.image-frame {
  position: absolute;
  inset: 8%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  background: var(--grad-primary);
  box-shadow: 0 30px 80px rgba(6,182,212,.3), inset 0 0 0 6px rgba(255,255,255,.08);
  animation: morphShape 12s ease-in-out infinite;
}
@keyframes morphShape {
  0%, 100% { border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; }
  33% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
  66% { border-radius: 40% 60% 60% 40% / 60% 50% 50% 40%; }
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: contrast(1.05) saturate(1.1);
  transition: transform 1s var(--ease-out);
}
.hero-image-wrapper:hover .hero-img { transform: scale(1.05); }

.image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,16,30,.4) 100%);
  pointer-events: none;
}

.orbit {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: rotate 40s linear infinite;
  pointer-events: none;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.floating-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(15, 29, 51, .85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  animation: floatY 5s ease-in-out infinite;
}
.card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px;
  flex-shrink: 0;
}
.card-icon.green { background: linear-gradient(135deg, #10b981, #059669); }
.card-icon.orange { background: var(--grad-warm); }
.card-num { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.2; }
.card-label { font-size: 11px; color: var(--text-mute); }

.card-rating { top: 10%; left: -8%; animation-delay: .5s; }
.card-cert { top: 45%; right: -10%; animation-delay: 1.5s; }
.card-home { bottom: 8%; left: 0%; animation-delay: 2.5s; }

@media (max-width: 900px) {
  .floating-card { transform: scale(.85); }
  .card-rating { left: -2%; }
  .card-cert { right: -2%; }
}

@media (max-width: 760px) {
  .hero-image-wrapper { max-width: 320px; }
  .floating-icon { display: none; }
  .floating-card {
    padding: 8px 12px;
    gap: 8px;
    border-radius: 12px;
  }
  .card-icon { width: 28px; height: 28px; font-size: 12px; border-radius: 8px; }
  .card-num { font-size: 11px; }
  .card-label { font-size: 9px; }
  .card-rating { top: 6%; left: 0%; transform: scale(.85); transform-origin: left center; }
  .card-cert { top: 46%; right: 0%; transform: scale(.85); transform-origin: right center; }
  .card-home { bottom: 6%; left: 0%; transform: scale(.85); transform-origin: left center; }
}

@media (max-width: 480px) {
  .hero-image-wrapper { max-width: 260px; }
  .floating-card { padding: 6px 10px; gap: 6px; }
  .card-icon { width: 24px; height: 24px; font-size: 10px; }
  .card-num { font-size: 10px; }
  .card-label { font-size: 8px; }
  .card-rating { transform: scale(.78); }
  .card-cert { transform: scale(.78); right: -2%; }
  .card-home { transform: scale(.78); left: -2%; }
}

@media (max-width: 380px) {
  .hero-image-wrapper { max-width: 220px; }
  .card-rating, .card-cert, .card-home { transform: scale(.7); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-mute);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 5;
}
.scroll-line {
  width: 1px; height: 50px;
  background: rgba(255,255,255,.1);
  position: relative;
}
.scroll-dot {
  position: absolute;
  top: 0; left: 50%;
  width: 4px; height: 12px;
  background: var(--primary);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: 0; opacity: 1; }
  100% { top: 38px; opacity: 0; }
}

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 60px; padding-top: 40px; }
  .hero-visual { order: -1; }
  .hero-image-wrapper { max-width: 380px; }
  .hero-trust { justify-content: flex-start; flex-wrap: wrap; gap: 16px; }
  .trust-num { font-size: 28px; }
  .scroll-indicator { display: none; }
}

/* ===== Marquee ===== */
.marquee-section {
  padding: 32px 0;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,.04), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee {
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track span {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-soft);
  white-space: nowrap;
}
.marquee-track i { color: var(--primary); font-size: 18px; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(6,182,212,.1);
  border: 1px solid rgba(6,182,212,.25);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: white;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ===== Services ===== */
.services { padding: 120px 0; position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: transform .5s var(--ease-out), border-color .5s, background .5s, box-shadow .5s;
  overflow: hidden;
  transition-delay: var(--delay, 0s);
}
.service-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0;
  transition: opacity .4s;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6,182,212,.3);
  background: rgba(6,182,212,.03);
  box-shadow: 0 24px 60px rgba(6,182,212,.15);
}
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(6,182,212,.15), rgba(13,148,136,.1));
  border: 1px solid rgba(6,182,212,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 24px;
  transition: transform .5s var(--ease-out), background .4s;
}
.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.05);
  background: var(--grad-primary);
  color: white;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(6,182,212,.1);
  border: 1px solid rgba(6,182,212,.2);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}

.service-card.featured {
  background: linear-gradient(135deg, rgba(6,182,212,.06), rgba(13,148,136,.04));
  border-color: rgba(6,182,212,.2);
}

.service-card.cta-card {
  background: var(--grad-primary);
  border-color: transparent;
  color: white;
}
.service-card.cta-card::after { background: radial-gradient(circle, rgba(255,255,255,.2) 0%, transparent 70%); opacity: .4; }
.service-card.cta-card .service-icon {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.3);
  color: white;
}
.service-card.cta-card:hover .service-icon { background: white; color: var(--primary-2); }
.service-card.cta-card h3 { color: white; }
.service-card.cta-card p { color: rgba(255,255,255,.85); }

.cta-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 4px;
  transition: gap .3s, border-color .3s;
}
.cta-link:hover { gap: 14px; border-color: white; }

/* ===== About ===== */
.about { padding: 120px 0; position: relative; }
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 540px;
}
.img-bg-shape {
  position: absolute;
  top: 8%; left: 8%;
  width: 84%; height: 84%;
  background: var(--grad-primary);
  border-radius: 32% 68% 50% 50% / 50% 50% 50% 50%;
  opacity: .3;
  filter: blur(40px);
  animation: morphShape 15s ease-in-out infinite;
}
.about-main-img {
  position: absolute;
  top: 0; right: 0;
  width: 78%; height: 78%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
  border: 8px solid rgba(255,255,255,.04);
}
.about-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transition: transform 1s var(--ease-out);
}
.about-main-img:hover img { transform: scale(1.06); }
.img-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6,16,30,.5));
}

.about-secondary-img {
  position: absolute;
  bottom: 0; left: 0;
  width: 50%; aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  border: 6px solid var(--bg-2);
}
.about-secondary-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.experience-badge {
  position: absolute;
  top: 12%; left: -8%;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--grad-warm);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 16px 48px rgba(245,158,11,.4);
  animation: floatY 6s ease-in-out infinite;
  text-align: center;
}
.exp-num { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; line-height: 1; }
.exp-text { font-size: 12px; line-height: 1.3; margin-top: 4px; }

.signature-card {
  position: absolute;
  bottom: 8%; right: -4%;
  width: 240px;
  padding: 20px;
  background: rgba(15,29,51,.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.signature-card i { color: var(--primary); font-size: 18px; margin-bottom: 8px; }
.signature-card p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 10px;
}
.signature-card span { font-size: 12px; color: var(--text-mute); font-weight: 500; }

.about-content .section-label,
.about-content .section-title { text-align: left; }
.about-content .section-title { margin-bottom: 20px; }
.about-content .lead {
  font-size: 18px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 18px;
  font-weight: 500;
}
.about-desc {
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 32px;
}

.credentials {
  display: flex; flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.cred-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .3s, border-color .3s, background .3s;
}
.cred-item:hover {
  transform: translateX(6px);
  border-color: rgba(6,182,212,.3);
  background: rgba(6,182,212,.03);
}
.cred-item i {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--grad-primary);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.cred-item strong { display: block; color: var(--text); font-size: 15px; margin-bottom: 2px; }
.cred-item span { font-size: 13px; color: var(--text-mute); }

.about-cta { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .about-container { grid-template-columns: 1fr; gap: 80px; }
  .about-img-stack { margin: 0 auto; }
  .experience-badge { width: 110px; height: 110px; left: 0; }
  .exp-num { font-size: 32px; }
  .signature-card { width: 200px; right: 0; }
}

@media (max-width: 720px) {
  .about-img-stack {
    aspect-ratio: auto;
    height: auto;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    padding: 0;
  }
  .img-bg-shape { display: none; }
  .about-main-img {
    position: relative;
    top: auto; right: auto;
    width: 100%; height: auto;
    aspect-ratio: 4/5;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-width: 4px;
  }
  .about-secondary-img {
    position: relative;
    bottom: auto; left: auto;
    width: 100%; aspect-ratio: 1/1;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    border-width: 4px;
  }
  .experience-badge {
    position: relative;
    top: auto; left: auto;
    width: 100%; height: auto;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding: 16px;
  }
  .exp-num { font-size: 28px; }
  .exp-text { font-size: 11px; }
  .signature-card {
    position: relative;
    bottom: auto; right: auto;
    width: 100%;
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    margin-top: 4px;
  }
}

/* ===== Process ===== */
.process { padding: 120px 0; position: relative; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
}
.process-step {
  padding: 40px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  transition: transform .5s var(--ease-out), border-color .5s, background .5s;
}
.process-step:hover {
  transform: translateY(-10px);
  border-color: rgba(6,182,212,.3);
  background: rgba(6,182,212,.03);
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .3;
  line-height: 1;
  margin-bottom: 4px;
}
.step-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(6,182,212,.15), rgba(13,148,136,.1));
  border: 1px solid rgba(6,182,212,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--primary);
  transition: all .4s;
}
.process-step:hover .step-icon {
  background: var(--grad-primary);
  color: white;
  transform: rotate(-8deg);
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 60px 0;
  position: relative;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px;
  background: linear-gradient(135deg, #0e7490 0%, #155e75 50%, #134e4a 100%);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(13,148,136,.3);
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(94,234,212,.3) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,.2) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; color: white; }
.cta-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 20px;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-content p { font-size: 16px; line-height: 1.6; opacity: .9; }
.cta-actions {
  display: flex; flex-direction: column; gap: 14px;
  position: relative; z-index: 1;
}

@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; padding: 40px 28px; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}

/* ===== Testimonials ===== */
.testimonials { padding: 120px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.testimonial-card {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .5s var(--ease-out), border-color .5s;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6,182,212,.3);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0; right: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 140px;
  color: rgba(6,182,212,.15);
  line-height: 1;
  pointer-events: none;
}
.stars {
  display: flex; gap: 4px;
  color: var(--accent);
  margin-bottom: 18px;
  font-size: 14px;
}
.testimonial-card p {
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .5px;
}
.testimonial-author strong { display: block; color: var(--text); font-size: 14.5px; }
.testimonial-author span { font-size: 12.5px; color: var(--text-mute); }

/* ===== Contact ===== */
.contact { padding: 120px 0; position: relative; overflow: hidden; }
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  min-width: 0;
}
.contact-container > * { min-width: 0; }

.contact-info { min-width: 0; }
.contact-info .section-label,
.contact-info .section-title,
.contact-info .section-desc { text-align: left; }
.contact-info .section-desc { margin-bottom: 36px; }
.contact-info .section-title { overflow-wrap: anywhere; }

.contact-cards {
  display: flex; flex-direction: column;
  gap: 14px;
}
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .3s, border-color .3s, background .3s;
}
.contact-card:not(.static):hover {
  transform: translateX(6px);
  border-color: rgba(6,182,212,.3);
  background: rgba(6,182,212,.03);
}
.cc-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--grad-primary);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cc-icon.green-grad { background: linear-gradient(135deg, #10b981, #059669); }
.cc-icon.orange-grad { background: var(--grad-warm); }
.contact-card > div:not(.cc-icon) { flex: 1; }
.contact-card span { display: block; font-size: 12px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-card strong { color: var(--text); font-size: 15px; font-weight: 600; }
.contact-card > i:last-child { color: var(--text-mute); font-size: 14px; }

.contact-form {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}
.form-sub { color: var(--text-mute); margin-bottom: 28px; font-size: 14px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  color: var(--text);
  font-size: 14.5px;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(6,182,212,.04);
  box-shadow: 0 0 0 4px rgba(6,182,212,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-2); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 100px; }

@media (max-width: 1024px) {
  .contact-container { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .contact-card { padding: 14px 16px; gap: 12px; flex-wrap: nowrap; }
  .contact-card > div:not(.cc-icon) { min-width: 0; flex: 1; }
  .contact-card strong {
    font-size: 13.5px;
    overflow-wrap: anywhere;
    word-break: break-word;
    display: block;
  }
  .contact-card span { font-size: 11px; }
  .cc-icon { width: 40px; height: 40px; font-size: 15px; }
  .contact-card > i:last-child { font-size: 12px; }
  .contact-info .section-desc { font-size: 15px; }
}

/* ===== Footer ===== */
.footer {
  padding: 80px 0 24px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.4));
  border-top: 1px solid var(--border);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-soft);
  transition: color .3s, padding-left .3s;
}
.footer-col ul a:hover { color: var(--primary); padding-left: 6px; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}
.contact-list i { color: var(--primary); margin-top: 4px; flex-shrink: 0; width: 14px; }

.logo-footer { margin-bottom: 20px; }
.footer-about {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 360px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft);
  font-size: 14px;
  transition: transform .3s, background .3s, color .3s;
}
.socials a:hover {
  transform: translateY(-3px);
  background: var(--grad-primary);
  color: white;
  border-color: transparent;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding: 24px 28px 0;
  border-top: 1px solid var(--border);
  max-width: 1280px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-mute);
}
.footer-bottom i { color: #ef4444; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { text-align: center; justify-content: center; }
}

/* ===== Floating Buttons ===== */
.float-whatsapp,
.float-top {
  position: fixed;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  z-index: 100;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  transition: transform .3s, box-shadow .3s;
}
.float-whatsapp {
  bottom: 28px; right: 28px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 16px 40px rgba(37,211,102,.5); }
.float-whatsapp .ripple {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: rippleOut 2s infinite;
}
@keyframes rippleOut {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.float-top {
  bottom: 96px; right: 28px;
  background: var(--grad-primary);
  color: white;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .3s, visibility .3s, transform .3s;
}
.float-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.float-top:hover { transform: translateY(-4px); }

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Scrollbar — hidden ===== */
*::-webkit-scrollbar { display: none; width: 0; height: 0; }
* { scrollbar-width: none; -ms-overflow-style: none; }

/* ===== Responsive Tweaks ===== */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .navbar { top: 12px; width: calc(100% - 24px); }
  .nav-container { padding: 10px 12px 10px 16px; }
  .logo-icon { width: 38px; height: 38px; font-size: 16px; }
  .logo-name { font-size: 15px; }
  .logo-sub { font-size: 10px; }
  .hero { padding: 120px 0 60px; }
  .services, .about, .process, .testimonials, .contact { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
  .floating-icon { display: none; }
  .float-whatsapp, .float-top { width: 50px; height: 50px; right: 20px; }
  .float-whatsapp { bottom: 20px; }
  .float-top { bottom: 80px; }
}
