body { 
  margin:0; 
  font-family: Arial, sans-serif; 
}

.main-header {
  position:relative;
  display: flex;
  flex-direction: column;      /* logo sus, meniu jos */
  align-items: center;
  padding: clamp(12px, 2vw, 24px);
background: linear-gradient(
  to right,
  rgba(34,128,235,0.75) 0%,
  rgba(120,180,255,0.25) 25%,
  rgba(255,255,255,0.98) 50%,
  rgba(120,180,255,0.25) 75%,
  rgba(34,128,235,0.75) 100%
);
}

.logo {
  max-width: 100%;
}

.logo img {
  width: clamp(250px, 42vw, 600px);
  max-width: 100%;
  height: auto;
  display: block;
  animation: fall 1s ease-out forwards;
}

@keyframes fall {
  0% {
    transform: translateY(-150px) scale(0.8); /* începe sus, puțin mai mic */
    opacity: 0;                             /* invizibil la start */
  }
  60% {
    transform: translateY(20px) scale(1.05); /* depășește puțin */
    opacity: 1;
  }
  80% {
    transform: translateY(-10px) scale(0.98); /* revenire */
  }
  100% {
    transform: translateY(0) scale(1);        /* poziția finală */
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;                 /* permite rânduri */
  justify-content: center;
  align-items: center; /* 👈 cheia */
  gap: clamp(8px, 2vw, 24px);      /* spațiere adaptivă */
  margin-top: clamp(10px, 2vw, 20px);
}

.nav a {
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  padding: clamp(4px, 0.8vw, 8px) clamp(6px, 1vw, 14px);
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease;
}

.nav a:hover {
  color: #056cf1e1;
  text-shadow: 0 0px 50px rgb(0, 132, 255);
}

.hero {
  width: 100%;
  height: 720px;          
  max-height: 85vh;
  overflow: hidden;
  position: relative;
}

.hero img {
  height: 100%;           
  width: auto;            
  min-width: 100%;        
  object-fit: contain;    
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: hero-slide-subtil 1s ease-out forwards;
}

@keyframes hero-slide-subtil {
  0% {
    transform: translate(-50%, -60px); /* începe puțin de sus */
    opacity: 0;                        /* invizibil */
  }
  100% {
    transform: translate(-50%, -50%);  /* poziția finală */
    opacity: 1;                        /* complet vizibil */
  }
}

/* overlay pentru lizibilitate */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
  to right,
  rgba(0, 0, 0, 0.65) 0%,
  rgba(0, 0, 0, 0.35) 25%,
  rgba(0, 0, 0, 0.10) 50%,
  rgba(0, 0, 0, 0.35) 75%,
  rgba(0, 0, 0, 0.65) 100%
);
  z-index: 1;
}


/* TEXT SUS */
.hero-top-text {
  position: absolute;
  top: 3%;            /* ajustează sus/jos peste mașină */
  width: 100%;
  text-align: center;
  z-index: 2;

}

.hero-top-text h1 {
  color: #fff;
  font-size: clamp(2.8rem, 3vw, 3.2rem); /* mai mic implicit */
  margin: 0;
  animation: slide-up 1s ease-out forwards;
}

@keyframes slide-up {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  60% {
    transform: translateY(-10px); /* mic overshoot pentru bounce */
    opacity: 1;
  }
  80% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

/* TEXT JOS + BUTON */
.hero-bottom-text {
  position: absolute;
  bottom: 4%;         /* ajustează sus/jos peste roți */
  width: 100%;
  text-align: center;
  z-index: 2;
}

.hero-top-text p {
  color: #000000;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 16px;
  animation: slide-right 1s ease-out forwards;
}

@keyframes slide-right {
  0% {
    transform: translateX(-100px); /* începe din stânga */
    opacity: 0;
  }
  60% {
    transform: translateX(10px);   /* mic overshoot */
    opacity: 1;
  }
  80% {
    transform: translateX(-5px);   /* revenire */
  }
  100% {
    transform: translateX(0);      /* poziția finală */
  }
}

.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #5da9e7;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse 2s infinite;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  animation-play-state: paused; /* oprește pulsul la hover */
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 14px 30px rgba(0,0,0,0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  }
}

