/* ============================================================
   GOLDFINCH LEADERSHIP CONSULTING ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â Global Stylesheet
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --gold: #FEB344;
    --gold-dark: #d9962d;
    --navy: #061423;
    --navy-mid: #111e30;
    --navy-light: #162035;
    --white: #ffffff;
    --off-white: #FFFFFFCC;
    --text-muted: #a8b2c0;
    --divider: rgba(254, 179, 68, 0.25);
    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
    --transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ============================================================
   GLOBAL TYPOGRAPHY ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â heading & paragraph wrappers
   ============================================================ */

/* --- Heading wrapper --- */
.heading h1,
.heading h2,
.heading h3,
.heading h4,
.heading h5,
.heading h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
}

/* Serif italic style for display headings */
.heading h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.heading h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    letter-spacing: -1.8px;
    font-weight: 400;
}

.heading h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

/* Gold heading variant */
.heading.heading--gold h1,
.heading.heading--gold h2,
.heading.heading--gold h3 {
    color: var(--gold);
}

/* Section heading underline accent */
.heading-accent {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 1rem 0 1.6rem;
}

.heading-accent--center {
    margin-left: auto;
    margin-right: auto;
}

/* --- Paragraph wrapper --- */
.para p,
p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--off-white);
}

.para p+p {
    margin-top: 1rem;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-dark);
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-goldfinch {
    background-color: #000E1C;
    padding: 1.1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(254, 179, 68, 0.08);
    transition: box-shadow var(--transition);
}

.navbar-goldfinch.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Brand / Logo */
.navbar-goldfinch .navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-goldfinch .brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--white);
}

.navbar-goldfinch .brand-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Nav links */
.navbar-goldfinch .nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--off-white);
    padding: 0.4rem 1rem !important;
    letter-spacing: 0.03em;
    transition: color var(--transition);
    position: relative;
}

.navbar-goldfinch .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.navbar-goldfinch .nav-link:hover,
.navbar-goldfinch .nav-link.active {
    color: var(--gold);
}

.navbar-goldfinch .nav-link:hover::after,
.navbar-goldfinch .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 1px solid var(--gold);
    padding: 0.3rem 0.6rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28254,179,68,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   SECTION: HOME BANNER (Hero)
   ============================================================ */
section.home-banner {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--navy);
}

/* Landscape image fills right half */
.home-banner__image-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.home-banner__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.home-banner__content {
    position: relative;
    z-index: 2;
    max-width: 670px;
    padding: 6rem 0 5rem;
}

.home-banner__content .heading h1 {
    font-size: clamp(2.6rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 72px;
    margin-bottom: 0;
    letter-spacing: -1.8px;
}

.home-banner__content .para p {
    font-size: 1rem;
    color: var(--off-white);
    max-width: 100%;
}

/* ============================================================
   SECTION: HOW WE CREATE IMPACT
   ============================================================ */
section.how-we-create-impact {
    background-color: var(--navy);
    padding: 6rem 0 0;
}

.impact-intro {
    text-align: center;
    margin-bottom: 3.5rem;
}

.impact-intro .heading h2 {
    color: var(--gold);
}

.impact-intro .para p {
    font-size: 18px;
    color: var(--text-muted);
}

/* Impact cards row */
.impact-cards {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.impact-card {
    flex: 1;
    padding: 0 15px;
    text-align: center;
    position: relative;
}

/* Gold vertical divider between cards */
.middle-impact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}
.middle-impact-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.impact-card__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -1.8px;
}

.impact-card .para p {
    font-size: 16px;
    color: var(--off-white);
    line-height: 28px;
    margin: 0;
}

