/* === POPUP FORM === */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: #FCFBFC;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-container {
    transform: scale(1) translateY(0);
}

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

.popup-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #000000;
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #3E3E3E;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #F5F5F5;
    color: #000000;
}

.popup-content {
    padding: 30px 40px 40px;
}

.popup-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #3E3E3E;
    line-height: 1.5;
    margin: 0 0 30px 0;
    text-align: center;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-form .form-group {
    margin-bottom: 0;
}

.popup-form .form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000000;
    background: #FFFFFF;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.popup-form .form-group input:focus {
    outline: none;
    border-color: #007670;
    box-shadow: 0 0 0 3px rgba(0, 118, 112, 0.1);
}

.popup-form .form-group input::placeholder {
    color: #999999;
}

.popup-button {
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #007670, #005b58);
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 118, 112, 0.3);
}

.popup-button:hover {
    background: linear-gradient(135deg, #005b58, #004a47);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 118, 112, 0.4);
}

.popup-button:active {
    transform: translateY(0);
}

.popup-privacy {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999999;
    text-align: center;
    margin: 15px 0 0 0;
    line-height: 1.4;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .popup-container {
        width: 95%;
        max-width: 95%;
        margin: 20px;
    }
    
    .popup-header {
        padding: 25px 25px 20px;
    }
    
    .popup-title {
        font-size: 20px;
    }
    
    .popup-close {
        font-size: 28px;
        width: 35px;
        height: 35px;
    }
    
    .popup-content {
        padding: 25px;
    }
    
    .popup-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .popup-form .form-group input {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .popup-button {
        font-size: 15px;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .popup-container {
        width: 95%;
        max-width: 95%;
        margin: 20px;
        border-radius: 20px;
        max-height: auto;
    }
    
    .popup-header {
        padding: 20px 20px 15px;
    }
    
    .popup-title {
        font-size: 18px;
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .popup-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .popup-form {
        gap: 15px;
    }
    
    .popup-form .form-group input {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .popup-button {
        font-size: 14px;
        padding: 12px 24px;
    }
} 