
/* =========================================================
   FOOTER
========================================================= */

.footer {
    --footer-bg: #17251f;
    --footer-bg-deep: #111c17;
    --footer-bg-soft: #20352a;

    --footer-gold: #c9a45c;
    --footer-gold-light: #dfc17a;

    --footer-white: #f4f0e6;
    --footer-text: rgba(244, 240, 230, 0.74);
    --footer-muted: rgba(244, 240, 230, 0.48);

    --footer-border: rgba(201, 164, 92, 0.20);
    --footer-border-soft: rgba(255, 255, 255, 0.08);

    position: relative;
    width: 100%;
background:
    radial-gradient(
        circle at 8% 0%,
        rgba(201, 164, 92, 0.10),
        transparent 26%
    ),
    radial-gradient(
        circle at 95% 85%,
        rgba(201, 164, 92, 0.07),
        transparent 28%
    ),
    linear-gradient(
        135deg,
        #F3EDE4,
        #E9E0D4
    );

color: #3F3528;

    border-top: 1px solid var(--footer-border);

    overflow: hidden;

}


/* ---------------------------------------------------------
   Decorative top line
   --------------------------------------------------------- */

.footer::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: 150px;
    height: 2px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        var(--footer-gold),
        transparent
    );

    opacity: 0.9;
}


/* ---------------------------------------------------------
   Main footer area
   --------------------------------------------------------- */

.footer .footer-grid {
    position: relative;

    width: min(1280px, calc(100% - 80px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(310px, 1.45fr)
        minmax(150px, 0.70fr)
        minmax(220px, 1fr)
        minmax(220px, 1fr);

    column-gap: 55px;

    padding:
        78px 0 72px;
}


/* ---------------------------------------------------------
   BRAND
   --------------------------------------------------------- */

.footer .footer-brand {
    max-width: 405px;
}


/* Brand wrapper */

.footer .brand {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    color: var(--footer-white);

    text-decoration: none;
}


/* Brand mark */

.footer .brand-mark {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(223, 193, 122, 0.65);

    border-radius: 50%;

    color: var(--footer-gold-light);

    font-size: 22px;
    line-height: 1;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.footer .brand:hover .brand-mark {
    transform: rotate(30deg);

    background:
        rgba(201, 164, 92, 0.08);

    box-shadow:
        0 0 28px rgba(201, 164, 92, 0.13);
}


/* Brand name */

.footer .brand-title {
    display: block;

    color: var(--footer-white);

    font-size: 22px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: 4px;
}


/* Brand subtitle */

.footer .brand-sub {
    display: block;

    margin-top: 6px;

    color: var(--footer-gold);

    font-size: 9px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 3px;
}


/* ---------------------------------------------------------
   Brand description
   --------------------------------------------------------- */

.footer .footer-brand > p {
    margin:
        25px 0 30px;

    max-width: 390px;

    color: var(--footer-text);

    font-size: 14px;

    line-height: 1.85;

    letter-spacing: 0.05px;
}


/* ---------------------------------------------------------
   Brand CTA
   --------------------------------------------------------- */

.footer .footer-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding:
        13px 21px;

    background: var(--footer-gold);

    border: 1px solid var(--footer-gold);

    color: #17231d;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.7px;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.footer .footer-main-btn span {
    font-size: 18px;

    transition:
        transform 0.3s ease;
}


.footer .footer-main-btn:hover {
    background: transparent;

    color: var(--footer-gold-light);

    transform: translateY(-2px);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.20);
}


.footer .footer-main-btn:hover span {
    transform: translateX(5px);
}
/* =======================
    FOOTER LOGO ALIGNMENT SIZE AND THE SPACING CODE STARTS
   ======================= */
/* Move only the footer logo significantly upward */
/* Increase only the footer logo size */
.footer .footer-brand .site-logo img {
    width: 280px !important;
    height: auto !important;
    transform: translateY(-80px);
    display: block;
}

/* Tablet */
@media (max-width: 820px) {
    .footer .footer-brand .site-logo img {
        width: 240px !important;
        transform: translateY(-65px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .footer .footer-brand .site-logo img {
        width: 210px !important;
        transform: translateY(-50px);
    }
}

/* Very small mobile */
@media (max-width: 380px) {
    .footer .footer-brand .site-logo img {
        width: 190px !important;
        transform: translateY(-40px);
    }
}/* =======================
    FOOTER LOGO ALIGNMENT SIZE AND THE SPACING CODE ENDS
   ======================= */



   
/* ---------------------------------------------------------
   FOOTER COLUMN
   --------------------------------------------------------- */

.footer .footer-column {
    min-width: 0;
}


/* Column heading */

.footer .footer-column h4 {
    position: relative;

    margin:
        2px 0 26px;

    padding-bottom: 14px;

    color: var(--footer-gold-light) !important;

    font-size: 12px !important;
    font-weight: 600 !important;

    line-height: 1;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    border-bottom:
        1px solid rgba(201, 164, 92, 0.14);
}


/* Gold heading accent */

.footer .footer-column h4::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 38px;
    height: 2px;

    background:
        var(--footer-gold);
}


/* ---------------------------------------------------------
   LINKS
   --------------------------------------------------------- */

.footer .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 11px;
}


.footer .footer-links a,
.footer .footer-links span {
    position: relative;

    display: inline-block;

    color: var(--footer-text) !important;

    font-size: 13px !important;

    font-weight: 400;

    line-height: 1.45;

    text-decoration: none;

    transition:
        color 0.28s ease,
        transform 0.28s ease;
}


/* Hover line */

.footer .footer-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -3px;

    width: 0;
    height: 1px;

    background: var(--footer-gold-light);

    transition:
        width 0.28s ease;
}


