* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: #0d0d0d;
  color: #fff;
  overflow-x: hidden;
}

.loader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader img {
  width: 170px;
  animation: pulseLogo 1s ease infinite alternate;
}

@keyframes pulseLogo {
  from { transform: scale(0.95); opacity: .7; }
  to { transform: scale(1.05); opacity: 1; }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212,175,55,.25);
  transition: .3s;
}

.header.scrolled {
  background: rgba(5,5,5,.96);
}

.nav-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-box img {
  height: 70px;
  transition: .3s;
}

.header.scrolled .logo-box img {
  height: 58px;
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: .3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-btn,
.menu-btn {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 10px 14px;
  border-radius: 30px;
  font-weight: 800;
  cursor: pointer;
}

.menu-btn {
  display: none;
}

.nav-call {
  background: #d4af37;
  color: #000;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 700;
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/hero.jpg") center/cover no-repeat;
  animation: heroZoom 16s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.55), rgba(0,0,0,.25));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero-small {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-text {
  max-width: 720px;
  font-size: 22px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.hero-badges span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(212,175,55,.3);
  padding: 10px 16px;
  border-radius: 30px;
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 40px;
  font-weight: 800;
  margin-right: 12px;
  transition: .3s;
}

.btn i { margin-right: 8px; }

.btn-gold {
  background: #d4af37;
  color: #000;
}

.btn-outline {
  border: 2px solid #d4af37;
  color: #fff;
}

.btn:hover {
  transform: translateY(-4px);
}

.btn-outline:hover {
  background: #d4af37;
  color: #000;
}

.stats {
  padding: 40px 8%;
  background: #080808;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(212,175,55,.25);
  border-bottom: 1px solid rgba(212,175,55,.25);
}

.stat {
  text-align: center;
  background: rgba(255,255,255,.04);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,.25);
}

.stat h3 {
  color: #d4af37;
  font-size: 34px;
}

.stat p {
  color: #ccc;
}

.services,
.about,
.why-us,
.gallery,
.contact,
.area {
  padding: 100px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title p,
.small-title {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-title h2,
.about h2 {
  font-size: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card,
.why-card,
.simple-contact-box {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  padding: 38px 25px;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,.25);
  transition: .35s;
}

.service-card:hover,
.why-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 15px 35px rgba(212,175,55,.15);
}

.service-card i,
.why-card i {
  font-size: 42px;
  color: #d4af37;
  margin-bottom: 22px;
}

.service-card h3,
.why-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.service-card p,
.why-card p,
.about-text p,
.about-box p,
.area-content p {
  color: #ccc;
  line-height: 1.7;
}

.about {
  background: #111;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.about-box {
  display: grid;
  gap: 18px;
}

.about-box div {
  background: rgba(255,255,255,.04);
  padding: 25px;
  border-left: 4px solid #d4af37;
  border-radius: 12px;
}

.about-box h3 {
  color: #d4af37;
  margin-bottom: 8px;
}

.why-us {
  background: #0d0d0d;
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image img {
  width: 100%;
  border-radius: 22px;
  border: 2px solid rgba(212,175,55,.35);
  transition: .4s;
}

.why-image img:hover {
  transform: scale(1.03);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.area {
  background: #111;
  text-align: center;
}

.area-content {
  max-width: 750px;
  margin: auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 25px;
  padding: 55px 30px;
}

.area-content i {
  font-size: 50px;
  color: #d4af37;
  margin-bottom: 20px;
}

.area-content h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.gallery {
  background: #0d0d0d;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,.3);
  cursor: pointer;
  transition: .3s;
}

.gallery-img:hover {
  transform: scale(1.04);
  border-color: #d4af37;
}

.cta {
  position: relative;
  padding: 110px 8%;
  text-align: center;
  background: url("images/hero.jpg") center/cover no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: 44px;
  margin-bottom: 15px;
}

.cta p {
  color: #ddd;
  font-size: 20px;
  margin-bottom: 30px;
}

.contact {
  background: #111;
}

.simple-contact-box {
  max-width: 760px;
  margin: auto;
  text-align: center;
  padding: 45px 30px;
}

.simple-contact-box p {
  font-size: 20px;
  margin-bottom: 18px;
}

.simple-contact-box i {
  color: #d4af37;
  margin-right: 10px;
}

.simple-contact-buttons {
  margin-top: 30px;
}

.whatsapp-float,
.call-float,
.top-btn {
  position: fixed;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  z-index: 999;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.whatsapp-float {
  right: 25px;
  bottom: 25px;
  background: #25d366;
  animation: pulse 2s infinite;
}

.call-float {
  right: 25px;
  bottom: 95px;
  background: #d4af37;
  color: #000;
}

.top-btn {
  left: 25px;
  bottom: 25px;
  background: #d4af37;
  color: #000;
  display: none;
}

.top-btn.show {
  display: flex;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 18px;
}

.lightbox button {
  position: absolute;
  background: #d4af37;
  color: #000;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

.lightbox .close { top: 25px; right: 25px; }
.lightbox .prev { left: 25px; }
.lightbox .next { right: 25px; }

footer {
  text-align: center;
  padding: 45px 8%;
  background: #050505;
  color: #aaa;
  border-top: 1px solid rgba(212,175,55,.3);
}

footer img {
  width: 120px;
  margin-bottom: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: .8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width: 1050px) {
  .service-grid,
  .gallery-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .about,
  .why-container {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 52px;
  }
}

@media(max-width: 760px) {
  .nav-menu {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #080808;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 25px;
    border-bottom: 1px solid rgba(212,175,55,.25);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .nav-call {
    display: none;
  }

  .logo-box img {
    height: 58px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero {
    min-height: 100vh;
  }

  .service-grid,
  .gallery-grid,
  .stats,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2,
  .about h2,
  .area-content h2,
  .cta h2 {
    font-size: 30px;
  }

  .btn {
    display: inline-block;
    margin-bottom: 12px;
  }

  .call-float {
    bottom: 90px;
  }
}