/* Footer Subscribe Form Styles */

.subscribe-title {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    text-align: left;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.subscribe-form {
    width: 60%;
}

.form-row {
    margin-bottom: 15px;
}

.form-row-inline {
    display: flex;
    gap: 10px;
}

.form-group {
    flex: 1;
}

.subscribe-input {
    width: 100%;
    padding: 8px 15px;
    border: 2px solid #f37020;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.subscribe-input:focus {
    border-color: #e55a2b;
    box-shadow: 0 0 0 3px rgba(243, 112, 32, 0.1);
}

.subscribe-input::placeholder {
    color: #999;
    font-weight: 400;
}

.subscribe-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f37020' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.subscribe-btn {
    width: 100%;
    background: linear-gradient(135deg, #f37020 0%, #e55a2b 100%);
    color: white;
    border: none;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d44a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 112, 32, 0.3);
}

.subscribe-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(243, 112, 32, 0.3);
}

.site-footer p {
    margin-bottom: 0;
    color: #333;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Responsive Design for Footer Form */
@media (max-width: 767.98px) {
    
    .form-row-inline {
        gap: 15px;
    }
    
    .footer-social-links {
        justify-content: center;
    }

    .subscribe-title {
        font-size: 1rem;
    }
    
    .subscribe-input {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .subscribe-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 500px) {
    .mobile-popup-content .subscribe-title{
        font-size: 2rem;
    }

    .mobile-popup-content .subscribe-p-title{
        font-size: 12px;
    }

    .subscribe-form{
        width: 80%;
    }

    span.subscribe-span-title{
        font-size: 12px;
    }

    .mobile-popup-close{
        right: 20px;
    }
}
