/* ================= HERO ================= */
.service-hero {
    padding: 120px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 45px;
    font-weight: 600;

}

.hero-subtitle {
    color: #cfd8e3;
    font-size: 18px;
    margin-top: 10px;
}

/* ================= SERVICES ================= */
.bmw-services {
    background: linear-gradient(135deg, #000 0%, #1A4174 50%, #000 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.crown-card-light {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.35s;
    backdrop-filter: blur(12px);
    height: 100%;
    animation: floatCard 6s ease-in-out infinite;
}

.crown-card-light:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-body h4 {
    font-weight: 800;
    font-size: 18px;
}

.card-body p {
    font-size: 14px;
    color: #dbe4ff;
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.read-more-btn:hover {
    background: #fff;
    color: #000;
}

/* FLOAT */
@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ================= PACKAGES ================= */
.package-card {
    background: linear-gradient(135deg, #000, #1A4174);
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.3s;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.featured {
    border: 2px solid #1B9FCB;
    transform: scale(1.05);
}

.package-card h3 {
    color: #fff;
    font-size: 20px;
}

.price {
    font-size: 26px;
    color: #1B9FCB;
    font-weight: bold;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
    color: #ddd;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.feature-list i {
    color: #28a745;
    margin-right: 8px;
}

/* BADGE */
.badge {
    background: #1B9FCB;
    padding: 5px 12px;
    border-radius: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 12px;
}

/* ================= CTA ================= */
.cta-section {
    background: linear-gradient(135deg, #000, #1A4174);
    padding: 80px 0;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .bmw-services {
        padding: 60px 0;
    }

    .package-card {
        padding: 28px;
    }

    .price {
        font-size: 24px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

    .service-hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 20px;
        font-weight: 500;
    }

    .hero-subtitle {
        font-size: 12px;
        padding: 0 10px;
    }

    .bmw-services {
        padding: 50px 0;
    }

    .card-body h4 {
        font-size: 16px;
    }

    .card-body p {
        font-size: 13px;
    }

    .read-more-btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .package-card {
        padding: 22px;
        transform: none !important;
    }

    .package-card.featured {
        transform: none !important;
    }

    .price {
        font-size: 22px;
    }

    .feature-list li {
        font-size: 13px;
    }

    .cta-section {
        padding: 60px 0;
        text-align: center;
    }


    .button_service {
        font-size: 12px;
    }
}