/* ===================== RESET & BASE ===================== */
html, body {
  overflow-x: hidden;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f8fafc;
  color: #646161;
}

/* ===================== HEADER ===================== */
header {
  position: sticky;
  top: 0;
  z-index: 9000;
  box-shadow: none;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  /* --- DOTS PATTERN --- */
  background-color: #000;
  background-image:
    radial-gradient(rgba(255,255,255,0.20) 1.7px, transparent 5.7px),
    radial-gradient(rgba(255,255,255,0.11) 1.7px, transparent 5.7px);
  background-size: 38px 38px, 38px 38px;
  background-position: 0 0, 19px 19px;
}

/* ------------- HEADER CONTAINER + LOGO -------------- */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
  padding: 0 32px;
  justify-content: flex-start;
  width: 100%;
  min-height: 90px;
  box-sizing: border-box;
  background: transparent;
}
.logo-img img {
  height: 235px;
  width: auto;
  display: block;
  margin: 0;
  vertical-align: middle;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(80,80,80,0.07);
  background: none;
}

/* ===================== MENU NAVBAR ===================== */
nav.horizontal-menu {
  flex: 1;
  display: flex;
  align-items: center;
  margin-left: 860px; /* doar pe desktop */
}

/* RESET pe mobil/tabletă: */
@media (max-width: 900px) {
  nav.horizontal-menu {
    margin-left: 0 !important;
  }
}

nav.horizontal-menu > ul {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  list-style: none;
}
nav.horizontal-menu ul li {
  position: relative;
}

nav.horizontal-menu ul li a {
  color: #ffffff;
  font-weight: 300;
  font-size: 1.3rem;
  text-decoration: none;
  letter-spacing: 0.015em;
  padding: 11px 18px;
  border-radius: 6px;
  background: none;
  box-shadow: none;
  transition: color 0.2s, transform 0.13s;
  white-space: nowrap;
  outline: none;
  border: none;
}

nav.horizontal-menu ul li a:hover, nav.horizontal-menu ul li a:focus {
  background: none;
  background-color: transparent;
  color: #f0c75e;  /* aurie pe hover */
  box-shadow: none;
  transform: translateY(-2px) scale(1.04);
}

/* ---- Dropdown Submenu ---- */
nav.horizontal-menu ul li ul {
  position: absolute;
  top: 105%;
  left: 0;
  background: rgba(255,255,255,0.99);
  border-radius: 12px;
  display: none;
  padding: 10px 0;
  list-style: none;
  min-width: 190px;
  z-index: 99999;
  box-shadow: none;
  backdrop-filter: blur(7px);
}
nav.horizontal-menu ul li:hover > ul {
  display: block;
}
nav.horizontal-menu ul li ul li a {
  display: block;
  padding: 10px 22px;
  color: #d29d0e;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 6px;
}
nav.horizontal-menu ul li ul li a:hover {
  background-color: #f0c75e;
  color: #fff;
}

/* ===================== HERO SECTION ===================== */
.hero {
  width: 100vw;
  min-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0;
  margin-bottom: 32px;
  padding: 36px 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 340px;
  border-radius: 0 !important;
  background: #111;
  box-shadow: 0 7px 32px 0 rgba(40, 80, 160, 0.11);
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 24px;
  background: none;
}
.hero-bg {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: url('/../data/image/hero_content.png') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 320px;
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.05;
  text-shadow: 0 1px 10px #275f8d44;
}
.hero-highlight {
  color: #f0c75e;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0 10px;
  font-weight: 900;
  text-shadow: 0 2px 10px #dbbc4a22;
}
.hero-subtitle {
  font-size: 1.17rem;
  color: #fff;
  font-weight: 500;
  opacity: 0.93;
  margin-bottom: 22px;
}
.hero-btn {
  display: inline-block !important;
  width: auto !important;
  min-width: unset !important;
  max-width: 20%;
  padding: 13px 22px;
  background: #f0c75e;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.13rem;
  letter-spacing: 0.04em;
  margin-top: 10px;
  transition: background 0.2s, color 0.17s, transform 0.13s;
  box-shadow: 0 2px 18px 0 #f0c75e30;
  text-align: center;
}