/* Horizontal rule above the cards */
.impact-rule {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

/* ============================================================
   SECTION: CTA / CLOSING STATEMENT
   ============================================================ */
section.cta-banner {
    background-color: var(--navy);
    padding: 4rem 0 5rem;
    text-align: center;
}

.cta-banner__text {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 300;
    color: var(--off-white);
    line-height: 35px;
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Baskervville', serif;
}

.cta-banner__text a,
.cta-banner__text .highlight {
    color: var(--gold);
    font-weight: 400;
}

/* ============================================================
   UTILITIES & HELPERS
   ============================================================ */
.text-gold {
    color: var(--gold) !important;
}

.bg-navy {
    background-color: var(--navy) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .home-banner__image-wrap {
        width: 100%;
        opacity: 0.35;
    }

    .home-banner__content {
        padding: 4rem 0 2rem;
        max-width: 100%;
    }

    .impact-cards {
        flex-direction: column;
        gap: 2.5rem;
    }

    .impact-card {
        padding: 0;
    }

    .impact-card+.impact-card::before {
        display: none;
    }

    .impact-card+.impact-card {
        border-top: 1px solid rgba(254, 179, 68, 0.35);
        padding-top: 2.5rem;
    }
}

/* ============================================================
   SCROLL ANIMATION ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â fade-in-up (JS-triggered)
   ============================================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for siblings */
.fade-in-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-in-up:nth-child(3) {
    transition-delay: 0.2s;
}

.fade-in-up:nth-child(4) {
    transition-delay: 0.3s;
}

/* ============================================================
   HERO IMAGE PLACEHOLDER (shown when no real image supplied)
   ============================================================ */
.home-banner__image-wrap--placeholder {
    background: linear-gradient(135deg,
            #1a2a3a 0%,
            #2c3e50 35%,
            #e67e22 70%,
            #f39c12 100%);
}

/* ============================================================
   FOOTER (minimal)
   ============================================================ */
footer.site-footer {
    background-color: var(--navy-mid);
    border-top: 1px solid rgba(254, 179, 68, 0.12);
    padding: 2rem 0;
    text-align: center;
}

footer.site-footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 767.98px) {
    .home-banner__content .heading h1 {
        font-size: 2.2rem;
        line-height: 3rem;
    }

    .navbar-goldfinch .brand-name {
        font-size: 1.1rem;
    }
}

.impact-bottom-line {
    width: 100%;
    height: 1px;
    background-color: white;
    margin-top: 100px;
}

/* ================================================================
   SERVICES PAGE
   Append to css/style.css
   ================================================================ */

.services-hero {
    padding: 110px 0 70px;
    color: #fff;
    overflow: hidden;
}

.services-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: stretch;
}

/* ---------- LEFT: Visual with overlay ---------- */
.services-hero__visual {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}

.services-hero__image-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.services-hero__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Soft vignette so the copy stays legible */
.services-hero__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
                rgba(10, 24, 48, 0.15) 0%,
                rgba(10, 24, 48, 0.45) 55%,
                rgba(10, 24, 48, 0.80) 100%);
}

.services-hero__overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    align-self: center;
    padding: 250px 0;
}

.services-hero__eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    color: var(--gold);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 15px;
}

.services-hero__title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.85rem, 2.6vw + 0.6rem, 3rem);
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 22px;
    font-weight: 400;
}

.services-hero__overlay .heading-accent {
    display: block;
    width: 77px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 0 22px;
    border: none;
}

.services-hero__lead {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 420px;
    margin: 0;
}

/* ---------- RIGHT: Timeline ---------- */
.services-timeline {
    list-style: none;
    padding: 80px 0px;
    margin: 0;
    margin-left: 20px;
}

.services-timeline__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 24px;
    padding: 0 0 18px;
    margin-bottom: 0;
    border-bottom: 0;
    position: relative;
}

.services-timeline__item--last,
.services-timeline__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.services-timeline__rail {
    position: relative;
    display: flex;
    justify-content: center;
}

.services-timeline__num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FEB344;
    color: #061423;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.12);
    position: relative;
    z-index: 2;
}

