:root {
  --blue-deep: #0a5c9e;
  --blue-primary: #1a7fd4;
  --blue-light: #3d9be6;
  --blue-pale: #e8f4fd;
  --blue-wash: #f0f8ff;
  --accent-warm: #f59e0b;
  --accent-coral: #fb7185;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 4px 24px rgba(10, 92, 158, 0.08);
  --shadow-md: 0 8px 40px rgba(10, 92, 158, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 92, 158, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(10,92,158,0.08);
  padding: 10px 0;
}

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

.nav-logo img {
  height: 48px;
  transition: height 0.3s, filter 0.4s;
  filter: brightness(0) invert(1);
}

.navbar.scrolled .nav-logo img {
  height: 40px;
  filter: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.navbar.scrolled .nav-links a { color: var(--gray-700); }
.nav-links a:hover { color: var(--accent-warm); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-warm);
  transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--accent-warm) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 24px;
  position: relative;
}

.mobile-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--white);
  position: absolute; left: 0;
  transition: all 0.3s;
}

.navbar.scrolled .mobile-toggle span { background: var(--gray-700); }

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 11px; }
.mobile-toggle span:nth-child(3) { top: 22px; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: linear-gradient(165deg, var(--blue-deep) 0%, var(--blue-primary) 40%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.paw-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.03;
  background-image: url('../images/paw-hero.svg');
  background-size: 80px 80px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-badge .pulse {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent-warm), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
  background: var(--accent-warm);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45);
}

.btn-outline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Profile composition ── */
.hero-profile {
  position: relative;
  width: 380px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative orbital rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.hero-ring-1 {
  width: 320px; height: 320px;
  animation: ring-breathe 5s ease-in-out infinite;
}

.hero-ring-2 {
  width: 430px; height: 430px;
  animation: ring-breathe 5s ease-in-out infinite;
  animation-delay: -2.5s;
}

@keyframes ring-breathe {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.03); }
}

/* Main card */
.hero-card {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 40px 36px;
  text-align: center;
  width: 260px;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.hero-card-glow {
  position: absolute;
  top: -30px; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 120px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.18) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

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

.hero-card img {
  width: 170px;
  display: block;
  margin: 0 auto;
}

.hero-card-divider {
  width: 36px; height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 20px auto 16px;
}

.hero-doctor-name {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.hero-doctor-reg {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Floating stat badges */
.hero-float-badge {
  position: absolute;
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.14),
    0 2px 6px rgba(0,0,0,0.08);
  z-index: 4;
  min-width: 168px;
  backdrop-filter: blur(10px);
}

.hero-float-badge--1 {
  top: 28px; right: -32px;
  animation: float 7s ease-in-out infinite;
  animation-delay: -3s;
}

.hero-float-badge--2 {
  bottom: 44px; left: -32px;
  animation: float 7s ease-in-out infinite;
  animation-delay: -1s;
}

.float-badge-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-primary);
}

.float-badge-icon svg {
  width: 18px; height: 18px;
}

.float-badge-icon--green {
  background: rgba(74,222,128,0.12);
  color: #16a34a;
}

.float-badge-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.float-badge-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  line-height: 1.2;
}

/* ========== SECTION BASE ========== */
.section {
  padding: 100px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue-primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--gray-900);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ========== SERVICES ========== */
.services { background: var(--gray-50); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue-light), var(--blue-deep));
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(10, 92, 158, 0.13);
  border-color: var(--blue-pale);
}

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


.service-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.service-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: transparent;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-icon {
  background: var(--blue-pale);
  transform: scale(1.1) rotate(-4deg);
}

.service-icon svg {
  width: 44px; height: 44px;
  stroke: var(--blue-primary);
  display: block;
}

.service-card h3 {
  font-size: 1.18rem;
  color: var(--gray-900);
  font-weight: 700;
  line-height: 1.3;
}

.service-card > p {
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.7;
  padding-left: 74px;
}

/* ========== SPECIALTIES ========== */
.specialties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.specialty-box {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-primary));
  border-radius: 24px;
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.specialty-box::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.specialty-box::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -15%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.specialty-box h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.specialty-box p {
  opacity: 0.85;
  font-size: 1rem;
  margin-bottom: 24px;
}

.specialty-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.specialty-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.specialty-list li::before {
  content: '✓';
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.specialty-info { display: flex; flex-direction: column; gap: 24px; }

.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue-primary);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
  border-color: var(--blue-light);
}

