/* =====================================================
   ALO TRANSPORT — style.css
   Roșu #C0392B | Închis #2C3E50 | Alb #FFFFFF
===================================================== */

/* --- Variabile globale --- */
:root {
  --red:        #C0392B;
  --red-dark:   #A93226;
  --red-light:  #E74C3C;
  --dark:       #2C3E50;
  --dark2:      #1A252F;
  --dark3:      #243342;
  --gray-light: #F8F9FA;
  --gray-mid:   #ECF0F1;
  --gray-text:  #7F8C8D;
  --white:      #FFFFFF;
  --font-main:  'Barlow', sans-serif;
  --font-cond:  'Barlow Condensed', sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* --- Culori utilitare --- */
.text-red      { color: var(--red) !important; }
.text-orange   { color: var(--red) !important; }   /* alias pentru compatibilitate HTML */
.bg-red        { background-color: var(--red) !important; }

/* =====================================================
   NAVBAR
===================================================== */
#mainNav {
  background-color: rgba(26, 37, 47, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--red);
  padding-top: 0;
  padding-bottom: 0;
  transition: background-color 0.3s ease;
}

#mainNav .navbar-brand {
  font-family: var(--font-cond);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--white);
  padding: 14px 0;
}

#mainNav .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 24px 12px !important;
  transition: color 0.2s ease;
  position: relative;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--white);
}

/* Linie roșie sub link la hover */
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

#mainNav .nav-link:hover::after {
  transform: scaleX(1);
}

/* Dropdown */
#mainNav .dropdown-menu {
  background-color: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--red);
  border-radius: 0 0 8px 8px;
  min-width: 240px;
  padding: 8px 0;
}

#mainNav .dropdown-item {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 20px;
  transition: background-color 0.2s, color 0.2s;
}

#mainNav .dropdown-item:hover {
  background-color: var(--red);
  color: var(--white);
}

#mainNav .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

/* =====================================================
   BUTON PRINCIPAL
===================================================== */
.btn-orange,
.btn-red {
  background-color: var(--red);
  color: var(--white);
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-orange:hover,
.btn-red:hover {
  background-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-light {
  border-color: rgba(11, 239, 26, 0.4);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-outline-light:hover {
  background-color: rgba(37, 211, 102, 0.4);
  border-color: var(--white);
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero-section {
  min-height: 100vh;
  background-color: var(--dark2);
  background-image:
    linear-gradient(135deg, rgba(26,37,47,0.97) 0%, rgba(36,51,66,0.95) 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Linie decorativa rosie stanga */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

/* Grid subtil in fundal */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,57,43,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,57,43,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.4);
  border-radius: 40px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #E74C3C;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-family: var(--font-cond);
  font-size: clamp(52px, 8vw, 90px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--white);
  text-transform: uppercase;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 520px;
}

.hero-sub strong {
  color: var(--white);
}

/* Statistici hero */
.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-num {
  font-family: var(--font-cond);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 4px;
}

/* =====================================================
   BANDA DESTINATII (flags row)
===================================================== */
.flags-row {
  background-color: var(--dark3);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.flag-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.flag-item span {
  font-size: 1.2rem;
}

.flag-arrow {
  color: var(--red);
  font-size: 1rem;
}

/* =====================================================
   SECTIUNI GENERALE
===================================================== */
.section-padding {
  padding: 90px 0;
}

.bg-dark-primary {
  background-color: var(--dark2);
  color: var(--white);
}

.bg-dark-secondary {
  background-color: var(--dark3);
  color: var(--white);
}

/* Sectiuni pe fond alb (daca e nevoie) */
.bg-light-section {
  background-color: var(--gray-light);
  color: var(--dark);
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-cond);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--white);
}

.section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 540px;
}

/* =====================================================
   DESPRE NOI
===================================================== */
.despre-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--red);
  border-radius: 12px;
  padding: 28px;
}

