/* Contact Header */
.contact-header {
    padding: 8rem 2rem 4rem;
    background: url('images/contact-bg.jpg') center/cover no-repeat;
    color: white;
    position: relative;
    text-align: center;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-header .container {
    position: relative;
    z-index: 2;
}

/* Contact Content */
.contact-content {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #007bff;
}

.info-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #555;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: 600;
    color: #2c3e50;
    width: 80px;
}

.info-text a {
    color: #007bff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-header {
        padding: 6rem 1rem 3rem;
    }

    .contact-content {
        padding: 3rem 1rem;
    }

    .cta-message {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .info-title {
        font-size: 1.3rem;
    }
}
