/* 
═══════════════════════════════════════════════════════════════════
IMPROVED FOOTER STYLES - Aligned with Homepage Improvements
═══════════════════════════════════════════════════════════════════
File: Add this to your existing assets/css/style.css OR create footer-improvements.css
Purpose: Modern footer styling matching the homepage brand colors
═══════════════════════════════════════════════════════════════════
*/

/* ══════════════════════════════════════════════
   🎯 PRE-FOOTER TRUST SECTION
   ══════════════════════════════════════════════ */
.pg-pre-footer-trust {
    background: linear-gradient(135deg, #f5f7fa 0%, #e2d0c3 100%);
    padding: 60px 0;
    margin-top: 80px;
}

.trust-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fc6e1d 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(252,110,29,0.3);
}

.trust-icon i {
    font-size: 28px;
    color: white;
}

.trust-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}


/* ══════════════════════════════════════════════
   📧 NEWSLETTER SECTION (OPTIONAL)
   ══════════════════════════════════════════════ */
.pg-newsletter-section {
    background: linear-gradient(135deg, #fc6e1d 0%, #ff8c42 100%);
    padding: 50px 0;
    color: white;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px 0;
}

.newsletter-content p {
    font-size: 16px;
    margin: 0;
    opacity: 0.95;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.newsletter-form .input-group {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.pg-btn-subscribe {
    background: white;
    color: #fc6e1d;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pg-btn-subscribe:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .pg-btn-subscribe {
        width: 100%;
        justify-content: center;
    }
}


/* ══════════════════════════════════════════════
   🦶 MAIN FOOTER - IMPROVED
   ══════════════════════════════════════════════ */
.pg-footer {
    background: #1a1a1a;
    color: #fff !important;
    padding-top: 60px;
}

.pg-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Brand Column */
.pg-footer-brand {
    max-width: 350px;
}

.pg-footer-logo-img img {
    max-width: 180px;
    margin-bottom: 20px;
}

.pg-footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 25px;
}

/* Social Media */
.pg-footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.pg-footer-social a {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pg-footer-social a:hover {
    background: #fc6e1d;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(252,110,29,0.4);
}

/* Payment Methods (NEW) */
.pg-footer-payment {
    margin-top: 20px;
}

.payment-label {
    font-size: 13px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 32px;
    color: #fff;
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: #fc6e1d;
}

/* Footer Column Headings */
.pg-footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.pg-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #fc6e1d;
    border-radius: 2px;
}

/* Footer Links */
.pg-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pg-footer-col ul li {
    margin-bottom: 12px;
}

.pg-footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.pg-footer-col ul li a:hover {
    color: #fc6e1d;
    padding-left: 5px;
}

/* Contact List */
.pg-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.pg-contact-list i {
    width: 20px;
    color: #fc6e1d;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info {
    flex: 1;
}

.contact-info strong {
    display: block;
    color: white;
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fc6e1d;
}

.contact-info span {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}


/* ══════════════════════════════════════════════
   📜 FOOTER BOTTOM
   ══════════════════════════════════════════════ */
.pg-footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 14px;
    color: #fff !important;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fc6e1d;
}


/* ══════════════════════════════════════════════
   📱 RESPONSIVE DESIGN
   ══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 991px) {
    .pg-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .pg-footer-brand {
        max-width: 100%;
    }
    
    .trust-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-icon {
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .pg-pre-footer-trust {
        padding: 40px 0;
        margin-top: 40px;
    }
    
    .pg-footer {
        padding-top: 40px;
    }
    
    .pg-footer-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .pg-footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .pg-footer-col {
        text-align: center;
    }
    
    .pg-footer-social {
        justify-content: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .pg-contact-list {
        text-align: left;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .trust-feature {
        padding: 20px;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
    }
    
    .trust-icon i {
        font-size: 24px;
    }
    
    .trust-content h5 {
        font-size: 16px;
    }
}


/* ══════════════════════════════════════════════
   🎨 ADDITIONAL ENHANCEMENTS
   ══════════════════════════════════════════════ */

/* Smooth scroll to top button (optional - add to footer if wanted) */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #fc6e1d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(252,110,29,0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #1a1a1a;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}