/* Contact Page Specific Styles */
.contact-section {
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro h2 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-intro p {
    color: #555;
    line-height: 1.8;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
}

.contact-info-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-wrapper h3 {
    color: #2c5530;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    font-size: 1.8rem;
}

.contact-info-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2c5530, #4a7c59);
    border-radius: 2px;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 1.5rem;
}

.info-details h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-details p {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    color: #333;
}

.info-details span {
    font-size: 0.9rem;
    color: #666;
}

.info-details a {
    color: #2c5530;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: #4a7c59;
}

/* Service Areas Section */
.service-areas {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.service-areas h4 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.areas-description {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.area-tag {
    background: #f8fafc;
    color: #2c5530;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.area-tag.featured {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.2);
}

.area-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.areas-note {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    color: #555;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.areas-note i {
    color: #2c5530;
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        padding: 0 1rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .contact-intro h2 {
        font-size: 1.75rem;
    }
    
    .contact-info-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }
}