.despre-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.despre-card h4 {
  font-family: var(--font-cond);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

/* Lista avantaje */
.check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(192,57,43,0.18);
  border: 1px solid rgba(192,57,43,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 2px;
}

.despre-list strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 2px;
}

/* Mini carduri statistici */
.mini-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 20px 12px;
}

.mini-stat-num {
  font-family: var(--font-cond);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.mini-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* =====================================================
   CARDURI RUTE
===================================================== */
.ruta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 26px;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}

.ruta-card:hover {
  border-color: rgba(192,57,43,0.5);
  transform: translateY(-4px);
}

.ruta-flags {
  font-size: 2rem;
  margin-bottom: 14px;
}

.ruta-arrow {
  color: var(--red);
  font-size: 1.1rem;
  margin: 0 4px;
}

.ruta-name {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.ruta-info {
  font-size: 0.9rem;
  line-height: 1.6;
}

.ruta-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 40px;
  background: rgba(192,57,43,0.15);
  color: #E74C3C;
  border: 1px solid rgba(192,57,43,0.3);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* =====================================================
   TARIFE
===================================================== */
.tarif-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 34px 28px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.tarif-card:hover {
  transform: translateY(-4px);
}

.tarif-featured {
  border-color: var(--red);
  background: linear-gradient(160deg, rgba(192,57,43,0.1), rgba(255,255,255,0.03));
}

.tarif-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.tarif-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.tarif-name {
  font-family: var(--font-cond);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.tarif-price {
  margin: 20px 0;
}

.tarif-from {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.tarif-num {
  font-family: var(--font-cond);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.tarif-unit {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-left: 4px;
}

.tarif-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tarif-features li:last-child {
  border-bottom: none;
}

/* =====================================================
   CONTACT
===================================================== */
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(192,57,43,0.14);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
  font-size: 1.2rem;
}

.contact-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

.contact-note {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 10px;
}

/* Formular contact */
.contact-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 34px;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-control,
.form-select {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.95rem;
  padding: 11px 14px;
  transition: border-color 0.2s;
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(255,255,255,0.07);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.2);
}

.form-control::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-select option {
  background-color: var(--dark2);
  color: var(--white);
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background-color: var(--dark2);
  border-top: 2px solid var(--red);
}

.footer-logo {
  font-family: var(--font-cond);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
}

.footer-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--red);
}

/* =====================================================
   BUTON WHATSAPP FLOTANT
===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px) {
  #mainNav .nav-link {
    padding: 10px 0 !important;
  }

  #mainNav .nav-link::after {
    display: none;
  }

  .hero-title {
    font-size: clamp(40px, 10vw, 64px);
  }

  .section-padding {
    padding: 64px 0;
  }
}

@media (max-width: 767px) {
  .hero-stats {
    gap: 24px !important;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .contact-form-card {
    padding: 22px 18px;
  }

  .tarif-card {
    padding: 24px 18px;
  }
}


/* =====================================================
   PAGINI DE RUTA
===================================================== */

/* Hero ruta */
.ruta-hero {
  min-height: 70vh;
  background-color: var(--dark2);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

.ruta-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
}

.ruta-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,57,43,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,57,43,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.ruta-breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255,255,255,0.3);
  --bs-breadcrumb-item-active-color: rgba(255,255,255,0.5);
}

.ruta-breadcrumb a {
  color: var(--red);
  text-decoration: none;
  font-size: 0.85rem;
}

.ruta-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.25);
}

.ruta-hero-flags {
  font-size: 2.5rem;
}

.ruta-hero-arrow {
  color: var(--red);
  margin: 0 8px;
  font-size: 1.6rem;
}

.ruta-hero-title {
  font-family: var(--font-cond);
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ruta-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 580px;
}

.ruta-hero-sub strong {
  color: var(--white);
}

/* Info rapida sub hero */
.ruta-quick-item {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
}

