/* ===== ENHANCED FOOTER & NEWSLETTER ===== */

/* === NEWSLETTER SECTION === */
.newsletter-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0F4C6B 0%, #1a5f7a 50%, #0d3d52 100%);
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 130, 32, 0.15), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27, 156, 252, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.newsletter-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.newsletter-subtitle {
    font-size: 16px;
    color: #dbe8f0;
    margin-bottom: 35px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto 25px;
}

.newsletter-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.newsletter-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    border-color: #F58220;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(245, 130, 32, 0.3);
}

.newsletter-input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
}

.newsletter-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, #F58220, #e8950f);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.4);
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 130, 32, 0.5);
    background: linear-gradient(135deg, #e8950f, #F58220);
}

.newsletter-btn:active {
    transform: translateY(-1px);
}

.newsletter-privacy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-privacy svg {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

/* === FOOTER SECTION === */
.site-footer {
    background: linear-gradient(180deg, #0a3d56 0%, #072a3d 100%);
    color: #ffffff;
    padding: 60px 20px 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #F58220, #1b9cfc, #F58220);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Brand Column */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #F58220;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 14px;
    color: #a8c5d6;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-facebook { background: linear-gradient(135deg, #1877F2, #0d5bbf); }
.social-instagram { background: linear-gradient(135deg, #E4405F, #c13584); }
.social-youtube { background: linear-gradient(135deg, #FF0000, #cc0000); }
.social-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.social-linkedin { background: linear-gradient(135deg, #0A66C2, #004182); }
.social-telegram { background: linear-gradient(135deg, #229ED9, #1a7db5); }
.social-twitter { background: linear-gradient(135deg, #000000, #333333); }

.social-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

/* Footer Links Columns */
.footer-column h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #F58220, transparent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a8c5d6;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #F58220;
}

.footer-links a:hover {
    color: #F58220;
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Contact Column */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #a8c5d6;
    font-size: 14px;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #F58220;
}

.footer-contact-text {
    line-height: 1.6;
}

.footer-contact-text a {
    color: #a8c5d6;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    min-height: 44px;
    padding: 10px 0;
    line-height: 1.6;
}

.footer-contact-text a:hover {
    color: #F58220;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 14px;
    color: #a8c5d6;
}

.footer-copyright a {
    color: #F58220;
    text-decoration: none;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #a8c5d6;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #F58220;
}

/* Hidden Admin Dot Button */
.admin-dot-btn {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-bottom {
    position: relative;
}

.footer-bottom:hover .admin-dot-btn {
    opacity: 1;
    background: rgba(255, 255, 255, 0.8);
}

.admin-dot-btn:hover {
    background: #F58220 !important;
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(245, 130, 32, 0.5);
}

/* === RESPONSIVE DESIGN === */

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .newsletter-title {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-title {
        font-size: 28px;
    }
    
    .newsletter-subtitle {
        font-size: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input-wrapper {
        min-width: 100%;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .site-footer {
        padding: 50px 20px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .newsletter-section {
        padding: 50px 16px;
    }
    
    .newsletter-icon {
        font-size: 40px;
    }
    
    .newsletter-title {
        font-size: 24px;
    }
    
    .newsletter-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .newsletter-input {
        padding: 14px 45px 14px 18px;
        font-size: 14px;
    }
    
    .newsletter-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .site-footer {
        padding: 40px 16px 0;
    }
    
    .footer-logo-text {
        font-size: 18px;
    }
    
    .footer-column h3 {
        font-size: 15px;
    }
    
    .footer-links a,
    .footer-contact-item {
        font-size: 13px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
    
    .footer-copyright,
    .footer-bottom-links a {
        font-size: 13px;
    }
}
