/*************************************/
/***   Demo Notice Modal          ***/
/*************************************/

.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.demo-modal.active {
    opacity: 1;
    visibility: visible;
}

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 51, 47, 0.85);
    backdrop-filter: blur(8px);
}

.demo-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 40px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    z-index: 2;
}

.demo-modal.active .demo-modal-content {
    transform: scale(1);
}

.demo-modal-icon {
    text-align: center;
    margin-bottom: 20px;
}

.demo-modal-icon i {
    font-size: 48px;
    color: #F6AD55;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.demo-modal-body {
    text-align: center;
    margin-bottom: 25px;
}

.demo-modal-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.demo-modal-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.demo-modal-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.demo-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-close-modal,
.btn-contact-modal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-close-modal {
    background: #f5f5f5;
    color: var(--primary-color);
    border-color: #e0e0e0;
}

.btn-close-modal:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-contact-modal {
    background: linear-gradient(135deg, #F6AD55 0%, #e89943 100%);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-contact-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 173, 85, 0.4);
    color: var(--primary-color);
}

.btn-close-modal i,
.btn-contact-modal i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 576px) {
    .demo-modal-content {
        padding: 30px 25px;
        max-width: 95%;
    }

    .demo-modal-icon i {
        font-size: 40px;
    }

    .demo-modal-body h3 {
        font-size: 20px;
    }

    .demo-modal-body p {
        font-size: 14px;
    }

    .demo-modal-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-close-modal,
    .btn-contact-modal {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .demo-modal-content {
        padding: 25px 20px;
    }

    .demo-modal-icon i {
        font-size: 36px;
    }

    .demo-modal-body h3 {
        font-size: 18px;
    }
}