.footer .footer-links a:hover {
    color:
        var(--footer-gold-light) !important;

    transform:
        translateX(4px);
}


.footer .footer-links a:hover::after {
    width: 100%;
}


/* ---------------------------------------------------------
   WELLNESS CTA STRIP
   --------------------------------------------------------- */

.footer .footer-contact {
    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(201, 164, 92, 0.075),
            rgba(255, 255, 255, 0.025),
            rgba(201, 164, 92, 0.075)
        );

    border-top:
        1px solid var(--footer-border);

    border-bottom:
        1px solid var(--footer-border);
}


/* Inner layout */

.footer .footer-contact-inner {
    width: min(1280px, calc(100% - 80px));

    min-height: 185px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(350px, 1.35fr)
        minmax(220px, 0.8fr)
        minmax(190px, auto);

    align-items: center;

    column-gap: 55px;
}


/* CTA label */

.footer .footer-contact-label {
    display: block;

    margin-bottom: 12px;

    color: var(--footer-gold);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 3.2px;
}


/* Main CTA title */

.footer .footer-contact h3 {
    margin: 0;

    color: var(--footer-white) !important;

    font-size:
        clamp(28px, 3vw, 42px) !important;

    font-weight: 400 !important;

    line-height: 1.22;

    letter-spacing: -0.4px;
}


/* ---------------------------------------------------------
   Contact details
   --------------------------------------------------------- */

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-details a {
    display: flex;
    align-items: center;
    gap: 11px;
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-details a:hover {
    color: var(--veda-gold-light);
}

.contact-icon {
    width: 19px;
    height: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--veda-gold-light);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}


.footer .footer-contact-details span {
    color: var(--footer-text) !important;

    font-size: 13px !important;

    line-height: 1.45;
}



/* ---------------------------------------------------------
   CTA ACTIONS
   --------------------------------------------------------- */

.footer .footer-actions {
    display: flex;
    flex-direction: column;

    align-items: stretch;

    gap: 15px;
}


/* Consultation */

.footer .footer-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    min-width: 190px;

    padding:
        13px 20px;

    background: var(--footer-gold);

    border: 1px solid var(--footer-gold);

    color: #17231d !important;

    font-size: 11px !important;
    font-weight: 600 !important;

    line-height: 1;

    letter-spacing: 0.9px;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.footer .footer-action-btn span {
    font-size: 17px;

    transition:
        transform 0.3s ease;
}


