/* ===== FOOTER STYLES ===== */
.main-footer {
    background: #1a1a1a;
    color: #e0e0e0;
    margin-top: auto;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsletter-text h3 i {
    font-size: 24px;
    color: #ffd700;
}

.newsletter-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.newsletter-form-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-privacy i {
    color: #4caf50;
}

/* ===== MAIN FOOTER ===== */
.footer-main {
    padding: 60px 0 40px;
    background: #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-size: 26px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.footer-logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: #667eea;
    letter-spacing: 2px;
    margin-top: -2px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 25px;
}

.footer-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #d0d0d0;
}

.footer-feature i {
    color: #4caf50;
    font-size: 14px;
    width: 16px;
}

/* ===== FOOTER TITLES ===== */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-links li a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-links li a i {
    font-size: 12px;
    width: 14px;
    color: #667eea;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-details strong {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.contact-details span,
.contact-details a {
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #667eea;
}

/* ===== SOCIAL MEDIA & PAYMENT ===== */
.footer-social {
    background: #111;
    padding: 30px 0;
    border-top: 1px solid #333;
}

.footer-social-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links h5,
.payment-methods h5 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--social-color) 0%, var(--social-color-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 2;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Social Media Colors */
.social-link.facebook {
    --social-color: #1877f2;
    --social-color-dark: #166fe5;
    background: #333;
}

.social-link.instagram {
    --social-color: #e4405f;
    --social-color-dark: #d62d4a;
    background: #333;
}

.social-link.twitter {
    --social-color: #1da1f2;
    --social-color-dark: #1a91da;
    background: #333;
}

.social-link.youtube {
    --social-color: #ff0000;
    --social-color-dark: #e60000;
    background: #333;
}

.social-link.tiktok {
    --social-color: #000000;
    --social-color-dark: #333333;
    background: #333;
}

.social-link.whatsapp {
    --social-color: #25d366;
    --social-color-dark: #20ba5a;
    background: #333;
}

.payment-icons {
    display: flex;
    gap: 12px;
}

.payment-icon {
    width: 50px;
    height: 35px;
    background: #333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    font-size: 20px;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: #444;
    color: white;
    transform: translateY(-2px);
}

/* ===== BOTTOM FOOTER ===== */
.footer-bottom {
    background: #0a0a0a;
    padding: 20px 0;
    border-top: 1px solid #222;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.copyright-sub {
    font-size: 12px !important;
    color: #666 !important;
}

.copyright a {
    color: #667eea;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #888;
}

.badge-item i {
    color: #4caf50;
    font-size: 14px;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* ===== AGE VERIFICATION MODAL ===== */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.age-modal.show {
    opacity: 1;
    visibility: visible;
}

.age-modal-content {
    background: white;
    border-radius: 15px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-modal.show .age-modal-content {
    transform: scale(1);
}

.age-modal-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 25px;
    text-align: center;
}

.age-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.age-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.age-modal-body {
    padding: 30px;
    text-align: center;
}

.age-modal-body p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
}

.age-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.age-btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.age-yes {
    background: #4caf50;
    color: white;
}

.age-yes:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.age-no {
    background: #f44336;
    color: white;
}

.age-no:hover {
    background: #da190b;
    transform: translateY(-2px);
}

.age-modal-footer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.age-modal-footer p {
    font-size: 13px;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.age-modal-footer i {
    color: #ff6b6b;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-grid .footer-column:first-child {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
    
    .newsletter-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .newsletter-text h3 {
        font-size: 24px;
        justify-content: center;
    }
    
    .newsletter-form-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-btn {
        justify-content: center;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .footer-grid .footer-column:first-child {
        grid-column: 1 / -1;
    }
    
    .footer-grid .footer-column:last-child {
        grid-column: 1 / -1;
    }
    
    .footer-social-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 30px 0;
    }
    
    .newsletter-text h3 {
        font-size: 20px;
    }
    
    .newsletter-input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .newsletter-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid .footer-column:first-child {
        grid-column: 1;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-features {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .payment-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .age-modal-content {
        margin: 20px;
    }
    
    .age-modal-body {
        padding: 20px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.footer-column {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-column:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(5) {
    animation-delay: 0.4s;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .main-footer {
        background: white !important;
        color: black !important;
    }
    
    .newsletter-section,
    .footer-social,
    .back-to-top,
    .age-modal {
        display: none !important;
    }
} 