body {
  font-family: Arial, sans-serif;
  margin: 0;
  overflow-x: hidden;
  background: #000;
}

/* HEADER */
header {
  background: #000;
  color: white;
  padding: 15px;
  text-align: center;
}

header img {
  max-width: 220px;
}

/* NAV */
nav {
  background: #111;
  padding: 10px;
  text-align: center;
}

nav a {
  color: #f2c200;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

/* HERO */
.hero {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero.jpg') center/cover no-repeat;
  animation: cinematicZoom 20s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes cinematicZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* BUTTON */
.btn {
  background: #f2c200;
  color: black;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  animation: pulseBtn 1.5s infinite;
}
.btn:hover {
  transform: scale(1.05);
}

/* SLIDER */
.slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slides img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  flex: 0 0 100%;
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* DOTS */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.dot.active {
  background: #f2c200;
}

/* SECTIONS */
section {
  padding: 40px;
  background: #111;
  color: white;
}

/* SERVICES */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1;
  min-width: 250px;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
}

/* HIGHLIGHT */
.highlight {
  background: #f2c200;
  color: black;
  text-align: center;
  padding: 20px;
  font-weight: bold;
}

/* STICKY CALL */
.sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #000, #111);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);

  box-sizing: border-box; /* 🔥 ASTA LIPSEA */
}

.sticky-call a {
  background: #f2c200;
  color: black;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  animation: pulseCall 1.2s infinite;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  z-index: 1001;
}

.whatsapp-float img {
  width: 35px;
}

.whatsapp-label {
  position: fixed;
  bottom: 155px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

/* NOTIFICATION */
.fake-notification {
  position: fixed;
  bottom: 160px;
  left: 20px;
  background: #000;
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 13px;
  opacity: 0;
  transition: all 0.5s ease;
}

.fake-notification.show {
  opacity: 1;
}

/* RATING */
.rating-live {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.85);
  color: #f2c200;
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: bold;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

/* MOBILE */
@media (max-width: 768px) {
  .slides img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .sticky-call {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .sticky-call a {
    width: 100%;
    text-align: center;
  }
}

/* VIBRATION */
@keyframes pulseCall {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
/* CLICK PE IMAGINI */
.slides img {
  cursor: pointer;
}

/* LIGHTBOX UPGRADE */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}
.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.center-text {
  text-align: center;
}
.urgent-bar {
  background: red;
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  animation: pulseBar 1.5s infinite;
}

/* EFECT PULSE */
@keyframes pulseBar {
  0% { background: red; }
  50% { background: #cc0000; }
  100% { background: red; }
}
@media (max-width: 768px) {
  .rating-live {
    position: static;
    display: block;
    margin: 10px auto;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .rating-live {
    position: static;
    display: block;
    margin: 10px auto;
    text-align: center;
    width: fit-content;
  }
}
.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
}

.social-icons a {
  color: #f1c40f;
  font-size: 22px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: white;
  transform: scale(1.2);
}
@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 0 rgba(242,194,0,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(242,194,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,194,0,0); }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: white;
  padding: 15px;
  z-index: 2000;
  display: none;
  text-align: center;
}

.cookie-banner p {
  margin: 0 0 10px;
  font-size: 14px;
}

.cookie-banner a {
  color: #f2c200;
  text-decoration: underline;
}

.cookie-buttons button {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.cookie-buttons button:first-child {
  background: #f2c200;
  color: black;
}

.cookie-buttons button:last-child {
  background: #444;
  color: white;
}

/* MODAL */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.cookie-content {
  background: #111;
  color: white;
  padding: 20px;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
}
.live-users {
  text-align: center;
  background: #111;
  color: #f2c200;
  padding: 10px;
  font-weight: bold;
}