/* css/contact.css */

/* UTILITY CLASSES */
.text-yellow {
    color: var(--primary-yellow);
}

.text-white {
    color: var(--text-light);
}

.text-gray {
    color: var(--text-gray);
}

.text-dark {
    color: var(--text-dark);
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

/* PAGE HEADER */
.page-header {
    padding: 180px 0 80px;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* GARAGES SECTION */
.garages {
    padding: 80px 0 100px;
}

.garages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.garage-detail-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.garage-detail-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.garage-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.garage-info-list li {
    display: flex;
    gap: 15px;
}

.garage-info-list .icon {
    font-size: 20px;
    color: var(--primary-yellow);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.garage-info-list .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.garage-info-list p {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .garages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-title {
        font-size: 32px;
    }

    .garage-detail-card {
        padding: 30px 20px;
    }

    .garage-detail-card h3 {
        font-size: 20px;
    }
}