.ami-contact-form-section {
    padding: 80px 24px;
    background: #F8F8F8;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: #508A92;
    border-radius: 24px;
    padding: 48px 40px;
    color: #fff;
}

.info-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    color: #fff;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

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

.contact-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
}

.form-heading {
    font-size: 28px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 32px;
}

.embedded-form-wrapper {
    min-height: 400px;
}

.embedded-form-wrapper iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    border-radius: 12px;
}

.embed-placeholder {
    background: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
    color: #999;
}

.embed-placeholder p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

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

.form-row {
    width: 100%;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    background: #F8F8F8;
    color: #1A1A1A;
    transition: border-color 0.2s, background-color 0.2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #999;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #508A92;
    background: #fff;
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-actions {
    margin-top: 8px;
    display: flex;
    justify-content: center;
}

.submit-btn {
    padding: 14px 40px;
    background: transparent;
    border: 2px solid #508A92;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #508A92;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    background: #508A92;
    color: #fff;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 600px) {
    .ami-contact-form-section {
        padding: 60px 16px;
    }
    
    .contact-info-card,
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .form-row-2col {
        grid-template-columns: 1fr;
    }
    
    .info-heading,
    .form-heading {
        font-size: 24px;
    }
}






