/* Swad Footer Styles */
.swad-footer-container {
    background-color: #a72c25;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
}
.swad-footer-container * {
    box-sizing: border-box;
}

/* Newsletter Section */
.swad-footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    flex-wrap: wrap;
    gap: 20px;
}

.swad-newsletter-left {
    flex: 1;
    min-width: 300px;
}

.swad-newsletter-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif; /* or inherit */
}

.swad-newsletter-title {
    font-size: 28px;
    font-family: 'Playfair Display', Georgia, serif; /* serif font based on design */
    font-weight: 500;
}

.swad-newsletter-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 300px;
}

.swad-dummy-form {
    display: flex;
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 30px;
    overflow: hidden;
    padding: 2px;
}

.swad-dummy-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 20px;
    outline: none;
    font-size: 14px;
}
.swad-dummy-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.7);
}

.swad-dummy-form button {
    background: #fff;
    color: #a72c25;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    text-transform: capitalize;
    font-size: 14px;
    transition: all 0.3s ease;
}

.swad-dummy-form button:hover {
    background: #f1f1f1;
}

/* Main Footer Area */
.swad-footer-main {
    display: flex;
    justify-content: space-between;
    padding: 50px 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.swad-footer-info {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.swad-footer-logo {
    margin-bottom: 20px;
}

.swad-footer-logo img {
    max-width: 120px;
    height: auto;
}

.swad-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.swad-footer-desc p {
    margin: 0 0 10px 0;
}

.swad-footer-desc p:last-child {
    margin-bottom: 0;
}

.swad-footer-desc a {
    color: #fff;
    text-decoration: underline;
}

.swad-footer-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.swad-follow-text {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.swad-footer-socials a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.swad-footer-socials a:hover {
    opacity: 0.8;
}

.swad-footer-contact {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.swad-contact-phone,
.swad-contact-email {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.swad-contact-phone:hover,
.swad-contact-email:hover {
    opacity: 0.8;
}

.swad-contact-divider {
    color: rgba(255,255,255,0.5);
}

.swad-footer-payments {
    margin-top: 30px;
}

.swad-payments-heading {
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.swad-payments-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.swad-payments-icons img {
    height: 30px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

/* Quick Links Area */
.swad-footer-links-wrap {
    flex: 1;
    min-width: 200px;
    max-width: 400px;
}

.swad-links-heading {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.swad-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.swad-link-item {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-family: inherit;
}

.swad-link-item:hover {
    color: #fff;
    text-decoration: underline;
}

/* Agent Button */
.swad-agent-btn-wrapper {
    margin-top: 50px; /* Default margin to align with mail, adjustable via Elementor */
}

.swad-agent-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.swad-agent-btn:hover {
    background: #fff;
    color: #a72c25;
}

/* Bottom Bar */
.swad-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    flex-wrap: wrap;
    gap: 15px;
}

.swad-bottom-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.swad-bottom-links a:hover {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .swad-footer-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .swad-newsletter-right {
        justify-content: center;
        width: 100%;
    }

    .swad-dummy-form {
        max-width: 100%;
    }

    .swad-footer-main {
        flex-direction: column;
        padding: 40px 20px;
    }

    .swad-footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .swad-bottom-links a {
        margin: 0 10px;
    }

    .swad-agent-btn-wrapper {
        margin-top: 20px !important;
        text-align: center;
    }
}