@media (max-width: 1024px) {
  .hero {
    height: 520px;
  }
  .hero-top-text h1 {
    font-size: clamp(1.6rem, 3.8vw, 1.9rem); /* tabletă */
  }
}


@media (max-width: 768px) {
  .hero-top-text h1 {
    font-size: clamp(2rem, 4.5vw, 2.5rem);   /* mobil */
  }
  .hero {
    height: 820px;
  }
  .hero img {
  height: 75%;
  }
  .footer-content {
    gap: 16px;
  }

  .footer-logo img {
    width: 120px;
  }

  .footer-info p {
    font-size: 0.85rem;
  }
    .hero-top-text {
    left: 50%;                /* centru orizontal absolut */
    transform: translateX(-50%);
    max-width: 90%;           /* textul nu mai atinge marginile */
    padding-left: 10px;       /* spațiu intern minim */
    padding-right: 10px;
    box-sizing: border-box;
    text-align: center;       /* text centrat */
  }
}

@media (max-width: 480px) {
  .nav {
    gap: 10px;
  }

  .nav a {
    font-size: 0.7rem;
  }

  .hero {
    height: 750px;
  }
    .hero img {
  height: 45%;
  }
  .hero-bottom-text {
  bottom: 13%;
  }
  .hero-top-text {
  top: 7%;
  }
  .hero-top-text p {
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  }

  .products-title {
  padding-top: 15px;
  }
}

.main-footer {
      background: linear-gradient(
  to right,
  rgba(34,128,235,0.75) 0%,
  rgba(120,180,255,0.25) 25%,
  rgba(255,255,255,0.98) 50%,
  rgba(120,180,255,0.25) 75%,
  rgba(34,128,235,0.75) 100%
);
  color: #000000;
  padding: clamp(8px, 1.5vw, 16px) 2%;
  font-family: Arial, sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(12px, 2vw, 24px);
}

.footer-info p {
  margin: 4px 0;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  line-height: 1.5;
}

.products {
  padding-top: clamp(10px, 2vw, 20px);
  padding-bottom: clamp(20px, 4vw, 40px);
  padding-left: 5%;
  padding-right: 5%;
  text-align: center;

  background: linear-gradient(
  to right,
  rgba(187, 185, 185, 0.65) 0%,
  rgba(220, 220, 220, 0.45) 25%,
  rgba(255, 255, 255, 0.75) 50%,
  rgba(220, 220, 220, 0.45) 75%,
  rgba(187, 185, 185, 0.65) 100%
);
}

.products-title {
  margin-top: 0px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 5px;
  font-family: "Lora", serif;
  font-weight: 700;
  font-style: normal;
  
  color: #636363;
  transform: translateY(-8px);
  animation: slide-up 1s ease-out forwards;
}

.products-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #000000;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 4vw, 40px);

  justify-content: center;
  margin: 0 auto;
  max-width: 1200px; /* opțional, arată mai premium */
}

.product-card {
  background: #ffffff;
  padding: clamp(20px, 3vw, 30px);

  border: 1px solid;
  border-color: #5da9e7; 
  box-shadow: 0 0px 20px rgba(70, 70, 70, 0.192);

  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  
}

.product-card:hover {
  transform: translateY(+6px);
  box-shadow:
    
    0 0px 30px rgba(42, 92, 185, 0.342);
}

.product-card img {
  width: 100%;
  max-width: 250px;
  height: auto;

  animation: img-slide-up 0.8s ease-out forwards;
}

@keyframes img-slide-up {
  0% {
    transform: translateY(20px); /* vine subtil de jos */
    opacity: 0;
  }
  100% {
    transform: translateY(0);    /* poziția normală */
    opacity: 1;
  }
}

.product-card h3 {
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  color: #575757;
  margin-bottom: 10px;
}

.product-card p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #666;
  line-height: 1.5;
}

.det-btn {
  display: inline-block;
  padding: 10px 28px;
  background: #5da9e7;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse_det 2s infinite;

  /* 👇 astea sunt esențiale pentru <button> */
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

/* Hover – rămâne cum ai */
.det-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  animation-play-state: paused;
}

