/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════════════════════════ */
/* PROFESSIONAL FOOTER STYLES */
/* ═══════════════════════════════════════════════════════════════ */

.site-footer {
    background: linear-gradient(135deg, rgba(13, 69, 44, 0.95) 0%, rgba(26, 46, 39, 0.98) 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    color: #cac2b0;
    font-size: 0.95rem;
    animation: fadeIn 1s ease-out 1.6s both;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* ═══════════════════════════════════════════════════════════════ */
/* MAIN FOOTER CONTENT */
/* ═══════════════════════════════════════════════════════════════ */

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    padding: 3.5rem 2rem;
    align-items: start;
}

.footer-section {
    animation: fadeInUp 1s ease-out 1.8s both;
}

.footer-section:nth-child(1) { animation-delay: 1.8s; }
.footer-section:nth-child(2) { animation-delay: 1.9s; }
.footer-section:nth-child(3) { animation-delay: 2s; }
.footer-section:nth-child(4) { animation-delay: 2.1s; }

/* Brand Section */
.footer-brand {
    padding: 0;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand-name {
    font-size: 1.6rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-brand-tagline {
    color: #FFD700;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
    text-align: left;
}

.footer-description {
    color: #cac2b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Section Titles */
.footer-section-title {
    font-size: 1.1rem;
     background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0 0 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

/* Footer Menus */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-menu li a {
    color: #cac2b0;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 0;
}

.footer-menu li a i {
    color: #FFD700;
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.footer-menu li a:hover {
    color: #FFD700;
    padding-left: 0.8rem;
}

.footer-menu li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Section */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    color: #cac2b0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.6rem;
    border-radius: 6px;
}

.contact-link i {
    color: #FFD700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    padding-left: 1.2rem;
}

.contact-link:hover i {
    transform: scale(1.2);
}

.location-info {
    color: #cac2b0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    margin: 0;
    padding: 0.6rem;
}

.location-info i {
    color: #FFD700;
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════ */
/* FOOTER DIVIDER */
/* ═══════════════════════════════════════════════════════════════ */

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════ */
/* FOOTER BOTTOM */
/* ═══════════════════════════════════════════════════════════════ */

.footer-bottom {
    padding: 2.5rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    animation: fadeInUp 1s ease-out 2.2s both;
}

/* Copyright */
.footer-copyright {
    text-align: left;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: #cac2b0;
    line-height: 1.6;
}

.brand-highlight {
    color: #FFD700;
    font-weight: 600;
    font-family: 'Great Vibes', cursive;
    font-size: 1.1em;
}

.bottom-brand-highlight {
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    font-family: 'Great Vibes', cursive;
    font-size: 1.1em;
}

.eerma-text {
    color: #FFD700;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 0.9em;
}

/* Social Icons */
/* .footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(214, 175, 55, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(214, 175, 55, 0.15) 100%);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    color: #FDB931;
} */

/* Social Icons */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: 600;
}

/* Facebook */
.social-icon[title="Facebook"] {
    background: #1877F2;
    color: white;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-icon[title="Facebook"]:hover {
    background: linear-gradient(135deg, #1877F2 0%, #0a66c2 100%);
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
    border-color: #1877F2;
}

/* Instagram */
.social-icon[title="Instagram"] {
    background: linear-gradient(45deg, #F58529 0%, #DD2A7B 25%, #8134AF 50%, #515BD4 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(221, 42, 123, 0.3);
}

.social-icon[title="Instagram"]:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(221, 42, 123, 0.5);
    filter: brightness(1.1);
    border-color: #DD2A7B;
}
/* Instagram */
.social-icon[title="whatsapp"] {
    background: linear-gradient(45deg, #48f529 0%, #0d7d38 25%, #13673d 50%, #09af43 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(221, 42, 123, 0.3);
}

.social-icon[title="whatsapp"]:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(194, 251, 205, 0.5);
    filter: brightness(1.1);
    border-color: #c4fed0;
}

/* LinkedIn */
.social-icon[title="LinkedIn"] {
    background: #0A66C2;
    color: white;
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3);
}

.social-icon[title="LinkedIn"]:hover {
    background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(10, 102, 194, 0.5);
    border-color: #0A66C2;
}

/* Twitter/X */
.social-icon[title="Twitter"] {
    background: #000000;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-icon[title="Twitter"]:hover {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border-color: #666666;
}

/* Legal Links */
.footer-legal {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.8rem;
    text-align: right;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #cac2b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: #FFD700;
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-legal .divider {
    color: rgba(255, 215, 0, 0.4);
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════════ */
/* ANIMATIONS */
/* ═══════════════════════════════════════════════════════════════ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════ */
/* RESPONSIVE FOOTER */
/* ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 3rem 2rem;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .footer-section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-menu {
        gap: 0.6rem;
    }

    .footer-menu li a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 2rem 1.5rem;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal a {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding: 2rem 1rem;
    }

    .footer-section-title {
        font-size: 0.95rem;
        margin-bottom: 0.9rem;
    }

    .footer-menu li a {
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .footer-brand-name {
        font-size: 1.3rem;
    }

    .footer-brand-tagline {
        font-size: 0.85rem;
    }

    .footer-description {
        font-size: 0.8rem;
    }

    .contact-link {
        font-size: 0.8rem;
        gap: 0.6rem;
    }

    .contact-link i {
        font-size: 0.9rem;
    }

    .location-info {
        font-size: 0.8rem;
        gap: 0.6rem;
    }

    .footer-bottom {
        padding: 1.5rem 1rem;
    }

    .footer-bottom-content {
        gap: 1rem;
    }

    .footer-copyright p {
        font-size: 0.75rem;
    }

    .brand-highlight {
        font-size: 1em;
    }

    .eerma-text {
        font-size: 0.85em;
        letter-spacing: 1.5px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .footer-legal {
        justify-content: center;
        gap: 0.4rem;
    }

    .footer-legal a {
        font-size: 0.75rem;
    }

    .footer-legal .divider {
        font-size: 0.7rem;
    }
}


/* ═══════════════════════════════════════════════════════════════ */
/* scroll TOP BUTTON STYLES */
/* ═══════════════════════════════════════════════════════════════ */

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    /* font-weight: bolder; */
    border: none;
    outline: none;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    color: #234031;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

#scrollTopBtn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 60px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FDB931 0%, #D4AF37 100%);
}
/* ═══════════════════════════════════════════════════════════════ */
