/* Make navbar fixed */
.navbar {
    padding: 0.8rem 0.7rem;
    background-color: #0c1814;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

html,
body {
    padding-top: 48px;
    scroll-behavior: smooth;
    /* margin: 0; */
    overflow-x: hidden;
    overflow-y: auto;
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-section:hover .navbar-logo {
    transform: scale(1.05);
}

.logo-title {
    color: #c7ac77;
    font-weight: 700;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.logo-section:hover .logo-title {
    color: #f3dac3;
}

/* Nav links */
.nav-link {
    color: #ddd !important;
    font-size: 1.1rem;
    position: relative;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #c7ac77;
    transition: 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #f3dac3 !important;
}

/* ACTIVE LINK STYLE (same color and underline as hover) */
.nav-link.active {
    color: #c7ac77 !important;
}

.nav-link.active::after {
    width: 100%;
    background-color: #c7ac77;
}

/* Nav item separator */
.nav-item {
    border-right: 2px solid #c7ac77;
    padding-right: 0.4rem;
    margin-right: 0.4rem;
    white-space: nowrap;
}

.nav-item:last-child {
    border-right: none;
}

/* Collapse adjustments */
.navbar-collapse {
    flex-grow: 0 !important;
}

/* Custom navbar toggler styles */
.custom-toggler {
    border: none;
    outline: none;
    background: transparent;
    color: #d3b77a;
    /* gold */
    transition: all 0.3s ease;
}

/* On hover */
.custom-toggler:hover {
    color: #e4c37c;
    /* lighter gold */
    transform: scale(1.1);
}

/* Optional: small pulse animation when toggled */
.custom-toggler:active {
    transform: scale(0.95);
}

/* HR Styling */
hr {
    margin: 0;
    border: 0;
    border-top: 1px solid #c7ac77;
    opacity: 0.25;
}

/* ----------------------------------HERO------------------------------------------------- */
.hero-layout {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(82deg,
            #0c1814 0%,
            #0c1814 100%,
            rgba(0, 0, 0, 0.2) 70%,
            transparent 100%);
}

/* Use container to keep consistent width alignment */
.hero-layout .container-xl {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Content styling inside container */
.hero-content {
    color: #fff;
    max-width: 600px;
    padding-left: 1rem;
}

.mini-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #e0e0e0;
    margin-bottom: 0.8rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: #d8d8d8;
    line-height: 1.6;
}

/* Image container (replacing video) */
.hero-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
}

.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.6s ease;
}

.hero-video img:hover {
    transform: scale(1.03);
}

/* Overlay for dark fade effect */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left,
            #0c1814 0%,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0.7) 80%,
            #0c1814 100%);
    pointer-events: none;
}

/* ---------------- Responsive Styles ---------------- */

