/* MODERN FOOTER STYLES */
.site-footer {
    background-color: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Footer Top - Newsletter Section */
.footer-top {
    background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
    padding: 50px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiMzYTNhM2EiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDM0aDR2MWgtNHYtMXptMC0xNGg0djFoLTR2LTF6bTAgN2g0djFoLTR2LTF6bTAgN2g0djFoLTR2LTF6TTI0IDM0aDR2MWgtNHYtMXptMC0xNGg0djFoLTR2LTF6bTAgN2g0djFoLTR2LTF6bTAgN2g0djFoLTR2LTF6TTEyIDM0aDR2MWgtNHYtMXptMC0xNGg0djFoLTR2LTF6bTAgN2g0djFoLTR2LTF6bTAgN2g0djFoLTR2LTF6TTQ4IDM0aDR2MWgtNHYtMXptMC0xNGg0djFoLTR2LTF6bTAgN2g0djFoLTR2LTF6bTAgN2g0djFoLTR2LTF6Ii8+PC9nPjwvZz48L3N2Zz4=');
    opacity: 0.1;
    z-index: 1;
}

.newsletter-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-content {
    text-align: center;
}

.newsletter-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.newsletter-icons i {
    font-size: 28px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.newsletter-description {
    color: #cccccc;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-form {
    width: 100%;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
    align-items: center;
}

.form-row .input-container {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.form-group {
    flex: 1;
    min-width: 240px;
}

.footer-form input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 240px;
}

.footer-form input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

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

.form-button {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.newsletter-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f2d272 100%);
    color: #000;
    font-weight: 600;
    border: none;
    padding: 14px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    min-width: 200px;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.newsletter-btn i {
    font-size: 14px;
}

/* Footer Main */
.footer-main {
    background-color: #000;
    padding: 60px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: #aaa;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.trading-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.trading-icons i {
    font-size: 20px;
    color: #d4af37;
    transition: all 0.3s ease;
}

.trading-icons i:hover {
    transform: scale(1.2);
}

.footer-nav h4,
.footer-contact h4 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-nav ul li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-nav ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 18px;
    line-height: 1;
}

.footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav ul li:hover {
    transform: translateX(5px);
}

.footer-nav ul li:hover a {
    color: #d4af37;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact p i {
    color: #d4af37;
    width: 20px;
    text-align: center;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f2d272 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.social-icons a:hover::before {
    width: 100%;
}

.social-icons a:hover {
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icons a:hover i {
    transform: scale(1.15);
}

.social-icons i {
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Copyright Section */
.copyright {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #0a0a0a;
}

.copyright p {
    font-size: 14px;
    color: #aaa;
}

.disclaimer {
    color: #777;
    font-size: 12px;
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .form-row {
        flex-wrap: wrap;
    }
    
    .form-group {
        flex: 1;
        width: 100%;
        min-width: 240px;
    }
    .form-button {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0;
    }
    
    .newsletter-title {
        font-size: 24px;
    }
    
    .newsletter-description {
        font-size: 15px;
    }
    
    .newsletter-icons i {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-main {
        padding: 40px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
    .headline {
        font-size: 32px;
    }
    
    .sub-headline {
        font-size: 18px;
    }
    
    .benefits-grid,
    .packs-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none; /* For mobile, consider adding a hamburger menu */
    }
    
    .cta-button {
        font-size: 18px;
        padding: 12px 30px;
    }
    
    .benefit-card,
    .bonus-item,
    .pack-card {
        margin-bottom: 20px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .lead-magnet-section h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 28px;
    }
    
    .sub-headline {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .pack-title {
        font-size: 20px;
    }
    
    .current-price {
        font-size: 30px;
    }
    
    .bonus-list {
        flex-direction: column;
        align-items: center;
    }
    
    .bonus-item {
        width: 100%;
        max-width: 280px;
    }
}
