﻿.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #002855 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

    .page-header h1 {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .page-header p {
        font-size: 20px;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto;
    }

.contact-section {
    background-color: white;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

    .contact-intro h2 {
        font-size: 36px;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .contact-intro p {
        font-size: 18px;
        color: var(--text);
        line-height: 1.7;
        opacity: 0.8;
    }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--background);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(1, 31, 63, 0.1);
        border-color: rgba(255, 107, 53, 0.3);
        background: white;
    }

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--secondary);
    font-size: 32px;
}

.contact-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-description {
    color: var(--text);
    font-size: 16px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    opacity: 0.8;
}

.contact-detail {
    margin-bottom: 30px;
    text-align: center;
}

    .contact-detail p {
        margin-bottom: 8px;
        color: var(--text);
        font-size: 16px;
        line-height: 1.5;
    }

    .contact-detail strong {
        color: var(--primary);
        font-weight: 600;
    }

.contact-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
}

.hours-section {
    background: var(--background);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

    .hours-section h3 {
        text-align: center;
        color: var(--primary);
        font-size: 28px;
        margin-bottom: 30px;
    }

.hours-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(1, 31, 63, 0.05);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

    .hours-item:last-child {
        border-bottom: none;
    }

.day {
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
}

.time {
    font-weight: 600;
    color: var(--secondary);
    font-size: 16px;
    background: rgba(255, 107, 53, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
}

.hours-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 14px;
}

    .hours-note i {
        color: var(--secondary);
    }

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .page-header p {
        font-size: 16px;
    }

    .contact-intro h2 {
        font-size: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 25px;
    }

    .hours-section {
        padding: 30px 20px;
    }

    .hours-card {
        padding: 25px 20px;
    }

    .hours-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
