/* Contact Form Section */
.contact-form-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 80px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-container {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 60px;
    position: relative;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-header h1 {
    color: #343A40;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-form-header .highlight {
    color: #592EE0;
}

.contact-form-header p {
    color: #6c757d;
    font-size: 18px;
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: #343A40;
    font-size: 16px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #343A40;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #592EE0;
    background: white;
    box-shadow: 0 0 0 4px rgba(89, 46, 224, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23343A40' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #592EE0 0%, #7c3aed 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(89, 46, 224, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(89, 46, 224, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #15CA58 0%, #10b04a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

.success-message h3 {
    color: #343A40;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-message p {
    color: #6c757d;
    font-size: 18px;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* Contact Info Section */
.contact-info-section {
    width: 100%;
    padding: 80px 80px;
    background: white;
}

.contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #592EE0;
    box-shadow: 0 10px 30px rgba(89, 46, 224, 0.15);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    color: #343A40;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 100px 20px 60px;
    }

    .contact-form-container {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .contact-form-header h1 {
        font-size: 36px;
    }

    .contact-form-header p {
        font-size: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 16px;
        /* Prevents iOS zoom */
    }

    .btn-submit {
        width: 100%;
        padding: 16px 32px;
        font-size: 16px;
    }

    .contact-info-section {
        padding: 60px 20px;
    }

    .contact-info-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .info-icon {
        font-size: 40px;
    }

    .info-card h3 {
        font-size: 20px;
    }

    .info-card p {
        font-size: 15px;
    }

    .success-message {
        padding: 30px 20px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .success-message h3 {
        font-size: 24px;
    }

    .success-message p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 90px 15px 50px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-form-header h1 {
        font-size: 28px;
    }

    .contact-form-header p {
        font-size: 15px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-group label {
        font-size: 15px;
    }
}