
.site-footer {
    background-color: var(--bg-header-footer);
    border-top: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 4rem 0 0 0;
    margin-top: 4rem;
    border-radius: 2rem 2rem 0 0; 
}


.footer-newsletter-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.footer-newsletter-card {
    position: relative;
    background: linear-gradient(135deg, rgba(22, 31, 51, 0.95) 0%, rgba(14, 19, 31, 0.95) 50%, rgba(8, 12, 20, 0.98) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 2rem;
    padding: 4rem 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 
                inset 0 1px 0 rgba(255, 255, 255, 0.12),
                0 0 40px rgba(188, 146, 82, 0.12);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.footer-newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(188, 146, 82, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-ambient-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(188, 146, 82, 0.3) 0%, rgba(188, 146, 82, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    animation: ambientPulse 6s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
    0% { opacity: 0.5; transform: translateX(-50%) scale(0.9); }
    100% { opacity: 0.9; transform: translateX(-50%) scale(1.1); }
}

.newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(188, 146, 82, 0.12);
    border: 1px solid rgba(188, 146, 82, 0.4);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(188, 146, 82, 0.15);
}

.newsletter-badge i {
    color: var(--gold-primary);
    font-size: 0.85rem;
}

.newsletter-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.newsletter-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 2.25rem auto;
}


.newsletter-form {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    background: rgba(6, 8, 12, 0.75);
    border: 1.5px solid rgba(188, 146, 82, 0.35);
    border-radius: 60px;
    padding: 6px 6px 6px 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.newsletter-input-group:focus-within {
    border-color: var(--gold-light);
    box-shadow: 0 0 30px rgba(188, 146, 82, 0.3), 0 0 0 4px rgba(188, 146, 82, 0.15);
    background: rgba(6, 8, 12, 0.95);
}

.newsletter-input-icon {
    color: var(--gold-primary);
    font-size: 1.15rem;
    margin-right: 0.85rem;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.newsletter-input-group:focus-within .newsletter-input-icon {
    color: var(--gold-light);
    transform: scale(1.15) rotate(-10deg);
}

.newsletter-input {
    flex: 1;
    min-width: 0;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 0.98rem;
    font-family: inherit;
    padding: 0.5rem 0;
    box-sizing: border-box;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
    opacity: 0.85;
}


.newsletter-btn {
    background: var(--gold-gradient);
    color: var(--text-on-gold);
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(188, 146, 82, 0.35);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.newsletter-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.75s ease;
}

.newsletter-btn:hover::after {
    left: 140%;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(188, 146, 82, 0.6);
}

.newsletter-btn:active {
    transform: translateY(0);
}

.newsletter-btn .btn-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.newsletter-btn:hover .btn-icon {
    transform: translateX(4px) scale(1.1);
}


.newsletter-message {
    margin-top: 1.25rem;
    padding: 0.85rem 1.5rem;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.newsletter-message.success {
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.35);
    color: #2ecc71;
}

.newsletter-message.error {
    background: rgba(231, 76, 60, 0.12);
    border: 1px solid rgba(231, 76, 60, 0.35);
    color: #e74c3c;
}

.newsletter-message.info {
    background: rgba(188, 146, 82, 0.12);
    border: 1px solid rgba(188, 146, 82, 0.4);
    color: var(--gold-light);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


.newsletter-perks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.25rem;
    margin-top: 2.25rem;
    flex-wrap: wrap;
}

.perk-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.perk-item i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.perk-item:hover {
    color: var(--text-secondary);
}


.footer-simple-newsletter {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.simple-newsletter-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.simple-newsletter-form {
    position: relative;
}

.simple-input-group {
    display: flex;
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    padding: 3px 3px 3px 1rem;
    transition: all 0.3s ease;
}

.simple-input-group:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px var(--gold-glow);
}

.simple-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: inherit;
}

.simple-input::placeholder {
    color: var(--text-muted);
}

.simple-btn {
    background: var(--gold-gradient);
    color: var(--text-on-gold);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.82rem;
    transition: transform 0.2s ease;
}

.simple-btn:hover {
    transform: scale(1.08);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-section h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}


.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1.2rem;
}

.footer-logo img {
    height: 35px;
    width: auto;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}


.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--text-on-gold);
    background: var(--gold-gradient);
    border-color: transparent;
    box-shadow: 0 0 12px var(--gold-glow);
    transform: translateY(-3px);
}


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

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--gold-light);
    padding-left: 6px; 
}


.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    gap: 0.6rem;
}

.footer-contact p i {
    color: var(--gold-primary);
    width: 16px;
}
.footer-section a{
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}


.footer-bottom {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-subtle);
    padding: 1.5rem 0;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom p span a{
    color: var(--gold-light);
    text-decoration: none;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--gold-light);
}



@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-newsletter-card {
        padding: 3rem 2rem;
    }
    .newsletter-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 768px) {
    .footer-newsletter-wrapper {
        padding: 0 1rem;
    }
    .footer-newsletter-card {
        padding: 2.25rem 1.25rem;
        border-radius: 1.5rem;
    }
    .newsletter-title {
        font-size: 1.55rem;
        line-height: 1.3;
    }
    .newsletter-desc {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    
    .newsletter-input-group {
        flex-direction: column;
        align-items: stretch;
        background: rgba(6, 8, 12, 0.85);
        border: 1.5px solid rgba(188, 146, 82, 0.35);
        border-radius: 1.25rem;
        padding: 0.75rem;
        gap: 0.75rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .newsletter-input-group:focus-within {
        border-color: var(--gold-light);
        box-shadow: 0 0 20px rgba(188, 146, 82, 0.25);
    }

    .newsletter-input-icon {
        display: none;
    }

    .newsletter-input {
        width: 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-width: 0;
        box-sizing: border-box;
    }

    .newsletter-input:focus {
        border-color: var(--gold-light);
        background: rgba(255, 255, 255, 0.07);
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
        font-size: 0.92rem;
        border-radius: 50px;
        box-sizing: border-box;
    }

    .newsletter-perks {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding-top: 3rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-legal a {
        margin: 0 0.75rem;
    }
    .newsletter-badge {
        font-size: 0.72rem;
        padding: 0.35rem 0.85rem;
    }
    .newsletter-title {
        font-size: 1.35rem;
    }
}