/* The wavy connector SVG */
.services-timeline__curve {
    /* position: absolute; */
    /* top: 38px; */                  /* start just under the number */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* width: 60px; */
    /* height: calc(100% - 38px + 26px); */  /* span the row + bottom padding gap */
    /* overflow: visible; */          /* let the curve bulge outside the viewBox */
    /* pointer-events: none; */
    position: relative;
}

.services-timeline__body {
    padding-top: 4px;
    border-bottom: 1px solid white;
    padding-bottom: 30px;
    margin-left: 15px;
    margin-top: 10px;
}

.services-timeline__title {
    font-family: 'Libre Baskerville', serif;
    font-size: 25px;
    color: #fff;
    font-weight: 400;
    margin: 0 0 10px;
    letter-spacing: -1.8px;
}

.services-timeline__desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    color: var(--off-white);
}

/* Testimonial quote */
.services-quote {
    margin: 0;
}

.services-quote p {
    font-family: 'Poppins', sans-serif;
    color: #FEB344;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    padding: 6px 0px 0;
    padding-left: 15px;
}

.services-quote__cite {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-size: 16px;
    margin-top: 8px;
    color: var(--off-white);
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
    .services-hero__grid {
        gap: 36px;
    }
    .services-hero__overlay {
        padding: 44px 36px;
    }
}

@media (max-width: 991.98px) {
    .services-hero {
        padding: 90px 0 60px;
    }
    .services-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-hero__visual {
        min-height: 480px;
    }
}

