/* ============================================================
   HospitaVet Nur — Veterinary Clinic Website
   Style Sheet v1.0
   Dark Hero → Light Body Concept
   ============================================================ */

/* ─── 0. Google Fonts are loaded in HTML ──────────────────── */

/* ─── 1. CSS VARIABLES ──────────────────────────────────────── */
:root {
  --dark:    #080C14;
  --dark2:   #0D1320;
  --navy:    #0C1F4A;
  --navy2:   #152C6B;
  --blue:    #1842FF;
  --blue2:   #4163FF;
  --red:     #CC1A1A;
  --red2:    #E52222;
  --white:   #FFFFFF;
  --bg:      #F8F7F4;
  --bg2:     #EFECEA;
  --ink:     #0D0D0F;
  --muted:   #6B7280;
  --brd:     #E2DDD7;
  --fh:      'Outfit', sans-serif;
  --fb:      'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.18);
  --shadow-glow: 0 0 40px rgba(24,66,255,.25);

  --ekg-color: var(--red);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ─── Custom Scrollbar ────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue2); }

/* ─── 3. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--fh);
  line-height: 1.15;
  font-weight: 700;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-top: 1rem;
}

.section-desc.light {
  color: rgba(255,255,255,0.7);
}

/* ─── 4. UTILITIES ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: var(--fh);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(24,66,255,.35);
}
.btn-primary:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(24,66,255,.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

/* ─── 5. NAVIGATION ─────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#nav.scrolled {
  background: rgba(8, 12, 20, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .brand {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.nav-logo-text .brand span {
  color: var(--blue);
}

.nav-logo-text .sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1.5px;
  background: var(--blue);
  transition: right var(--transition);
}

.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::after {
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 4px;
  cursor: pointer;
  gap: 2px;
}

.lang-btn {
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
  border: none;
  background: transparent;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(24,66,255,.4);
}

.nav-emergency {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,26,26,.5); }
  50% { box-shadow: 0 0 0 8px rgba(204,26,26,0); }
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── Hamburger ────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  align-items: center;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav Overlay ───────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8,12,20,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 0 2rem;
}

.nav-mobile ul li {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-mobile ul li:first-child {
  border-top: 1px solid rgba(255,255,255,.06);
}

.nav-mobile .nav-link {
  display: block;
  font-size: 1.35rem;
  font-family: var(--fh);
  font-weight: 700;
  color: rgba(255,255,255,.85);
  padding: 1.1rem 0;
  text-align: center;
  transition: color 0.2s, padding-left 0.2s;
  width: 100%;
}

.nav-mobile .nav-link:hover {
  color: var(--white);
  padding-left: 1rem;
}

.nav-mobile .nav-link::after {
  display: none;
}

.nav-mobile .btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
  max-width: 280px;
}

.nav-mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.nav-mobile-close:hover {
  background: rgba(255,255,255,.16);
}

/* Mobile nav logo at top */
.nav-mobile-logo {
  position: absolute;
  top: 1.1rem;
  left: 1.5rem;
}

.nav-mobile-logo img {
  height: 36px;
  width: auto;
}

.nav-mobile-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
}

.nav-mobile-ctas .btn {
  width: 100%;
  max-width: 280px;
  justify-content: center;
  text-align: center;
}

.nav-mobile-ctas .nav-emergency {
  width: 100%;
  max-width: 280px;
  justify-content: center;
}


/* ─── 6. HERO SECTION ───────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

/* Radial gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(24,66,255,.1) 0%, transparent 70%),
    linear-gradient(180deg, rgba(8,12,20,.2) 0%, var(--dark) 100%);
}

/* Grid lines decoration */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24,66,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,66,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite;
}

