/* ================= FOOTER CSS - ULTRA PREMIUM ================= */
:root {
    --dark-green: #204312;
    --leaf-green: #737622;
    --gold: #C9A03D;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ================= MAIN FOOTER ================= */
.main-footer {
    background: var(--dark-green);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 25px;
    position: relative;
    margin-top: 0;
}

/* Top Border Gradient */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--leaf-green), var(--gold));
}

/* Decorative Leaves Pattern */
.main-footer::after {
    content: '🌿';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 40px;
    opacity: 0.05;
    pointer-events: none;
}

/* ================= FOOTER GRID ================= */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

/* ================= FOOTER COLUMNS ================= */
.footer-col {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-col:nth-child(1) { animation-delay: 0s; }
.footer-col:nth-child(2) { animation-delay: 0.1s; }
.footer-col:nth-child(3) { animation-delay: 0.2s; }
.footer-col:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= FOOTER LOGO ================= */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px !important;
    width: auto;
    transition: var(--transition);
    border-radius: 8px;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-logo h3 {
    color: var(--white);
    font-size: 20px;
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-logo h3 span {
    color: var(--gold);
}

.footer-logo p {
    font-size: 10px;
    letter-spacing: 2px;
    margin: 0;
    color: var(--gold);
}

/* ================= FOOTER DESCRIPTION ================= */
.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}

/* ================= SOCIAL ICONS ================= */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-4px);
    color: var(--white);
}

/* ================= FOOTER TITLES ================= */
.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 60px;
}

/* ================= FOOTER LINKS ================= */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a i {
    font-size: 12px;
    color: var(--gold);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-col ul li a:hover i {
    opacity: 1;
}

/* ================= CONTACT LIST ================= */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.contact-list li i {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    transition: var(--transition);
}

.contact-list li:hover {
    transform: translateX(5px);
    color: var(--white);
}

.contact-list li:hover i {
    background: var(--gold);
    color: var(--white);
}

/* ================= WHATSAPP ORDER BUTTON ================= */
.whatsapp-order {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.whatsapp-order i {
    font-size: 18px;
}

.whatsapp-order:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: var(--white);
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom i {
    color: var(--gold);
    margin: 0 3px;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ================= WHATSAPP FLOAT BUTTON ================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    transition: var(--transition);
    z-index: 100;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.6);
        transform: scale(1.05);
    }
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

/* ================= BACK TO TOP BUTTON ================= */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    box-shadow: var(--shadow-md);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--leaf-green);
    transform: translateY(-5px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-col ul li a {
        justify-content: center;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .whatsapp-order {
        max-width: 250px;
        margin: 15px auto 0;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        height: 45px;
    }
    
    .footer-logo h3 {
        font-size: 18px;
    }
    
    .footer-desc {
        font-size: 12px;
    }
    
    .footer-col h4 {
        font-size: 16px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .footer-bottom {
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .whatsapp-order {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .contact-list li {
        font-size: 12px;
    }
    
    .contact-list li i {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}