/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-container {
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info h2 {
    color: white;
    margin-bottom: 2rem;
}

.contact-info h2::after {
    background-color: var(--accent-color);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
}

.contact-form-container {
    flex: 2;
}

.contact-form-container h2 {
    margin-bottom: 2rem;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

input, textarea, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    height: 150px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

button[type="submit"] {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Map Section */
.map-section {
    padding: 2rem 0 4rem;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--neutral-color);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonials {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0;
}

.testimonials h2 {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.testimonials h2::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: bold;
}

.testimonial-role {
    color: var(--accent-color);
    font-size: 0.9rem;
}