/* Focus (după click / pe mobil) – elegant, nu rama neagră */
.det-btn:focus,
.det-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(93, 169, 231, 0.45);
}

/* Pulse animation */
@keyframes pulse_det {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 14px 30px rgba(0,0,0,0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  }
}

/* ----------- LINIE DE DELIMITARE SECȚIUNI ----------- */
.section-divider {
  position: relative;
  width: 60%;
  height: 2px;
  margin: 20px auto;
  background: linear-gradient(to right, transparent, #327ef09c, transparent);
  border-radius: 2px;
  opacity: 0.8;
   transform: translateX(0);
  animation: divider-pingpong 3s ease-in-out infinite;
}

.section-divider-menu {
  position: relative;
  width: 60%;
  height: 2px;
  margin: 20px auto;
  background: linear-gradient(to right, transparent, #4242429c, transparent);
  border-radius: 2px;
  opacity: 0.8;
   transform: translateX(0);
  animation: divider-pingpong 3s ease-in-out infinite;
}

@keyframes divider-pingpong {
  0%   { transform: translateX(0); }       /* centru */
  25%  { transform: translateX(-20px); }   /* 20px stânga */
  50%  { transform: translateX(0); }       /* centru */
  75%  { transform: translateX(20px); }    /* 20px dreapta */
  100% { transform: translateX(0); }       /* centru */
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 20px); /* 👈 în loc de margin-top */
  left: 100%;
  transform: translateX(-50%) translateY(50px);
  
  background: #ffffff;
  min-width: 220px;
  padding: 20px 0;

  border-radius: 0px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.18);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.8s ease,
    transform 0.3s ease;
  z-index: 999;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 25px;
}

.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
  color: #525252;
  text-decoration: none;
  white-space: nowrap;
  
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.dropdown {
  overflow: hidden;
}

.dropdown a:hover {
  background: rgba(80, 165, 235, 0.473);
  padding-left: 24px;
  color: #000000;
}

.has-dropdown:hover .dropdown {
  animation: dropdown-pop 0.35s ease;
}

@keyframes dropdown-pop {
  0% { transform: translateX(-50%) translateY(15px); }
  100% { transform: translateX(-50%) translateY(0); }
}


@media (max-width: 768px) {
  .dropdown {
    display: none;
  }
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
   animation-play-state: paused;
}

.footer-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.8; /* transparent */
  transition: opacity 0.3s ease, transform 0.3s ease;
  animation: zoomInOutIcons 2s infinite;
  
}

@keyframes zoomInOutIcons { 0%,100%{transform:scale(1);}50%{transform:scale(1.20);} }