.hero-particle:nth-child(1)  { width:4px; height:4px; background:var(--blue); left:15%; top:20%; animation-delay:0s; }
.hero-particle:nth-child(2)  { width:3px; height:3px; background:var(--red); left:80%; top:30%; animation-delay:1.5s; }
.hero-particle:nth-child(3)  { width:5px; height:5px; background:var(--blue2); left:65%; top:65%; animation-delay:3s; }
.hero-particle:nth-child(4)  { width:3px; height:3px; background:var(--white); left:30%; top:75%; animation-delay:4.5s; }
.hero-particle:nth-child(5)  { width:4px; height:4px; background:var(--blue); left:90%; top:55%; animation-delay:2s; }
.hero-particle:nth-child(6)  { width:3px; height:3px; background:var(--red); left:10%; top:60%; animation-delay:6s; }

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(20px) scale(0); }
  20% { opacity: 0.8; }
  80% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-60px) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}

.hero-logo {
  width: 280px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 20px rgba(255,255,255,.15));
  animation: float-logo 4s ease-in-out infinite;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,26,26,.15);
  border: 1px solid rgba(204,26,26,.4);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF6B6B;
  margin-bottom: 1.5rem;
  animation: slide-down 0.6s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red2);
  animation: blink 1s infinite;
}

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

.hero-title {
  font-family: var(--fh);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  animation: fade-up 0.8s 0.2s ease both;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .accent-red {
  background: linear-gradient(135deg, var(--red), #FF6B6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fade-up 0.8s 0.4s ease both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fade-up 0.8s 0.6s ease both;
}

/* EKG SVG Container */
.hero-ekg-wrap {
  width: 100%;
  max-width: 900px;
  position: relative;
  animation: fade-up 0.8s 0.8s ease both;
}

.hero-ekg-label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%) rotate(180deg);
}

.ekg-svg {
  width: 100%;
  height: 80px;
  overflow: visible;
}

.ekg-line {
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(204,26,26,.8));
}

.ekg-glow {
  fill: none;
  stroke: rgba(204,26,26,.3);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hero bottom info strip */
.hero-info-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.25rem 2rem;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  z-index: 2;
  flex-wrap: wrap;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(24,66,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue2);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-info-text {
  display: flex;
  flex-direction: column;
}

.hero-info-text .val {
  font-family: var(--fh);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}

.hero-info-text .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.35);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce-down 2s infinite;
  z-index: 2;
}

.scroll-indicator .mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}

.scroll-indicator .wheel {
  width: 3px;
  height: 6px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── 7. SERVICES — BENTO GRID ──────────────────────────────── */
#services {
  padding: 7rem 0;
  background: var(--bg);
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-header .section-desc {
  margin: 0 auto;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}

.bento-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--white);
  border: 1px solid var(--brd);
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition);
  transform-style: preserve-3d;
  will-change: transform;
}

.bento-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Card layout placements */
.bento-card-1 { grid-column: 1 / span 7; grid-row: 1; min-height: 380px; }
.bento-card-2 { grid-column: 8 / span 5; grid-row: 1; min-height: 380px; }
.bento-card-3 { grid-column: 1 / span 5; grid-row: 2; min-height: 300px; }
.bento-card-4 { grid-column: 6 / span 7; grid-row: 2; min-height: 300px; }

