/* ============================================
   HERB ON NATURALS - PREMIUM FOOTER 2026
   Clean, Visible, Modern Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   MAIN FOOTER CONTAINER
   ============================================ */

.modern-footer {
    background: #1B4332 !important;
    padding: 0 !important;
    font-family: 'Outfit', sans-serif !important;
    border-top: none !important;
    position: relative;
    overflow: hidden;
}

/* Decorative gradient orbs */
.modern-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(64, 145, 108, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.modern-footer::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER TOP SECTION
   ============================================ */

.footer-top {
    display: grid !important;
    grid-template-columns: 1.2fr 2fr 1.2fr !important;
    gap: 50px !important;
    padding: 70px 0 50px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    margin-bottom: 0 !important;
}

/* ============================================
   BRAND COLUMN
   ============================================ */

.footer-brand-col {
    flex: none !important;
    min-width: auto !important;
}

.footer-logo {
    margin-bottom: 25px !important;
}

.footer-logo img.logo-img {
    height: 55px !important;
    width: auto !important;
    max-width: 200px !important;
    filter: brightness(0) invert(1) !important;
    opacity: 0.95 !important;
    transition: all 0.3s ease;
}

.footer-logo:hover img.logo-img {
    opacity: 1 !important;
    transform: scale(1.03);
}

.footer-address {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
    margin-bottom: 25px !important;
    max-width: 260px !important;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-item:hover {
    color: white !important;
    transform: translateX(4px);
}

.contact-item svg {
    width: 20px !important;
    height: 20px !important;
    stroke: #52B788 !important;
    stroke-width: 2px !important;
    flex-shrink: 0;
}

/* ============================================
   LINKS COLUMNS
   ============================================ */

.footer-links-col {
    flex: none !important;
    min-width: auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 50px !important;
}

.link-group h4 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: white !important;
    margin-bottom: 22px !important;
    position: relative;
    padding-bottom: 12px;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: #52B788;
    border-radius: 2px;
}

.link-group ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0;
}

.link-group ul li {
    margin-bottom: 12px !important;
}

.link-group ul li a,
.link-group ul a {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    padding-left: 0 !important;
}

.link-group ul li a:hover,
.link-group ul a:hover {
    color: white !important;
    padding-left: 8px !important;
}

.link-group ul li a::before {
    display: none !important;
}

/* ============================================
   NEWSLETTER COLUMN
   ============================================ */

.footer-newsletter-col {
    flex: none !important;
    min-width: auto !important;
}

.footer-newsletter-col h4 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: white !important;
    margin-bottom: 22px !important;
}

.footer-newsletter-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 18px;
}

.newsletter-input-group {
    display: flex !important;
    gap: 0 !important;
    margin-bottom: 25px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-input-group input {
    flex: 1 !important;
    padding: 14px 18px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-right: none !important;
    border-radius: 8px 0 0 8px !important;
    color: white !important;
    font-size: 14px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 500 !important;
    outline: none !important;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.newsletter-input-group input:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #52B788 !important;
}

.newsletter-input-group button {
    padding: 14px 22px !important;
    background: #52B788 !important;
    color: white !important;
    border: 1px solid #52B788 !important;
    border-radius: 0 8px 8px 0 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.newsletter-input-group button:hover {
    background: #74C69D !important;
    border-color: #74C69D !important;
}

/* Social Links */
.social-links {
    display: flex !important;
    gap: 12px !important;
}

.social-icon {
    width: 42px !important;
    height: 42px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    color: white !important;
}

.social-icon:hover {
    background: #52B788 !important;
    border-color: #52B788 !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(82, 183, 136, 0.3) !important;
}

.social-icon svg {
    width: 18px !important;
    height: 18px !important;
    stroke: white !important;
    stroke-width: 2px !important;
}

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

.footer-bottom {
    padding: 35px 0 !important;
    border-top: none !important;
}

.partners-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    padding-bottom: 30px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 25px !important;
}

.partner-group {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
}

.partner-label {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
}

.partner-logos {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

.payment-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 40px !important;
    min-width: 60px !important;
    padding: 8px 12px !important;
    background: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.payment-badge:hover {
    background: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
}

.payment-badge img {
    max-height: 24px !important;
    width: auto !important;
    object-fit: contain !important;
    filter: none !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

.payment-badge:hover img {
    transform: scale(1.05) !important;
}

/* Policies Row */
.policies-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    padding-top: 0 !important;
    border-top: none !important;
}

.policy-left {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.policy-left span {
    color: rgba(255, 255, 255, 0.5) !important;
}

.policy-links {
    display: flex !important;
    gap: 25px !important;
}

.policy-links a {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.policy-links a:hover {
    color: white !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
        padding: 50px 0 40px !important;
    }

    .footer-newsletter-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }

    .partners-row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 25px !important;
    }

    .partner-group {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .policies-row {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }

    .policy-links {
        justify-content: center !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 40px 0 30px !important;
        text-align: center !important;
    }

    .footer-brand-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .footer-address {
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 13px !important;
        max-width: 100% !important;
    }

    .contact-item {
        justify-content: center !important;
        width: 100% !important;
    }

    .footer-newsletter-col {
        grid-column: span 1;
    }

    .footer-links-col {
        grid-template-columns: 1fr 1fr !important;
        /* side by side links */
        gap: 20px !important;
        text-align: center !important;
    }

    .link-group h4 {
        font-size: 12px !important;
        margin-bottom: 15px !important;
    }

    .link-group h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .link-group ul li a {
        font-size: 13px !important;
    }

    .social-links {
        justify-content: center !important;
    }

    .newsletter-input-group {
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}