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

:root {
  --bg: #0b0f17;
  --bg-soft: #121826;
  --card: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #bcc5d6;
  --gold: #d9b36c;
  --gold-light: #f3d7a2;
  --green: #1db954;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(217, 179, 108, 0.18), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(76, 110, 245, 0.12), transparent 22%),
    linear-gradient(180deg, #0a0d14 0%, #101725 50%, #090c13 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(7, 10, 16, 0.75);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.menu a {
  color: var(--muted);
  font-size: 15px;
  transition: 0.3s ease;
}

.menu a:hover {
  color: #ffffff;
}

.nav-btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #121212 !important;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 90px 0 70px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04), transparent 20%),
    radial-gradient(circle at 80% 20%, rgba(217, 179, 108, 0.08), transparent 20%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-light);
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -1.6px;
  margin-bottom: 20px;
}

.hero-left p {
  max-width: 700px;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #141414;
  box-shadow: 0 16px 34px rgba(217, 179, 108, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: #ffffff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-box {
  padding: 18px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.stat-box h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.stat-box p {
  font-size: 14px;
  color: var(--muted);
}

.hero-right {
  position: relative;
  min-height: 620px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.card-1 {
  width: 78%;
  top: 30px;
  left: 0;
  transform: rotate(-7deg);
}

.card-2 {
  width: 62%;
  right: 0;
  bottom: 60px;
  transform: rotate(8deg);
}

.floating-box {
  position: absolute;
  top: 30px;
  right: 18px;
  width: 240px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(14, 20, 31, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.floating-box span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-light);
  font-size: 12px;
  margin-bottom: 12px;
}

.floating-box h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.floating-box p {
  font-size: 14px;
  color: var(--muted);
}

.section {
  padding: 90px 0;
}

.dark-section {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  text-align: center;
  margin-bottom: 34px;
}

.small-title {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card h3 {
  font-size: 24px;
  margin: 18px 0 8px;
}

.product-card p {
  font-size: 15px;
  color: var(--muted);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.area-tags span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: #ffffff;
}

.inspection-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px;
  text-align: center;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.inspection-box h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.inspection-box p {
  font-size: 17px;
  color: var(--muted);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.faq-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--muted);
}

.cta-section {
  padding-top: 20px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(217, 179, 108, 0.18), transparent 24%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.cta-box h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 10px;
}

.cta-box p {
  color: var(--muted);
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  margin-top: 60px;
  padding: 30px 0 50px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.floating-call,
.floating-whatsapp {
  position: fixed;
  right: 20px;
  z-index: 999;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
}

.floating-call {
  bottom: 78px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111111;
}

.floating-whatsapp {
  bottom: 20px;
  background: var(--green);
  color: #ffffff;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-right {
    min-height: 520px;
  }
}

@media (max-width: 768px) {
  .menu {
    gap: 12px;
  }

  .menu a {
    font-size: 14px;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-stats,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    min-height: 420px;
  }

  .card-1 {
    width: 82%;
  }

  .card-2 {
    width: 58%;
  }

  .floating-box {
    width: 200px;
    top: 20px;
    right: 10px;
  }

  .cta-box {
    padding: 24px;
  }

  .floating-call,
  .floating-whatsapp {
    right: 14px;
  }
}


/* Crawlable internal location links */
.area-tags a.area-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: #ffffff;
  text-decoration: none;
  transition: 0.25s ease;
}

.area-tags a.area-link:hover,
.area-tags a.area-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--gold-light);
  outline: none;
}

.site-location-links .area-tags {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
