/* ============================================================
   MODERN FOOTER DESIGN - BRAND NEW APPROACH
   ============================================================ */

/* Base Footer Styling */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0B926A 0%, #00b894 50%, #0B926A 100%);
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Main Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 50px;
    padding: 60px 0 40px;
}

/* Brand Section - Modern Card Style */
.footer-brand {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(11, 146, 106, 0.2);
    transition: all 0.3s ease;
}

.footer-brand:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(11, 146, 106, 0.4);
    transform: translateY(-3px);
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

.footer-logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-logo a:hover {
    transform: scale(1.05);
}

.footer-brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #0B926A;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.footer-brand-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0B926A, #00b894);
    border-radius: 2px;
}

.footer-about-text {
    font-family: 'Century Gothic', sans-serif;
    font-size: 14px;
    color: #d0d0d0;
    line-height: 1.8;
    margin: 0 0 15px 0;
}

.footer-brand-description {
    font-family: 'Century Gothic', sans-serif;
    font-size: 13px;
    color: #999999;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    padding-left: 15px;
    border-left: 2px solid rgba(11, 146, 106, 0.3);
}

/* Contact Section - Sleek Design */
.footer-contact {
    padding: 30px 25px;
    background: rgba(11, 146, 106, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(11, 146, 106, 0.15);
}

.footer-contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-details > div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Century Gothic', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #d0d0d0;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-contact-details > div span,
.footer-contact-details > div a {
    display: inline-block;
    line-height: 24px;
    vertical-align: middle;
}

.footer-contact-details > div:hover {
    background: rgba(11, 146, 106, 0.1);
    transform: translateX(5px);
}

.footer-contact-details i {
    color: #0B926A;
    font-size: 14px;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 146, 106, 0.15);
    border-radius: 6px;
    flex-shrink: 0;
    align-self: center;
}

.footer-contact-details a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-details a:hover {
    color: #0B926A;
}

/* Social Section - Modern Grid */
.footer-social {
    padding: 30px 25px;
    background: rgba(11, 146, 106, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(11, 146, 106, 0.15);
}

.footer-social-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-social-links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-start;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(11, 146, 106, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0B926A, #00b894);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.footer-social-links a i {
    position: relative;
    z-index: 1;
}

.footer-social-links a:hover {
    border-color: #0B926A;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(11, 146, 106, 0.3);
}

.footer-social-links a:hover::before {
    opacity: 1;
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-family: 'Century Gothic', sans-serif;
    font-size: 13px;
    color: #888888;
    margin: 0;
}

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

.footer-links a {
    font-family: 'Century Gothic', sans-serif;
    font-size: 13px;
    color: #888888;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0B926A;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #0B926A;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Widget Compatibility */
.footer-content .widget {
    margin-bottom: 0;
}

.footer-content .widget-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-content .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-content .widget li {
    margin: 0;
}

.footer-content .widget a {
    font-family: 'Century Gothic', sans-serif;
    font-size: 14px;
    color: #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-content .widget a:hover {
    color: #0B926A;
    transform: translateX(5px);
}

/* WhatsApp Floating Button */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #20c158);
    border-radius: 50%;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #20c158, #1ba84a);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-text {
    background: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: 'Century Gothic', sans-serif;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-container:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}


/* ============================================================
   RESPONSIVE DESIGN - TABLET
   ============================================================ */

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 0 30px;
    }
    
    .footer-brand,
    .footer-contact,
    .footer-social {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .site-footer .container {
        padding: 0 15px;
    }
}


/* ============================================================
   RESPONSIVE DESIGN - MOBILE
   ============================================================ */

@media (max-width: 768px) {
    .footer-content {
        gap: 25px;
        padding: 40px 0 25px;
    }
    
    /* Remove max-width for mobile - all sections full width */
    .footer-brand,
    .footer-contact,
    .footer-social {
        max-width: 100%;
        margin: 0;
    }
    
    /* Brand Section Mobile */
    .footer-brand {
        padding: 25px 20px;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 15px;
        display: flex;
        justify-content: center;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .footer-brand-title {
        font-size: 24px;
        margin: 0 0 18px 0;
        padding-bottom: 12px;
    }
    
    .footer-brand-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }
    
    .footer-about-text {
        font-size: 13px;
        line-height: 1.7;
        margin: 0 0 12px 0;
    }
    
    .footer-brand-description {
        font-size: 12px;
        line-height: 1.5;
        padding-left: 0;
        border-left: none;
        padding-top: 12px;
        border-top: 1px solid rgba(11, 146, 106, 0.2);
    }
    
    /* Contact Section Mobile */
    .footer-contact {
        padding: 25px 20px;
        text-align: center;
    }
    
    .footer-contact-title {
        font-size: 20px;
        margin: 0 0 20px 0;
    }
    
    .footer-contact-details {
        gap: 12px;
    }
    
    .footer-contact-details > div {
        justify-content: center;
        font-size: 13px;
        padding: 12px 15px;
    }
    
    .footer-contact-details > div:hover {
        transform: translateX(0);
        transform: scale(1.02);
    }
    
    /* Social Section Mobile */
    .footer-social {
        padding: 25px 20px;
        text-align: center;
    }
    
    .footer-social-title {
        font-size: 20px;
        margin: 0 0 20px 0;
    }
    
    .footer-social-links {
        justify-content: center;
        gap: 10px;
    }
    
    .footer-social-links a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    /* Footer Bottom Mobile */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        gap: 12px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    /* WhatsApp Button Mobile */
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    
    .whatsapp-text {
        display: none;
    }
}


/* ============================================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {
    .footer-content {
        gap: 20px;
        padding: 35px 0 20px;
    }
    
    .footer-brand,
    .footer-contact,
    .footer-social {
        padding: 20px 15px;
    }
    
    .footer-logo {
        margin-bottom: 12px;
    }
    
    .footer-logo img {
        max-width: 120px;
    }
    
    .footer-brand-title {
        font-size: 20px;
        margin: 0 0 15px 0;
    }
    
    .footer-contact-title,
    .footer-social-title {
        font-size: 18px;
        margin: 0 0 15px 0;
    }
    
    .footer-about-text {
        font-size: 12px;
        margin: 0 0 10px 0;
    }
    
    .footer-brand-description {
        font-size: 11px;
    }
    
    .footer-contact-details > div {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .footer-contact-details i {
        font-size: 14px;
        width: 20px;
        height: 20px;
    }
    
    .footer-social-links {
        justify-content: center;
        gap: 8px;
    }
    
    .footer-social-links a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .footer-bottom {
        padding: 18px 0;
        gap: 10px;
    }
    
    .footer-copyright,
    .footer-links a {
        font-size: 11px;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}


/* ============================================================
   CONSISTENCY OVERRIDES - ALL PAGES
   ============================================================ */

body .site-footer,
body.home .site-footer,
body.page .site-footer,
body.single .site-footer,
body.archive .site-footer,
body.page-template .site-footer,
body.woocommerce .site-footer,
body.woocommerce-page .site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%) !important;
    color: #ffffff !important;
    margin-top: 0 !important;
}
