/* ===== FOOTER STYLES ===== */
:root {
    --bg-dark: #1a1a2e;
    --text-light: #ffffff;
    --text-dark: #333333;
    --primary-color: #0f3460;
    --secondary-color: #f8b500;
    --secondary-light: #f9c535;
}

.footer-section {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 70px 0 30px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo-section {
    position: relative;
    grid-column: span 1;
    top: -10px;
}

.footer-logo-section img {
  border-radius: 50%;
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo-section img:hover {
    transform: scale(1.05);
}

.footer-logo-description {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social-title {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-icons a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: 0 8px 15px rgba(248, 181, 0, 0.3);
}

.social-icons a:hover::after {
    left: 100%;
}

.footer-section h4 {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

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

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.footer-links li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-newsletter {
    position: relative;
}

.newsletter-description {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form .form-group {
    margin-bottom: 15px;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    background: rgba(0,0,0,0.2);
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.2);
    background: rgba(0,0,0,0.3);
}

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

.newsletter-form .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.newsletter-form button {
    width: 100%;
    padding: 14px;
    background: var(--secondary-color);
    border: none;
    border-radius: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.newsletter-form button:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 181, 0, 0.4);
}

.newsletter-response {
    font-size: 14px;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    display: none;
}

.newsletter-response.success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    display: block;
}

.newsletter-response.error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.payment-methods img {
    height: 25px;
    width: auto;
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-methods img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

/* SSL Badge */
.ssl-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 12px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 4px;
    width: fit-content;
    color: #2ecc71;
    font-size: 13px;
    font-weight: 500;
}

.ssl-badge i {
    font-size: 18px;
}

/* Credibility Badges */
.credibility-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.credibility-badge {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-logo-section {
        grid-column: span 3;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-logo-section,
    .footer-newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo-section,
    .footer-newsletter {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}