/* ============================================
   MODERN FOOTER (Dark Green Premium Theme)
   ============================================ */

.modern-footer {
    background: linear-gradient(180deg, #1B4332 0%, #0d2818 100%);
    padding: 70px 0 40px;
    font-family: 'Outfit', 'Open Sans', sans-serif;
    border-top: none;
    color: #e5e5e5;
}

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

/* TOP SECTION: 3 Columns */
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 70px;
}

/* Column 1: Brand & Contact */
.footer-brand-col {
    flex: 1;
    min-width: 280px;
}

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

.footer-logo img.logo-img {
    height: 65px;
    /* Slightly larger */
    width: auto;
    max-width: 240px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
    /* More pronounced shadow */
    /* Ensure visibility */
}

.footer-address {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 25px;
    max-width: 280px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item svg {
    width: 22px;
    height: 22px;
    stroke: #74C69D;
    stroke-width: 2.5px;
}

/* Column 2: Links (Double Column) */
.footer-links-col {
    flex: 1;
    min-width: 320px;
    display: flex;
    gap: 70px;
}

.link-group h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #74C69D;
    margin-bottom: 25px;
}

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

.link-group ul li {
    margin-bottom: 16px;
}

.link-group ul a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.link-group ul a:hover {
    color: #74C69D;
    padding-left: 5px;
}

/* Column 3: Newsletter & Social */
.footer-newsletter-col {
    flex: 1;
    min-width: 300px;
}

.footer-newsletter-col h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #74C69D;
    margin-bottom: 25px;
}

.newsletter-input-group {
    display: flex;
    align-items: stretch;
    /* Ensure equal height */
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.newsletter-input-group input {
    flex: 1;
    padding: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    font-size: 15px;
    outline: none;
    color: #333;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px 0 0 8px;
}

.newsletter-input-group button {
    background: linear-gradient(135deg, #40916C 0%, #74C69D 100%);
    border: 2px solid #40916C;
    padding: 0 24px;
    cursor: pointer;
    color: #0d2818;
    font-weight: 700;
    transition: all 0.3s;
    border-radius: 0 8px 8px 0;
}

.newsletter-input-group button:hover {
    background: linear-gradient(135deg, #74C69D 0%, #95D5B2 100%);
    border-color: #74C69D;
}

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

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

.social-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
    stroke: white;
}

.social-icon:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #40916C 0%, #74C69D 100%);
    border-color: #74C69D;
    box-shadow: 0 6px 15px rgba(116, 198, 157, 0.35);
}

/* BOTTOM SECTION: Partners & Policies */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 40px;
    background: linear-gradient(180deg, #0d2818 0%, #071510 100%);
}

/* Hide mobile-only company info on desktop */
.mobile-company-info {
    display: none;
}

/* Partners Row */
.partners-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.partner-group {
    display: flex;
    align-items: center;
    gap: 18px;
    /* Slightly more gap */
}

.partner-label {
    font-size: 14px;
    font-weight: 700;
    color: #74C69D;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* CSS Payment Logos (Real Images) */
.payment-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    /* Slightly taller for images */
    min-width: 60px;
    padding: 0 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.payment-badge img {
    max-height: 22px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: grayscale(0.2);
    /* Subtle premium touch */
    transition: filter 0.3s;
}

.payment-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(116, 198, 157, 0.25);
    border-color: #74C69D;
}

.payment-badge:hover img {
    filter: grayscale(0);
}

.badge-meesho {
    min-width: 80px;
}

.badge-meesho img {
    max-height: 25px;
}

.policies-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-left a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.policy-left a:hover {
    color: #74C69D;
}

.policy-links {
    display: flex;
    gap: 30px;
}

.policy-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.policy-links a:hover {
    color: #74C69D;
}

.footer-bottom {
    padding-top: 20px;
}
}