/* SECTION */
.service-detail-section {
    padding: 120px 20px 60px;
    background: radial-gradient(circle at top, #0b0f2a, #050816);
}

/* IMAGE BOX */
.service-img-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.service-img-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.5s;
}

/* hover zoom */
.service-img-box:hover img {
    transform: scale(1.05);
}

/* glow effect */
.service-img-box::before {
    content: "";
    position: absolute;
    inset: -10px;
    background: linear-gradient(45deg, #c7af26, transparent);
    filter: blur(30px);
    opacity: 0.4;
    z-index: -1;
}

/* CARD */
.service-detail-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,215,0,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* TITLE */
.service-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* DESCRIPTION */
.service-desc {
    color: #ccc;
    line-height: 1.7;
    font-size: 15px;
}

/* GOLD BUTTON */
.btn-gold {
    background: linear-gradient(45deg, gold, orange);
    border: none;
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,215,0,0.5);
}

/* OUTLINE BUTTON */
.btn-outline-light {
    border-radius: 30px;
    padding: 10px 22px;
}

/* MOBILE */
@media (max-width: 768px) {

    .service-detail-section {
        padding: 90px 15px 40px;
    }

    .service-img-box img {
        height: 250px;
    }

    .service-title {
        font-size: 22px;
    }

    .service-desc {
        font-size: 13px;
    }

    .service-detail-card {
        padding: 20px;
    }
}