/* Footer - Final Conversion Opportunity */
.footer-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, #000000 100%);
    position: relative;
    overflow: hidden;
    padding-top: var(--space-3xl);
}

/* Dramatic Background Effects */
.footer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Premium Aurora Effect */
.footer-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at 20% 80%, transparent 20%, rgba(201, 169, 97, 0.03) 50%, transparent 70%),
                radial-gradient(circle at 80% 20%, transparent 20%, rgba(239, 68, 68, 0.03) 50%, transparent 70%),
                radial-gradient(circle at 40% 40%, transparent 20%, rgba(201, 169, 97, 0.02) 50%, transparent 70%);
    animation: aurora 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes aurora {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.5; }
    25% { transform: rotate(90deg) scale(1.1); opacity: 0.7; }
    50% { transform: rotate(180deg) scale(1); opacity: 0.5; }
    75% { transform: rotate(270deg) scale(1.1); opacity: 0.7; }
}

/* Animated Grid */
.footer-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 169, 97, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-drift 20s linear infinite;
}

/* Floating Particles */
.footer-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-up 10s linear infinite;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.6;
        transform: translateY(10vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
}

@keyframes grid-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Container */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 2;
}

/* Massive Final CTA Section */
.final-cta-section {
    text-align: center;
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
}

/* Premium Glow Lines */
.final-cta-section::before,
.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: glow-scan 3s linear infinite;
}

.final-cta-section::before {
    left: 0;
    right: 50%;
}

.final-cta-section::after {
    left: 50%;
    right: 0;
    animation-direction: reverse;
}

@keyframes glow-scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.final-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 50%, var(--text-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 3s ease-in-out infinite;
    position: relative;
}

/* Glitch Effect on Hover */
.final-headline:hover {
    animation: text-glitch 0.3s ease-in-out;
}

@keyframes text-glitch {
    0%, 100% { 
        text-shadow: 
            0.05em 0 0 rgba(201, 169, 97, 0.75),
            -0.05em -0.025em 0 rgba(239, 68, 68, 0.75),
            0.025em 0.05em 0 rgba(16, 185, 129, 0.75);
    }
    14% {
        text-shadow: 
            0.05em 0 0 rgba(201, 169, 97, 0.75),
            -0.05em -0.025em 0 rgba(239, 68, 68, 0.75),
            0.025em 0.05em 0 rgba(16, 185, 129, 0.75);
    }
    15% {
        text-shadow: 
            -0.05em -0.025em 0 rgba(201, 169, 97, 0.75),
            0.025em 0.025em 0 rgba(239, 68, 68, 0.75),
            -0.05em -0.05em 0 rgba(16, 185, 129, 0.75);
    }
    49% {
        text-shadow: 
            -0.05em -0.025em 0 rgba(201, 169, 97, 0.75),
            0.025em 0.025em 0 rgba(239, 68, 68, 0.75),
            -0.05em -0.05em 0 rgba(16, 185, 129, 0.75);
    }
    50% {
        text-shadow: 
            0.025em 0.05em 0 rgba(201, 169, 97, 0.75),
            0.05em 0 0 rgba(239, 68, 68, 0.75),
            0 -0.05em 0 rgba(16, 185, 129, 0.75);
    }
    99% {
        text-shadow: 
            0.025em 0.05em 0 rgba(201, 169, 97, 0.75),
            0.05em 0 0 rgba(239, 68, 68, 0.75),
            0 -0.05em 0 rgba(16, 185, 129, 0.75);
    }
}

@keyframes text-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.final-subheadline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

/* Service Selector */
.service-selector {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 20px;
    padding: var(--space-2xl);
    margin-bottom: var(--space-3xl);
    backdrop-filter: blur(10px);
}

.selector-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.service-option {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(0,0,0,0.5) 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: var(--space-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(201, 169, 97, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-option:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.service-option:hover::before {
    opacity: 1;
}

.service-option.selected {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.3));
}

.service-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.service-time {
    font-size: 0.875rem;
    color: var(--gold);
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
    align-items: start;
}

.primary-contact {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(0,0,0,0.5) 100%);
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 20px;
    padding: var(--space-xl);
    text-align: center;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 100px;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-bottom: var(--space-md);
}

.whatsapp-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--success);
}

.response-indicator {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.alternative-contacts {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--space-lg);
}

.emergency-hotline {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.hotline-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--danger);
    margin-bottom: 0.25rem;
}

.hotline-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.email-option {
    font-size: 0.875rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Urgency Elements */
.urgency-strip {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.1) 0%, rgba(201, 169, 97, 0.1) 50%, rgba(239, 68, 68, 0.1) 100%);
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
    padding: var(--space-lg) 0;
    margin-bottom: var(--space-3xl);
}

.urgency-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    text-align: center;
}

.urgency-item {
    position: relative;
}

.urgency-item::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(201, 169, 97, 0.2);
}

.urgency-item:last-child::after {
    display: none;
}

.urgency-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.urgency-value {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--gold) 0%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.urgency-value.counting {
    display: inline-block;
    min-width: 100px;
}

/* Trust Section */
.trust-reinforcement {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 20px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.3));
}

.trust-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.trust-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(0,0,0,0.8) 100%);
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 20px;
    padding: var(--space-2xl);
    margin-bottom: var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(201, 169, 97, 0.2);
    border: 1px solid var(--gold);
    border-radius: 100px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.newsletter-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.newsletter-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.newsletter-form {
    display: flex;
    gap: var(--space-md);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

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

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-submit {
    padding: 1rem 2rem;
    background: var(--gold);
    border: none;
    border-radius: 100px;
    color: var(--bg-dark);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.newsletter-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-promise {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
    opacity: 0.7;
}

/* Newsletter Success Message */
.newsletter-success {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 600;
    animation: slideUp 0.3s ease-out forwards;
}

@keyframes slideUp {
    to {
        bottom: -30px;
        opacity: 1;
    }
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    padding: var(--space-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.company-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
}

.legal-links {
    display: flex;
    gap: var(--space-lg);
    font-size: 0.875rem;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    opacity: 0.6;
    transition: all var(--transition-base);
}

.legal-links a:hover {
    color: var(--gold);
    opacity: 1;
}

/* Social Proof Bar */
.social-proof-bar {
    background: rgba(201, 169, 97, 0.05);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-xl) auto;
}

.proof-text {
    font-size: 0.875rem;
    color: var(--text-primary);
}

.proof-number {
    font-weight: 700;
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .final-headline {
        font-size: 2rem;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
} 