
:root {
    --dark: #0e1b2b;
    --cream: #f7f3ec;
    --gold: #c49a55;
    --text: #152033;
    --muted: #6f7785;
    --border: #e5ddd2;
    --btn-navy:#0f1c2e;
     --spacing:0.25rem;
}
.btn-navy,.btn-navy:active{
  background: var(--btn-navy) !important;
  color:#fff !important;
}
.text-gold{
  color:var(--gold) !important;
}
.hero-title {
    font-family: serif;
    font-size: clamp(42px, 6vw, 74px);
    line-height: 1.18;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -1.5px;
    margin-bottom: 32px;
}

.hero-title em {
    color: var(--gold);
    font-style: italic;
}

.hero-text {
    max-width: 520px;
    margin: 0 auto 30px;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4f5b69;
}


.height-100{
  min-height: 500px;
}
.py-50{
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: color-mix(in oklab,#c59d5f 10%,transparent);
    color: var(--gold);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 15px;
    margin-bottom: 35px;
    border:1px solid var(--gold);
}

.hero-badge span {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
}
.size-4 {
  width: calc(var(--spacing) * 4);
  height: calc(var(--spacing) * 4);
}
.banner-btn{
  font-size: 0.875rem;
  border-radius: calc(.625rem - 4px);
  line-height: calc(1.25 / .875);
  padding-block: calc(.25rem * 2.5);
  padding-left: calc(.25rem * 3);
  padding-right: calc(.25rem * 3);
  background-color: #c59d5f !important;
}
.section-title {
  font-family:serif;
  font-size: 30px;
  margin-bottom: 15px;
}

.section-subtitle {
  font-family:serif;
  color: #8d99aa;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 60px;
}
.consult-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    min-height: 660px;
}

.consult-left {
    background: var(--dark);
    color: #fff;
    padding: 55px 45px;
    min-height: 660px;
}

.consult-left h3 {
    font-family: serif;
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 28px;
}

.consult-left p {
    color: #9aa6b7;
    font-size: 16px;
    line-height: 1.7;
    max-width: 270px;
    margin-bottom: 38px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    font-size: 0.875rem;
    margin-bottom: 18px;
    color: #fff;
}

.check-list li::before {
    content: "✓";
    color: var(--gold);
    margin-right: 13px;
}

.consult-right {
    min-height: 660px;
    background: #fff;
}
.consult-right iframe{
    min-height: 660px;
}
/* Testimonials */
.testimonials {
    padding: 55px 0 90px;
}

.stars {
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 19px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: serif;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--dark);
    max-width: 360px;
    min-height: 115px;
}

.testimonial-divider {
    border-top: 1px solid var(--border);
    margin: 28px 0 20px;
}

.author {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.role {
    font-size: 0.75rem;
    color: #8b93a0;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 42px 0;
}

.footer-brand {
    font-family: serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.copyright {
    font-size: 11px;
    color: #9aa0aa;
}

.footer-links a {
    text-decoration: none;
    color: #6c7480;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: 45px;
}

.footer-links a:hover {
    color: var(--dark);
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding: 90px 15px;
    }

    .video-box {
        height: 360px;
    }

    .consult-left,
    .consult-right,
    .consult-card {
        min-height: auto;
    }

    .consult-right {
        height: 420px;
    }

    .footer-links a {
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    .navbar-custom {
        height: auto;
        padding: 12px 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .video-box {
        height: 260px;
    }

    .consult-left {
        padding: 40px 28px;
    }

    .testimonial-text {
        min-height: auto;
    }

    .footer-links {
        margin-top: 25px;
    }

    .footer-links a {
        margin-left: 0;
        margin-right: 25px;
    }
    .video-box iframe{
        height: 300px !important;
    }
}
.nav .text-dark{
    font-weight: 500;
}