/* ====== Root & Reset ====== */
:root {
  --blue-dark: #003399;
  --blue-accent: #1a73e8;
  --bg-light: #f5f7fb;
  --bg-lighter: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
  --shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.12);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition-base: 0.2s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-main);
  background: #f3f4f6;
}

/* ====== Layout Helpers ====== */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.3rem;
}

main {
  flex: 1;
  padding-top: 84px; /* compensate sticky navbar */
  padding-bottom: 3rem;
}

/* ====== Navbar ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}

.navbar {
  background: rgba(247, 249, 252, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.3rem;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-main);
}

.logo-title {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--blue-dark);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue-accent);
  transition: width var(--transition-base);
}

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

.nav-links a.active {
  color: var(--blue-dark);
  font-weight: 600;
}

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

/* Dropdown Proiecte */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: transparent;
  border: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "▾";
  font-size: 0.7rem;
}

.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: 130%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 0.6rem 0.4rem;
  display: none;
  min-width: 220px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.45rem 0.8rem;
  color: var(--text-main);
  border-radius: 8px;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-light);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.hero-motto-box {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  width: 100%;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(26, 115, 232, 0.12),
    rgba(0, 51, 153, 0.12)
  );
  border: 1px solid rgba(26, 115, 232, 0.25);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  text-align: left;
}

.hero-motto-box h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.hero-motto-box p {
  margin: 0;
  font-size: 0.87rem;
  color: #374151;
  line-height: 1.35;
}

/* CTA button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-dark));
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
  transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
}

.btn-primary:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue-dark);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: background var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.btn-secondary:hover {
  background: var(--bg-light);
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.35);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 999px;
  position: relative;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 999px;
  transition: transform 0.18s ease-out, top 0.18s ease-out;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.navbar.mobile-open .nav-toggle span {
  transform: rotate(45deg);
}

.navbar.mobile-open .nav-toggle span::before {
  transform: rotate(-90deg);
  top: 0;
}

.navbar.mobile-open .nav-toggle span::after {
  opacity: 0;
}

/* ====== Hero (index) ====== */
.hero {
  padding: 2.8rem 0 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.1rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue-accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 0.9rem;
}

.hero-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero card: pseudo-hartă */
.hero-card {
  background: radial-gradient(circle at top left, #e0ebff 0, #ffffff 46%, #e5ecff 100%);
  border-radius: var(--radius-xl);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}

.hero-location {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-location-pill {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
}

.hero-location-pill::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.4);
  animation: pulse 1.4s infinite ease-out;
}

.hero-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: var(--blue-dark);
  background: rgba(219, 234, 254, 0.8);
}

/* pseudo-hartă */
.map-shell {
  margin-top: 0.4rem;
  border-radius: 18px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  padding: 0.7rem;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.4), rgba(239, 246, 255, 0.9));
  position: relative;
  overflow: hidden;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.map-cell {
  height: 22px;
  border-radius: 8px;
  background: rgba(191, 219, 254, 0.7);
}

.map-cell:nth-child(odd) {
  opacity: 0.75;
}

/* Pin animat */
.map-pin {
  position: absolute;
  right: 18%;
  top: 38%;
  transform: translate(50%, -50%);
}

.map-pin-icon {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: #ef4444;
  transform: rotate(-45deg);
  position: relative;
  box-shadow: 0 8px 16px rgba(239, 68, 68, 0.55);
}

.map-pin-icon::after {
  content: "";
  position: absolute;
  top: 32%;
  left: 32%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fee2e2;
}

.map-pin-pulse {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 22px;
  height: 6px;
  background: rgba(15, 23, 42, 0.22);
  border-radius: 50%;
  transform: translateX(-50%);
  filter: blur(2px);
}

/* hero bullet list */
.hero-list {
  margin-top: 0.75rem;
  padding-left: 1.1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ====== Sections generic ====== */
.section {
  padding: 1.8rem 0 0.4rem;
}

.section-header {
  margin-bottom: 1.1rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue-accent);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.section-title {
  font-size: 1.35rem;
  margin: 0 0 0.2rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Cards / grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--bg-lighter);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.35);
  background: #ffffff;
}

.card-title {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.card-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-accent);
}

.card-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

/* Simple list */
.text-block {
  font-size: 0.94rem;
  color: var(--text-main);
  max-width: 44rem;
}

.text-block p {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

#despre-noi .text-block {
  max-width: none;
}

/* ====== Implică-te ====== */
#implica-te .card-title {
  margin-bottom: 0.25rem;
}

#implica-te .card-body {
  margin-bottom: 0;
}

/* ====== Project pages ====== */
.page-header {
  padding: 2rem 0 1.3rem;
}