.hero-btn:hover, .hero-btn:focus {
  background: #f7d46f;
  color: #121212;
  transform: translateY(-2px) scale(1.05);
}
/* ---- Hero image right ---- */
.hero-image {
  position: relative;
  z-index: 2;
  flex: 1 1 320px;
  text-align: right;
  min-width: 320px;
  padding-right: 36px;
}
.hero-image img {
  width: 80%;
  max-width: 380px;
  border-radius: 16px;
  box-shadow: 0 10px 32px 0 rgba(40,80,160,0.13);
  margin-left: auto;
  display: block;
  background: #fff;
}

/* ===================== SERVICES SECTION ===================== */
.services-section {
  margin: 60px auto 40px auto;
  padding: 0 0 28px 0;
  max-width: 1200px;
  text-align: center;
}
.services-title {
  color: #DDAF26;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 38px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  justify-items: center;
  align-items: stretch;
  margin: 0 auto;
  max-width: 1100px;
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #8fd18a13;
  padding: 18px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s;
  width: 97%;
  max-width: 350px;
}
.service-card:hover {
  box-shadow: 0 8px 36px #8fd18a27;
}
.service-img img {
  max-width: 100px;
  max-height: 90px;
  border-radius: 9px;
  object-fit: cover;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px #00000011;
}
.service-name {
  color: #DDAF26;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
}
.service-desc {
  color: #222;
  font-size: 1.01rem;
  min-height: 46px;
  margin-bottom: 18px;
  text-align: center;
}
.service-btn {
  display: inline-block;
  background: #DDAF26;
  color: #fff;
  font-weight: 700;
  border-radius: 7px;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 1.08rem;
  margin-top: auto;
  transition: background 0.18s;
}
.service-btn:hover {
  background: #388e3c;
}
.read-more-link {
  color: #DDAF26;
  font-weight: 600;
  margin-left: 7px;
  font-size: 1.01em;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.18s;
}
.read-more-link:hover {
  color: #17641a;
  text-decoration: underline;
}

/* ===================== FAQ SECTION ===================== */
.whyus-section {
  margin: 58px auto 36px auto;
  max-width: 1300px;
  padding: 0 12px;
  text-align: center;
}
.whyus-title {
  color: #ffd900;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.whyus-cards {
  display: flex;
  gap: 36px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.whyus-card {
  background: #eec113;
  border-radius: 18px;
  box-shadow: 0 4px 18px #1112;
  padding: 36px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 380px;
  min-width: 270px;
  flex: 1 1 280px;
  border: 2.5px solid #2c2c2c;
  transition: transform 0.17s, box-shadow 0.18s;
}
.whyus-card:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 8px 36px #1116;
}
.whyus-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whyus-card-title {
  color: #191919;
  font-size: 1.29rem;
  font-weight: 600;
  margin-bottom: 14px;
  margin-top: 0;
  letter-spacing: 0.015em;
}
.whyus-card-desc {
  color: #191919;
  font-size: 1.05rem;
  line-height: 1.7;
  font-family: 'Rubik', Arial, sans-serif;
  margin-bottom: 0;
  margin-top: 0;
  letter-spacing: 0.012em;
}

@media (max-width: 900px) {
  .whyus-cards { flex-direction: column; gap: 26px; }
  .whyus-card { max-width: 60vw; }
}


/* ===================== MAIN CONTENT ===================== */
.container.main-content {
  flex: 1;
  padding: 36px 32px 36px 32px;
  background: #191919;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(40,80,160,0.09);
}