@media (max-width: 992px) {
    .hero-layout {
        flex-direction: column;
        height: auto;
        /* padding-bottom: 3rem; */
    }

    .hero-video {
        position: relative;
        width: 100%;
        height: 50vh;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .mini-title {
        font-size: 0.9rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }
}

/* --------------------------------------ABOUT US IN HOME PAGE------------------------- */

.about-section {
    background-color: #fcf5f3;
    color: #223831;
}

.about-card {
    background-color: #ffffff;
    color: #223831;
    border-radius: 8px;
    border: 1px solid #d8cdc7;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.aboutimg2 {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.about-title {
    color: #193434;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.title-icon {
    color: #c7ac77;
    font-size: 1.6rem;
}

.about-icon {
    font-size: 4rem;
    color: #c7ac77;
}

.about-desc {
    color: #223831;
    line-height: 1.7;
    font-size: 1.05rem;
}

.about-btn {
    background-color: #223831;
    border: 1px solid #223831;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.about-btn:hover {
    background-color: transparent;
    color: #223831;
    border-color: #223831;
}


/* -----------------------------------------HIGHLIGHT SECTION---------------------------- */
.highlights-section {
    background: linear-gradient(135deg, #0d1814 0%, #13231f 100%);
    color: #f4f4f4;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.highlight-title {
    color: #d3b77a;
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.highlight-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: #d3b77a;
    display: block;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    transition: all 0.4s ease;
    color: #ddd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(211, 183, 122, 0.25);
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(211, 183, 122, 0.1);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.highlight-card:hover .icon-wrapper {
    background: rgba(228, 195, 124, 0.2);
}

.highlight-icon {
    font-size: 2.5rem;
    color: #d3b77a;
    transition: all 0.3s ease;
}

.highlight-text {
    font-size: 1rem;
    font-weight: 500;
    color: #f3f3f3;
}

/* Make highlight cards same height */
.highlights-section .row {
    display: flex;
    flex-wrap: wrap;
}

.highlights-section .col-md-3,
.highlights-section .col-sm-6 {
    display: flex;
}

.highlight-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.highlight-card:hover .highlight-icon {
    transform: rotate(360deg) scale(1.1);
    color: #e4c37c;
    filter: drop-shadow(0 0 8px rgba(211, 183, 122, 0.5));
}

/* Smooth transition for the icon */
.highlight-icon {
    font-size: 2.5rem;
    color: #d3b77a;
    transition: all 0.6s ease-in-out;
}

/* Optional subtle pulse on hover */
.highlight-card:hover .icon-wrapper {
    background: rgba(228, 195, 124, 0.25);
    box-shadow: 0 0 15px rgba(211, 183, 122, 0.2);
    transform: scale(1.05);
}

/* -----------------------------------------FOOTER------------------- */
.footer {
    background-color: #0c1814;
    /* dark base */
    color: #ddd;
    padding: 3rem 1rem 1.5rem 1rem;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    max-width: 1200px;
    margin: auto;
}

/* Logo Section */
.footer-logo-section {
    flex: 1 1 260px;
    text-align: left;
}

.footer-logo {
    width: 160px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #c7ac77;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    background-color: #c7ac77;
    color: #0c1814;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    background-color: #b49b68;
    transform: translateY(-3px);
}

/* Links */
.footer-links {
    flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4 {
    color: #c7ac77;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #c7ac77;
}

/* Contact Section */
.footer-contact {
    flex: 1 1 250px;
}

.footer-contact p {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a {
    color: #c7ac77;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-icon {
    color: #c7ac77;
    font-size: 1rem;
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
    margin-top: 2.5rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}


/* -------------------------ABOUT US PAGE------------------------ */
.about-legacy {
    background-color: #fcf5f3;
    /* soft peach */
    padding: 5rem 1rem;
}

.legacy-title {
    color: #c7ac77;
    /* gold accent */
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.legacy-desc {
    color: #222;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.legacy-local {
    background-color: #13231f;
    /* darker greenish for contrast */
    color: #f4f4f4;
    /* light text for readability */
}

.legacy-local-card {
    background-color: #193434;
    /* slightly lighter card shade */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legacy-local-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.legacy-local-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: auto;
}


/* --------------------------------Offerings Section------------------------ */
.offerings-section {
    background-color: #fcf5f3;
    /* soft peach */
    color: #222;
}

.offerings-title {
    color: #c7ac77;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.offering-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ddd;
    height: 100%;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.offering-icon {
    font-size: 2.5rem;
    color: #c7ac77;
    margin-bottom: 1rem;
}

.offering-card h5 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.offering-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Make the row use flex and stretch items */
.offerings-section .row {
    display: flex;
    flex-wrap: wrap;
}

/* ------------------- OUR PROMISE HERO SECTION - DARK -------------------- */
.promise-section-hero-dark {
    background-color: #0c1814;
    /* dark background */
    padding: 5rem 1rem;
    color: #f4f4f4;
}

.promise-subtitle {
    font-weight: 700;
    color: #c7ac77;
    /* gold accent for subtitle */
    letter-spacing: 0.01rem;
    margin-bottom: 0.5rem;
}

.promise-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #f4f4f4;
    /* light text for contrast */
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.promise-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 550px;
    color: #ddd;
}

.promise-features {
    margin-top: 2rem;
}

.feature-item {
    background-color: #13231f;
    /* dark card bg */
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 1.5rem;
    color: #c7ac77;
}

.feature-arrow {
    font-size: 1.4rem;
    color: #c7ac77;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-arrow {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .promise-title {
        font-size: 1.8rem;
    }

    .promise-desc {
        max-width: 100%;
    }

    .offering-card {
        padding: 1.5rem 1rem;
    }

    .offering-icon {
        font-size: 2rem;
    }

    .legacy-local-card {
        padding: 3rem 2rem;
    }

    .legacy-local-text {
        font-size: 1.1rem;
    }

    .legacy-title {
        font-size: 2rem;
    }

    .legacy-desc {
        font-size: 1.05rem;
    }

    .highlight-title {
        font-size: 1.7rem;
    }

    .highlight-icon {
        font-size: 2rem;
    }

    .highlight-card {
        padding: 1.2rem;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .hero {
        height: auto;
        padding: 3rem 1rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .herodesc {
        font-size: 0.95rem;
    }

    .heroImage1 {
        height: 22rem;
        margin-top: 2rem;
    }

    .navbar-brand {
        flex-grow: 1;
    }

    .custom-toggler {
        margin-left: auto;
        color: #d3b77a;
    }

    .navbar .d-flex {
        width: 100%;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        border-right: none;
        padding: 0.5rem 0;
    }
}

/* ------------------- CTA SECTION - LIGHT -------------------- */
.cta-section-light {
    background-color: #fcf5f3;
    /* light peach background */
    color: #222;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: #193434;
    /* darker text for contrast */
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.1rem;
    color: #56645f;
    /* muted text for description */
    max-width: 700px;
    margin: auto;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-btn {
    background-color: #193434;
    /* primary dark color */
    color: #fcf5f3;
    /* light text */
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #c7ac77;
    /* gold accent on hover */
    color: #0c1814;
    transform: translateY(-2px);
}


/* --------------------------------------PRIVACY POLICY PAGE------------------------ */
.privacy-terms-section {
    background-color: #fcf5f3;
    /* light/peach background matching your brand */
    color: #222;
    padding: 4rem 1rem;
    font-family: Arial, sans-serif;
}

.privacy-terms-section .section-title {
    color: #c7ac77;
    /* gold accent */
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.privacy-terms-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-terms-section .terms-list {
    list-style: none;
    padding: 0;
    max-width: 850px;
    margin: auto;
}

.privacy-terms-section .terms-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    align-items: center;
}

/* Optional: small gold bullet before each item */
.privacy-terms-section .terms-list li::before {
    content: "•";
    color: #c7ac77;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* Responsive */
@media (max-width: 767px) {
    .privacy-terms-section .section-title {
        font-size: 1.6rem;
    }

    .privacy-terms-section p,
    .privacy-terms-section .terms-list li {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-btn {
        padding: 0.5rem 1.2rem;
    }

    .promise-section-hero-dark {
        padding: 3rem 1rem;
    }

    .promise-title {
        font-size: 1.6rem;
    }

    .feature-item {
        padding: 0.8rem 1rem;
    }

    .offering-card {
        padding: 1.2rem 0.8rem;
    }

    .offering-icon {
        font-size: 1.8rem;
    }

    .offering-card h5 {
        font-size: 1.1rem;
    }

    .offering-card p {
        font-size: 0.95rem;
    }

    .legacy-local-card {
        padding: 2rem 1rem;
    }

    .legacy-local-text {
        font-size: 1rem;
    }

    .about-legacy {
        padding: 3rem 1rem;
    }

    .legacy-title {
        font-size: 1.8rem;
    }

    .legacy-desc {
        font-size: 1rem;
    }

    .highlight-title {
        font-size: 1.5rem;
    }

    .about-section {
        text-align: center;
    }

    .about-title {
        justify-content: center;
        font-size: 1.4rem;
    }

    .about-desc {
        font-size: 0.95rem;
    }

    .about-btn {
        display: inline-block;
        margin-top: 1rem;
    }
}

/* ----------------------------------------CONTACT PAGE------------------------------- */
.contact-section {
    background-color: #fcf5f3;
}

.contact-map iframe {
    width: 100%;
    height: 239px;
    border-radius: 5px;
}

.contact-form {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-header h5 {
    color: #c7ac77;
    /* gold accent */
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.contact-btn {
    background-color: #0c1814;
    /* dark */
    color: #fcf5f3;
    /* light */
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background-color: #c7ac77;
    /* gold hover */
    color: #0c1814;
}

input::placeholder,
textarea::placeholder {
    color: #83868b !important;
}

.form-control {
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.form-control:focus {
    border-color: #c7ac77;
    box-shadow: 0 0 4px rgba(199, 172, 119, 0.5);
    outline: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

/* --------------------------CTA------------------------------ */
.cta-section {
    background-color: #fff;
    color: #222;
    padding: 14px 0;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: #0c1814;
}

.cta-info {
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
}

.cta-link {
    color: #c7ac77;
    text-decoration: none;
}

.cta-link:hover {
    text-decoration: underline;
    color: #c7ac77;
}

.cta-btn {
    display: inline-block;
    background-color: #c7ac77;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #b49b68;
    transform: translateY(-3px);
}

/* Ensure consistent button design across both form and CTA */
.contact-btn,
.cta-btn {
    display: inline-block;
    background-color: #0c1814;
    color: #fcf5f3;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.contact-btn:hover,
.cta-btn:hover {
    background-color: #c7ac77;
    color: #0c1814;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .contact-section .row>div {
        display: block;
    }

    .contact-form,
    .contact-map,
    .cta-section {
        margin-bottom: 1.5rem;
        height: auto;
    }

    .hero-layout {
        flex-direction: column;
        height: auto;
    }

    .hero-video {
        position: relative;
        width: 100%;
        height: 50vh;
    }

    .hero-content {
        text-align: center;
        padding: 3rem 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-layout .container-xl {
        justify-content: center;
    }
}


/* ---------------------------Footer */
.footer {
    background-color: #0c1814;
    /* dark base */
    color: #ddd;
}

.footer-i {
    background-color: #c7ac77;
    color: white;
    padding: 7px;
    font-size: 2.1rem;
    border-radius: 50%;
}

.footer-i2 {
    background-color: #c7ac77;
    color: white;
    padding: 7px;
    font-size: 2rem;
    border-radius: 26%;
    transition: all 0.3s ease;
}

.footer-i2:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: white;
    transform: scale(1.1);
}

.footer-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
}

.footer-menu {
    text-decoration: none;
    color: white;
}

.footer-menu:hover {
    color: #c7ac77;
}

.footer-link {
    text-decoration: none;
    color: white;
    position: relative;
    padding-bottom: 5px;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #c7ac77;
}

.footer-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: #c7ac77;
    transition: width 0.3s ease;
}

.footer-link:hover::after,
.footer-link.active::after {
    width: 100%;
}