/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111;
  overflow-x: hidden;
}

/* ANCHOR SCROLL FIX */
section {
  scroll-margin-top: 110px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 80px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* LOGO */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* NAV LINKS */
nav {
  display: flex;
  align-items: center;
}

nav a {
  color: #fff;
  margin-left: 34px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease, opacity 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

nav a:hover {
  color: gold;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 80px 80px 100px;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28)),
    url('https://images.unsplash.com/photo-1529655683826-aba9b3e77383') center/cover no-repeat;
}

.hero-content {
  max-width: 620px;
  color: #fff;
}

.tag {
  color: gold;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.7;
  max-width: 580px;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 26px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.primary {
  background: gold;
  color: #111;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.18);
}

.primary:hover {
  background: #e0be00;
  transform: translateY(-2px);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.secondary:hover {
  background: #fff;
  color: #111;
  transform: translateY(-2px);
}

/* TRUST BAR */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 22px 80px;
  background: #111;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

/* SERVICES */
.services {
  padding: 90px 80px;
  text-align: center;
  background: #f7f7f7;
}

.services h2 {
  font-size: 38px;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  color: #111;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 42px;
}

.service {
  background: #fff;
  padding: 30px 26px;
  text-align: left;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.service h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #111;
}

.service p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* ABOUT */
.about {
  padding: 90px 80px;
  background: #fff;
}

.about-text {
  max-width: 900px;
  margin: 0 auto;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 18px;
  color: #111;
}

.about p {
  color: #444;
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 22px;
}

.about ul {
  list-style: none;
  padding-left: 0;
}

.about li {
  margin-bottom: 12px;
  color: #222;
  font-size: 17px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 100px 20px;
  background: gold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  margin-bottom: 12px;
  color: #111;
}

.cta p {
  margin-bottom: 24px;
  color: #111;
  font-size: 20px;
  line-height: 1.6;
  max-width: 760px;
}

.cta .btn.primary {
  background: #111;
  color: #fff;
  box-shadow: none;
}

.cta .btn.primary:hover {
  background: #222;
}

/* CONTACT */
.contact {
  padding: 90px 20px;
  text-align: center;
  background: #050505;
  color: #fff;
}

.contact h2 {
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
}

.contact p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* MODAL */
#serviceModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  justify-content: center;
  align-items: center;
  padding: 24px;
  z-index: 2000;
}

.modal-box {
  background: #fff;
  padding: 42px 34px;
  max-width: 720px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.modal-box span {
  position: absolute;
  top: 14px;
  right: 18px;
  cursor: pointer;
  font-size: 28px;
  color: #111;
  line-height: 1;
}

#modal-text h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 14px;
  font-size: 32px;
}

#modal-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
}

#modal-text ul {
  padding-left: 20px;
}

#modal-text li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #333;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 26px 20px;
  background: #000;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.3px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero h1 {
    font-size: 58px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
  }

  .logo {
    font-size: 22px;
  }

  nav a {
    margin-left: 16px;
    font-size: 14px;
  }

  .hero {
    padding: 120px 20px 70px 20px;
    background-position: center;
  }

  .hero h1 {
    font-size: 44px;
  }

  .desc {
    font-size: 16px;
  }

  .services,
  .about {
    padding: 70px 20px;
  }

  .service-grid,
  .trust {
    grid-template-columns: 1fr;
  }

  .cta h2,
  .contact h2 {
    font-size: 36px;
  }

  .cta p,
  .contact p,
  .about p,
  .about li {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .navbar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  nav a {
    margin-left: 0;
  }

  .hero {
    padding-top: 150px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
