.contact-hero {
background: linear-gradient(135deg, #1a3a5c 0%, #2d5a87 100%);
color: white;
padding: 50px 20px;
text-align: center;
margin: -20px -20px 30px -20px;
}
.contact-hero h1 {
font-size: 32px;
margin: 0 0 10px;
}
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin: 30px 0;
}
.contact-info-card {
background: #f8f9fa;
padding: 30px;
border-radius: 10px;
}
.contact-info-card h2 {
color: #1a3a5c;
margin-top: 0;
border-bottom: 2px solid #2d5a87;
padding-bottom: 10px;
}
.contact-item {
margin: 20px 0;
padding-left: 30px;
position: relative;
}
.contact-item::before {
content: ”;
position: absolute;
left: 0;
top: 5px;
width: 20px;
height: 20px;
background: #2d5a87;
border-radius: 50%;
}
.contact-item h4 {
color: #1a3a5c;
margin: 0 0 5px;
}
.contact-item p {
color: #333;
margin: 0;
}
.phone-highlight {
background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
color: white;
padding: 20px;
border-radius: 10px;
text-align: center;
margin: 20px 0;
}
.phone-highlight .phone {
font-size: 28px;
font-weight: bold;
}
.hours-table {
width: 100%;
border-collapse: collapse;
margin-top: 15px;
}
.hours-table th, .hours-table td {
padding: 10px;
border-bottom: 1px solid #eee;
}
.hours-table th {
color: #1a3a5c;
text-align: left;
}
.map-placeholder {
background: #e0e0e0;
height: 250px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: #666;
margin-top: 20px;
}
.service-areas {
margin-top: 30px;
}
.area-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 15px;
}
.area-tag {
background: #2d5a87;
color: white;
padding: 8px 15px;
border-radius: 20px;
font-size: 13px;
}
.form-card {
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.form-card h2 {
color: #1a3a5c;
margin-top: 0;
}