/* Sweet alert - start  */
/* ============================================
    SWEET ALERT MODAL
============================================ */
.sweet-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sweet-alert-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sweet-alert-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
}

.sweet-alert-modal {
    width: 100%;
    max-width: 520px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    pointer-events: auto;
    opacity: 1;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sweet-alert-modal.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.sweet-alert-header {
    height: 180px;
    background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sweet-alert-circle-1,
.sweet-alert-circle-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(40px);
}

.sweet-alert-circle-1 {
    width: 160px;
    height: 160px;
    top: -40px;
    right: -40px;
    animation: pulse1 4s ease-in-out infinite;
}

.sweet-alert-circle-2 {
    width: 192px;
    height: 192px;
    bottom: -40px;
    left: -40px;
    animation: pulse2 5s ease-in-out infinite;
}

@keyframes pulse1 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes pulse2 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

.success-icon-wrapper {
    position: relative;
    z-index: 10;
    background: white;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

@keyframes bounceIn {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.success-icon {
    width: 64px;
    height: 64px;
    color: #992475;
    stroke-width: 2.5;
}

.sweet-alert-content {
    padding: 2.5rem 2rem;
}

.sweet-alert-title {
    font-size: 34px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 0.4s ease-out 0.3s both;
}

.sweet-alert-message {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.4s ease-out 0.4s both;
}

.sweet-alert-info-box {
    background: linear-gradient(135deg, #faf5ff 0%, #fff5f5 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9d5ff;
    animation: fadeInUp 0.4s ease-out 0.5s both;
}

.info-box-text {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-divider {
    border-top: 1px solid #e9d5ff;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.phone-icon-wrapper {
    background: linear-gradient(135deg, #992475 0%, #e25527 100%);
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon {
    width: 16px;
    height: 16px;
    color: white;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    margin-bottom: 0.25rem;
}

.contact-phone {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.contact-phone:hover {
    transform: scale(1.05);
}

.btn-close-modal {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #992475 0%, #c63230 50%, #e25527 100%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.4s ease-out 0.6s both;
}

.btn-close-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s ease;
}

.btn-close-modal:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(153, 36, 117, 0.4);
}

.btn-close-modal:hover::before {
    left: 100%;
}

.btn-close-modal:active {
    transform: scale(0.98);
}

.btn-close-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    animation: fadeIn 0.3s ease-out 0.4s both;
}

.btn-close-x:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.btn-close-x-icon {
    width: 20px;
    height: 20px;
    color: white;
}

@media (max-width: 768px) {
    .sweet-alert-content {
        padding: 2rem 1.5rem;
    }
    .sweet-alert-title {
        font-size: 28px;
    }
    .sweet-alert-message {
        font-size: 15px;
    }
}
/* Sweet Alert - Ends */
