/* Footer Styles - Cleaned and simplified */

/* Main Footer Content */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 0;
}

.footer-main-content {
    background: #000000;
    padding: 80px 40px 40px;
    color: #ffffff;
    margin: 0 auto;
}

/* 3-Column Layout */
.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    text-align: left;
}

.footer-column h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.footer-contact-info p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.5;
}

.footer-contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #cccccc;
}

.footer-hours p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.5;
}

/* CTA Column */
.footer-cta p {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-cta-button {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 300;
    font-size: 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-cta-button:hover {
    background: #cccccc;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 30px;
}

.footer-links {
    padding-bottom: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links p {
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
    color: #cccccc;
}

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

.footer-links a:hover {
    color: #ffffff;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent.show {
    display: block;
}

.cookie-consent-content {
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.cookie-message {
    font-size: 14px;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: rgba(51, 51, 51, 0.9);
    transform: translateY(-1px);
}

.cookie-btn.settings {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.settings:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: #f6efeb;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-settings-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-settings-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.cookie-settings-close:hover {
    color: #000;
}

.cookie-settings-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #f6efeb;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: var(--primary-color);
    cursor: not-allowed;
}

.cookie-category-description {
    color: #000;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 8px;
}

.cookie-settings-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.cookie-settings-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-settings-btn.save {
    background: var(--primary-color);
    color: white;
}

.cookie-settings-btn.save:hover {
    background: rgba(51, 51, 51, 0.9);
}

.cookie-settings-btn.accept-all {
    background: #333;
    color: white;
}

.cookie-settings-btn.accept-all:hover {
    background: #000;
}

/* Privacy Popup Styles */
.privacy-popup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.privacy-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-popup-content {
    background: #f6efeb;
    border-radius: 8px;
    max-width: 90%;
    max-height: 90%;
    width: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.privacy-popup-header {
    background: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.privacy-popup-header h2 {
    margin: 0;
    font-size: var(--font-size-xl);
    font-weight: 300;
}

.privacy-popup-close {
    background: none;
    border: none;
    color: white;
    font-size: var(--font-size-xl);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.privacy-popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.privacy-popup-body {
    padding: 30px;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    line-height: var(--line-height-relaxed);
}

.privacy-popup-body h3 {
    color: #000;
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-popup-body p {
    color: #000;
    margin-bottom: 15px;
    font-size: var(--font-size-base);
}

.privacy-popup-body .company-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    color: #000;
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
}

.privacy-popup-body .company-info strong {
    color: #000;
    font-weight: 600;
}

.privacy-popup-body .company-info a {
    color: #F5821E;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-main-content {
        padding: 60px 20px 30px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .footer-contact-info p,
    .footer-hours p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .footer-cta p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .footer-cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-settings-content {
        width: 95%;
        margin: 20px;
    }
    
    .cookie-settings-header,
    .cookie-settings-body,
    .cookie-settings-footer {
        padding: 20px;
    }
    
    .cookie-settings-footer {
        flex-direction: column;
    }
    
    .cookie-settings-btn {
        width: 100%;
    }
    
    .privacy-popup-content {
        width: 95%;
        max-height: 95%;
    }
    
    .privacy-popup-header {
        padding: 15px;
    }
    
    .privacy-popup-header h2 {
        font-size: var(--font-size-lg);
    }
    
    .privacy-popup-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .footer-company-name h2 {
        font-size: 1.6rem;
    }
    
    .footer-cta p {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}