:root {
  --bg: #0f0f10;
  --bg-2: #18191c;
  --card: #1f2024;
  --gold: #d4a64f;
  --gold-2: #b88733;
  --text: #f5f5f5;
  --muted: #c9c9c9;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)),
    url("https://images.unsplash.com/photo-1622286342621-4bd786c2447c?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 166, 79, 0.14), transparent 35%);
}

.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: white;
  font-weight: 500;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  font-size: 1.7rem;
  cursor: pointer;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 120px 0 90px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 1.8px;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #e8e8e8;
  font-size: 0.95rem;
}

.hero-trust span {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: #111;
}

.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.dark-btn {
  color: white;
  border-color: rgba(255,255,255,0.14);
}

.section {
  padding: 90px 0;
}

.section-dark {
  background: var(--bg-2);
}

.center {
  text-align: center;
}

.narrow {
  max-width: 720px;
  margin-inline: auto;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-text {
  color: var(--muted);
}

.intro-strip {
  margin-top: -50px;
  position: relative;
  z-index: 3;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.intro-card,
.highlight-box,
.service-card,
.review-card,
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.intro-card {
  padding: 28px;
}

.intro-card h3 {
  margin-bottom: 10px;
}

.intro-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.highlight-box {
  padding: 28px;
}

.highlight-box h3 {
  margin-bottom: 14px;
}

.highlight-box li {
  color: var(--muted);
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

.highlight-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  padding: 28px;
  position: relative;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.service-card span {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 800;
}

.featured {
  outline: 1px solid rgba(212, 166, 79, 0.35);
  transform: translateY(-6px);
}

.tag {
  display: inline-block;
  background: rgba(212, 166, 79, 0.12);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.gallery-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.cta-band {
  padding-top: 30px;
}

.cta-box {
  background: linear-gradient(135deg, #1a1b1f, #22242a);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
}

.reviews-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 28px;
}

.review-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.review-card h4 {
  color: var(--gold);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.contact-card {
  padding: 30px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-card strong {
  color: var(--text);
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer {
  background: #0a0b0d;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  background: #25d366;
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

@media (max-width: 980px) {
  .intro-grid,
  .cards,
  .reviews-grid,
  .gallery-grid,
  .split,
  .contact-wrapper,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 240px;
  }

  .cta-box {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 5;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 5%;
    background: rgba(19, 20, 23, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    width: 220px;
    display: none;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links.show {
    display: flex;
  }

  .hero-content {
    padding-top: 80px;
  }

  .section {
    padding: 72px 0;
  }
}