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

:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --steel: #2c2c2c;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #f5f5f0;
  --gray: #888;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 3rem;
  background: rgba(10,10,10,0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(201,168,76,0.35);
  transition: text-shadow 0.3s;
}
.logo:hover { text-shadow: 0 0 28px rgba(201,168,76,0.6); }

.logo-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: box-shadow 0.3s, transform 0.3s;
}
.logo:hover .logo-circle {
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 0 2px var(--gold);
  transform: translateY(-2px);
}

.logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 5rem 4rem;
  position: relative;
  background:
    linear-gradient(160deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23222'/%3E%3Cstop offset='1' stop-color='%23111'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='800' height='600'/%3E%3C/svg%3E") center/cover;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-gif-frame {
  position: relative;
  padding: 6px;
  background: linear-gradient(135deg, var(--gold), transparent 60%);
  box-shadow: 0 0 60px rgba(201,168,76,0.18), 0 8px 40px rgba(0,0,0,0.6);
}

.hero-gif-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(201,168,76,0.35);
  pointer-events: none;
}

.hero-gif {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: brightness(0.92) contrast(1.05);
}

.hero-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-price {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  background: rgba(201,168,76,0.08);
  border: 1.5px solid var(--gold);
  padding: 1rem 1.8rem;
  font-family: 'Georgia', serif !important;
  color: var(--white) !important;
}
.hero-price strong {
  font-size: 3.2rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
.hero-price span {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: #bbb !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
}
.hero-price span em {
  display: block;
  font-style: normal;
  color: var(--gold) !important;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  text-transform: none;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-tag {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-family: 'Arial', sans-serif;
  font-size: 1.05rem;
  color: #bbb;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 7rem 2rem 4rem;
    gap: 3rem;
  }
  .hero-content { align-items: center; }
  .hero-btns { justify-content: center; }
  .hero-gif { max-width: 360px; }
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* DIVIDER */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

/* SECTION BASE */
section { padding: 6rem 2rem; }
.section-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.section-sub {
  font-family: 'Arial', sans-serif;
  color: #b0b0b0;
  text-align: center;
  max-width: 540px;
  margin: 0 auto 4rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* WHY US */
.features {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.features::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  text-align: center;
  padding: 2.8rem 1.8rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.1);
  border-top: 2px solid rgba(201,168,76,0.25);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.04), transparent);
  transition: left 0.5s ease;
}
.feature-card:hover::before { left: 100%; }
.feature-card:hover {
  border-color: rgba(201,168,76,0.5);
  border-top-color: var(--gold);
  transform: translateY(-6px);
  background: rgba(201,168,76,0.04);
}
.feature-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  font-size: 1.4rem;
  background: rgba(201,168,76,0.06);
  transition: background 0.3s, border-color 0.3s;
}
.feature-card:hover .feature-icon {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.feature-card p {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.8;
}

/* SERVICES */
.services { background: var(--black); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.services-grid--single {
  max-width: 380px;
}

.service-card {
  background: var(--charcoal);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}
.service-card:hover { transform: translateY(-4px); }
.service-card .price {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 400;
}
.service-card .price span {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  color: var(--gray);
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0.5rem 0 1rem;
}
.service-card ul {
  list-style: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  color: #aaa;
}
.service-card ul li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* PROCESS */
.process { background: var(--steel); }
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.step {
  flex: 1 1 200px;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
}
.step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--white); }
.step p { font-family: 'Arial', sans-serif; font-size: 0.9rem; color: #b0b0b0; line-height: 1.7; }

/* TESTIMONIALS */
.testimonials { background: var(--charcoal); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial {
  background: var(--steel);
  padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -0.5rem; left: 1rem;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial p {
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  color: #d0d0d0;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.testimonial .author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.testimonial .role {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: #999;
}
.stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.5rem; }

/* SERVICE AREA MAP */
.service-area { background: var(--steel); }

.map-wrapper {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

#service-map {
  width: 100%;
  height: 460px;
  background: var(--charcoal);
}

.map-legend {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  background: var(--charcoal);
  padding: 0.9rem 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.12);
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  color: #aaa;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--black);
  flex-shrink: 0;
}

.legend-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(201,168,76,0.1);
  flex-shrink: 0;
}


/* CONTACT */
.contact { background: var(--black); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 700px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.contact-info p {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-info p strong { color: var(--white); }

form { display: flex; flex-direction: column; gap: 1rem; }
form input, form textarea, form select {
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  padding: 0.9rem 1.1rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
form input:focus, form textarea:focus, form select:focus {
  border-color: var(--gold);
}
form textarea { resize: vertical; min-height: 130px; }
form select option { background: var(--charcoal); }
form .btn { border: none; cursor: pointer; width: 100%; justify-content: center; }

/* FOOTER */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.15);
  text-align: center;
  padding: 2.5rem 1rem;
}
footer .logo { font-size: 1.1rem; margin-bottom: 0.75rem; display: block; }
footer p {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: var(--gray);
}

/* RESPONSIVE NAV */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.4rem; }
  nav { gap: 0; }
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.from-left {
  transform: translateX(-50px);
}
.reveal.from-right {
  transform: translateX(50px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.divider {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s ease 0.2s;
}
.divider.visible {
  transform: scaleX(1);
}
