/* =====================================================
   FOOTER STYLES
   ===================================================== */

.vc-footer {
    background: var(--vc-bg-secondary);
    margin-top: auto;
}

.vc-footer-main {
    padding: var(--vc-space-16) 0;
}

.vc-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--vc-space-8);
}

@media (min-width: 640px) {
    .vc-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vc-footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
    }
}

/* Footer Brand */
.vc-footer-brand {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .vc-footer-brand {
        grid-column: 1;
    }
}

.vc-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--vc-space-3);
    text-decoration: none;
    margin-bottom: var(--vc-space-4);
}

.vc-footer-logo .vc-logo-name {
    font-family: var(--vc-font-heading);
    font-size: var(--vc-text-xl);
    font-weight: var(--vc-font-bold);
    color: var(--vc-text-primary);
}

.vc-footer-description {
    color: var(--vc-text-secondary);
    font-size: var(--vc-text-sm);
    line-height: var(--vc-leading-relaxed);
    margin-bottom: var(--vc-space-6);
    max-width: 300px;
}

/* Social Links */
.vc-social-links {
    display: flex;
    gap: var(--vc-space-2);
}

.vc-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--vc-surface);
    border-radius: var(--vc-radius-lg);
    color: var(--vc-text-secondary);
    transition: all var(--vc-transition-fast);
}

.vc-social-link:hover {
    background: var(--vc-primary);
    color: white;
    transform: translateY(-2px);
}

/* Footer Columns */
.vc-footer-column {
    min-width: 0;
}

.vc-footer-widget-title {
    font-size: var(--vc-text-base);
    font-weight: var(--vc-font-semibold);
    color: var(--vc-text-primary);
    margin-bottom: var(--vc-space-5);
}

.vc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vc-footer-links li {
    margin-bottom: var(--vc-space-3);
}

.vc-footer-links a {
    color: var(--vc-text-secondary);
    font-size: var(--vc-text-sm);
    transition: all var(--vc-transition-fast);
}

.vc-footer-links a:hover {
    color: var(--vc-primary);
    padding-left: var(--vc-space-2);
}

/* Footer Contact */
.vc-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--vc-space-3);
    margin-bottom: var(--vc-space-4);
    font-size: var(--vc-text-sm);
    color: var(--vc-text-secondary);
}

.vc-contact-item svg {
    flex-shrink: 0;
    color: var(--vc-primary);
    margin-top: 2px;
}

.vc-contact-item a {
    color: var(--vc-text-secondary);
}

.vc-contact-item a:hover {
    color: var(--vc-primary);
}

.vc-footer-hours {
    margin-top: var(--vc-space-6);
    padding-top: var(--vc-space-4);
    border-top: 1px solid var(--vc-border-light);
}

.vc-footer-hours h5 {
    font-size: var(--vc-text-sm);
    font-weight: var(--vc-font-semibold);
    margin-bottom: var(--vc-space-2);
}

.vc-footer-hours p {
    font-size: var(--vc-text-sm);
    color: var(--vc-text-secondary);
    margin-bottom: var(--vc-space-1);
}

/* Newsletter */
.vc-footer-newsletter {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .vc-footer-newsletter {
        grid-column: auto;
    }
}

.vc-newsletter-text {
    font-size: var(--vc-text-sm);
    color: var(--vc-text-secondary);
    margin-bottom: var(--vc-space-4);
}

.vc-newsletter-form .vc-input-group {
    display: flex;
    gap: var(--vc-space-2);
}

.vc-newsletter-input {
    flex: 1;
    padding: var(--vc-space-3) var(--vc-space-4);
    background: var(--vc-surface);
    border: 1px solid var(--vc-border-light);
    border-radius: var(--vc-radius-lg);
    font-size: var(--vc-text-sm);
    color: var(--vc-text-primary);
    transition: all var(--vc-transition-fast);
}

.vc-newsletter-input:focus {
    outline: none;
    border-color: var(--vc-primary);
    box-shadow: 0 0 0 3px var(--vc-primary-alpha);
}

