/* ===== BASE ===== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #0d0d0d;
  color: #ddd;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #fff; text-decoration: none; transition: color .3s ease; }
a:hover { text-decoration: underline; }

/* ===== HEADER / NAVBAR ===== */
header {
  padding: 1rem 2rem;
  border-bottom: 1px solid #222;
}
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.navbar ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar a { color: #ddd; }
.navbar a.active,
.navbar a:hover { color: #fff; }

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 5rem 2rem 3rem;
}
.hero h1 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
  color: #fff;
}
.hero p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #ddd;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== PACKAGES (cards) ===== */
.packages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
}
.package-card {
  width: 300px;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #1f1f1f;
  box-shadow: 0 0 10px #000;
  transition: box-shadow .3s ease, transform .3s ease;
}
.package-card h2,
.package-card h3 {
  color: #fff;
  margin: 0 0 .5rem;
}
.desc-short { text-align: center; }
.price { font-size: 1.2rem; color: #aaa; margin-bottom: 1rem; }
.read-more,
.details {
  display: inline-block;
  background: #222;
  color: #fff;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: .6rem 1rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: background-color .3s ease, transform .2s ease, border-color .3s ease;
}
.read-more:hover,
.details:hover {
  background: #2a2a2a;
  border-color: #333;
  transform: translateY(-1px);
}
.desc-full-hidden,
.details-hidden {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  margin-top: 0;
  transition: max-height .5s ease, opacity .4s ease, margin-top .4s ease, visibility 0s linear .5s;
}
.package-card.open .desc-full-hidden {
  max-height: 900px;
  opacity: 1;
  visibility: visible;
  margin-top: .8rem;
  transition: max-height .5s ease, opacity .4s ease, margin-top .4s ease, visibility 0s;
}
.package-card.open .details-hidden {
  max-height: 60px;
  opacity: 1;
  visibility: visible;
  margin-top: .5rem;
  transition: max-height .4s ease .1s, opacity .3s ease .1s, margin-top .3s ease .1s, visibility 0s .1s;
}

/* ===== PAGE WRAP ===== */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== SECTIONS / DETAILS ===== */
.details-section {
  padding: 2.5rem 1rem;
  border-bottom: 1px solid #222;
}
.details-section h2 {
  color: #fff;
  margin-top: 0;
}

details {
  background: #1a1a1a;
  padding: 1.2rem 1.5rem;
  border-radius: 14px;
  margin: 1.2rem 0;
  border: 1px solid #222;
  box-shadow: 0 0 10px rgba(0,0,0,.4);
  color: #ddd;
}
summary {
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  cursor: pointer;
  list-style: none;
  margin-bottom: .6rem;
  transition: color .3s ease;
}
summary::-webkit-details-marker { display: none; }
summary::before {
  content: "▼ ";
  color: #888;
  font-size: .9rem;
  transition: transform .3s ease, color .3s ease;
}
details[open] summary::before {
  transform: rotate(180deg);
  color: #fff;
}
details:hover {
  border-color: #333;
  box-shadow: 0 0 16px rgba(255,255,255,.05);
}
details[open] { background: #161616; }

.brand-list,
.gear-list,
.flow {
  margin: 0;
  padding-left: 1.2rem;
  list-style: none;
}
.brand-list li,
.gear-list li,
.flow li {
  margin-bottom: .45rem;
  line-height: 1.6;
  color: #ccc;
  position: relative;
  padding-left: 1rem;
}
.brand-list li::before,
.gear-list li::before,
.flow li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #888;
}
.flow { counter-reset: step; }
.flow li::before {
  content: counter(step) ".";
  counter-increment: step;
  color: #999;
  font-weight: 600;
}

/* ===== CONTACT ===== */
.contact {
  text-align: center;
  padding: 4rem 2rem;
}
.contact h1 {
  color: #fff;
  margin-bottom: .5rem;
}
.contact > p:first-of-type {
  max-width: 1000px;
  margin: 0 auto 0;
  color: #ccc;
}
.zone-info {
  color: #aaa;
  opacity: .7;
  font-size: .95rem;
  margin-top: 0;
}
.zone-info strong { color: #ccc; opacity: .9; }

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  margin: 1.5rem auto 2rem;
}
.contact-info a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.25rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  color: #ddd;
  transition: background .3s ease, border-color .3s ease, transform .2s ease;
}
.contact-info a:hover {
  background: #222;
  border-color: #333;
  transform: translateY(-1px);
}
.contact-info a img.icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
  filter: brightness(.85);
  transition: filter .3s ease;
}
.contact-info a:hover img.icon { filter: brightness(1); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #eee;
  padding: .9rem 1rem;
  border-radius: 12px;
  font: inherit;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #777; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #444;
  box-shadow: 0 0 0 3px rgba(255,255,255,.05);
}
.contact-form button {
  background: #2a2a2a;
  border: 1px solid #333;
  color: #fff;
  padding: .9rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background .3s ease, transform .2s ease, border-color .3s ease;
}
.contact-form button:hover {
  background: #333;
  border-color: #3a3a3a;
  transform: translateY(-1px);
}
.contact-form button.is-sending {
  opacity: .6;
  pointer-events: none;
}
.contact-privacy {
  margin-top: .6rem;
  color: #777;
  font-size: .9rem;
}
#formMsg {
  display: none;
  background: #122917;
  border: 1px solid #1f7a3b;
  color: #d8ffe6;
  padding: .75rem 1rem;
  border-radius: 10px;
  font-size: .9rem;
  text-align: left;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #222;
  font-size: .95rem;
  color: #777;
}
.footer-links {
  margin-bottom: .8rem;
  color: #999;
  font-size: .95rem;
  text-align: center;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
  margin: 0 .3rem;
  transition: color .3s ease, opacity .3s ease;
}
.footer-links a:hover { color: #fff; opacity: .95; }
.footer-links img { filter: brightness(.85); transition: filter .3s ease; }
.footer-links a:hover img { filter: brightness(1); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.4);
  z-index: 1000;
}
.whatsapp-float img { width: 55px; height: 55px; }

