/* ============================================
   ResQ v2 — Maximum Animation & Interactivity
   Warm editorial + emergency urgency
   ============================================ */

:root {
  --bg: #0a0804;
  --bg2: #130e06;
  --bg3: #1e1609;
  --border: #332510;
  --border2: #4a3518;
  --accent: #e07b39;
  --accent2: #c0392b;
  --accent-soft: rgba(224, 123, 57, 0.12);
  --accent-glow: rgba(224, 123, 57, 0.25);
  --red: #e8281e;
  --red-soft: rgba(232, 40, 30, 0.12);
  --orange: #e07b39;
  --yellow: #f0c030;
  --green: #2d6a4f;
  --earth: #8b5e3c;
  --text: #f5efe6;
  --text-dim: #9a8472;
  --text-mute: #4a3a28;
  --white: #fffdf9;
  --font-head: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---- PARTICLE CANVAS ---- */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 3px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ============ EMERGENCY BANNER ============ */
.emergency-banner {
  background: linear-gradient(90deg, #8b0000, var(--accent2), #8b0000);
  background-size: 200% 100%;
  animation: bannerShift 4s linear infinite;
  color: #fff;
  text-align: center;
  padding: 11px 24px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 200;
}

@keyframes bannerShift {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.pulse-dot:last-child {
  animation-delay: 0.7s;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.4);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }
}

/* ============ HEADER ============ */
.header {
  background: rgba(19, 14, 6, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s var(--ease);
}

.header.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: default;
}

/* Animated cross logo */
.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: transform 0.3s var(--spring), box-shadow 0.3s;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 12px;
}

.logo:hover .logo-icon {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.cross-h,
.cross-v {
  position: absolute;
  background: white;
  border-radius: 2px;
}

.cross-h {
  width: 22px;
  height: 5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cross-v {
  width: 5px;
  height: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-name {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-sub {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 3px;
  letter-spacing: 0.5px;
}

/* ============ CUSTOM LANGUAGE SWITCHER ============ */
.lang-switcher {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--bg3);
  border: 1.5px solid var(--border2);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  letter-spacing: 0.5px;
  user-select: none;
}

.lang-current:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.lang-flag {
  font-size: 16px;
  line-height: 1;
}

.lang-label {
  font-size: 12px;
  letter-spacing: 1px;
}

.lang-arrow {
  font-size: 10px;
  transition: transform 0.3s var(--spring);
  display: inline-block;
  color: var(--text-dim);
}

.lang-arrow.open {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  border-radius: 14px;
  overflow: hidden;
  min-width: 160px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top right;
  transition: all 0.25s var(--spring);
  pointer-events: none;
  z-index: 999;
}

.lang-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 18px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
}

.lang-option:hover {
  background: var(--accent-soft);
  color: var(--text);
  padding-left: 24px;
}

.lang-option.active {
  color: var(--accent);
  background: var(--accent-soft);
}

.lang-option span:first-child {
  font-size: 18px;
}

/* ============ HERO ============ */
.hero {
  background: var(--bg2);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '✚';
  position: absolute;
  right: -80px;
  top: -80px;
  font-size: 400px;
  color: var(--accent);
  opacity: 0.025;
  line-height: 1;
  pointer-events: none;
  animation: heroRotate 30s linear infinite;
}

@keyframes heroRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(224, 123, 57, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(224, 123, 57, 0.3);
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  animation: fadeSlideDown 0.6s var(--ease) both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.title-line {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -2px;
  display: block;
  overflow: hidden;
}

.title-line:nth-child(1) {
  animation: titleReveal 0.8s var(--ease) 0.1s both;
}

.title-line:nth-child(2) {
  animation: titleReveal 0.8s var(--ease) 0.25s both;
}

.title-line.italic {
  color: var(--accent);
  font-style: italic;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 460px;
  font-weight: 300;
  margin-bottom: 36px;
  animation: titleReveal 0.8s var(--ease) 0.4s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: titleReveal 0.8s var(--ease) 0.55s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 28px 0 0;
}

.hero-stat:first-child {
  padding-left: 0;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border2);
  margin: 0 28px 0 0;
}

/* ============ QUICK SELECT ============ */
.quick-section {
  padding: 40px 0 0;
  position: relative;
  z-index: 1;
}

.quick-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}

.quick-btn {
  padding: 14px 16px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s var(--ease);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.quick-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-soft), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.quick-btn:hover::before {
  opacity: 1;
}

.quick-btn:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.quick-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.qbtn-icon {
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--spring);
}

.quick-btn:hover .qbtn-icon {
  transform: scale(1.2) rotate(-5deg);
}

.qbtn-text {
  flex: 1;
}

.qbtn-arrow {
  font-size: 12px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.quick-btn:hover .qbtn-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered entrance */
.quick-btn:nth-child(1) {
  animation: cardIn 0.5s var(--ease) 0.1s both;
}

.quick-btn:nth-child(2) {
  animation: cardIn 0.5s var(--ease) 0.15s both;
}

.quick-btn:nth-child(3) {
  animation: cardIn 0.5s var(--ease) 0.2s both;
}

.quick-btn:nth-child(4) {
  animation: cardIn 0.5s var(--ease) 0.25s both;
}

.quick-btn:nth-child(5) {
  animation: cardIn 0.5s var(--ease) 0.3s both;
}

.quick-btn:nth-child(6) {
  animation: cardIn 0.5s var(--ease) 0.35s both;
}

.quick-btn:nth-child(7) {
  animation: cardIn 0.5s var(--ease) 0.4s both;
}

.quick-btn:nth-child(8) {
  animation: cardIn 0.5s var(--ease) 0.45s both;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ MAIN ============ */
.main {
  padding: 36px 24px 80px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* ============ INPUT PANEL ============ */
.input-panel {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  animation: cardIn 0.6s var(--ease) 0.5s both;
}

.input-panel:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft), 0 8px 40px rgba(0, 0, 0, 0.4);
}

.panel-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  animation: glowFloat 7s ease-in-out infinite;
}

