/* Hero section styles */
.contact-page .hero {
    position: relative;
    background-image: url('../images/PSM00005.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    height: 80vh;
    display: flex;
    color: #fff;
}

/* Contact section styles */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 3rem 0;
    background-color: #f4f4f4;
}

.contact-info {
    flex: 1;
    padding: 2rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #D50505;
    text-transform: uppercase;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.6;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    padding-left: 30px;
    position: relative;
    color: #333;
}

.contact-info ul li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: #D50505;
}

/* Map section */
.map-container {
    flex: 1;
    padding: 1.5rem;
}

.map-container h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Quote section */
.quote-section {
    padding: 3rem 0;
    background-color: #fff;
    text-align: center;
}

.quote-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #D50505;
}

.quote-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: flex;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #333;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-quote {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #D50505;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-quote:hover {
    background-color: #555;
}

/* Responsive styles */
@media (max-width: 768px) {
    .contact-section,
    .quote-section {
        flex-direction: column;
    }

    .contact-info, 
    .map-container {
        width: 100%;
        padding: 1rem 0;
    }

    .map {
        height: 300px;
    }

    .quote-section h2 {
        font-size: 2rem;
    }

    form {
        padding: 1.5rem;
    }
}