.footer .footer-action-btn:hover {
    background: transparent;

    color: var(--footer-gold-light) !important;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.20);
}


.footer .footer-action-btn:hover span {
    transform: translateX(5px);
}


/* Membership */

.footer .footer-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    color: var(--footer-gold-light) !important;

    font-size: 11px !important;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.7px;

    text-decoration: none;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}


.footer .footer-action-link span {
    font-size: 15px;
}


.footer .footer-action-link:hover {
    color: #f0d28c !important;

    gap: 14px;
}


/* ---------------------------------------------------------
   BOTTOM COPYRIGHT BAR
   --------------------------------------------------------- */

.footer .footer-bottom {
    width: min(1280px, calc(100% - 80px));

    min-height: 70px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: var(--footer-muted) !important;

    font-size: 10px !important;

    letter-spacing: 0.45px;

    border-top:
        1px solid var(--footer-border-soft);
}


.footer .footer-bottom span {
    color: var(--footer-muted) !important;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1150px) {

    .footer .footer-grid,
    .footer .footer-contact-inner,
    .footer .footer-bottom {
        width: min(100% - 56px, 1000px);
    }


    .footer .footer-grid {
        grid-template-columns:
            1.35fr
            0.8fr
            1fr;

        gap: 42px;
    }


    .footer .footer-brand {
        grid-column: span 3;

        max-width: 650px;
    }


    .footer .footer-contact-inner {
        grid-template-columns:
            1fr 1fr;

        row-gap: 25px;

        padding:
            42px 0;
    }


    .footer .footer-actions {
        align-items: flex-start;
    }
}


/* ---------------------------------------------------------
   TABLET / SMALL DESKTOP
   --------------------------------------------------------- */

@media (max-width: 820px) {

    .footer .footer-grid {
        grid-template-columns:
            1fr 1fr;

        gap:
            42px 35px;

        padding:
            60px 0 55px;
    }


    .footer .footer-brand {
        grid-column: span 2;
    }


    .footer .footer-contact-inner {
        grid-template-columns: 1fr;

        gap: 25px;

        padding:
            42px 0;
    }


    .footer .footer-actions {
        flex-direction: row;
        align-items: center;

        gap: 22px;
    }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

    .footer .footer-grid,
    .footer .footer-contact-inner,
    .footer .footer-bottom {
        width: calc(100% - 36px);
    }


    .footer .footer-grid {
        grid-template-columns: 1fr;

        gap: 37px;

        padding:
            48px 0 45px;
    }


    .footer .footer-brand {
        grid-column: auto;

        max-width: none;
    }


    /* Brand */

    .footer .brand-mark {
        width: 43px;
        height: 43px;

        font-size: 19px;
    }


    .footer .brand-title {
        font-size: 19px;

        letter-spacing: 3px;
    }


    .footer .brand-sub {
        font-size: 8px;

        letter-spacing: 2.5px;
    }


    /* Description */

.footer .footer-brand > p { 
    max-width: none; 

    margin: 
        -10px 0 27px; 

    font-size: 13px !important; 

    line-height: 1.8; 
}

    /* Column headings */

    .footer .footer-column h4 {
        margin-bottom: 21px;

        font-size: 11px !important;

        letter-spacing: 2.2px;
    }


    /* Links */

    .footer .footer-links {
        gap: 9px;
    }


    .footer .footer-links a,
    .footer .footer-links span {
        font-size: 13px !important;
    }


    /* CTA */

    .footer .footer-contact-inner {
        width: calc(100% - 36px);

        min-height: 0;

        gap: 24px;

        padding:
            40px 0;
    }


    .footer .footer-contact-label {
        font-size: 8px;

        letter-spacing: 2.4px;
    }


    .footer .footer-contact h3 {
        max-width: 360px;

        font-size: 28px !important;

        line-height: 1.25;
    }


    .footer .footer-contact-details {
        padding-left: 0;

        gap: 7px;
    }


    .footer .footer-contact-details span {
        font-size: 12px !important;
    }


    /* Actions */

    .footer .footer-actions {
        flex-direction: column;

        align-items: stretch;

        gap: 15px;
    }


    .footer .footer-action-btn {
        width: 100%;
    }


    .footer .footer-action-link {
        align-self: flex-start;
    }


    /* Bottom */

    .footer .footer-bottom {
        width: calc(100% - 36px);

        min-height: 0;

        padding:
            20px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 7px;

        font-size: 9px !important;

        line-height: 1.55;
    }
}