/* ===== GALLERY ===== */
.gallery {
  padding: 3rem 2rem;
  border-bottom: 1px solid #222;
  text-align: center;
}
.gallery h1 { color: #fff; margin: 0 0 .5rem; }
.gallery-sub { max-width: 720px; margin: 0 auto 2rem; color: #ccc; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 4 / 3;
  width: 100%;
  border: 1px solid #222;
  border-radius: 12px;
  background: #1a1a1a;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  padding: .9rem;
  color: #fff;
  text-align: left;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%);
}
.category-title,
.category-count { position: relative; z-index: 1; }
.category-title { font-weight: 700; margin: 0 0 .2rem; }
.category-count { font-size: .95rem; color: #bbb; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
  z-index: 2000;
}
.lightbox.open { display: flex; }
.lightbox-stage {
  margin: 0;
  text-align: center;
  max-width: 92vw;
  max-height: 80vh;
}
.lightbox-stage img {
  max-width: 92vw;
  max-height: 72vh;
  border-radius: 12px;
}
.lightbox-stage figcaption {
  margin-top: .6rem;
  color: #ccc;
  font-size: .95rem;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: #1d1d1d;
  color: #fff;
  border: 1px solid #333;
  border-radius: 10px;
  cursor: pointer;
  padding: .4rem .7rem;
  font-size: 1.4rem;
}
.lightbox-close {
  top: 16px;
  right: 16px;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  line-height: 1;
}
.lightbox-prev {
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: #bbb;
  font-size: .95rem;
  background: rgba(0,0,0,.35);
  padding: .2rem .6rem;
  border-radius: 8px;
}

/* ===== PACKAGE GRID (detalii) ===== */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.package-box {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 1.1rem 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,.25);
  font-size: .9rem;
}
.package-box h3 {
  margin: 0 0 .6rem;
  font-size: 1.02rem;
  color: #fff;
}
.package-box ul {
  list-style: none;
  padding: 0;
  margin: .6rem 0 0 0;
}
.package-box ul li {
  margin-bottom: .35rem;
  padding-left: 1rem;
  position: relative;
  color: #ccc;
}
.package-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #777;
}
.package-box details {
  margin-top: .75rem;
  padding: .7rem .8rem;
  border-radius: 10px;
  font-size: .85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .navbar ul { align-items: center; gap: 1.8rem; }
  .navbar .logo { display: flex; justify-content: center; }
  .navbar .logo img { width: 300px; height: auto; }
}
@media (max-width: 950px) {
  .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .category-grid { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .package-grid { grid-template-columns: 1fr; }
  .details-section { padding: 2.2rem 1.1rem; }
}
@media (max-width: 600px) {
  .package-card { width: 100%; max-width: 400px; }
  .hero { padding: 4rem 1.5rem 2.5rem; }
  .contact { padding: 3rem 1.5rem; }
  .gallery { padding: 2.5rem 1.5rem; }
  .lightbox-stage img { max-width: 94vw; max-height: 65vh; }
}
