/**
 * Valencia Pro - Custom Footer Styles
 */

/* ===================================
   FOOTER BASE
   =================================== */
.valencia-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.valencia-footer a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.valencia-footer a:hover {
    color: #bfb37b;
}

/* ===================================
   CONTACT BAR (TOP)
   =================================== */
.footer-contact-bar {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

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

.footer-contact-items {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #BFB37B;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    font-weight: 500;
}

.contact-info a {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

/* ===================================
   MAIN FOOTER CONTENT
   =================================== */
.footer-main {
    padding: 60px 0;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 12px;
}

.footer-links li a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #bfb37b;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover::before {
    opacity: 1;
}

/* Hash tags styling */
.footer-tags li a {
    color: #bfb37b;
}

.footer-tags li a::before {
    content: none;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */
.footer-newsletter {
    max-width: 380px;
}

.newsletter-subtitle {
    font-size: 14px;
    color: #999;
    margin: 0;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.newsletter-input {
    width: 100%;
    padding: 14px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    transition: all 0.3s ease;
}

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

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-button {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #bfb37b 0%, #ffb300 100%);
    border: none;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #999;
    cursor: pointer;
    margin-top: 8px;
}

.newsletter-checkbox input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
    accent-color: #bfb37b;
}

/* ===================================
   FOOTER BOTTOM
   =================================== */
.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copyright {
    margin: 0;
}

.footer-copyright p {
    margin: 0;
    font-size: 13px;
    color: #999;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-label {
    font-size: 14px;
    font-weight: 500;
    color: #e0e0e0;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #bfb37b;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 1024px) {
    .footer-contact-items {
        gap: 32px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-contact-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-contact-items {
        width: 100%;
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-newsletter {
        max-width: 100%;
    }
    
    .footer-bottom-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-social {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .footer-contact-bar {
        padding: 32px 0;
    }
    
    .footer-main {
        padding: 40px 0;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-title {
        font-size: 16px;
    }
}

/* ===================================
   SCROLL TO TOP BUTTON (opcional)
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #bfb37b 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}