/* Carduri orase Austria */
.oras-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--white);
  transition: border-color 0.2s;
}

.oras-card:hover {
  border-color: rgba(192,57,43,0.4);
}

.oras-dist {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* Orase plecare Romania */
.plecare-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  transition: border-color 0.2s, color 0.2s;
}

.plecare-item:hover {
  border-color: rgba(192,57,43,0.3);
  color: var(--white);
}

/* Carduri avantaje */
.avantaj-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  transition: border-color 0.25s, transform 0.25s;
}

.avantaj-card:hover {
  border-color: rgba(192,57,43,0.4);
  transform: translateY(-3px);
}

.avantaj-icon {
  width: 48px;
  height: 48px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.avantaj-card h5 {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 18px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(192,57,43,0.1);
  color: var(--white);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: invert(1);
}

.faq-accordion .accordion-body {
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.7;
  padding: 0 20px 18px;
}

/* Buton WhatsApp verde */
.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background-color 0.2s, transform 0.15s;
}

.btn-whatsapp:hover {
  background-color: #1ebe5a;
  color: var(--white);
  transform: translateY(-1px);
}

/* Alte curse */
.alte-curse-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  display: block;
  transition: border-color 0.25s, transform 0.25s;
}

.alte-curse-card:hover {
  border-color: rgba(192,57,43,0.45);
  transform: translateY(-3px);
}

.flag-lg {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.alte-curse-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   RUTA CARD - link
===================================================== */
a.ruta-card {
  color: inherit;
}

a.ruta-card:hover .ruta-name {
  color: var(--red);
}

.ruta-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Flag items clickabile */
.flag-item-link {
  text-decoration: none;
  transition: color 0.2s;
}

.flag-item-link:hover {
  color: var(--white) !important;
}

.flag-item-link span {
  transition: color 0.2s;
}

.flag-item-link:hover span {
  color: var(--red) !important;
}

/* =====================================================
   HERO IMAGE - microbuz
===================================================== */
.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid rgba(192, 57, 43, 0.35);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 24px 60px rgba(0,0,0,0.5);
  display: block;
}

/* Badge peste imagine - coltul de jos stanga */
.hero-img-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: var(--dark3);
  border: 1px solid rgba(192, 57, 43, 0.35);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* Placeholder daca imaginea lipseste */
.hero-img[src="images/microbuz.jpg"]:not([complete]),
.hero-img.img-placeholder {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%);
  border: 2px dashed rgba(192,57,43,0.3);
}

/* =====================================================
   HERO IMAGE - responsive fix
===================================================== */

/* Mobil: imagine mai mica, fara border-radius mare */
@media (max-width: 991px) {
  .hero-img {
    height: 220px;
    border-radius: 12px;
  }

  .hero-img-wrapper {
    max-width: 360px;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .hero-img {
    height: 180px;
  }
}

/* =====================================================
   HERO IMAGE - fix imagine intreaga, fara taiere
===================================================== */
.hero-img {
  width: 100%;
  height: auto !important;        /* anuleaza inaltimea fixa */
  max-width: 100%;
  object-fit: contain !important; /* imaginea intreaga, fara crop */
  border-radius: 12px;
  border: none;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  display: block;
}

.hero-img-wrapper {
  width: 100%;
  max-width: 100%;
}

/* =====================================================
   FIX - text lizibil in despre-card si liste
===================================================== */
.despre-card p.text-muted,
.despre-list p.text-muted,
.tarif-features li,
.section-sub {
  color: rgba(255, 255, 255, 0.65) !important;
}

.despre-card h4 {
  color: var(--white);
}

/* =====================================================
   FIX GLOBAL - text-muted pe fonduri intunecate
===================================================== */
.bg-dark-primary .text-muted,
.bg-dark-secondary .text-muted,
.ruta-card .text-muted,
.tarif-card .text-muted,
.contact-note .text-muted,
.despre-card .text-muted,
.avantaj-card .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}