/* Solution Popup Styles */
.solution-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.solution-popup-overlay.active {
    display: flex;
}

.solution-popup-container {
    position: relative;
    width: 1200px;
    height: 860px;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    max-width: 95vw;
    max-height: 95vh;
}

.popup-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #F5F5F5;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.popup-content {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Left Side */
.popup-left {
    width: 50%;
    background: #D8E6FD;
    position: relative;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.popup-title {
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    color: #1F1F1F;
    margin-bottom: 20px;
    margin-top: 0;
}

/* Consistent Hero Button Style */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #0052FF;
    color: #FFFFFF;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 82, 255, 0.3);
    cursor: pointer;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 15px rgba(0, 82, 255, 0.4);
    background: #0046db;
}

.hero-btn img {
    margin-left: 8px;
}

.popup-title-highlight {
    font-size: 48px;
    background: linear-gradient(90deg, #0665FF 69%, #02B7FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup-subtitle {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #666666;
    margin-bottom: 60px;
}

.popup-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.popup-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.popup-feature-item span {
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #111111;
}

/* Right Side (Form) */
.popup-right {
    flex: 1;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-sizing: border-box;
    margin: 20px 2px 20px 0;
}

/* Custom Scrollbar for Popup */
.popup-right::-webkit-scrollbar {
    width: 6px;
}

.popup-right::-webkit-scrollbar-track {
    background: transparent;
}

.popup-right::-webkit-scrollbar-thumb {
    background-color: #D1D5DB;
    border-radius: 3px;
}

.popup-right::-webkit-scrollbar-thumb:hover {
    background-color: #9CA3AF;
}

.popup-right-content {
    margin: auto 0;
    width: 100%;
}

.form-title {
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: #111111;
    margin-bottom: 40px;
    margin-top: 0;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #1F1F1F;
}

.form-group label .optional {
    color: #BBBBBB;
    font-size: 16px;
}

.form-group input,
.form-group textarea,
.custom-select {
    background: #F6F6F6;
    border-radius: 4px;
    padding: 15px 16px;
    border: none;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    color: #1F1F1F;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #BBBBBB;
}

.form-group textarea {
    height: 80px;
    resize: none;
}

.custom-select {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.custom-select span {
    color: #1F1F1F;
}

.submit-btn {
    background: #3B82F6;
    border-radius: 4px;
    height: 52px;
    border: none;
    color: #FFFFFF;
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #2563EB;
}

/* Responsive */
@media (max-width: 1024px) {
    .solution-popup-container {
        flex-direction: column;
        height: auto;
        overflow-y: auto;
    }
    .popup-left, .popup-right {
        width: 100%;
        padding: 40px;
    }
    .popup-title {
        font-size: 32px;
        line-height: 40px;
    }
    .popup-title-highlight {
        font-size: 36px;
    }
}
