/* ====== SECTION HERO ====== */
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.gradient-overlay::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #f0f0f0;
}

/* ====== SECTION DIRECTION ====== */
.direction-section {
    background: #f9f9f9;
}

.section-title {
    font-weight: 700;
    color: #222;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #d90429;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.card {
    border: none;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
}

.card img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.2rem;
}

.card-title {
    font-weight: 600;
    color: #111;
    font-size: 1.2rem;
}

.card-text {
    color: #777;
    font-size: 0.95rem;
}

/* Hover effect */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .card img {
        height: 220px;
    }
}
