/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,31,84,0.85), rgba(0,31,84,0.85)), url('https://kralmotoriranian.com/public/uploads/2026-02/general-1-1770836585-c19d0c709aa4d9ae.jpg');
    background-size: cover; background-position: center;
    color: white; padding: 80px 0; text-align: center; margin-bottom: 50px;
}

/* Introduction Text */
.intro-section {
    text-align: justify;
    margin-bottom: 25px;
}
.filter-item {
    transition: opacity 0.3s ease-in-out;
}
.section-title {
    color: var(--rasa-blue);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: ''; display: block; width: 100%; height: 4px;
    background-color: var(--rasa-red); margin-top: 5px; border-radius: 2px;
}

/* Company Cards */
.company-card {
    background: white; border: none; border-radius: 15px;
    overflow: hidden; transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%; display: flex; flex-direction: column;
}
.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.card-img-top-wrapper {
    height: 180px; background-color: #eee;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
/* Gradient Overlay for card header */
.card-img-top-wrapper::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, var(--rasa-blue), #003080);
    opacity: 0.9;
}
.company-icon {
    position: relative; z-index: 2; font-size: 4rem; color: white;
}
.card-body {
    padding: 25px; flex-grow: 1; display: flex; flex-direction: column;
}
.company-title {
    font-weight: 700; color: var(--rasa-blue); margin-bottom: 15px;
}
.company-desc {
    color: #6c757d; font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; text-align: justify;
}
.btn-visit {
    background-color: transparent; color: var(--rasa-blue);
    border: 2px solid var(--rasa-blue); border-radius: 8px;
    padding: 8px 20px; font-weight: bold; transition: all 0.3s;
    width: 100%; text-align: center; text-decoration: none;
}
.btn-visit:hover {
    background-color: var(--rasa-blue); color: white;
}