/* Cookie Modal Styles - Python Logistics */
#cookie-consent-modal {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.btn-cookie {
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cookie:active {
    transform: scale(0.95);
}

.btn-cookie-primary {
    background-color: #3e4197;
    color: white;
    box-shadow: 0 4px 12px rgba(62, 65, 151, 0.2);
}

.btn-cookie-primary:hover {
    background-color: #2bace2;
}

.btn-cookie-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: #3e4197;
    border: 1px solid rgba(62, 65, 151, 0.2);
}

.btn-cookie-secondary:hover {
    background-color: rgba(62, 65, 151, 0.05);
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

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

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked+.cookie-slider {
    background-color: #3e4197;
}

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

input:disabled+.cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

/* Hide reCAPTCHA badge professionally */
.grecaptcha-badge {
    visibility: hidden !important;
}