/* ===================== FOOTER ===================== */
footer {
  background: linear-gradient(90deg, #4FC3F7 80%, #f0c75e 120%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -6px 24px 0 rgba(40,80,160,0.08);
  margin-top: 36px;
  padding: 28px 0 18px 0;
  text-align: center;
  color: #646161;
  font-weight: 600;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.footer-menu ul li a {
  color: #646161;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.23s;
}
.footer-menu ul li a:hover {
  color: #f0c75e;
}
.footer-credits {
  font-size: 0.99rem;
  font-weight: 400;
  opacity: 0.82;
}

/* ===================== RESPONSIVE BREAKPOINTS ===================== */
@media (max-width: 1080px) {
  .header-container {
    max-width: 98vw;
    padding: 0 12px;
    gap: 14px;
    min-height: 70px;
  }
  .logo-img img { height: 54px; }
  .hero-content { padding: 18px 18px 18px 18px;}
  .container.main-content {padding: 28px 10px;}
}
@media (max-width: 860px) {
  .hero { flex-direction: column; padding: 18px 0 0 0; min-height: 300px;}
  .hero-content, .hero-image {padding: 18px 8px;}
  .hero-image img { width: 96%; max-width: 290px; }
}
@media (max-width: 700px) {
  .header-container {
    justify-content: center;
    gap: 0;
    padding: 0 3vw;
  }
  .logo-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
  }
  .logo-img img {
    height: 125px !important;
    margin: 0 auto !important;
    display: block;
  }
  nav.horizontal-menu > ul {
    flex-direction: column;
    display: none;
    width: 94vw;
    max-width: 320px;
    background-color: rgba(79,195,247,0.98);
    border-radius: 8px;
    padding: 12px 0;
    position: absolute;
    top: 54px;
    left: 0;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.09);
    min-height: unset;
    border: 1px solid #e2e2e2;
  }
  nav.horizontal-menu > ul.active { display: flex;}
  nav.horizontal-menu ul li {text-align: left;}
  nav.horizontal-menu ul li ul {position: static; background: transparent; padding: 0; box-shadow: none;}
  nav.horizontal-menu ul li ul li a { padding-left: 24px; }
  .menu-toggle { display: flex;}
  .hero { flex-direction: column; padding: 8px 0 0 0;}
  .hero-content, .hero-image {padding: 8px 8px;}
  .container.main-content {padding: 16px 2vw;}
  .footer-menu ul {gap: 10px;}
}
@media (max-width: 480px) {
  .container.main-content {padding: 7px 1vw;}
  .hero-title {font-size: 1.4rem;}
  .hero-content {padding: 6px;}
}

/* ===================== HAMBURGER MENU BUTTON ===================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  background: #181818;           /* Fundal negru mat */
  border-radius: 10px;           /* Colțuri rotunjite */
  border: none;
  box-shadow: 0 2px 12px #0001;
  position: relative;
  z-index: 2201;
  padding: 0;
  cursor: pointer;
  transition: background 0.18s;
}

.menu-toggle .bar {
  display: block;
  width: 28px;
  height: 6px;
  background: #f0a444;           /* Auriu/portocaliu - poți schimba cu #f0c75e dacă vrei altă nuanță */
  margin: 4px 0;
  border-radius: 4px;
  transition: all 0.33s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 2px #0004;
}

/* Animație pentru X când e deschis */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}


/* ===================== MOBILE MENU & SUBMENUS ===================== */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  nav.horizontal-menu > ul {
    /* MODIFICARE: fundal premium, negru mat cu pattern subtil auriu */
    background: #181818 !important;
    background-image:
      radial-gradient(rgba(240,199,94,0.06) 2.1px, transparent 6px),
      radial-gradient(rgba(240,199,94,0.12) 2.1px, transparent 6px);
    background-size: 36px 36px, 36px 36px;
    background-position: 0 0, 18px 18px;
    border-radius: 18px !important;
    border: 2px solid #f0c75e2a;
    box-shadow: 0 7px 36px #0007;
    padding: 18px 0 18px 0;
    width: 96vw;
    max-width: 340px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: 90px;
    z-index: 2200;
    min-height: unset;
    opacity: 0;
    pointer-events: none;
    transition: all 0.33s cubic-bezier(.68,-0.55,.27,1.55);
    backdrop-filter: blur(6px);
  }
  nav.horizontal-menu > ul.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0) scaleY(1);
    display: flex !important;
  }
  nav.horizontal-menu > ul:not(.active) {
    display: flex !important;
  }
  nav.horizontal-menu ul li {text-align: right;}
  nav.horizontal-menu ul li a {
    color: #fff !important;
    font-weight: 600;
    font-size: 1.18rem;
    text-align: right;
    border-radius: 8px;
    padding: 1px 24px;
    transition: background 0.19s, color 0.16s, transform 0.11s;
  }
  nav.horizontal-menu ul li a:hover,
  nav.horizontal-menu ul li a:focus {
    background: #f0c75e;
    color: #181818 !important;
    transform: translateY(-2px) scale(1.04);
  }
  nav.horizontal-menu ul li ul {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0;
    position: static;
  }
  nav.horizontal-menu ul li ul li a {
    padding-left: 36px;
    color: #f0c75e !important;
    font-weight: 500;
    font-size: 1.08rem;
    border-radius: 7px;
  }
  nav.horizontal-menu ul li ul li a:hover {
    background: #fff3;
    color: #fff !important;
  }
}
@media (min-width: 900px) {
  .menu-toggle { display: none !important; }
  nav.horizontal-menu > ul {
    display: flex !important;
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: all !important;
    width: auto;
    max-width: unset;
    background: rgba(255,255,255,0.49);
    padding: 0 55px;
  }
}
@media (min-width: 901px) {
  nav.horizontal-menu ul li:hover > ul.submenu,
  nav.horizontal-menu ul li:focus-within > ul.submenu {
    display: block !important;
    opacity: 1;
    max-height: 1000px;
    pointer-events: auto;
    transition: opacity 0.2s, max-height 0.3s;
  }
  nav.horizontal-menu ul li ul.submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 105%;
    background: rgba(255,255,255,0.99);
    min-width: 190px;
    z-index: 1000;
    border-radius: 12px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.15);
    max-height: 0;
    opacity: 0;
    transition: opacity 0.2s, max-height 0.3s;
    overflow: hidden;
  }
}

