:root {
  --hhq-black: #191716;
  --hhq-gold: #E6AF2E;
  --hhq-linen: #E0E2DB;
  --hhq-indigo: #3D348B;
  --hhq-beige: #BEB7A4;
  --hhq-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--hhq-linen);
  color: var(--hhq-black);
}

/* NAVBAR */
.nav {
  background: var(--hhq-black);
  padding: 10px 0;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 140px;
}

.nav {
  background: var(--hhq-black);
  padding: 5px 0;
}

.nav-right a {
  color: var(--hhq-white);
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

.nav-cta {
  background: var(--hhq-gold);
  color: var(--hhq-black) !important;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 600;
}

/* HERO */
.hero {
  background: linear-gradient(
    135deg,
    var(--hhq-black) 0%,
    #2a2523 55%,
    var(--hhq-black) 100%
  );
  color: var(--hhq-white);
  padding: 70px 20px;
  text-align: center;
}

.hero-container {
  max-width: 850px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin: 0 0 20px;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 auto 32px;
  max-width: 680px;
  color: var(--hhq-linen);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* BUTTONS */
.btn {
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.primary {
  background: var(--hhq-gold);
  color: var(--hhq-black);
}

.secondary {
  border: 2px solid var(--hhq-gold);
  color: var(--hhq-white);
  background: transparent;
}

/* BUTTON HOVER */
.btn {
  transition: all 0.2s ease;
}

.primary:hover {
  background: #d99d1f; /* slightly darker gold */
}

.secondary:hover {
  background: var(--hhq-gold);
  color: var(--hhq-black);
}

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

/* SERVICES */
.services {
  padding: 50px 20px;
  background: var(--hhq-white);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.services h2 {
  margin-bottom: 30px;
  font-size: 1.6rem;
}

.section-intro {
  text-align: left;
  margin-bottom: 35px;
  color: #555;
}

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

.service-card {
  background: var(--hhq-white);
  padding: 26px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid transparent;

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  border-top-color: var(--hhq-gold);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.service-card p {
  line-height: 1.5;
  margin-bottom: 0;
}

.service-price {
  margin-top: 15px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--hhq-gold);
}



/* SPLIT SECTION */
.split-section {
  padding: 50px 20px;
  background: var(--hhq-linen);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.split-card {
  background: var(--hhq-white);
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.split-card h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

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

.split-card li {
  margin-bottom: 10px;
}

/* HOW IT WORKS */
.how-it-works h2 {
  text-align: center;
  margin-bottom: 8px;
}

.how-it-works .section-intro {
  text-align: center;
  margin-bottom: 30px;
}

.how-it-works {
  padding: 40px 20px;
  background: var(--hhq-white);
}

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

.step-card {
  background: var(--hhq-black);
  color: var(--hhq-white);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hhq-gold);
  color: var(--hhq-black);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card h3 {
  margin: 10px 0;
}

.step-card p {
  margin-bottom: 0;
  line-height: 1.5;
}

/* CONTACT */
.contact {
  padding: 40px 20px;
  background: var(--hhq-linen);
}

.contact h2 {
  margin-bottom: 8px;
}

.contact .section-intro {
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--hhq-gold);
}

.submit-btn {
  margin-top: 10px;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: var(--hhq-gold);
  color: var(--hhq-black);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}
.contact-form select {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: inherit;
  background: white;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--hhq-gold);
}

#other-service {
  display: none;
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 999;
}

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

/* FOOTER */
.footer {
  background: var(--hhq-black);
  color: var(--hhq-white);
  text-align: center;
  padding: 25px 20px;
}

.footer p {
  margin: 0;
}

/* THANK YOU PAGE */
.thank-you .hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* MOBILE FIXES */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .nav-container {
    flex-direction: column;
    gap: 12px;
    padding: 10px 20px;
  }

  .logo {
    height: 90px;
    max-width: 100%;
    object-fit: contain;
  }

  .nav-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-right a {
    margin-left: 0;
    font-size: 0.95rem;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 1rem;
  }

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

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .services-grid,
  .split-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .services,
  .split-section,
  .how-it-works,
  .contact {
    padding: 50px 20px;
  }

  .service-card,
  .split-card,
  .step-card {
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select,
  .submit-btn {
    width: 100%;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    padding: 12px 16px;
  }
}