.hero-viking {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
    url('../assets/img/home.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-card-section {
    padding-top: 120px;
    padding-bottom: 50px;
}

.hero-main-card {
    position: relative;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 80px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.card-image-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../assets/img/home.jpeg');
    background-size: cover; background-position: center;
    transition: transform 0.6s ease;
}

.hero-main-card:hover .card-image-bg { transform: scale(1.03); }

.card-overlay { position: relative; z-index: 2; max-width: 600px; color: white; }
.card-overlay h1 { font-size: 3.5rem; font-weight: 800; }

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
}

.btn-white-outline {
    border: 2px solid white;
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white-outline:hover {
    background: white;
    color: #1a1a1a !important;
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero-card-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .hero-main-card {
        padding: 0 40px;
        height: 500px;
    }
    .card-overlay h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-card-section {
        padding-top: 90px;
        padding-bottom: 20px;
    }
    .hero-main-card {
        padding: 0 20px;
        height: 450px;
    }
    .card-overlay h1 {
        font-size: 2.2rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    .hero-btns a {
        width: 100%;
        text-align: center;
    }
}