:root {
  --primary: #965328;
  --primary-dark: #753d1d;
  --gold: #b78b4d;

  --dark: #1f1f1f;
  --text: #5d5d5d;
  --light-text: #777777;

  --white: #ffffff;
  --cream: #f8f5f1;
  --cream-2: #f2ede7;
  --border: #e9e3dc;

  --success: #25d366;

  --shadow: 0 18px 50px rgba(20, 20, 20, 0.07);

  --radius: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(92%, var(--container));
  margin: auto;
}

section {
  padding: 100px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.14;
  letter-spacing: -1.8px;
  margin-bottom: 20px;
}

.section-copy {
  max-width: 720px;
  color: var(--text);
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 12px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(150, 83, 40, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* HEADER */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav {
  height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--primary);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 17px;
}

.brand-text {
  line-height: 1.05;
}

.brand-text strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  letter-spacing: -0.4px;
}

.brand-text span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  color: #474747;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-cta {
  color: var(--white) !important;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  font-size: 21px;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 85px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(183, 139, 77, 0.13),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #fbf9f7 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 100px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(150, 83, 40, 0.08);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 75px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.hero h1 {
  max-width: 760px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 6.1vw, 78px);
  line-height: 1.02;
  letter-spacing: -3.6px;
}

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

.hero-text {
  max-width: 680px;
  margin-top: 26px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 36px;
  color: var(--light-text);
  font-size: 14px;
}

.hero-note span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-note span::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
}

.hero-card {
  position: relative;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-card-small {
  margin-bottom: 25px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quick-service {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.quick-service:last-child {
  border-bottom: none;
}

.quick-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--cream);
  color: var(--primary);
  font-size: 22px;
}

.quick-service h3 {
  margin-bottom: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.quick-service p {
  color: var(--light-text);
  font-size: 13px;
}

/* TRUST */

.trust-bar {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.trust-item {
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  color: var(--primary);
}

.trust-item span {
  color: var(--light-text);
  font-size: 13px;
}

/* SERVICES */

#services {
  background: var(--cream);
}

.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 55px;
}

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

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(150, 83, 40, 0.28);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 15px;
  background: var(--cream);
  color: var(--primary);
  font-size: 24px;
}

.service-card h3 {
  margin-bottom: 13px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  line-height: 1.3;
}

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

.service-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

/* WHY US */

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
  align-items: start;
}

.why-left {
  position: sticky;
  top: 120px;
}

.why-list {
  display: grid;
  gap: 10px;
}

.why-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 19px;
  padding: 27px;
  border-bottom: 1px solid var(--border);
}

.why-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.why-card h3 {
  margin-bottom: 7px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
}

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

/* PROCESS */

.process {
  background: var(--dark);
  color: var(--white);
}

.process .eyebrow {
  color: #d5a76f;
}

.process .section-copy {
  color: #bcbcbc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.process-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.process-step {
  margin-bottom: 55px;
  color: #d5a76f;
  font-size: 14px;
  font-weight: 800;
}

.process-card h3 {
  margin-bottom: 13px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.process-card p {
  color: #bbbbbb;
  font-size: 15px;
}

/* REVIEWS */

.reviews {
  background: var(--cream);
}

.reviews-head {
  text-align: center;
}

.reviews-head .section-title,
.reviews-head .section-copy {
  margin-left: auto;
  margin-right: auto;
}

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

.review-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.stars {
  margin-bottom: 18px;
  color: #e5a52b;
  letter-spacing: 2px;
}

.review-card blockquote {
  min-height: 175px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.review-person {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.review-person strong {
  display: block;
  font-size: 15px;
}

.review-person span {
  color: var(--light-text);
  font-size: 13px;
}

/* CTA */

.cta-section {
  padding: 90px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  padding: 60px;
  border-radius: 30px;
  background: var(--primary);
  color: var(--white);
}

.cta-box h2 {
  max-width: 690px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
}

.cta-box p {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

/* FOOTER */

footer {
  padding: 70px 0 25px;
  background: #181818;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  gap: 75px;
}

.footer-description {
  max-width: 410px;
  margin-top: 20px;
  color: #a9a9a9;
  font-size: 14px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 11px;
  color: #a9a9a9;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #333;
  border-radius: 9px;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid #2e2e2e;
  color: #777;
  font-size: 13px;
}

/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.3);
  font-size: 26px;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 4% 25px;
    background: var(--white);
  }

  .nav-links.active {
    display: flex;
  }

  .hero-grid,
  .why-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

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

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

  .why-left {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  section {
    padding: 65px 0;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .services-grid,
  .reviews-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/* =========================
   SERVICES DROPDOWN
========================= */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;

  padding: 0;

  border: 0;
  background: transparent;

  color: #474747;

  font-family: inherit;
  font-size: 15px;
  font-weight: 600;

  cursor: pointer;
}

.nav-dropdown-btn span {
  font-size: 13px;

  transition: transform 0.25s ease;
}

.nav-dropdown-menu {
  position: absolute;

  top: calc(100% + 20px);
  left: 50%;

  width: 310px;

  padding: 10px;

  border: 1px solid var(--border);
  border-radius: 16px;

  background: var(--white);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);

  opacity: 0;
  visibility: hidden;

  transform:
    translateX(-50%)
    translateY(8px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.nav-dropdown-menu::before {
  content: "";

  position: absolute;

  top: -20px;
  left: 0;

  width: 100%;
  height: 20px;
}

.nav-dropdown-menu a {
  display: block;

  padding: 14px 15px;

  border-radius: 10px;

  color: var(--dark) !important;

  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover {
  background: var(--cream);
  color: var(--primary) !important;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform:
    translateX(-50%)
    translateY(0);
}

.nav-dropdown:hover .nav-dropdown-btn span {
  transform: rotate(180deg);
}


/* MOBILE DROPDOWN */

@media (max-width: 980px) {

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-btn {
    width: 100%;

    justify-content: space-between;

    padding: 13px 0;
  }

  .nav-dropdown-menu {
    position: static;

    width: 100%;

    margin: 0;
    padding: 5px 0 8px 14px;

    border: 0;
    border-radius: 0;

    box-shadow: none;

    background: transparent;

    opacity: 1;
    visibility: visible;

    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 0;

    color: var(--text) !important;
  }

}
