* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #0e1a1f;
  color: #fff;
  line-height: 1.6;
}

/* FLOATING WHATSAPP */
/* ================= FLOATING WHATSAPP (SOFT GLOW) ================= */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 62px;
  height: 62px;
  background: #F1F9EC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  /* softer whitish-green glow */
  box-shadow:
    0 0 12px rgba(220,255,235,0.9),
    0 0 28px rgba(180,255,210,0.6),
    0 0 55px rgba(120,255,180,0.35);

  animation: whatsappSoftPulse 3s infinite ease-in-out;
}

.whatsapp-float img {
  width: 26px;
}

/* softer, elegant pulse */
@keyframes whatsappSoftPulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 12px rgba(220,255,235,0.9),
      0 0 28px rgba(180,255,210,0.6),
      0 0 55px rgba(120,255,180,0.35);
  }

  50% {
    transform: scale(1.05);
    box-shadow:
      0 0 18px rgba(235,255,245,1),
      0 0 40px rgba(190,255,220,0.75),
      0 0 75px rgba(150,255,200,0.45);
  }

  100% {
    transform: scale(1);
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("hero-desktop.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* ===== VIGNETTE + DARK OVERLAY ===== */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.55) 55%,
      rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  padding: 44px 56px;
  border-radius: 24px;
  backdrop-filter: blur(3px);
  max-width: 760px;
}

/* ===== LOGO ===== */
.logo {
  width: 190px;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 30px rgba(207,164,74,0.7));
}

/* ===== TEXT ===== */
.hero h1 {
  font-size: 3.2rem;
  color: #ffffff;
  letter-spacing: 2px;
  text-shadow:
    0 4px 16px rgba(0,0,0,0.95),
    0 0 6px rgba(0,0,0,0.7);
}

.tagline {
  margin-top: 12px;
  font-size: 1.35rem;
  color: #e3b75c;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.sub {
  margin-top: 8px;
  font-size: 1.1rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.95);
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 32px;
  background: #cfa44a;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(207,164,74,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn img {
  width: 18px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 26px rgba(207,164,74,0.65);
}

.btn-whatsapp {
  background: #25D366;
  box-shadow: 0 0 18px rgba(37,211,102,0.55);
}

/* ===== MOBILE BACKGROUND SWITCH ===== */
@media (max-width: 768px) {
  .hero {
    background: url("hero-mobile.jpg") center / cover no-repeat;
  }

  .hero-content {
    padding: 32px 22px;
  }

  .logo {
    width: 150px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}




.logo {
  width: 200px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 28px rgba(207,164,74,0.6));
}

.hero h1 {
  font-size: 3.1rem;
  letter-spacing: 2px;
}

.tagline {
  color: #cfa44a;
  font-size: 1.3rem;
  margin: 10px 0;
}

.sub {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 30px;
  background: #cfa44a;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(207,164,74,0.4);
  transition: transform 0.3s ease;
}

.btn img {
  width: 18px;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  box-shadow: 0 0 15px rgba(37,211,102,0.5);
}

/* INSTAGRAM */
.insta-link img {
  width: 28px;
  margin-top: 15px;
}

/* SECTIONS */
.section {
  padding: 70px 20px;
  text-align: center;
}

.section h2 {
  color: #cfa44a;
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.dark {
  background: #000;
}

/* SERVICES */
.services-list {
  max-width: 650px;
  margin: auto;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 22px 0;
  font-size: 1.25rem;
}

.service-item img {
  width: 60px;
  filter: drop-shadow(0 0 12px rgba(207,164,74,0.4));
}

/* GALLERY */
.gallery-note {
  margin-bottom: 20px;
  opacity: 0.8;
}

.gallery-placeholder {
  max-width: 600px;
  margin: auto;
  padding: 40px;
  border: 2px dashed rgba(207,164,74,0.4);
  color: #cfa44a;
  border-radius: 12px;
}

/* FOOTER */
footer {
  background: #000;
  text-align: center;
  padding: 18px;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
/* ===== SERVICES GRID ===== */
.services-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

/* ===== SERVICE CARD ===== */
.service-card {
  background: #0e1a1f;
  border-radius: 18px;
  padding: 34px 20px;
  text-align: center;
  box-shadow: 0 0 18px rgba(207,164,74,0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 26px rgba(207,164,74,0.35);
}

/* ===== ROUND ICON HOLDER ===== */
.icon-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid rgba(207,164,74,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(207,164,74,0.35);
  background: radial-gradient(circle, rgba(207,164,74,0.08), transparent 65%);
}

/* ===== ICON ===== */
.icon-wrap img {
  width: 100px;
}

/* ===== SERVICE TEXT ===== */
.service-card span {
  font-size: 1.12rem;
  font-weight: 500;
}
/* ===== HAMBURGER MENU ===== */
.menu-toggle {
  position: fixed;
  top: 22px;
  left: 22px;
  font-size: 28px;
  cursor: pointer;
  z-index: 10000;
  color: #cfa44a;
  background: rgba(0,0,0,0.4);
  padding: 10px 14px;
  border-radius: 10px;
}

/* ===== SIDE MENU ===== */
.side-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100vh;
  background: #000;
  padding: 30px 20px;
  transition: left 0.3s ease;
  z-index: 10001;
}

.side-menu.open {
  left: 0;
}

.close-menu {
  font-size: 28px;
  color: #cfa44a;
  cursor: pointer;
  display: block;
  text-align: right;
}

.menu-link {
  margin-top: 40px;
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid #cfa44a;
  color: #cfa44a;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 10px;
}