/* ---------------------------------------------------------
   VERY SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 380px) {

    .footer .footer-grid,
    .footer .footer-contact-inner,
    .footer .footer-bottom {
        width: calc(100% - 30px);
    }


    .footer .footer-contact h3 {
        font-size: 25px !important;
    }


    .footer .brand-title {
        font-size: 18px;
    }
}


/* ---------------------------------------------------------
   ACCESSIBILITY
   --------------------------------------------------------- */

.footer a:focus-visible {
    outline:
        2px solid var(--footer-gold-light);

    outline-offset: 4px;
}

/* footer nav items color chaned to black color code starts */
 /* =========================================================
   FOOTER BLACK TEXT OVERRIDES
   ========================================================= */

/* Footer Links */
.footer .footer-links a,
.footer .footer-links span {
    color: #000000 !important;
}

/* Brand Description */
.footer .footer-brand > p {
    color: #000000 !important;
}

/* Footer Contact Label */
.footer .footer-contact-label {
    color: #000000 !important;
}

/* Footer Contact Heading */
.footer .footer-contact h3 {
    color: #000000 !important;
}

/* Footer Contact Details */
.footer .footer-contact-details,
.footer .footer-contact-details a,
.footer .footer-contact-details span {
    color: #000000 !important;
}

/* Contact Icons */
.footer .footer-contact-details .contact-icon {
    color: #000000 !important;
}

/* Developer credits code starts here */
 /* =========================================================
   FOOTER BOTTOM BAR - COPYRIGHT & DEVELOPER CREDIT
   ========================================================= */

.footer .footer-bottom {
    position: relative !important;
    z-index: 10 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    visibility: visible !important;
    opacity: 1 !important;
}

/* Copyright */
.footer .footer-bottom .footer-copyright {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    color: #000000 !important;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 13px !important;
    font-weight: 400 !important;

    line-height: 1.6 !important;
    letter-spacing: 0.3px;

    text-align: left;
}


/* Developer Credit */
.footer .footer-bottom .footer-developer-credit {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    color: #000000 !important;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 13px !important;
    font-weight: 500 !important;

    line-height: 1.6 !important;
    letter-spacing: 0.4px;

    text-align: right;

    white-space: nowrap;
}

/* Developer Name */
.footer .footer-bottom .footer-developer-credit strong {
    color: var(--footer-gold) !important;
}

.footer .footer-developer-credit {
    text-decoration: none;
    position: relative;
}

.footer .footer-developer-credit::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.footer .footer-developer-credit:hover::after {
    width: 100%;
}
/* Tablet */
@media (max-width: 820px) {

    .footer .footer-bottom .footer-copyright,
    .footer .footer-bottom .footer-developer-credit {
        font-size: 12px !important;
    }

}


/* Mobile */
@media (max-width: 600px) {

    .footer .footer-bottom .footer-copyright {
        font-size: 11px !important;
        text-align: center;
    }

    .footer .footer-bottom .footer-developer-credit {
        font-size: 11px !important;
        text-align: center;
    }

}


/* Very small mobile */
@media (max-width: 380px) {

    .footer .footer-bottom .footer-copyright,
    .footer .footer-bottom .footer-developer-credit {
        font-size: 10.5px !important;
    }

}

/* footer nav items color chaned to black color code ends */



/* logo size increase code starts at the header section */

/* logo size increase code ends at the header section */