.bento-img {
  width: 100%;
  height: 55%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.bento-card:hover .bento-img {
  transform: scale(1.07);
}

.bento-body {
  padding: 1.5rem;
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.875rem;
  flex-shrink: 0;
}

.bento-icon.blue { background: rgba(24,66,255,.1); color: var(--blue); }
.bento-icon.red  { background: rgba(204,26,26,.1); color: var(--red); }
.bento-icon.navy { background: rgba(12,31,74,.1); color: var(--navy); }
.bento-icon.teal { background: rgba(6,182,212,.1); color: #06B6D4; }

.bento-card-title {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.bento-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.bento-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1rem;
}

.bento-tag.blue { background: rgba(24,66,255,.1); color: var(--blue); }
.bento-tag.red  { background: rgba(204,26,26,.1); color: var(--red); }
.bento-tag.navy { background: rgba(12,31,74,.1); color: var(--navy); }
.bento-tag.teal { background: rgba(6,182,212,.1); color: #06B6D4; }

/* Card 1 is horizontal layout */
.bento-card-1 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.bento-card-1 .bento-img {
  height: 100%;
  width: 100%;
}

.bento-card-1 .bento-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.bento-card-1 .bento-card-title {
  font-size: 1.6rem;
}

/* ─── 8. ABOUT SECTION ──────────────────────────────────────── */
#about {
  background: var(--white);
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.about-photo-panel {
  position: relative;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.about-photo-panel:hover .about-photo {
  transform: scale(1.03);
}

.about-photo-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 260px;
}

.about-photo-badge .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(24,66,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.about-photo-badge .badge-text .title {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.about-photo-badge .badge-text .sub {
  font-size: 0.75rem;
  color: var(--muted);
}

.about-content {
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}

.about-doctor-name {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0.5rem 0 0.25rem;
}

.about-doctor-title {
  font-size: 0.875rem;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.about-feature-item .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(24,66,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-item span {
  font-size: 0.875rem;
  color: var(--ink);
  font-weight: 500;
}

/* ─── 9. STATS STRIP ────────────────────────────────────────── */
#stats {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 80% at 10% 50%, rgba(24,66,255,.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 90% 50%, rgba(204,26,26,.1) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.1);
}

.stat-number {
  font-family: var(--fh);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-number .plus {
  font-size: 60%;
  background: linear-gradient(135deg, var(--blue2), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

/* ─── 10. PROCESS — HORIZONTAL STEPS ───────────────────────── */
#process {
  padding: 7rem 0;
  background: var(--bg2);
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-header .section-desc {
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue2) 50%, var(--red) 100%);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 20px rgba(24,66,255,.2), 0 0 0 8px var(--bg2);
  transition: var(--transition);
  position: relative;
}

.process-step:hover .step-circle {
  background: var(--blue);
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(24,66,255,.35), 0 0 0 8px var(--bg2);
}

.step-num {
  font-family: var(--fh);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.step-emoji {
  font-size: 1.5rem;
  line-height: 1;
}

.process-step:hover .step-num {
  color: var(--white);
}

.step-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.625rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── 11. TESTIMONIALS ──────────────────────────────────────── */
#testimonials {
  padding: 7rem 0;
  background: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-slider-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 2rem;
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 3rem;
  position: relative;
  border: 1px solid var(--brd);
}

.testimonial-quote-icon {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--brd);
  font-family: Georgia, serif;
  user-select: none;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #FBBF24;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author-info .name {
  font-family: var(--fh);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

.testimonial-author-info .role {
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonial-pet {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
  background: rgba(24,66,255,.08);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
}

/* Slider controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--brd);
  background: var(--white);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brd);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ─── 12. APPOINTMENT SECTION ───────────────────────────────── */
#appointment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.appt-left {
  background: var(--dark);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.appt-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(24,66,255,.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(204,26,26,.1) 0%, transparent 50%);
}

.appt-left-inner {
  position: relative;
  z-index: 1;
}

.appt-title {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.appt-title span {
  color: var(--blue2);
}

.appt-desc {
  color: rgba(255,255,255,.6);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.appt-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.appt-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.appt-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.appt-contact-info .label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.appt-contact-info .value {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.appt-right {
  background: var(--white);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.appt-form-title {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.appt-form-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.appt-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-control {
  padding: 0.875rem 1.125rem;
  border: 1.5px solid var(--brd);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-control::placeholder {
  color: var(--muted);
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(24,66,255,.1);
  background: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit-btn {
  padding: 1rem 2rem;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit-btn:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(24,66,255,.4);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius-md);
  color: #16a34a;
  font-weight: 600;
}

/* ─── 13. CONTACT & MAP ─────────────────────────────────────── */
#contact {
  padding: 5rem 0 0;
  background: var(--bg);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--brd);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-card-icon.blue { background: rgba(24,66,255,.1); }
.contact-card-icon.red  { background: rgba(204,26,26,.1); }
.contact-card-icon.navy { background: rgba(12,31,74,.1); }

.contact-card-title {
  font-family: var(--fh);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-card-value {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.contact-card-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.map-container {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.7) contrast(1.05);
}

/* ─── 14. FOOTER ────────────────────────────────────────────── */
#footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0.9);
}

.footer-brand-name {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-brand-name span {
  color: var(--blue);
}

.footer-brand-sub {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--fh);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-info-icon {
  font-size: 0.875rem;
  color: var(--blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-info-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
}

.footer-copy a {
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}

.footer-copy a:hover {
  color: var(--white);
}

.footer-badges {
  display: flex;
  gap: 0.5rem;
}

.footer-badge {
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  font-size: 0.7rem;
  color: rgba(255,255,255,.35);
  letter-spacing: 0.06em;
}

.footer-badge.emergency {
  border-color: rgba(204,26,26,.3);
  color: rgba(255,100,100,.5);
}

/* ─── 15. SCROLL REVEAL ─────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-reveal="up"] {
  transform: translateY(40px);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
[data-delay="100"]  { transition-delay: 0.1s; }
[data-delay="150"]  { transition-delay: 0.15s; }
[data-delay="200"]  { transition-delay: 0.2s; }
[data-delay="300"]  { transition-delay: 0.3s; }
[data-delay="400"]  { transition-delay: 0.4s; }
[data-delay="450"]  { transition-delay: 0.45s; }
[data-delay="500"]  { transition-delay: 0.5s; }
[data-delay="600"]  { transition-delay: 0.6s; }

/* ─── 16. RESPONSIVE ────────────────────────────────────────── */

/* 1280px — Large desktop */
@media (max-width: 1280px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
    max-width: 360px;
  }
}

/* 1024px — Small desktop / tablet landscape */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-card-1, .bento-card-2, .bento-card-3, .bento-card-4 {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }
  .bento-card-1 {
    grid-column: span 2;
    display: block;
  }
  .bento-card-1 .bento-img {
    height: 220px;
    width: 100%;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-photo-panel {
    height: 450px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    padding: 0 1rem;
  }

  #appointment {
    grid-template-columns: 1fr;
  }

  .appt-left, .appt-right {
    padding: 4rem 3rem;
  }

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

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

  /* ── Nav responsive 1024px ─────────────── */
  #nav {
    padding: 0.875rem 0;
  }

  .nav-menu {
    display: none;
  }

  /* Hide desktop-only nav items */
  .nav-actions .btn-primary,
  .nav-actions .nav-emergency {
    display: none;  /* Both shown in mobile overlay instead */
  }

  .nav-actions .lang-toggle {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .nav-logo img {
    height: 40px;
    max-width: 150px;
  }
}

/* 768px — Tablet portrait */
@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  #hero {
    min-height: 100svh;
  }

  .hero-info-strip {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .hero-info-item:nth-child(4) {
    display: none;
  }

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

  .bento-card-1 {
    grid-column: 1;
  }

  .about-content {
    padding: 3rem 2rem;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
    padding: 0;
  }

  .step-circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .appt-left, .appt-right {
    padding: 3rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* 480px — Mobile */
@media (max-width: 480px) {
  #services,
  #process,
  #testimonials,
  #contact {
    padding: 4rem 0;
  }

  #stats {
    padding: 3.5rem 0;
  }

  .stat-item + .stat-item::before {
    display: none;
  }

  .testimonial-inner {
    padding: 2rem 1.5rem;
  }

  .testimonial-quote-icon {
    display: none;
  }

  .hero-logo {
    width: 80px;
  }

  /* 480px nav tweaks */
  .nav-actions .nav-emergency {
    display: none; /* Ensure hidden at 480px too */
  }
  .nav-logo img {
    height: 32px;
    max-width: 120px;
  }
  .nav-hamburger {
    width: 36px;
    height: 36px;
  }
  .lang-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
  }
  #nav {
    padding: 0.75rem 0;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-info-strip {
    display: none;
  }

  .contact-card {
    padding: 1.5rem;
  }
}

/* ─── 17. MISC MICRO-INTERACTIONS ───────────────────────────── */
.hover-lift {
  transition: transform var(--transition), box-shadow var(--transition);
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Focus ring for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* Selection */
::selection {
  background: rgba(24,66,255,.25);
  color: var(--ink);
}