/* ===================== CALL ME BUTTON & POPUP ===================== */
@media (max-width: 900px) {
  .callme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DDAF26;
    border: none;
    outline: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    margin: 0 8px 0 0;
    box-shadow: 0 2px 14px #4FC3F744;
    cursor: pointer;
    z-index: 2021;
    transition: background 0.18s, box-shadow 0.16s, transform 0.14s;
    position: relative;
  }
  .callme-btn svg {
    display: block;
    margin: 0 auto;
    width: 25px;
    height: 25px;
  }
  .callme-btn:active,
  .callme-btn:focus {
    background: #388e3c;
    box-shadow: 0 2px 16px #388e3c44;
    transform: scale(0.96);
  }
  .header-container {
    gap: 8px !important;
  }
  .logo-img { margin-right: 2px; }
}
.callme-popup {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(38,51,62,0.23);
  z-index: 3300;
  justify-content: center;
  align-items: center;
}
.callme-popup.active { display: flex; }
.callme-popup-inner {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 34px #23232318;
  padding: 36px 24px 26px 24px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  position: relative;
  text-align: center;
}
.callme-popup-btn {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.17rem;
  font-weight: 700;
  color: #232323;
  background: #DDAF26;
  border-radius: 8px;
  padding: 12px 32px;
  text-decoration: none;
  transition: background 0.18s, color 0.16s;
  box-shadow: 0 2px 8px #4FC3F717;
}
.callme-popup-btn.call { background: #DDAF26; }
.callme-popup-btn.whatsapp { background: #DDAF26; }
.callme-popup-btn:hover, .callme-popup-btn:focus { background: #f0c75e; color: #fff;}
.callme-popup-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #b1b1b1;
  cursor: pointer;
}

/* ===================== HERO CAROUSEL ===================== */
.hero-carousel {
  position: relative;
  width: 100w;
  height: 100vh;
  overflow: hidden;
}
.carousel-images {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.carousel-images .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel-images .slide.active {
  opacity: 1;
}
.header-container.absolute {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3500 !important;
  padding-top: 18px;
  background: none;
}
.hero-overlay-content {
  position: absolute;
  z-index: 3;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
  text-align: right;
}
.hero-overlay-content .subtitle {
  font-size: 4rem;
  color: #f9a826;
  letter-spacing: 0.2em;
  margin-bottom: 0.6em;
}
.hero-overlay-content .hero-headline {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.6em;
}
.hero-overlay-content .hero-headline strong {
  font-size: 3.4rem;
}
.hero-overlay-content p {
  font-size: 1rem;
  margin-bottom: 1.5em;
  color: #eaeaea;
}
.hero-overlay-content .cta-btn {
  background: #f9a826;
  color: #000;
  text-decoration: none;
  padding: 14px 32px;
  font-weight: 700;
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.hero-overlay-content .cta-btn:hover {
  background: #fff;
  color: #000;
}

/* ===================== HERO CAROUSEL ===================== */
.hero-carousel2 {
  position: relative;
  width: 20w;
  height: 20vh;
  overflow: hidden;
}
.carousel-images {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.carousel-images .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel-images .slide.active {
  opacity: 1;
}
.header-container.absolute {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3500 !important;
  padding-top: 18px;
  background: none;
}
.hero-overlay-content {
  position: absolute;
  z-index: 3;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
  text-align: right;
}
.hero-overlay-content .subtitle {
  font-size: 1.2rem;
  color: #f9a826;
  letter-spacing: 0.2em;
  margin-bottom: 0.6em;
}
.hero-overlay-content .hero-headline {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.6em;
}
.hero-overlay-content .hero-headline strong {
  font-size: 2.4rem;
}
.hero-overlay-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
  color: #eaeaea;
}
.hero-overlay-content .cta-btn {
  background: #f9a826;
  color: #000;
  text-decoration: none;
  padding: 14px 32px;
  font-weight: 700;
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.hero-overlay-content .cta-btn:hover {
  background: #fff;
  color: #000;
}
/* ===================== HERO CAROUSEL2 ===================== */

.carousel-boxes {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 18px 0;
  overflow: hidden;
  margin: 0 auto;
  min-height: 360px;
}
.boxes-track {
  display: flex;
  position: relative;
  width: 820px;
  height: 230px;
  justify-content: center;
  align-items: center;
}
.box-slide {
  position: absolute;
  left: 50%;
  top: 0;
  width: 205px;
  height: 230px;
  background: #111;
  color: #fff;
  border-radius: 22px;
  border: 1.8px solid #f0c75e;
  box-shadow: 0 1px 1px #f0c75e16, 0 1px 5px #2e1f0309;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 16px 18px 16px;
  opacity: 0.7;
  z-index: 1;
  transition:
    transform 0.6s cubic-bezier(.77,0,.18,1.02),
    filter 0.33s,
    box-shadow 0.35s,
    opacity 0.28s;
}
.box-slide .box-icon {
  margin-bottom: 22px;
}
.box-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff8e1;
  margin-bottom: 9px;
  text-align: center;
}
.box-desc {
  font-size: 1.02rem;
  color: #eee;
  text-align: center;
}

.box-slide.c-center {
  transform: translateX(-50%) scale(1.14);
  opacity: 1;
  z-index: 6;
  box-shadow: 0 7px 20px #f0c75e33, 0 2px 8px #f0c75e16;
  filter: none;
  border-color: #f0c75e;
}
.box-slide.c-left,
.box-slide.c-right {
  opacity: 0.89;
  z-index: 5;
  border-color: #f0c75e88;
}
.box-slide.c-left {
  transform: translateX(-220%) scale(0.92) rotateY(19deg);
  filter: blur(1.2px) brightness(0.87);
}
.box-slide.c-right {
  transform: translateX(120%) scale(0.92) rotateY(-19deg);
  filter: blur(1.2px) brightness(0.87);
}
.box-slide.c-far-left {
  transform: translateX(-350%) scale(0.78) rotateY(25deg);
  opacity: 0.47;
  filter: blur(3.5px) brightness(0.5);
  z-index: 2;
}
.box-slide.c-far-right {
  transform: translateX(250%) scale(0.78) rotateY(-25deg);
  opacity: 0.47;
  filter: blur(3.5px) brightness(0.5);
  z-index: 2;
}
.box-slide:not(.c-center):not(.c-left):not(.c-right):not(.c-far-left):not(.c-far-right) {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
/* Responsive */
@media (max-width:900px) {
  .boxes-track { width: 98vw; height: 170px;}
  .box-slide, .box-slide.c-center {
    width: 130px;
    height: 130px;
    border-radius: 12px;
    padding: 2px 2px 8px 2px; /* SUS mult mai mic! */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* asigură-te că e inclus! */
  }
  .box-slide .box-icon { margin-bottom: 6px; }   /* Foarte puțin spațiu sub icon */
  .box-title { font-size: 0.97rem; margin-bottom: 3px; }
  .box-desc { font-size: 0.78rem; }
  .box-slide .box-icon svg { width: 26px; height: 26px; }
}

/* CSS CARUSEL SERVICES */

.carousel-services-section {
  width: 100vw;
  max-width: 1260px;
  margin: 48px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.carousel-services-boxes {
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  margin-bottom: 18px;
}
.carousel-services-track {
  display: flex;
  position: relative;
  width: 1200px;
  height: 330px;
  justify-content: center;
  align-items: center;
}
.carousel-service-slide {
  position: absolute;
  left: 50%;
  top: 0;
  width: 340px;
  height: 330px;
  border-radius: 18px;
  box-shadow: 0 5px 28px #0006;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition:
    transform 0.7s cubic-bezier(.74,.01,.23,1.09),
    box-shadow 0.3s,
    opacity 0.27s;
  opacity: 0.7;
  z-index: 1;
  cursor: pointer;
}
.carousel-service-slide img {
  position: absolute;
  width: 100%; height: 100%;
  object-fit: cover;
  left: 0; top: 0;
  z-index: 1;
  transition: filter 0.25s;
}
.carousel-service-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 0 24px 0;
  background: linear-gradient(to top, #1c1c1cce 78%, transparent 100%);
  z-index: 3;
  min-height: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.carousel-service-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 2px 8px #0008;
  margin-bottom: 7px;
  text-align: center;
  letter-spacing: 0.01em;
}
.carousel-service-link {
  display: inline-block;
  margin-top: 7px;
  background: #f0c75e;
  color: #181818;
  border-radius: 7px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 28px;
  box-shadow: 0 2px 12px #f0c75e33;
  transition: background 0.18s, color 0.17s, transform 0.13s;
}
.carousel-service-link:hover { background: #fff59d; color: #000; }
.carousel-service-slide.c-center {
  transform: translateX(-50%) scale(1.15);
  z-index: 7;
  opacity: 1;
  box-shadow: 0 16px 54px #f0c75e3b, 0 2px 22px #0008;
}
.carousel-service-slide.c-left,
.carousel-service-slide.c-right {
  opacity: 0.93;
  z-index: 6;
}
.carousel-service-slide.c-left {
  transform: translateX(-195%) scale(0.87) rotateY(11deg);
  filter: blur(1px) brightness(0.9);
}
.carousel-service-slide.c-right {
  transform: translateX(90%) scale(0.87) rotateY(-11deg);
  filter: blur(1px) brightness(0.9);
}
.carousel-service-slide.c-far-left {
  transform: translateX(-320%) scale(0.68) rotateY(15deg);
  opacity: 0.33;
  z-index: 3;
  filter: blur(3.5px) brightness(0.5);
}
.carousel-service-slide.c-far-right {
  transform: translateX(220%) scale(0.68) rotateY(-15deg);
  opacity: 0.33;
  z-index: 3;
  filter: blur(3.5px) brightness(0.5);
}
.carousel-service-slide:not(.c-center):not(.c-left):not(.c-right):not(.c-far-left):not(.c-far-right) {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* Dots (buttons) under carousel */
.carousel-dots {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}
.carousel-dot {
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #f0c75e75;
  border: 2px solid #fff4;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.17s;
}
.carousel-dot.active {
  background: #f0c75e;
  box-shadow: 0 0 0 4px #f0c75e29;
}

/* Responsive (ajustezi după gust) */
@media (max-width: 1200px) {
  .carousel-services-track { width: 98vw; }
}
@media (max-width: 900px) {
  .carousel-service-slide,
  .carousel-service-slide.c-center { width: 95vw; height: 195px; }
  .carousel-services-boxes { min-height: 220px; }
  .carousel-service-title { font-size: 1.13rem; }
  .carousel-service-overlay { min-height: 55px; padding: 0 0 12px 0; }
  .carousel-service-link { padding: 8px 18px; font-size: 0.98rem;}
}

/* SOCIAL FOTING */

.social-floating-bar {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 99000;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.social-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f0a444;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 14px #0006;
  transition: background 0.16s, box-shadow 0.17s, transform 0.12s;
  font-size: 1.28rem;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.social-btn:hover, .social-btn:focus {
  background: #f0c75e;
  box-shadow: 0 7px 24px #0007;
  transform: scale(1.09);
}
.social-btn svg {
  display: block;
  width: 28px;
  height: 28px;
}

@media (max-width: 700px) {
  .social-floating-bar {
    right: 10px;
    bottom: 16px;
    gap: 12px;
  }
  .social-btn { width: 46px; height: 46px; }
  .social-btn svg { width: 23px; height: 23px; }
}


/* Opțional: culori custom per rețea la hover */
.social-btn.instagram:hover { background: #e4405f; }
.social-btn.facebook:hover  { background: #1877f3; }
.social-btn.twitter:hover   { background: #1da1f2; }
.social-btn.whatsapp:hover  { background: #25d366; }

/* PRELUADER  */

#preloader {
  position: fixed;
  z-index: 999999;
  inset: 0;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s cubic-bezier(.56,0,.45,1), visibility 0.4s;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-circle {
  width: 70px;
  height: 70px;
  border: 7px solid #f0c75e;
  border-top: 7px solid #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

.grecaptcha-badge {
  left: 16px !important;
  right: auto !important;
  bottom: 16px !important;
}

/* FOOTER  */

.site-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 42px 0 0 0;
  font-family: 'Inter', Arial, sans-serif;
}
.footer-inner {
  display: flex;
  gap: 38px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer-col {
  min-width: 220px;
  flex: 1 1 0;
  margin-bottom: 24px;
}
.footer-logo-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-width: 230px;
}
.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}
.footer-socials {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}
.footer-socials a svg {
  background: #181818;
  border-radius: 50%;
  padding: 4px;
  transition: background 0.18s, transform 0.13s;
}
.footer-socials a:hover svg { background: #ffd521; transform: scale(1.12);}
.footer-call-btn {
  display: flex;
  align-items: center;
  background: #ffd521;
  color: #111;
  font-weight: bold;
  padding: 13px 38px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 4px;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px #ffd52130;
  transition: background 0.17s, color 0.14s;
}
.footer-call-btn:hover { background: #fff; color: #000; }
.footer-menu-col h4, .footer-areas-col h4 {
  color: #ffd521;
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.footer-col h4 {
  text-align: center;
}

.footer-stripes {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  margin-top: 2px;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    #ffd521, #ffd521 22px,
    transparent 22px, transparent 30px
  );
  width: 84px;
  border-radius: 4px;
}

.footer-menu-col ul, .footer-areas-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu-col ul li, .footer-areas-col ul li {
  margin-bottom: 7px;
}
.footer-menu-col ul li a, .footer-areas-col ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.07rem;
  transition: color 0.18s;
}
.footer-menu-col ul li a:hover, .footer-areas-col ul li a:hover {
  color: #ffd521;
  text-decoration: underline;
}
.footer-bottom {
  background: #ffd521;
  color: #111;
  margin-top: 14px;
  text-align: center;
  padding: 17px 0 10px 0;
  font-size: 1rem;
}
.footer-credits {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-links {
  margin-top: 7px;
  color: #111;
  font-size: 0.98rem;
}
.footer-links a {
  color: #111;
  font-weight: 600;
  text-decoration: underline;
  margin: 0 5px;
  transition: color 0.16s;
}
.footer-links a:hover { color: #222; }

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 7vw;
  }
  .footer-col { min-width: 0; width: 100%; text-align: center;}
  .footer-stripes { margin-left: auto; margin-right: auto;}
}

/* BOOKING  */

.booking-main {
  min-height: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: none;
  margin: 0;
  padding: 42px 0 36px 0;
}
.booking-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  color: #212121;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.booking-form-box {
  width: 100%;
  max-width: 1260px;
  min-width: 340px;
  margin: 0 auto;
  padding: 18px 28px 28px 28px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 32px #0002, 0 1.5px 10px #1421730c;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* overflow-x: auto; */
}
.booking-form-box iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  border-radius: 12px;
  background: #fff;
}
@media (max-width: 900px) {
  .booking-form-box {
    max-width: 98vw;
    padding: 7px 2vw 16px 2vw;
    border-radius: 13px;
  }
  .booking-title { font-size: 1.19rem; margin-bottom: 13px; }
}
@media (max-width: 600px) {
  .booking-form-box { max-width: 99vw; padding: 2px 0; border-radius: 0; }
  .booking-main { padding: 16px 0 0 0;}
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 38px;
	margin: 38px auto 58px auto;
	max-width: 1200px;
	padding: 0 16px;
}
.blog-card {
	background: #fff;
	color: #232323;
	border-radius: 14px;
	box-shadow: 0 3px 26px 0 #fede3b18;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border: 2px solid #eee;
	transition: transform 0.18s;
}
.blog-card:hover {
	transform: translateY(-4px) scale(1.015);
	border-color: #ffdf60;
}
.blog-card img {
	width: 100%;
	aspect-ratio: 2/1.18;
	object-fit: cover;
	border-bottom: 2px solid #ffdf6033;
}
.blog-card-content {
	padding: 26px 22px 16px 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.blog-card-title {
	color: #21b3b7;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 14px;
	text-decoration: none;
	transition: color 0.18s;
	display: block;
}
.blog-card-title:hover { color: #43a047; }
.blog-card-excerpt {
	color: #3a3a3a;
	font-size: 1.01rem;
	margin-bottom: 20px;
}
.blog-meta {
	font-size: 0.97rem;
	color: #818181;
	margin-top: auto;
	padding-top: 9px;
	border-top: 1px solid #eee;
	display: flex;
	gap: 16px;
}
.read-more-link {
	display: inline-block;
	color: #21b3b7;
	margin-top: 8px;
	font-weight: 700;
	text-decoration: none;
}
.read-more-link:hover { color: #43a047; text-decoration: underline; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.single-blog-container {
	max-width: 820px;
	margin: 46px auto 90px auto;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 2px 20px #2d2c1c22;
	padding: 36px 28px 38px 28px;
	color: #232323;
}
.single-blog-title {
	color: #21b3b7;
	font-size: 2.1rem;
	font-weight: 700;
	margin-bottom: 12px;
}
.single-blog-meta {
	color: #43a047;
	font-size: 1.06rem;
	margin-bottom: 18px;
}
.single-blog-image {
	width: 100%;
	max-height: 330px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 28px;
	box-shadow: 0 2px 14px #fff8e122;
}
.single-blog-content {
	color: #212121;
	font-size: 1.08rem;
	line-height: 1.74;
}

.footer-credits .developed-by a {
  color: #f0c75e;
  font-weight: 600;
  text-decoration: none; /
  transition: color 0.2s;
}

.footer-credits .developed-by a:hover {
  color: #fff59d;
  text-decoration: none; /
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.project-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.project-card img {
  width: 100%;
  display: block;
  height: auto;
}

.project-info {
  padding: 12px 16px;
}

.project-address {
  font-weight: 600;
  margin-bottom: 10px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.like-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #e74c3c;
}

.like-btn.liked {
  transform: scale(1.2);
}

  /* BOOKING */

.booking-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 40px;
    background: rgba(25, 25, 25, 0.6);
    border: #f0c75e;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 30px rgba(241, 196, 15, 0.1), 0 0 10px rgba(0, 0, 0, 0.5);
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.booking-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background:  #f0c75e;
    background-size: 300% 300%;
    animation: borderAnimation 5s ease infinite;
    z-index: -1;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
}

@keyframes borderAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.booking-container h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 36px;
    color: #f1c40f;
    letter-spacing: 1px;
}

.booking-container p {
    text-align: center;
    margin-bottom: 30px;
    color: #ccc;
    font-size: 16px;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.booking-form label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #f1f1f1;
}

.booking-form input {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #555;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    transition: all 0.3s ease;
}

.booking-form input::placeholder {
    color: #999;
}

.booking-form input:focus {
    border-color: #f1c40f;
    background-color: rgba(0, 0, 0, 0.6);
    outline: none;
}

.booking-form button {
    width: 100%;
    padding: 16px;
    background-color: #f1c40f;
    color: #000;
    font-weight: bold;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
}

.booking-form button:hover {
    background-color: #d4ac0d;
    transform: scale(1.02);
}

@media screen and (max-width: 600px) {
    .form-group.full-width {
        grid-column: span 1;
    }
}

.booking-success-button {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.hero-btn {
    background-color: #f0c75e;
    color: #000;
    font-weight: bold;
    font-size: 18px;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: inline-block;
}

.hero-btn:hover {
    background-color: #d4ac0d;
    transform: translateY(-2px);
}