@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --navy: #0a2540;
  --navy-deep: #061828;
  --navy-mid: #0d2e50;
  --gold: #c8a45c;
  --gold-lt: #e0c47e;
  --gold-dk: #9e7530;
  --cream: #faf8f4;
  --light: #f2f0eb;
  --white: #ffffff;
  --body-clr: #1a1a1a;
  --muted: #4a4a4a;
  --border: rgba(200, 164, 92, 0.2);
  --nav-h: 100px;
  --r: 10px;
  --sh: 0 8px 40px rgba(10, 37, 64, 0.1);
  --sh-lg: 0 24px 72px rgba(10, 37, 64, 0.16);
}
span {
  color: #9e7530;
}
html {
  scroll-behavior: smooth;
  font-size: 17px;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--body-clr);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.75;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(6, 24, 40, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200, 164, 92, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.nav-brand-name {
  font-family: "Cormorant Garamond', Georgia, serif";
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1;
}
.nav-brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 164, 92, 0.55);
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(6, 24, 40, 0.98);
  border: 1px solid rgba(200, 164, 92, 0.15);
  border-radius: 8px;
  min-width: 220px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.78rem;
  color: white;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.2s;
  border-radius: 0;
}
.nav-dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(200, 164, 92, 0.07);
}
.nav-cta {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  font-family: "Poppins", sans-serif;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}
.mob-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.mob-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
}
.mob-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(6, 24, 40, 0.99);
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(200, 164, 92, 0.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mob-menu.show-menu {
  display: block;
}
.mob-menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(200, 164, 92, 0.07);
  font-size: 0.95rem;
}
.mob-menu a:last-child {
  border-bottom: none;
  color: var(--gold);
  font-weight: 600;
}
.mob-menu .mob-sub {
  padding-left: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── COMMON ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.25rem;
}
.pt-nav {
  padding-top: var(--nav-h);
}
.section-tag {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.85rem;
  font-family: "Poppins", sans-serif;
}
.section-title {
  font-family: "Cormorant Garamond', Georgia, serif";
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.13;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dk);
}
.section-sub {
  color: black;
  font-size: 15px;
  line-height: 1.85;
  /* font-weight: 300; */
  /* max-width: 590px; */
}
.gold-line {
  width: 54px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1.3rem 0;
}
.gold-line.cx {
  margin: 1.3rem auto;
}
.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.9rem 2.1rem;
  border-radius: var(--r);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: "Poppins", sans-serif;
}
.btn-g:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}
.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 2px solid var(--gold);
  color: var(--navy);
  padding: 0.87rem 2.1rem;
  border-radius: var(--r);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  font-family: "Poppins", sans-serif;
  transition: all 0.25s;
}
.btn-o:hover {
  background: rgba(200, 164, 92, 0.09);
  transform: translateY(-2px);
}
.btn-o.w {
  color: #fff;
  border-color: rgba(200, 164, 92, 0.5);
}
.btn-o.w:hover {
  background: rgba(200, 164, 92, 0.12);
}

/* ── PAGE HERO (inner pages) ── */
.ph {
  position: relative;
  overflow: hidden;
}
.ph-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(6, 24, 40, 0.95) 0%,
    rgba(10, 37, 64, 0.85) 60%,
    rgba(10, 37, 64, 0.6) 100%
  );
}
.ph-inner {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5.5rem;
}
.ph h1 {
  font-family: "Cormorant Garamond', Georgia, serif";
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 1.2rem;
}
.ph h1 em {
  color: var(--gold);
  font-style: italic;
}
.ph p {
  color: white;
  font-size: 1.08rem;
  max-width: 560px;
  line-height: 1.85;
  font-weight: 300;
}
.ph::after {
  content: "";
  display: block;
  height: 65px;
  background: var(--cream);
  clip-path: ellipse(58% 100% at 50% 100%);
}
.ph.bg-light::after {
  background: var(--light);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--navy-deep);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(200, 164, 92, 0.1);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumb-inner a {
  color: rgba(200, 164, 92, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-inner a:hover {
  color: var(--gold);
}
.breadcrumb-inner span {
  color: rgba(255, 255, 255, 0.25);
}

/* ── CARDS / SHARED ── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh);
  overflow: hidden;
}

/* ── STEPS ── */
.steps-grid {
  margin-top: 2.5rem;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child {
  border-bottom: none;
}
.step-num {
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond', Georgia, serif";
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.step h4 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.step p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── FAQ ── */
.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-q {
  padding: 1.35rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-family: "Poppins", sans-serif;
}
.faq-q::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-q.open::after {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 1.6rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.82;
}
.faq-a.open {
  padding: 0 1.6rem 1.35rem;
  max-height: 220px;
}

/* ── PRICING CARDS ── */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sh);
}
.price-card.featured {
  border-color: var(--gold);
}
.price-card-head {
  padding: 2.25rem;
  background: var(--navy);
}
.price-card.featured .price-card-head {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
}
.price-card-head h3 {
  font-family: "Cormorant Garamond', Georgia, serif";
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
}
.price-card-head p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.48);
}
.price-card-body {
  padding: 2.25rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.price-row:last-of-type {
  border-bottom: none;
}
.price-area {
  font-size: 0.95rem;
  color: var(--muted);
}
.price-fee {
  font-family: "Cormorant Garamond', Georgia, serif";
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-dk);
}
.price-note {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 1.1rem;
  background: var(--light);
  border-radius: 8px;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
  margin-top: 3rem;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.25rem;
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.06);
  position: relative;
  transition: all 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: "Cormorant Garamond', Georgia, serif";
  font-size: 5rem;
  color: rgba(200, 164, 92, 0.13);
  line-height: 1;
}
.testi-text {
  /* font-family: "Cormorant Garamond', Georgia, serif"; */
  font-size: 1.1rem;
  /* font-style: italic; */
  font-weight: 300;
  color: var(--navy);
  line-height: 1.72;
  margin-bottom: 1.6rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}
