/* New Integrated Contact Section */
.contact-section-new {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

/* Left side - Information */
.contact-left {
    flex: 1;
    background-color: #3f51b5;
    /* Blue color from image */
    color: #fff;
    padding: 60px;
    min-width: 350px;
    position: relative;
    overflow: hidden;
}

.contact-left::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-left .subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.6;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content small {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
    opacity: 0.7;
}

.info-content p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.info-content p a {
    color: #fff;
    text-decoration: none;
}

/* Right side - Form */
.contact-right {
    flex: 1.5;
    background-color: #fff;
    padding: 60px;
    min-width: 400px;
}

.contact-right h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-right .form-intro {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group label span {
    color: #e53935;
}

.form-control-new {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #555;
    background-color: #fcfcfc;
    transition: all 0.3s;
}

.form-control-new:focus {
    border-color: #3f51b5;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}

textarea.form-control-new {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-top: 5px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    margin-right: 10px;
}

.checkbox-group label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-group a {
    color: #3f51b5;
    text-decoration: none;
}

.submit-btn {
    background-color: #3f51b5;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 30px;
}

.submit-btn:hover {
    background-color: #303f9f;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-right {
        padding: 40px;
    }

    .contact-left {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: span 1;
    }
}