@keyframes glowFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-20px, 20px);
  }
}

.input-label {
  display: block;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.textarea-wrap {
  position: relative;
}

.emergency-textarea {
  width: 100%;
  padding: 16px;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  resize: vertical;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  min-height: 120px;
}

.emergency-textarea:focus {
  border-color: var(--accent);
  background: rgba(30, 22, 9, 0.8);
}

.emergency-textarea::placeholder {
  color: var(--text-mute);
}

.input-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 12px;
}

.char-count {
  font-size: 12px;
  color: var(--text-mute);
}

/* ---- GET HELP BUTTON ---- */
.get-help-btn {
  position: relative;
  padding: 14px 36px;
  background: none;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.2s var(--spring), box-shadow 0.2s;
  letter-spacing: 0.3px;
}

.btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  transition: opacity 0.3s;
  z-index: 0;
}

.get-help-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff9a5c, #e8281e);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.get-help-btn:hover::before {
  opacity: 1;
}

.get-help-btn>* {
  position: relative;
  z-index: 1;
}

.get-help-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(224, 123, 57, 0.4);
}

.get-help-btn:active:not(:disabled) {
  transform: translateY(-1px) scale(0.98);
}

.get-help-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.get-help-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-icon {
  display: inline-block;
  transition: transform 0.3s var(--spring);
}

.get-help-btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============ RESPONSE PANEL ============ */
.response-panel {
  background: var(--bg2);
  border: 1.5px solid var(--accent);
  border-radius: 16px;
  padding: 32px;
  animation: panelReveal 0.5s var(--spring) both;
  box-shadow: 0 0 60px rgba(224, 123, 57, 0.1);
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.response-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.response-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 999px;
  letter-spacing: 0.8px;
}

.badge-cross {
  font-size: 14px;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 999px;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.copy-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.response-content {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  overflow-wrap: break-word;
  word-break: break-word;
}

.response-content strong {
  color: var(--accent);
}

.new-query-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 22px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s;
}

.new-query-btn:hover {
  border-color: var(--text-dim);
  color: var(--text);
  transform: translateX(-3px);
}

/* ============ HOSPITALS ============ */
.hospitals-panel {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  animation: panelReveal 0.5s var(--spring) both;
}

.hospitals-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hospitals-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.locate-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--earth);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.locate-btn:hover:not(:disabled) {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.locate-icon {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.hospitals-hint {
  color: var(--text-dim);
  font-size: 13px;
}

.hospital-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  animation: cardIn 0.4s var(--ease) both;
  transition: transform 0.2s;
}

.hospital-item:hover {
  transform: translateX(4px);
}

.hospital-item:last-child {
  border-bottom: none;
}

.hospital-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-soft);
  border: 1px solid rgba(224, 123, 57, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--spring);
}

.hospital-item:hover .hospital-icon {
  transform: scale(1.1);
}

.hospital-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.hospital-dist {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

.hospital-link {
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  margin-top: 4px;
  display: inline-block;
  transition: all 0.2s;
}

.hospital-link:hover {
  color: var(--text);
  text-decoration: underline;
}

/* ============ CONTACTS ============ */
.contacts-panel {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  animation: cardIn 0.6s var(--ease) 0.6s both;
}

.contacts-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.contact-card {
  background: var(--bg3);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  cursor: default;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.card-top-bar {
  height: 4px;
  width: 100%;
  transition: height 0.3s;
}

.contact-card:hover .card-top-bar {
  height: 6px;
}

.contact-card.red .card-top-bar {
  background: var(--accent2);
}

.contact-card.orange .card-top-bar {
  background: var(--accent);
}

.contact-card.yellow .card-top-bar {
  background: var(--yellow);
}

.contact-card.green .card-top-bar {
  background: #2d6a4f;
}

.contact-card .contact-country,
.contact-card .contact-numbers {
  padding: 0 18px;
}

.contact-card .contact-country {
  padding-top: 14px;
  padding-bottom: 10px;
}

.contact-card .contact-numbers {
  padding-bottom: 16px;
}

.contact-country {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.contact-numbers {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-num {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.contact-num:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.num-badge {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  background: var(--border);
  border-radius: 4px;
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 28px 0;
  text-align: center;
  color: var(--text-mute);
  font-size: 12px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.footer p {
  margin-bottom: 6px;
  line-height: 1.6;
}

.footer strong {
  color: var(--text-dim);
}

.footer-links {
  color: var(--text-mute);
}

.footer a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--accent);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 600px) {
  .title-line {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contacts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .input-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .get-help-btn {
    width: 100%;
    min-width: unset;
  }

  .input-panel,
  .response-panel {
    padding: 20px;
  }

  .hero-stats {
    gap: 0;
  }

  .stat-divider {
    margin: 0 16px 0 0;
  }

  .hero-stat {
    padding-right: 16px;
  }

  .stat-num {
    font-size: 22px;
  }
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg2);
}
::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
