
.footer {
    background-color: #0a2342;
    color: #ffffff;
    padding: 6rem 1rem 2rem;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.5rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #4ecdc4;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4ecdc4;
}

.social-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.connect-with-us {
    width: 300px;
}

.social-circle:hover {
    background-color: #4ecdc4;
    transform: scale(1.1);
}

.social-circle i {
    color: #ffffff;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    font-size: 0.9rem;
}

/* Payment Methods Styling */
.payment-methods {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods h5 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

.payment-icons i {
    font-size: 28px;
    color: #fff;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: default;
}

.payment-icons i:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.payment-icons .fa-cc-visa {
    color: #1434CB;
}

.payment-icons .fa-cc-mastercard {
    color: #EB001B;
}

.payment-icons .fa-cc-paypal {
    color: #0070BA;
}

.payment-icons .fa-money-bill-wave {
    color: #28a745;
}

.payment-icons .fa-credit-card {
    color: #6c757d;
}
