/*==================================================
DIAMOND AREA CDC
OFFICIAL COMPACT FOOTER
==================================================*/

:root{

    --green:#0B6E3E;
    --green-dark:#07552F;
    --gold:#D9B54A;
    --white:#ffffff;
    --text:#F3F3F3;

}

/*==================================================
FOOTER
==================================================*/

.site-footer{

    background:linear-gradient(180deg,var(--green),var(--green-dark));

    border-top:3px solid var(--gold);

    color:var(--white);

    font-family:'Poppins',sans-serif;

    margin-top:60px;

}

.footer-container{

    width:95%;

    max-width:1320px;

    margin:auto;

}

/*==================================================
MAIN
==================================================*/

.footer-main{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:28px;

    padding:20px 0;

}

/*==================================================
LOGO
==================================================*/

.footer-brand{

    display:flex;

    align-items:center;

    gap:15px;

    min-width:280px;

}

.footer-logo{

    width:62px;

    height:62px;

    object-fit:contain;

    flex-shrink:0;

}

.brand-text h2{

    margin:0;

    color:#fff;

    font-size:20px;

    font-weight:700;

    line-height:1.2;

    white-space:nowrap;

}

.brand-text p{

    margin-top:4px;

    color:var(--gold);

    font-size:13px;

    font-weight:500;

}

/*==================================================
CONTACT ITEMS
==================================================*/

.footer-item{

    display:flex;

    align-items:center;

    gap:10px;

    padding-left:18px;

    border-left:1px solid rgba(255,255,255,.15);

}

.footer-item i{

    width:24px;

    text-align:center;

    color:var(--gold);

    font-size:18px;

}

.footer-item span{

    color:var(--text);

    font-size:13px;

    line-height:1.45;

}

/*==================================================
SOCIAL
==================================================*/

.footer-social{

    display:flex;

    align-items:center;

    gap:12px;

    padding-left:18px;

    border-left:1px solid rgba(255,255,255,.15);

}

.footer-social a{

    position:relative;

    width:38px;

    height:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    text-decoration:none;

    color:var(--gold);

    border:2px solid var(--gold);

    transition:.3s;

}

/* Gold glow UNDER the icon */

.footer-social a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:2px;

    transform:translateX(-50%);

    width:18px;

    height:10px;

    border-radius:50%;

    background:rgba(217,181,74,.45);

    filter:blur(8px);

    z-index:-1;

}

.footer-social a:hover{

    background:rgba(217,181,74,.10);

    transform:translateY(-2px);

}

.footer-social a i{

    font-size:16px;

}

/*==================================================
COPYRIGHT
==================================================*/

.footer-bottom{

    text-align:center;

    padding:12px 0;

    border-top:1px solid rgba(255,255,255,.10);

}

.footer-bottom{

    font-size:13px;

    color:#ECECEC;

}
/*==================================================
PREMIUM FOOTER EFFECTS
==================================================*/

/* Elegant gold line */

.site-footer{

    position:relative;
    overflow:hidden;

}

.site-footer::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:2px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(217,181,74,.45),
        #FFF3B0,
        rgba(217,181,74,.45),
        transparent
    );

}

/* Decorative gold glow */

.site-footer::after{

    content:"";

    position:absolute;

    right:-130px;
    bottom:-130px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(217,181,74,.10),
        transparent 70%
    );

    pointer-events:none;

}

/* Floating logo */

.footer-logo{

    transition:.45s ease;

}

.footer-brand:hover .footer-logo{

    transform:
        translateY(-5px)
        rotate(-4deg);

}

/* Premium heading animation */

.brand-text h2{

    position:relative;

    display:inline-block;

}

.brand-text h2::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;

    height:2px;

    background:#D9B54A;

    transition:.4s;

}

.footer-brand:hover h2::after{

    width:100%;

}

/* Contact icons */

.footer-item i{

    transition:.35s;

}

.footer-item:hover i{

    color:#FFE38A;

    transform:scale(1.18);

}

/* Contact text */

.footer-item{

    transition:.35s;

}

.footer-item:hover{

    transform:translateY(-2px);

}

/* Social buttons */

.footer-social a{

    transition:.35s ease;

}

.footer-social a:hover{

    background:#D9B54A;

    color:#0B6E3E;

    transform:
        translateY(-4px)
        scale(1.08);

}

/* Copyright */

.footer-bottom{

    letter-spacing:.6px;

}
/*==================================================
FOOTER LINKS
==================================================*/

.footer-item a{

    color:#F3F3F3;

    text-decoration:none;

    transition:.3s;

}

.footer-item a:hover{

    color:#D9B54A;

}