.footer-socials {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 40px);
  margin-bottom: 20px;
  margin-top: 10px;
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000000;
  font-family: Arial, sans-serif;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-item img {
  width: clamp(28px, 3vw, 40px);
  height: auto;
  margin-bottom: 6px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-item span {
  font-size: clamp(0.8rem, 1.2vw, 1rem);
}

.footer-item:hover img {
  transform: scale(1.15);
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-socials {
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-item img {
    width: 32px;
  }

  .footer-item span {
    font-size: 0.85rem;
  }
}

.section-divider-footer {
  position: relative;
  width: 60%;
  height: 2px;
  
  background: linear-gradient(to right, transparent, #4242429c, transparent);
  border-radius: 2px;
  opacity: 0.8;
   transform: translateX(0);
  animation: divider-pingpong 3s ease-in-out infinite;
}


/* Social Media Icons */
        .social-row {
            display: flex;
            gap: 25px;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            margin-top: 10px;
        }

        .social-row a {
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .social-row svg {
            width: 38px;
            height: 38px;
            fill: #0a4fa3;
        }

        /* Efecte Interactive */
        @media (hover: hover) {
            .social-row a:hover { transform: translateY(-5px); }
            .link-tiktok:hover svg { fill: #000000; }
            .link-facebook:hover svg { fill: #1877f2; }
            .link-instagram:hover svg { fill: #e4405f; }
        }

        /* Adaptare Mobil */
        @media (max-width: 480px) {
            .main-card { padding: 30px 20px; }
            .logo-container { max-width: 280px; }
        }


.product-price {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  color: #2a5cb9;
  margin-bottom: 12px;
}

.product-price span {
  color: #424242;
}

.det-wrapper {
  position: relative;
  display: inline-block;
}

/* Fereastra cu descriere */
.det-tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  background: rgb(228, 228, 228);
  color: #000000;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
  width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  z-index: 50;
}

/* Desktop hover */
@media (hover: hover) {
  .det-wrapper:hover .det-tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
  }
}

/* Mobile tap */
.det-wrapper.active .det-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

.galeryrow {
  padding-top: clamp(10px, 2vw, 20px);
  padding-bottom: clamp(20px, 4vw, 40px);
  padding-left: 5%;
  padding-right: 5%;
  text-align: center;

  background: linear-gradient(
    to right,
    rgba(187, 185, 185, 0.521),
    rgba(255, 255, 255, 0.55)
    
  );
}

.portfolio {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.portfolio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.portfolio-row .portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
 
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.portfolio-row .portfolio-item img {
  width: 100%;
  display: block;
  
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.portfolio-row .portfolio-item:hover img {
  transform: rotate(-2deg) scale(1.05);
  opacity: 0.85;
}

/* Alternare dimensiuni */
.large {
  flex: 2 1 0%;
  height: 350px;
}

.small {
  flex: 1 1 0%;
  height: 250px;
}

/* Responsive */
@media (max-width: 768px) {
  .large, .small {
    flex: 1 1 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .large, .small {
    flex: 1 1 100%;
    height: 200px;
  }
}

@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(-50px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Animații lente pentru intrarea imaginilor */
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Aplicare animații pe tipul imaginii, toate simultan */
.portfolio-item.large {
  animation: fadeDown 1.8s ease forwards; /* 1.8s pentru apariție lentă */
}

.portfolio-item.small {
  animation: fadeUp 1.8s ease forwards;
}

.reviews-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: clamp(10px, 2vw, 20px);
  padding-bottom: clamp(20px, 4vw, 40px);
  background: linear-gradient(
    to right,
    rgba(187, 185, 185, 0.52) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(187, 185, 185, 0.52) 100%
  );
}

.hub-container {
  position: relative;
  width: 1200px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hub-logo container – pentru a putea pune fulgii */
.hub-logo {
  position: relative;
  width: 200px;
  height: 200px;
  z-index: 10;
  cursor: pointer;
  transition: transform 0.4s ease;
  overflow: visible; /* să nu taie fulgii */
}

/* Fulgii – folosim pseudo-elemente pentru animație */
.hub-logo::before,
.hub-logo::after {
  content: '';
  position: absolute;
  top: -20px;
  width: 6px;
  height: 6px;
  left: 30%;
  background: #5da9e7; /* albastru */
  border-radius: 50%;
  opacity: 0.8;
  animation: snowFall 2s linear infinite;
  z-index: 15; /* peste logo */
}

/* Diferențiem al doilea fulg */
.hub-logo::after {
  left: 60%;
  width: 4px;
  height: 4px;
  animation-delay: 1s;  /* să cadă asincron */
}

/* Animația fulgilor */
@keyframes snowFall {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(130px) translateX(10px);
    opacity: 0;
  }
}

/* Păstrăm pulsul logo-ului */
.hub-logo img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  animation: heartbeat 1.2s infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(0.95); }
  75% { transform: scale(1.05); }
}

.hub-logo:hover img {
  transform: scale(1.25);
  animation-play-state: paused;
}

/* Recenzii mici radiale */
.hub-review {
  position: absolute;
  width: 100px;
  height: 100px;
  transform: rotate(var(--angle)) translate(200px) rotate(calc(-1 * var(--angle)));
  transition: transform 0.3s ease;
  z-index: 5;
}

.hub-review img {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  object-fit: cover;
  box-shadow: 0 0px 50px rgba(25, 93, 240, 0.534);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: solid;
  border-color: #000000;
  border-width: 2px;
  opacity: 0.2; /* fade inițial */
  transition: opacity 0.3s ease, transform 0.3s ease;
  
  animation: highlightCycle 4s infinite;
}

/* Keyframes pentru highlight ciclic */
@keyframes highlightCycle {
  0%, 87.5% { opacity: 0.4; }   /* faded */
  12.5%, 25% { opacity: 1; }    /* highlight */
}

/* Animation delay pentru fiecare imagine */
.hub-review:nth-child(2) img { animation-delay: 0.5s; }
.hub-review:nth-child(3) img { animation-delay: 1s; }
.hub-review:nth-child(4) img { animation-delay: 1.5s; }
.hub-review:nth-child(5) img { animation-delay: 2s; }
.hub-review:nth-child(6) img { animation-delay: 2.5s; }
.hub-review:nth-child(7) img { animation-delay: 3s; }
.hub-review:nth-child(8) img { animation-delay: 3.5s; }

.hub-review:hover img {
  transform: scale(1.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Imagini mari absolute (față de container) */
.hub-tooltip {
  position: absolute;
  top: 50%;
  width: 500px;
  height: 500px;
  transform: translateY(-50%) scale(0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 20;
}

.hub-tooltip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* Poziții față de container */
.tooltip-left { left: 80%; }   /* stânga container */
.tooltip-right { right: 80%; } /* dreapta container */

/* Hover show folosind frați ~ */
.rev1:hover ~ .rev1-img,
.rev2:hover ~ .rev2-img,
.rev3:hover ~ .rev3-img,
.rev4:hover ~ .rev4-img,
.rev5:hover ~ .rev5-img,
.rev6:hover ~ .rev6-img,
.rev7:hover ~ .rev7-img,
.rev8:hover ~ .rev8-img {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* ===================== RESPONSIVE TABLET ===================== */
@media (max-width: 1024px) {
  .hub-container {
    width: 800px;
    height: 400px;
  }

  .hub-logo {
    width: 150px;
    height: 150px;
  }

  .hub-review {
    width: 70px;
    height: 70px;
    transform: rotate(var(--angle)) translate(150px) rotate(calc(-1 * var(--angle)));
  }

  .hub-tooltip {
    width: 350px;
    height: 350px;
  }

  .tooltip-left { left: 20%; }
  .tooltip-right { right: 20%; }
}

/* ===================== RESPONSIVE MOBILE ===================== */
@media (max-width: 768px) {
  .hub-container {
    width: 350px;
    height: 350px;
  }

  .hub-logo {
    width: 120px;
    height: 120px;
  }

  .hub-review {
    width: 60px;
    height: 60px;
    transform: rotate(var(--angle)) translate(130px) rotate(calc(-1 * var(--angle)));
  }

  .hub-tooltip {
    width: 250px;
    height: 250px;
  }

  .tooltip-left { left: 65%; }
  .tooltip-right { right: 65%; }
}

/* ===================== RESPONSIVE XS / TELEFON ===================== */
@media (max-width: 480px) {
  .hub-container {
    width: 280px;
    height: 280px;
  }

  .hub-logo {
    width: 100px;
    height: 100px;
  }

  .hub-review {
    width: 55px;
    height: 55px;
    transform: rotate(var(--angle)) translate(110px) rotate(calc(-1 * var(--angle)));
  }

  .hub-review img {
    box-shadow: 0 0px 30px rgba(25, 93, 240, 0.534);
  }

  .hub-tooltip {
    width: 220px;
    height: 220px;
  }

  .tooltip-left { left: 10%; }
  .tooltip-right { right: 10%; }
}

.contact-section {
  padding-top: clamp(10px, 2vw, 20px);
  padding-bottom: clamp(20px, 4vw, 40px);
  text-align: center;

  background: linear-gradient(
    to right,
    rgba(187, 185, 185, 0.52) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(187, 185, 185, 0.52) 100%
  );
}

/* container central */
.contact-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* blocuri info */
.contact-block h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #2c7be5;
}

.contact-block p {
  margin: 5px 0;
  font-size: 18px;
}

.contact-block a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.contact-block a:hover {
  color: #2c7be5;
}

/* Social icons */
.contact-social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.contact-social img {
  width: 45px;
  height: 45px;
  transition: transform 0.3s ease;
}

.contact-social img:hover {
  transform: scale(1.2);
}

/* Google map */
.contact-map {
  width: 80%;          /* ← lățimea hărții */
  max-width: 900px;    /* limită maximă */
  margin: 40px auto;   /* CENTRARE */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.2);
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
}