.vc-newsletter-btn {
    flex-shrink: 0;
    padding: var(--vc-space-3);
}

.vc-newsletter-privacy {
    font-size: var(--vc-text-xs);
    color: var(--vc-text-tertiary);
    margin-top: var(--vc-space-3);
}

.vc-newsletter-privacy a {
    color: var(--vc-primary);
}

/* Trust Badges */
.vc-trust-badges {
    display: flex;
    gap: var(--vc-space-4);
    margin-top: var(--vc-space-6);
}

.vc-badge-item {
    display: flex;
    align-items: center;
    gap: var(--vc-space-2);
    padding: var(--vc-space-2) var(--vc-space-3);
    background: var(--vc-surface);
    border-radius: var(--vc-radius-md);
    font-size: var(--vc-text-xs);
    font-weight: var(--vc-font-medium);
    color: var(--vc-text-secondary);
}

.vc-badge-item svg {
    color: var(--vc-success);
}

/* Footer Bottom */
.vc-footer-bottom {
    padding: var(--vc-space-6) 0;
    border-top: 1px solid var(--vc-border-light);
}

.vc-footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--vc-space-4);
    text-align: center;
}

@media (min-width: 768px) {
    .vc-footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.vc-copyright {
    font-size: var(--vc-text-sm);
    color: var(--vc-text-secondary);
    margin: 0;
}

.vc-legal-menu {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vc-space-4);
    list-style: none;
    padding: 0;
    margin: 0;
}

.vc-legal-menu a {
    font-size: var(--vc-text-sm);
    color: var(--vc-text-secondary);
}

.vc-legal-menu a:hover {
    color: var(--vc-primary);
}

/* Bottom Navigation (Mobile) */
.vc-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--vc-glass-bg);
    backdrop-filter: var(--vc-glass-blur);
    -webkit-backdrop-filter: var(--vc-glass-blur);
    border-top: 1px solid var(--vc-border-light);
    padding: var(--vc-space-2) 0;
    padding-bottom: calc(var(--vc-space-2) + env(safe-area-inset-bottom, 0));
    z-index: var(--vc-z-fixed);
}

@media (min-width: 1024px) {
    .vc-bottom-nav {
        display: none;
    }
}

.vc-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--vc-space-1);
    padding: var(--vc-space-2);
    color: var(--vc-text-secondary);
    font-size: 10px;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    transition: all var(--vc-transition-fast);
}

.vc-bottom-nav-item:hover,
.vc-bottom-nav-item.active {
    color: var(--vc-primary);
}

.vc-bottom-nav-cta {
    position: relative;
    margin-top: -20px;
}

.vc-bottom-nav-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--vc-primary), var(--vc-primary-dark));
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.vc-bottom-nav-cta span:last-child {
    color: var(--vc-text-primary);
    font-weight: var(--vc-font-medium);
}

/* Cookie Consent */
.vc-cookie-consent {
    position: fixed;
    bottom: 80px;
    left: var(--vc-space-4);
    right: var(--vc-space-4);
    background: var(--vc-surface);
    border-radius: var(--vc-radius-xl);
    box-shadow: var(--vc-shadow-2xl);
    padding: var(--vc-space-6);
    z-index: var(--vc-z-modal);
    animation: slideUp 0.3s ease;
}

@media (min-width: 768px) {
    .vc-cookie-consent {
        left: auto;
        right: var(--vc-space-6);
        max-width: 400px;
        bottom: var(--vc-space-6);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vc-cookie-content {
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-4);
}

.vc-cookie-text h3 {
    font-size: var(--vc-text-base);
    margin-bottom: var(--vc-space-2);
}

.vc-cookie-text p {
    font-size: var(--vc-text-sm);
    color: var(--vc-text-secondary);
    margin: 0;
}

.vc-cookie-actions {
    display: flex;
    gap: var(--vc-space-3);
}

.vc-cookie-actions .vc-btn {
    flex: 1;
}

/* Toast Container */
.vc-toast-container {
    position: fixed;
    top: var(--vc-space-4);
    right: var(--vc-space-4);
    z-index: var(--vc-z-toast);
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-3);
}