.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond', Georgia, serif";
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}
.testi-loc {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 6rem 0;
  text-align: center;
}
.cta-banner .section-sub {
  margin: 0 auto 2.25rem;
  text-align: center;
}
.cta-banner .section-title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1rem;
}
.cta-btns {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2.25rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: "Cormorant Garamond', Georgia, serif";
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.footer-brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 164, 92, 0.5);
  margin-bottom: 1.1rem;
  font-family: "Poppins", sans-serif;
}
.footer-desc {
  font-size: 0.85rem;
  color: white;
  line-height: 1.8;
  max-width: 285px;
}
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 164, 92, 0.7);
  margin-bottom: 1.35rem;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: white;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(200, 164, 92, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: white;
}

/* ── WA FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  z-index: 500;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.42);
  transition: transform 0.3s;
}
.wa-float:hover {
  transform: scale(1.1);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav {
    padding: 0 1.75rem;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .mob-btn {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  .container {
    padding: 0 1.25rem;
  }
  .ph-inner {
    padding: 4.5rem 0 4rem;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Logo */
.nav-brand {
  display: flex;
  align-items: center;
}
.nav-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .nav-logo {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .nav-logo {
    height: 52px;
  }
}
@media (max-width: 480px) {
  .nav-logo {
    height: 52px;
    width: 160px;
  }
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
@media (max-width: 1200px) {
  .nav-links {
    gap: 0.1rem;
  }
  .nav-links a {
    font-size: 0.68rem;
    padding: 0.45rem 0.6rem;
  }
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-call {
  display: none;
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.nav-call svg {
  width: 18px;
  height: 18px;
  fill: var(--navy-deep);
}
@media (max-width: 1024px) {
  .nav-call {
    display: flex;
  }
}

/* ── MOBILE MENU SERVICES DROPDOWN ── */
.mob-dropdown-section {
  border-bottom: 1px solid rgba(200, 164, 92, 0.07);
}
.mob-services-toggle {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: none !important;
  cursor: pointer;
}
.mob-services-arrow {
  font-size: 0.85rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  display: inline-block;
  line-height: 1;
}
.mob-dropdown-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(200, 164, 92, 0.04);
  border-top: 1px solid rgba(200, 164, 92, 0.07);
}
.mob-dropdown-sub.mob-dropdown-open {
  max-height: 500px;
}
.mob-dropdown-sub a {
  padding: 0.7rem 1rem 0.7rem 1.5rem !important;
  font-size: 0.88rem !important;
  color: white !important;
  border-bottom: 1px solid rgba(200, 164, 92, 0.05) !important;
}
.mob-dropdown-sub a:last-child {
  border-bottom: none !important;
  /* color: rgba(255, 255, 255, 0.5) !important;
  font-weight: 400 !important; */
}
.mob-dropdown-sub a:hover {
  color: var(--gold) !important;
}
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.what-desc {
  color: black !important;
}
.price-card-head p {
  color: white !important;
}
.count {
  color: #c8a45c !important;
}
.btn-g {
  color: white;
}
.trust-item-sub {
  color: black;
}
.testi-text {
  font-family: sans-serif;
}
.count-text {
  color: #c8a45c !important;
}


.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}