/* Product Suggestion Section Styles */
.product-suggestion {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0c0e22 0%, #1a1c3a 100%);
    overflow: hidden;
    z-index: 1;
}

.suggestion-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.product-suggestion .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-suggestion .section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(82, 109, 249, 0.15);
    color: #526df9;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-suggestion h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-suggestion h2 span {
    background: linear-gradient(90deg, #526df9, #9d6efe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-suggestion .section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Suggestion Form Container */
.suggestion-container {
    max-width: 1200px;
    margin: 0 auto;
}

.suggestion-form-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.suggestion-form-container {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    position: relative;
}

.suggestion-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(82, 109, 249, 0.05) 0%, rgba(157, 110, 254, 0.05) 100%);
    z-index: -1;
}

.suggestion-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 0 calc(50% - 10px);
    position: relative;
}

.form-group.full-width {
    flex: 1 0 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Perbaikan untuk select dropdown */
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form-group select option {
    background-color: #1a1c3a;
    color: #fff;
    padding: 10px;
}

.form-group select:focus {
    outline: none;
    border-color: #526df9;
    box-shadow: 0 0 0 3px rgba(82, 109, 249, 0.2);
}

/* Style untuk placeholder di select */
.form-group select option[value=""][disabled] {
    color: rgba(255, 255, 255, 0.5);
}

/* Tambahkan style untuk select saat hover */
.form-group select:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Tambahkan efek glow saat focus */
.form-group select:focus {
    box-shadow: 0 0 10px rgba(82, 109, 249, 0.4);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #526df9;
    box-shadow: 0 0 0 3px rgba(82, 109, 249, 0.2);
}

.input-focus-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #526df9, #9d6efe);
    transition: width 0.3s ease;
}

.form-group input:focus ~ .input-focus-effect,
.form-group textarea:focus ~ .input-focus-effect {
    width: 100%;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(4px);
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    font-size: 14px;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.feature-tag {
    position: relative;
}

.feature-tag input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.feature-tag label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.feature-tag input[type="checkbox"]:checked + label {
    background: rgba(82, 109, 249, 0.2);
    border-color: #526df9;
    color: #fff;
}

.feature-tag label:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Form Actions */
.form-actions {
    width: 100%;
    margin-top: 20px;
    text-align: right;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(90deg, #526df9, #9d6efe);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -10px rgba(82, 109, 249, 0.5);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -10px rgba(82, 109, 249, 0.6);
}

.submit-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(4px);
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

/* Suggestion Visual */
.suggestion-visual {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Suggestion Visual (lanjutan) */
.suggestion-illustration {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
    animation: float 6s ease-in-out infinite;
}

.suggestion-illustration lottie-player {
    width: 100%;
    height: 100%;
}

.suggestion-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #526df9 0%, #9d6efe 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
}

.info-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.success-message.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    max-width: 500px;
    width: 90%;
    background: linear-gradient(135deg, #0c0e22 0%, #1a1c3a 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-message.active .success-content {
    transform: translateY(0);
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.success-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.success-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.close-success-btn {
    padding: 12px 24px;
    background: linear-gradient(90deg, #526df9, #9d6efe);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(82, 109, 249, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .suggestion-form-wrapper {
        flex-direction: column;
    }
    
    .suggestion-visual {
        order: -1;
    }
    
    .product-suggestion h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .product-suggestion {
        padding: 80px 0;
    }
    
    .form-group {
        flex: 1 0 100%;
    }
    
    .product-suggestion h2 {
        font-size: 30px;
    }
    
    .product-suggestion .section-subtitle {
        font-size: 16px;
    }
    
    .suggestion-form-container,
    .suggestion-visual {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .product-suggestion h2 {
        font-size: 26px;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .suggestion-form-container,
    .suggestion-visual {
        padding: 20px;
    }
}

/* Animation Effects */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Newsletter Section Styles */

.newsletter-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0e22 0%, #1a1c42 100%);
    overflow: hidden;
    z-index: 1;
}

.newsletter-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.newsletter-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    flex: 1;
    padding-right: 40px;
    max-width: 600px;
}

.newsletter-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.newsletter-content h2 .highlight {
    color: #64ffda;
}

.newsletter-content h2 .gradient-text {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.newsletter-form {
    width: 100%;
}

.form-input-group {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.form-input-group input {
    flex: 1;
    height: 60px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px 0 0 10px;
    padding: 0 20px;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease;
}

.form-input-group input:focus {
    outline: none;
    border-color: #64ffda;
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.3);
}

.form-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-submit {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: #fff;
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.newsletter-submit span {
    margin-right: 10px;
}

.newsletter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: rgba(255, 255, 255, 0.2);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #64ffda;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.newsletter-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.newsletter-illustration {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-mail {
    position: absolute;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    animation: float 6s infinite ease-in-out;
}

.mail-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.mail-2 {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.mail-3 {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

.newsletter-floating-elements .floating-shape {
    position: absolute;
    background: linear-gradient(135deg, #64ffda 0%, #48a9fe 100%);
    opacity: 0.2;
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.newsletter-floating-elements .shape-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

.newsletter-floating-elements .shape-2 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}

.newsletter-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(22, 24, 48, 0.95);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    z-index: 1000;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.newsletter-success.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.newsletter-success .success-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.newsletter-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-success p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.close-newsletter-success {
    background: linear-gradient(135deg, #64ffda 0%, #48a9fe 100%);
    color: #0c0e22;
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-newsletter-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .newsletter-container {
        flex-direction: column;
        padding: 40px 30px;
    }
    
    .newsletter-content {
        padding-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .newsletter-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: 70px 0;
    }
    
    .form-input-group {
        flex-direction: column;
    }
    
    .form-input-group input {
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    .newsletter-submit {
        border-radius: 10px;
        width: 100%;
    }
    
    .newsletter-options {
        flex-direction: column;
        gap: 15px;
    }
}