.info-card:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

.info-card--featured {
  border-color: rgba(37, 99, 235, 0.2);
  background: linear-gradient(135deg, #f0f7ff 0%, var(--white) 60%);
}

.info-card--featured::after {
  opacity: 1;
  transform: scaleY(1);
  background: linear-gradient(to bottom, var(--blue-primary), var(--blue-light));
}

.info-card-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: rgba(37, 99, 235, 0.1);
  border-radius: 20px;
  padding: 2px 8px;
  margin-bottom: 5px;
}

.info-card-icon {
  width: 50px; height: 50px;
  background: var(--blue-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-card:hover .info-card-icon {
  background: rgba(37, 99, 235, 0.12);
  transform: scale(1.1) rotate(-4deg);
}

.info-card-icon svg {
  width: 26px; height: 26px;
  stroke: var(--blue-primary);
  display: block;
}

.info-card h4 {
  font-size: 1.02rem;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.info-card p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ========== PLANTAO / EMERGENCY ========== */
.emergency {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0d3b66 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.emergency::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/paw-emergency.svg');
  background-size: 80px 80px;
}

.emergency .section-label { color: var(--accent-warm); }
.emergency .section-title { color: var(--white); }
.emergency .section-subtitle { color: rgba(255,255,255,0.7); }

.emergency-phone {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 32px 0;
  letter-spacing: 0.02em;
}

.emergency-phone a {
  color: var(--accent-warm);
  text-decoration: none;
  transition: text-shadow 0.3s;
}

.emergency-phone a:hover {
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

.emergency-detail {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

/* ========== CONTACT ========== */
.contact-section { background: #f0f4fa; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: stretch;
}

/* --- LEFT CARD --- */
.contact-card {
  background: linear-gradient(145deg, var(--blue-deep) 0%, var(--blue-primary) 100%);
  border-radius: 24px;
  padding: 48px 44px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.09), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-card::after {
  content: '';
  position: absolute;
  bottom: -25%; left: -10%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

.contact-card-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--white);
}

.contact-card-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s;
}

.contact-item:last-child { border-bottom: none; }

.contact-item:hover { transform: translateX(4px); }

.contact-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-item:hover .contact-icon {
  background: rgba(255,255,255,0.22);
  transform: scale(1.1) rotate(-4deg);
}

.contact-icon svg {
  width: 22px; height: 22px;
  stroke: rgba(255,255,255,0.95);
  display: block;
}

.contact-item-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--white); }

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: var(--white);
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}

.contact-cta:hover {
  background: #e8f0fe;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* --- RIGHT MAP --- */
.contact-map-wrap {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.1);
  background: var(--white);
}

.contact-map-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.contact-map-header-icon {
  width: 40px; height: 40px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-map-header-icon svg {
  width: 20px; height: 20px;
  stroke: var(--blue-primary);
}

.contact-map-header-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1px;
}

.contact-map-header-sub {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.contact-map-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #16a34a;
  background: #dcfce7;
  border-radius: 20px;
  padding: 4px 10px;
  flex-shrink: 0;
}

.contact-map {
  flex: 1;
  min-height: 360px;
}

.contact-map iframe {
  width: 100%; height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
  padding: 48px 24px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo { height: 40px; margin-bottom: 16px; opacity: 0.7; }

.footer p { font-size: 0.85rem; }

.footer-line {
  width: 60px; height: 2px;
  background: var(--blue-primary);
  margin: 16px auto;
  opacity: 0.5;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  text-decoration: none;
  animation: whatsappPulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--white);
  color: var(--gray-800);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  pointer-events: none;
}

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

/* ========== SCROLL ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .nav-links.open a { color: var(--gray-700) !important; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }

  .hero-text { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-profile { width: 280px; height: 320px; }
  .hero-card { width: 220px; padding: 32px 28px; }
  .hero-card img { width: 140px; }
  .hero-ring-2 { width: 340px; height: 340px; }
  .hero-ring-1 { width: 250px; height: 250px; }
  .hero-float-badge { display: none; }

  .specialties-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card { padding: 36px 28px; }
  .contact-card-title { font-size: 1.8rem; }
  .contact-map { min-height: 280px; }
  .contact-map iframe { min-height: 280px; }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card > p { padding-left: 0; }

}