.page-title {
  font-size: 1.7rem;
  margin: 0 0 0.4rem;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(219, 234, 254, 0.9);
  color: var(--blue-dark);
  border: 1px solid rgba(37, 99, 235, 0.4);
}

.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
}

/* Ordered steps */
.steps {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.92rem;
}

.steps li {
  margin-bottom: 0.4rem;
}

/* ====== Contact page ====== */
.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.6rem;
}

.contact-intro {
  font-size: 0.95rem;
  color: var(--text-main);
  max-width: 28rem;
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.form-field {
  margin-bottom: 0.75rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.form-input,
.form-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(209, 213, 219, 0.95);
  padding: 0.5rem 0.65rem;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
  min-height: 2.4rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

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

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35);
  background: #ffffff;
}

/* Contact info */
.contact-info {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

.contact-info a {
  color: var(--blue-accent);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ====== Misiune – layout nou, premium ====== */

.section-mission .mission-intro {
  font-size: 1rem;
  max-width: 58rem;
  margin: 0.4rem 0 1.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Flex mare: poză stânga + carduri dreapta */
.mission-flex {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: flex-start;
}

/* Poza stânga – card alb cu shadow difuz */
.mission-image-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  justify-content: center;
}

.mission-image-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Cardurile din dreapta, verticale */
.mission-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Carduri un pic mai fine decât cele default */
.mission-card {
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
}

/* ====== Responsive ====== */
@media (max-width: 900px) {
  .mission-flex {
    grid-template-columns: 1fr;
  }

  .mission-image-card {
    max-width: 380px;
    margin: 0 auto 1.4rem;
  }
}

/* ====== Proiecte – carduri mari cu o singură imagine ====== */

.section-projects .project-grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 1.2rem;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.project-text .card-body {
  margin-bottom: 0.55rem;
}

/* Colțul de imagine – 1 singură figură */
.project-media {
  display: flex;
  align-items: stretch;
}

.project-image {
  background: #f9fafb;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.project-image img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.project-image figcaption {
  padding: 0.4rem 0.1rem 0.1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 960px) {
  .project-card {
    grid-template-columns: 1fr;
  }

  .project-media {
    order: -1; /* imaginea urcă deasupra textului pe mobil */
  }
}

@media (max-width: 640px) {
  .project-card {
    padding: 1.1rem 1rem;
  }

  .project-image figcaption {
    font-size: 0.78rem;
  }
}

/* ====== Despre noi – slider cu poze din Focșani ====== */

.about-intro {
  margin-bottom: 1.4rem;
}

.about-slider {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
  max-height: 360px;
}

.about-slide {
  display: none;
  position: relative;
}

.about-slide.active {
  display: block;
}

.about-slide img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

/* Caption jos, ușor transparent */
.about-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  color: #f9fafb;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.0)
  );
}

/* Butoane stânga-dreapta */
.about-slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.45);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  backdrop-filter: blur(4px);
  transition: background 0.15s ease-out, transform 0.15s ease-out;
}

.about-slider-control.prev {
  left: 0.75rem;
}

.about-slider-control.next {
  right: 0.75rem;
}

.about-slider-control:hover {
  background: rgba(15, 23, 42, 0.7);
  transform: translateY(-50%) scale(1.03);
}

/* Dots jos, centrate */
.about-slider-dots {
  position: absolute;
  bottom: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}

.about-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(209, 213, 219, 0.7);
  cursor: pointer;
  padding: 0;
}

.about-dot.active {
  width: 16px;
  background: var(--blue-accent);
}

.about-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1.2rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

  /* Background mult mai clar vizibil */
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);

  /* Ușoară umbră pe text pentru contrast */
  text-shadow: 0px 2px 8px rgba(0,0,0,0.8);
}

/* Toast */
.toast {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  background: #111827;
  color: #f9fafb;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  font-size: 0.85rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.65);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
  max-width: 320px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ====== Privacy page ====== */
.privacy {
  max-width: 46rem;
  font-size: 0.95rem;
}

.privacy h1 {
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.privacy h2 {
  font-size: 1.05rem;
  margin-top: 1rem;
}

.privacy p {
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

/* ====== Footer ====== */
.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  background: #f9fafb;
  padding: 0.8rem 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ====== Utilities ====== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(209, 213, 219, 0.4);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ====== Responsive ====== */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

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

  .card-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .navbar-inner {
    padding-inline: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(248, 250, 252, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 1.1rem 0.9rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
    gap: 0.6rem;
    display: none;
  }

  .navbar.mobile-open .nav-links {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 0.4rem;
    background: transparent;
    border-radius: 0;
    border: none;
    margin-top: 0.2rem;
  }

  .nav-dropdown-menu a {
    padding-left: 0;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ====== Animations ====== */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}