@media (max-width: 575.98px) {
    .services-hero {
        padding: 70px 0 50px;
    }
    .services-hero__visual {
        min-height: 420px;
    }
    .services-hero__overlay {
        padding: 36px 24px;
    }
    .services-timeline__item {
        grid-template-columns: 44px 1fr;
        column-gap: 16px;
        display: block;
    }
    .services-timeline__num {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .services-timeline__curve {
        width: 44px;
        top: 34px;
        position: static;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .services-timeline__title {
        font-size: 19px;
    }
}


section#services {
    padding: 0;
    position: relative;
    border-bottom: 2px solid var(--gold);
}

.service-img {
    position: absolute;
    width: 50%;
    padding-right: 0;
    height: 100%;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero__eyebrow:before {
    content: "";
    width: 40px;
    height: 3px;
    background-color: var(--gold);
    position: absolute;
    bottom: 0;
}

.services-timeline__curve:before {
    content: "";
    position: absolute;
    width: 75%;
    height: 92%;
    top: 50px;
    background-image: url(../img/services-timeline__curve-1.png);
    background-size: 100% 100%;
    background-position: center center;
    left: 15px;
}

.services-timeline__curve-2:before {
    background-image: url(../img/services-timeline__curve-2.png);
    top: 34px;
    left: 0;
    width: 50%;
}

.services-timeline__curve-3:before {
    background-image: url(../img/services-timeline__curve-3.png);
    left: 15px;
    width: 50%;
    height: 100%;
    top: 44px;
}

.services-timeline__item--last, .services-timeline__item:last-child .services-timeline__body {
    border: 0;
    padding-bottom: 0;
}

.heading h4 {
    color: var(--gold);
    font-size: 35px;
}

.approach-banner{
    border-bottom: 2px solid var(--gold);
    padding: 120px 0px;
}

.quotes {
    background-color: #12202E;
    border-radius: 30px;
    border: 1px solid #FEB344;
    text-align: center;
    padding: 40px 0px;
}

.quotes img {
    margin: 0 auto;
    margin-bottom: 50px;
}

.quotes h4 {
    font-family: var(--font-heading);
    width: 75%;
    margin: 0 auto;
    font-size: 40px;
    letter-spacing: -1.8px;
    margin-bottom: 25px;
}

.quotes p {
    color: #FEB344;
    font-size: 22px;
    line-height: 30px;
    width: 30%;
    margin: 0 auto;
}

section.how-we-create-impact.partner {
    border-bottom: 2px solid var(--gold);
    padding-bottom: 6rem;
}

.about-hero p.services-hero__lead {
    width: 100%;
    max-width: 90%;
    font-size: 16px;
}

.about-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


section.about-hero .services-hero__overlay {
    padding-top: 150px;
    padding-bottom: 150px;
}

section.about-hero {
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--gold);
}

section.about-hero .service-img {
    width: 55%;
}

section.contact-banner h2 {
    color: #FEB344;
    text-align: center;
    letter-spacing: -1.8px;
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 400;
}

.contact-banner p {
    font-size: 18px;
}

.contact-banner{
    background-image: url(../img/contact-bg.jpg);
    background-size: contain;
    padding: 250px 0px 0;
    background-position: top;
    background-repeat: no-repeat;
}

/* ============================================================
   CONTACT FORM
   Append to css/style.css
   ============================================================ */

/* Override default contact-banner padding so the form has breathing room */
.contact-banner {
    padding-bottom: 50px !important;
}

.contact-form-row {
    margin-top: 70px;
}

/* ---------- Form Card ---------- */
.contact-form-wrap {
    background-color: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 22px;
    padding: 45px 40px;
    text-align: left;
}

.contact-form .form-group {
    margin-bottom: 22px;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 10px;
    letter-spacing: 0.1px;
}

/* ---------- Inputs & Select ---------- */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select {
    width: 100%;
    background-color: rgba(6, 20, 35, 0.55);
    border: 1px solid rgba(254, 179, 68, 0.45);
    border-radius: 20px;
    padding: 14px 22px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

.contact-form input:focus,
.contact-form select:focus {
    border-color: var(--gold);
    background-color: rgba(6, 20, 35, 0.85);
    box-shadow: 0 0 0 3px rgba(254, 179, 68, 0.12);
}

/* Hide native select arrow, supply our own */
.select-wrap {
    position: relative;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.55);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23FEB344' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 22px center;
}

/* Once a value is picked, return text to white */
.contact-form select:valid {
    color: var(--white);
}

.contact-form select option {
    background-color: var(--navy-mid);
    color: var(--white);
}

.contact-form select option:disabled {
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- Submit Button ---------- */
.btn-submit {
    display: block;
    width: 100%;
    background-color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 10px 30px;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.15s ease;
}

.btn-submit:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
}

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

.btn-submit:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

/* ---------- Or Reach Us Directly ---------- */
.contact-direct {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 38px;
    margin-bottom: 24px;
}

.contact-direct::before,
.contact-direct::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: rgba(254, 179, 68, 0.35);
}

.contact-direct__label {
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

/* Direct contact links row */
.contact-direct__items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.contact-direct__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.15s ease;
}

.contact-direct__link:hover {
    color: var(--gold-dark);
}

.contact-direct__link:hover svg path,
.contact-direct__link:hover svg rect {
    stroke: var(--gold-dark);
    fill: var(--gold-dark);
}

/* The mail icon uses stroke not fill, so target only filled paths */
.contact-direct__link svg[viewBox="0 0 20 16"] path:hover,
.contact-direct__link svg[viewBox="0 0 20 16"] rect:hover {
    fill: none;
}

.contact-direct__link svg {
    flex-shrink: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
    .contact-form-wrap {
        padding: 36px 28px;
        border-radius: 18px;
    }
    .contact-form label {
        font-size: 15px;
    }
    .contact-direct__items {
        gap: 24px;
        flex-direction: column;
    }
    .contact-direct {
        gap: 16px;
    }
}

@media (max-width: 575.98px) {
    .contact-form-wrap {
        padding: 28px 20px;
    }
    .contact-form input[type="text"],
    .contact-form select {
        padding: 12px 18px;
        font-size: 13.5px;
    }
    .btn-submit {
        padding: 13px 24px;
        font-size: 15px;
    }
}