/* Reset de bază */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #2a5390;
    color: #241a46;
}

/* HEADER */
header {
    background-color: #003366;
    padding: 20px;
    color: white;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo-container img {
    width: 60px; /* Redus cu 50% față de 100px */
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* NAVIGARE */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* MAIN */
main {
    padding: 40px 20px;
    background-color: #ffffff;
}

/* FOOTER */
footer {
    background-color: #3b6600;
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 10px;
}
/* HERO / ACASA */
.hero {
    background-color: #eaeaea;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 2px solid #ccc;
}

.hero h1 {
    font-size: 36px;
    color: #003366;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0055aa;
}
.hero video {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    margin-top: 20px;
}
/* SERVICII */
.services-section {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.services-section h2 {
    font-size: 32px;
    color: #003366;
    margin-bottom: 10px;
}

.services-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #003366;
    margin-bottom: 10px;
}

.service-card p {
    color: #333;
    font-size: 15px;
}
input[name="captcha"] {
    margin-top: 15px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f4f8;
  color: #333;
  scroll-behavior: smooth;
}

header {
  background-color: #003366;
  padding: 20px;
  color: white;
}

.logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.services-intro {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to right, #0078d7, #2a5390);
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;

  /* Cinematic styling */
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateX(2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.services-intro:hover {
  transform: perspective(1000px) rotateX(0deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.services-intro h2 {
  font-size: 32px;
  color: #003366;
}

.services-intro p {
  font-size: 18px;
  margin-top: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.service-card {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h3 {
  color: #003366;
  margin-bottom: 10px;
}

.cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #003366;
  color: white;
}

.cta-section .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #00bcd4;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.cta-section .btn:hover {
  transform: scale(1.05);
}

.site-footer {
  text-align: center;
  padding: 20px;
  background-color: #f5f5f5;
  color: #333;
  font-size: 14px;
}
.about-intro, .mission-values, .team-section, .timeline-section {
  padding: 20px 10px;
  background-color: #ffffff;
  margin-bottom: 2%;
}

.about-intro h2, .mission-values h3, .team-section h3, .timeline-section h3 {
  color: #003366;
  font-size: 28px;
  margin-bottom: 20px;
}

.mission-values ul, .timeline {
  list-style: none;
  padding-left: 0;
}

.mission-values li, .timeline li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.timeline-section ul.timeline li span {
  font-weight: bold;
  color: #00bcd4;
  margin-right: 10px;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f4f8;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  scroll-behavior: smooth;
}

main {
  flex: 1;
}

header {
  background-color: #003366;
  padding: 20px;
  color: white;
}

.logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero-section {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
}

.hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-text {
  margin-top: -120px;
  background-color: rgba(255,255,255,0.9);
  display: inline-block;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-text h1 {
  font-size: 36px;
  color: #003366;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #00bcd4;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.site-footer {
  text-align: center;
  padding: 20px;
  background-color: #f5f5f5;
  color: #333;
  font-size: 14px;
}
.contact-hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #271471;
}

.contact-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-hero-text {
  margin-top: -15px;
  background-color: rgba(255,255,255,0.95);
  display: inline-block;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-hero-text h2 {
  font-size: 32px;
  color: #003366;
}

.contact-hero-text p {
  font-size: 18px;
  margin-top: 10px;
}

.contact-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.contact-info {
  margin-bottom: 30px;
  font-size: 16px;
  color: #444;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  padding: 12px 24px;
  background-color: #00bcd4;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
}

form button:hover {
  transform: scale(1.05);
}

#confirmMessage {
  opacity: 0;
  transition: opacity 1s ease;
  color: green;
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
}
.contact-hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
}

.contact-image {
  width: 300px;
  max-width: 100%;
  margin-bottom: 0;
  animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(1); filter: drop-shadow(0 0 5px #00bcd4); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 15px #00bcd4); }
  100% { transform: scale(1); filter: drop-shadow(0 0 5px #00bcd4); }
}

.contact-hero-text h2 {
  font-size: 32px;
  color: #063563;
}

.contact-hero-text p {
  font-size: 18px;
  margin-top: 10px;
}
#chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

#chat-toggle {
  background-color: #00bcd4;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#chat-window {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 280px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

#chat-header {
  background-color: #003366;
  color: white;
  padding: 10px;
  font-weight: bold;
  text-align: center;
}

#chat-body {
  padding: 15px;
  font-size: 14px;
  color: #333;
}

#chat-body input, #chat-body textarea {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#chat-send {
  background-color: #00bcd4;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.despre-imagine {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.despre-imagine img {
  max-width: 17%;
  height: auto;
  border-radius:0px;
  box-shadow: 0 0px 0px rgba(0,0,0,0.1);
}
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 10px rgba(0,191,255,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(0,191,255,0.6); }
  100% { transform: scale(1); box-shadow: 0 0 10px rgba(0,191,255,0.4); }
}

.chatbot-section img {
  animation: pulse 3s infinite;
}
.bubble.bot {
  background-color: #e0f7fa;
  border-left: 5px solid #00bcd4;
  align-self: flex-start;
  animation: glow 0.6s ease-in-out;
}

@keyframes glow {
  0% { box-shadow: 0 0 0px #00bcd4; }
  50% { box-shadow: 0 0 10px #00bcd4; }
  100% { box-shadow: 0 0 0px #00bcd4; }
}
.logo-bg-mini {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 200px; /* creștem dimensiunea */
  height: auto;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  animation: growLogo 2.5s ease-out 0.5s forwards;
}

/* Animație grow */
@keyframes growLogo {
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
}
.cookie-options {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.cookie-options {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.cookie-card {
  background: #333;
  border-radius: 6px;
  padding: 8px 12px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #555;
}

.cookie-card input {
  transform: scale(1.2);
}

.functional { border-color: #4caf50; }
.analytics { border-color: #2196f3; }
.marketing { border-color: #f44336; }
.icon-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
}

.icon {
  position: absolute;
  width: 110px;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 1.5s ease, transform 0.5s ease;
}

.icon:hover {
  transform: translate(-50%, -50%) scale(1.2);
  filter: drop-shadow(0 0 12px #00f0ff);
}
#cookie-banner {
  animation: slideUp 0.6s ease-out;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.mission-values li {
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mission-values li:hover {
  background: #f0f0f0;
}

.mission-values li strong::after {
  content: attr(data-desc);
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  padding: 8px;
  border: 1px solid #ccc;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mission-values li:hover strong::after {
  opacity: 1;
}
.timeline {
  position: relative;
  padding-left: 30px;
  list-style: none;
}

.timeline li {
  position: relative;
  margin-bottom: 20px;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: #0077cc;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}
.mission-values h3 {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mission-values ul:first-of-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatIn 1.2s ease-out forwards;
  opacity: 0;
}

.mission-values ul:first-of-type li {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin: 0.5rem 0;
  transform: translateY(20px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

@keyframes floatIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.timeline-stairs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin: 2rem 0;
}

.etapa {
  background: #f0f4f8;
  border-left: 5px solid #0077cc;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  width: 70%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.6s ease;
  position: relative;
}

.etapa-1 {
  transform: translate(0, 0);
  z-index: 3;
}
.etapa-2 {
  transform: translate(40px, 40px);
  z-index: 2;
}
.etapa-3 {
  transform: translate(80px, 80px);
  z-index: 1;
}

.etapa span {
  font-weight: bold;
  color: #0077cc;
  display: block;
  margin-bottom: 0.5rem;
}
.etapa:hover {
  transform: scale(1.02);
  background: #e6f0ff;
}
.timeline-stairs-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.etapa {
  background: #f0f4f8;
  border-left: 5px solid #0077cc;
  padding: 1rem 1.5rem;
  width: 22%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
  position: relative;
}

.etapa span {
  font-weight: bold;
  color: #0077cc;
  display: block;
  margin-bottom: 0.5rem;
}

/* Trepte vizuale: IV jos, I sus */
.etapa-4 { transform: translateY(60px); z-index: 1; }
.etapa-3 { transform: translateY(40px); z-index: 2; }
.etapa-2 { transform: translateY(20px); z-index: 3; }
.etapa-1 { transform: translateY(0);    z-index: 4; }

/* Hover cinematic */
.etapa:hover {
  transform: scale(1.05) translateY(-5px);
  background: #e6f0ff;
}
.section-title-left {
  text-align: left;
  margin-left: 2rem;
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.mission-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem;
  position: relative;
}

.mission-box {
  background: linear-gradient(145deg, #e0e0e0, #ffffff);
  border: 1px solid #ccc;
  box-shadow: 6px 6px 12px #c8c8c8, -6px -6px 12px #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  width: 22%;
  transform: perspective(600px) rotateY(-5deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.mission-box:hover {
  transform: perspective(600px) rotateY(0deg) scale(1.05);
  box-shadow: 8px 8px 16px #bbb, -8px -8px 16px #fff;
}

/* Conectori între box-uri */
.mission-box::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: #0077cc;
}

.mission-box:last-child::after {
  display: none;
}
.section-title-left {
  text-align: left;
  margin-left: 2rem;
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.valori-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem;
  padding: 0;
  list-style: none;
}

.valori-list li {
  background: linear-gradient(135deg, #ffffff, #f0f4f8);
  border-left: 5px solid #0077cc;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: valoriIn 0.6s ease-out forwards;
}

.valori-list li:nth-child(1) { animation-delay: 0.2s; }
.valori-list li:nth-child(2) { animation-delay: 0.4s; }
.valori-list li:nth-child(3) { animation-delay: 0.6s; }
.valori-list li:nth-child(4) { animation-delay: 0.8s; }
.valori-list li:nth-child(5) { animation-delay: 1s; }
.valori-list li:nth-child(6) { animation-delay: 1.2s; }

@keyframes valoriIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.valori-list li:hover {
  transform: scale(1.03);
  background: #e6f0ff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.fade-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.chatbot-disclaimer {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #f9f9f9;
  padding: 1rem 1.5rem;
  border-left: 4px solid #0077cc;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  font-size: 0.95rem;
  color: #555;
}

.disclaimer-icon {
  font-size: 2.5rem;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}
.chatbot-disclaimer {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-left: 4px solid #0077cc;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: center;
  font-size: 1rem;
  color: #555;
  position: relative;
}

.disclaimer-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}
.timeline-stairs-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1rem;
  overflow-x: auto;
}

.etapa {
  background-color: #f0f4f8;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  width: 220px;
  min-width: 220px;
  position: relative;
  transition: transform 0.3s ease;
}

.etapa:hover {
  transform: translateY(-5px);
}

.etapa span {
  font-weight: bold;
  color: #0077cc;
  display: block;
  margin-bottom: 0.5rem;
}

.etapa p {
  font-size: 0.95rem;
  color: #333;
}
.timeline-stairs-horizontal {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 2rem;
  margin-top: 1rem;
  padding: 2rem;
  overflow-x: auto;
}

.etapa {
  background-color: #f0f4f8;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  width: 220px;
  min-width: 220px;
  position: relative;
  transition: transform 0.3s ease;
}

.etapa:hover {
  transform: translateY(-5px);
}

.etapa span {
  font-weight: bold;
  color: #0077cc;
  display: block;
  margin-bottom: 0.5rem;
}

.etapa p {
  font-size: 0.95rem;
  color: #333;
}
.etapa-1 { top: 0px; }
.etapa-2 { top: 20px; }
.etapa-3 { top: 40px; }
.etapa-4 { top: 60px; }
.contact-whatsapp {
  margin-top: 2rem;
  text-align: center;
}

.whatsapp-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin: 2rem auto;
}

.whatsapp-button {
  background-color: #ffffff;
  padding: 0.8rem;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 1px solid #25D366;
  transition: transform 0.2s ease;
  display: inline-block;
}

.whatsapp-button:hover {
  transform: scale(1.05);
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.whatsapp-label {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.whatsapp-label {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #082d69;
  font-weight: 500;
  text-align: center;
}
.imagine-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.imagine-container img {
  width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(32, 3, 92, 0.861);
  transition: transform 0.3s ease;
}

.imagine-container img:hover {
  transform: scale(1.05);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background:#f4f4f4;
  color: #122252;
}
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #0f0f3e;
  padding: 15px;
}
nav a {
  color: white;
  margin: 10px;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.5em;
    text-align: center;
  }
  .review-grid {
    flex-direction: column;
    align-items: center;
  }
  nav {
    flex-direction: column;
  }
}
nav {
  display: flex;
  justify-content: flex-end; /* aliniere spre dreapta */
  gap: 20px;
  padding: 15px;
  background-color: transparent;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border: none;
  outline: none;
  box-shadow: none;
}

nav a:focus,
nav a:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background-color: transparent;
}
nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.header-content img.logo {
  max-height: 30px; /* sau cât vrei tu */
  height: auto;
  width: auto;
  object-fit: contain;
}
.hai-vorbim-box {
  margin-top: 120px; /* ajustează până se aliniază cu imaginea */
  background-color: rgb(12, 50, 121);
  padding: 80px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-width: 400px;
} 
.contact-link {
  color: #00bcd4;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

.call-button {
  display: none;
  background-color: #00c853;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.call-button:hover {
  background-color: #009624;
}

@media (max-width: 768px) {
  .call-button {
    display: inline-block;
    margin-top: 20px;
  }
}
.sigla-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.sigla-contact img {
  width: 180px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.sigla-contact img:hover {
  transform: scale(1.05);
}
.review-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1rem;
  margin-bottom: 1rem;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.delete-button {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 0.9rem;
}

.delete-button:hover {
  background-color: #d32f2f;
}
.review-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.review-item {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1rem;
  margin-bottom: 1rem;
  animation: fadeIn 0.4s ease;
}

.delete-button {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 0.9rem;
}

.delete-button:hover {
  background-color: #d32f2f;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.admin-badge {
  background: #4caf50;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 1rem;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}
.reply-list {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.reply-item {
  background: #f1f1f1;
  border-radius: 6px;
  padding: 6px 10px;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.reply-form {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

.reply-input {
  flex: 1;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
} 

.menu-btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  background: #0078D7;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 10001;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  right: 20px;
  width: 220px;
  background: #0078D7;
  padding: 20px;
  border-radius: 8px;
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  width: 100%;
}

.mobile-nav a {
  display: block;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  nav:not(#mobile-nav) {
    display: none;
  }
}

.menu-btn {
  display: block !important;
}
.menu-btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  background: #0078D7;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 10001;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  right: 20px;
  width: 220px;
  background: #0078D7;
  padding: 20px;
  border-radius: 8px;
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  width: 100%;
}

.mobile-nav a {
  display: block;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  nav:not(#mobile-nav) {
    display: none;
  }
}

.misiune-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.misiune-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.misiune-card {
  background: #ffffff;
  border: 2px solid #0078D7;
  border-radius: 12px;
  padding: 20px;
  width: 90%;
  max-width: 360px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  transition: transform 0.3s ease;
  position: relative;
}

.misiune-card.left {
  align-self: flex-start;
  margin-left: 40px;
}

.misiune-card.right {
  align-self: flex-end;
  margin-right: 40px;
}

@media (max-width: 768px) {
  .misiune-card {
    align-self: center !important;
    margin: 0 !important;
    width: 100%;
  }
}

.etape-flow {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.etape-flow h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.etapa-card {
  background: #f0f4f8;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  max-width: 500px;
  transition: transform 0.3s ease;
}

.etapa-i {
  align-self: flex-start;
}

.etapa-ii {
  align-self: flex-end;
  margin-top: -20px;
}

.etapa-iii {
  align-self: flex-start;
  margin-top: -20px;
}

.etapa-iv {
  align-self: flex-end;
  margin-top: -20px;
}

.etapa-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #0078D7;
}

.etapa-card p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .etapa-card {
    align-self: center !important;
    margin-top: 0 !important;
    max-width: 90%;
  }
}
.cookie-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding: 1px 1px;
  width: 30%;
  max-width: 90px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.05);
  font-size: 0.9rem;
  text-align: center;
}

.cookie-card input[type="checkbox"] {
  margin-bottom: 7px;
  transform: scale(0.70);
  accent-color: inherit;
}

.cookie-card.necessary {
  border: 1px solid #28a745;
  background: #0209042c;
}
.cookie-card.analytics {
  border: 1px solid #0078D7;
  background: #06091730;
}
.cookie-card.marketing {
  border: 1px solid #dc3545;
  background: #1a02020a;
}

.cookie-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  width: 100%;
  max-width: 150px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 0.9rem;
  text-align: center;
  gap: 4px; /* spațiu vertical între checkbox și text */
}

.cookie-card input[type="checkbox"] {
  margin-bottom: 0; /* elimină spațiul suplimentar */
  transform: scale(0.85); /* micșorare checkbox */
}

.cookie-card div {
  line-height: 1.3; /* text mai compact */
}

.autumn-banner {
  background: linear-gradient(to right, #ffcc99, #ffe6cc);
  color: #003366;
  text-align: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-bottom: 2px solid #ff9900;
}

.autumn-banner p {
  margin: 0 0 10px;
  font-size: 1.2em;
}

.autumn-discounts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.autumn-discounts li {
  margin: 5px 0;
  font-size: 1.05em;
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background-color: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 1000;
}

.drawer.open {
  right: 0;
}

.drawer-content {
  padding: 20px;
}

.drawer-content h3 {
  margin-top: 0;
  color: #003366;
}

.drawer-content input,
.drawer-content textarea {
  width: 100%;
  margin: 10px 0;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.submit-btn {
  background-color: #005599;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
}

.close-btn {
  margin-top: 10px;
  background: none;
  border: none;
  color: #003366;
  cursor: pointer;
}

.autumn-banner {
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.offer-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ff9900;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.offer-btn:hover {
  background-color: #e68a00;
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background-color: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 1000;
}

.drawer.open {
  right: 0;
}

.drawer-content {
  padding: 20px;
}

.drawer-content h3 {
  margin-top: 0;
  color: #003366;
}

.drawer-content input,
.drawer-content textarea {
  width: 100%;
  margin: 10px 0;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.submit-btn {
  background-color: #005599;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
}

.close-btn {
  margin-top: 10px;
  background: none;
  border: none;
  color: #003366;
  cursor: pointer;
}

.autumn-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #ffcc99, #ffe6cc);
  color: #003366;
  text-align: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-bottom: 2px solid #ff9900;
  z-index: 1;
}

.autumn-banner p {
  margin: 0 0 10px;
  font-size: 2em;
}

.leaf-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.leaf {
  position: absolute;
  font-size: 2em;
  animation: fall 6s linear infinite;
  opacity: 0.8;
}

.leaf:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.leaf:nth-child(2) {
  left: 50%;
  animation-delay: 2s;
}

.leaf:nth-child(3) {
  left: 80%;
  animation-delay: 4s;
}

@keyframes fall {
  0% {
    top: -40px;
    transform: rotate(0deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    top: 100%;
    transform: rotate(360deg);
    opacity: 0;
  }
}

.homepage-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.homepage-card {
  position: relative;
  width: 48%;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.homepage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.homepage-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #1a1a1a;
  margin-bottom: 8px;
}

.subtitle {
  font-weight: 600;
  color: #444;
  margin-bottom: 4px;
}

.tagline {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 16px;
}

.cta-button {
  background-color: #0a1f3d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.cta-button:hover {
  background-color: #ffd700;
  color: #0a1f3d;
}

/* Fundal SVG cinematic */
.svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
}

.pulse-network {
  background-image: url('/assets/svg/pulse-network.svg');
  background-size: cover;
  background-repeat: no-repeat;
}

.abstract-gold {
  background-image: url('/assets/svg/abstract-gold.svg');
  background-size: cover;
  background-repeat: no-repeat;
}

/* Responsive pentru mobil */
@media (max-width: 768px) {
  .homepage-card {
    width: 100%;
    margin-bottom: 24px;
    padding: 16px;
  }
  .cta-button {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
}
/* Hero section */
.hero {
  background: url('../pictures/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero .btn {
  background: #0078d7;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.hero .btn:hover {
  background: #005fa3;
}

/* Benefits */
.benefits {
  padding: 60px 20px;
  text-align: center;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.benefit-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-size: 1.1rem;
}

/* Portfolio */
.portfolio {
  padding: 60px 20px;
  text-align: center;
}
.portfolio-carousel {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.portfolio-carousel img {
  width: 280px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}
.testimonials blockquote {
  font-style: italic;
  font-size: 1.2rem;
  margin: 20px auto;
  max-width: 600px;
}
.testimonials cite {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #555;
}

/* CTA section */
.cta-section {
  background: #0078d7;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.cta-section .btn {
  background: #fff;
  color: #0078d7;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.cta-section .btn:hover {
  background: #e6e6e6;
}

/* Footer */
.site-footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
}
/* ── Ecrane mari 1440px+ ── */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .hero h1 { font-size: 5rem; }
  .section-title { font-size: 3.2rem; }
}

/* ── Ecrane foarte mari 1920px+ (Full HD și peste) ── */
@media (min-width: 1920px) {
  .container { max-width: 1600px; }
  .hero h1 { font-size: 5.8rem; }
  .section-title { font-size: 3.8rem; }
  body { font-size: 17px; }
}

/* ── Ultra-wide 2560px+ (BenQ QHD, 4K) ── */
@media (min-width: 2560px) {
  .container { max-width: 2000px; }
  .hero h1 { font-size: 7rem; }
  .section-title { font-size: 4.5rem; }
  body { font-size: 18px; }
}

/* ============================================================
   AVERTISMENT DE SECURITATE — apeluri false (spoofing)
   Se activează doar pe paginile al căror <body> are clasa
   has-ria-alert, ca restul site-ului să rămână neatins.
   Se elimină integral când campania se încheie.
   ============================================================ */
body.has-ria-alert { --ria-alert-h: 56px; padding-top: var(--ria-alert-h); }

.ria-alert {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100000;
  background: #b3261e; color: #ffffff;
  border-bottom: 3px solid #ff6600;
  box-shadow: 0 6px 20px rgba(16, 24, 40, 0.28);
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.95rem; line-height: 1.45;
}
.ria-alert-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 12px 54px 12px 20px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 16px;
}
.ria-alert-mark {
  flex: 0 0 auto; width: 28px; height: 28px;
  border: 2px solid #ffffff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px;
}
.ria-alert-text { flex: 1 1 320px; margin: 0; color: #ffffff; }
.ria-alert-link {
  flex: 0 0 auto; background: #ffffff; color: #8f2018;
  font-weight: 700; font-size: 0.88rem; text-decoration: none;
  padding: 8px 16px; border-radius: 8px; white-space: nowrap;
}
.ria-alert-link:hover { background: #ffe9e6; color: #8f2018; text-decoration: none; }
.ria-alert-close {
  position: absolute; top: 9px; right: 12px;
  width: 30px; height: 30px;
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px; color: #ffffff;
  font-size: 17px; line-height: 1; cursor: pointer;
}
.ria-alert-close:hover { background: rgba(255, 255, 255, 0.14); }
.ria-alert a:focus-visible,
.ria-alert button:focus-visible { outline: 3px solid #ffcf4d; outline-offset: 2px; }

/* Notă lângă numărul de telefon, în blocul de contact */
.ria-phone-note {
  margin: 14px 0 0;
  padding: 12px 16px;
  background: #fdf1ef;
  border-left: 4px solid #b3261e;
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem; line-height: 1.5; color: #5c2119;
}
.ria-phone-note strong { color: #8f2018; }
.ria-phone-note a { color: #8f2018; font-weight: 700; }

@media (max-width: 640px) {
  body.has-ria-alert { --ria-alert-h: 108px; }
  .ria-alert { font-size: 0.9rem; }
  .ria-alert-inner { padding: 12px 20px 14px; }
  .ria-alert-mark { display: none; }
  .ria-alert-link { width: 100%; text-align: center; }
  .ria-alert-close { top: 6px; right: 8px; width: 26px; height: 26px; font-size: 15px; }
}

@media print {
  .ria-alert { display: none; }
  body.has-ria-alert { padding-top: 0; }
}
/* Footer Nou */
.ria-footer {
  --rf-bg: #0b1321;
  --rf-bg-2: #0f2027;
  --rf-text: #c3cede;
  --rf-text-strong: #ffffff;
  --rf-muted: #7f8ea6;
  --rf-accent: #ff6600;
  --rf-line: rgba(255, 255, 255, 0.09);
  --rf-alert: #ff7a6e;
 
  position: relative;
  z-index: 1;
  margin-top: 56px;
  background: linear-gradient(180deg, var(--rf-bg-2), var(--rf-bg));
  color: var(--rf-text);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}
 
.ria-footer::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--rf-accent), #ffb066 38%, transparent 78%);
}
 
.ria-footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
 
/* ---------- Rândul de identitate ---------- */
.ria-footer-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px 40px;
  padding: 40px 0 30px;
  border-bottom: 1px solid var(--rf-line);
}
 
.ria-footer-identity {
  max-width: 560px;
}
 
.ria-footer-logo {
  height: 46px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 16px;
}
 
.ria-footer-claim {
  margin: 0 0 16px;
  font-size: 1.05rem;
  color: var(--rf-text-strong);
  line-height: 1.5;
}
 
/* Blocul de marcă — elementul distinctiv al footer-ului */
.ria-footer-mark {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--rf-line);
  border-left: 3px solid var(--rf-accent);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 255, 255, 0.03);
}
.ria-footer-mark-r {
  flex: 0 0 auto;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--rf-accent);
  margin-top: 2px;
}
.ria-footer-mark p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--rf-text);
}
.ria-footer-mark strong { color: var(--rf-text-strong); }
 
.ria-footer-switch {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid var(--rf-line);
  border-radius: 8px;
  color: var(--rf-text-strong);
  text-decoration: none;
  font-size: 0.92rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.ria-footer-switch:hover {
  border-color: var(--rf-accent);
  background: rgba(255, 102, 0, 0.08);
}
.ria-footer-switch span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--rf-accent);
  border: 1px solid rgba(255, 102, 0, 0.45);
  border-radius: 4px;
  padding: 2px 7px;
}
 
/* ---------- Coloanele de navigație ---------- */
.ria-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 40px;
  padding: 34px 0 36px;
  border-bottom: 1px solid var(--rf-line);
}
 
.ria-footer-col h2 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rf-text-strong);
}
.ria-footer-col h2::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin-top: 8px;
  background: var(--rf-accent);
}
 
.ria-footer-col ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.ria-footer-col li { margin-bottom: 9px; }
.ria-footer-col li:last-child { margin-bottom: 0; }
 
.ria-footer-col a {
  color: var(--rf-text);
  text-decoration: none;
  font-size: 0.93rem;
  transition: color 0.2s ease;
}
.ria-footer-col a:hover { color: var(--rf-accent); }
 
/* Coloana de contact */
.ria-footer-contact p { margin: 14px 0 0; }
.ria-footer-contact .rf-line {
  display: block;
  margin-bottom: 9px;
  color: var(--rf-text);
}
.ria-footer-contact .rf-line a {
  color: var(--rf-text-strong);
  text-decoration: none;
}
.ria-footer-contact .rf-line a:hover { color: var(--rf-accent); }
.ria-footer-contact .rf-label {
  color: var(--rf-muted);
  font-size: 0.82rem;
  display: block;
}
 
/* Nota de securitate — activă doar pe durata campaniei de spoofing */
.ria-footer-warning {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(179, 38, 30, 0.16);
  border: 1px solid rgba(255, 122, 110, 0.32);
  font-size: 0.85rem;
  line-height: 1.5;
  color: #f3c9c4;
}
.ria-footer-warning a {
  color: var(--rf-alert);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
 
/* ---------- Bara de jos ---------- */
.ria-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  padding: 26px 0 34px;
}
 
.ria-footer-legal {
  margin: 0;
  font-size: 0.85rem;
  color: var(--rf-muted);
  max-width: 46ch;
}
.ria-footer-legal strong { color: var(--rf-text); font-weight: 600; }
 
.ria-footer-policy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}
.ria-footer-policy a,
.ria-footer-policy button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.85rem;
  color: var(--rf-text);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.ria-footer-policy a:hover,
.ria-footer-policy button:hover { color: var(--rf-accent); }
 
.ria-footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ria-footer-badges img {
  height: 38px;
  width: auto;
  border-radius: 4px;
  background: #ffffff;
  padding: 2px;
}
 
/* ---------- Focus vizibil ---------- */
.ria-footer a:focus-visible,
.ria-footer button:focus-visible {
  outline: 2px solid var(--rf-accent);
  outline-offset: 3px;
  border-radius: 3px;
}
 
/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .ria-footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
}
 
@media (max-width: 600px) {
  .ria-footer-wrap { padding: 0 18px; }
  .ria-footer-head { padding: 32px 0 26px; gap: 22px; }
  .ria-footer-cols { grid-template-columns: 1fr; gap: 28px; padding: 28px 0 30px; }
  .ria-footer-switch { width: 100%; justify-content: center; }
  .ria-footer-bottom { flex-direction: column; align-items: flex-start; padding: 22px 0 30px; }
  .ria-footer-legal { max-width: none; }
}
 
@media (prefers-reduced-motion: reduce) {
  .ria-footer a,
  .ria-footer button,
  .ria-footer-switch { transition: none; }
}
 
@media print {
  .ria-footer { background: #ffffff; color: #111111; margin-top: 24px; }
  .ria-footer::before { display: none; }
  .ria-footer-warning,
  .ria-footer-switch,
  .ria-footer-badges { display: none; }
  .ria-footer-col a,
  .ria-footer-legal { color: #111111; }
}
