:root {
    --font-heading: 'Playfair Display', serif;
    --color-primary-dark: #1a1006;
    --color-dark: #2b1c0f;
    --color-dark-soft: #3a2716;
    --color-accent: #e69b3c;
}

.service-detail-page {
    background-color: #000000;
}

/* ===== Hero Section ===== */
.service-detail-page .sd-hero {
    padding: 70px 0 40px;
}

.service-detail-page .sd-hero .sd-hero-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.service-detail-page .sd-hero .sd-hero-label {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 18px;
    color: var(--color-accent);
    border-left: 3px solid var(--color-accent);
    padding-left: 10px;
    display: inline-block;
    margin-bottom: 16px;
}

.service-detail-page .sd-hero .sd-hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 40px;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 18px;
}

.service-detail-page .sd-hero .sd-hero-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin-bottom: 26px;
}

.service-detail-page .sd-hero .sd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-detail-page .sd-hero .sd-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-detail-page .sd-hero .sd-btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.service-detail-page .sd-hero .sd-btn-primary:hover {
    background-color: #d4872f;
    color: var(--color-primary-dark);
}

.service-detail-page .sd-hero .sd-btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.service-detail-page .sd-hero .sd-btn-outline:hover {
    border-color: #fff;
}

.service-detail-page .sd-hero .sd-hero-media img {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.service-detail-page .sd-hero .sd-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.service-detail-page .sd-hero .sd-stats-row h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 6px;
}

.service-detail-page .sd-hero .sd-stats-row p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== Highlight Band ===== */
.service-detail-page .sd-band {
    background-color: var(--color-dark-soft);
    background-image: url('/storage/app/media/theme/dine-in-bg.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    padding: 60px 0;
}

.service-detail-page .sd-band .sd-band-header {
    margin-bottom: 40px;
}

.service-detail-page .sd-band .sd-band-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.service-detail-page .sd-band .sd-band-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
}

.service-detail-page .sd-band .sd-band-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-detail-page .sd-band .sd-feature-item .sd-feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.service-detail-page .sd-band .sd-feature-item .sd-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-detail-page .sd-band .sd-feature-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.service-detail-page .sd-band .sd-feature-item p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ===== Smoker Section ===== */
.service-detail-page .sd-smoker {
    padding: 70px 0;
}

.service-detail-page .sd-smoker .sd-smoker-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    margin-bottom: 40px;
}

.service-detail-page .sd-smoker .sd-smoker-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-detail-page .sd-smoker .sd-smoker-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-detail-page .sd-smoker .sd-smoker-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-detail-page .sd-smoker .sd-smoker-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-page .sd-smoker .sd-smoker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-page .sd-smoker .sd-smoker-info h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
}

.service-detail-page .sd-smoker .sd-smoker-info p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* ===== Groups Section ===== */
.service-detail-page .sd-groups {
    padding-bottom: 70px;
}

.service-detail-page .sd-groups .sd-groups-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    margin-bottom: 40px;
}

.service-detail-page .sd-groups .sd-groups-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.service-detail-page .sd-groups .sd-groups-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    margin-bottom: 10px;
}

.service-detail-page .sd-groups .sd-groups-item p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
}

.service-detail-page .sd-groups .sd-groups-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
}

.service-detail-page .sd-groups .sd-groups-link:hover {
    text-decoration: underline;
}

/* ===== CTA Box ===== */
.service-detail-page .sd-groups .sd-cta-box {
    background-color: #161616;
    border-radius: 12px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-detail-page .sd-groups .sd-cta-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    display: block;
    margin-bottom: 10px;
}

.service-detail-page .sd-groups .sd-cta-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    color: #fff;
    margin-bottom: 14px;
}

.service-detail-page .sd-groups .sd-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 420px;
}

.service-detail-page .sd-groups .sd-cta-divider {
    display: none;
}

.service-detail-page .sd-groups .sd-cta-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-detail-page .sd-groups .sd-cta-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-detail-page .sd-groups .sd-cta-contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.service-detail-page .sd-groups .sd-cta-contact-value {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* ===== دسکتاپ (992px به بالا) ===== */
@media (min-width: 992px) {

    .service-detail-page .sd-hero {
        padding: 100px 0 60px;
    }

    .service-detail-page .sd-hero .sd-hero-flex {
        flex-direction: row;
        align-items: center;
        gap: 60px;
        margin-bottom: 60px;
    }

    .service-detail-page .sd-hero .sd-hero-content {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .service-detail-page .sd-hero .sd-hero-title {
        font-size: 56px;
    }

    .service-detail-page .sd-hero .sd-hero-media {
        flex: 0 0 46%;
        max-width: 46%;
    }

    .service-detail-page .sd-hero .sd-hero-media img {
        max-height: 300px;
    }

    .service-detail-page .sd-hero .sd-stats-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-detail-page .sd-band {
        padding: 100px 0;
    }

    .service-detail-page .sd-band .sd-band-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .service-detail-page .sd-smoker {
        padding: 100px 0;
    }

    .service-detail-page .sd-smoker .sd-smoker-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }

    .service-detail-page .sd-groups {
        padding-bottom: 100px;
    }

    .service-detail-page .sd-groups .sd-groups-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .service-detail-page .sd-groups .sd-cta-box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 44px 50px;
    }

    .service-detail-page .sd-groups .sd-cta-left {
        flex: 1;
    }

    .service-detail-page .sd-groups .sd-cta-divider {
        display: block;
        width: 1px;
        height: 70px;
        background-color: rgba(255, 255, 255, 0.15);
        margin: 0 40px;
    }

    .service-detail-page .sd-groups .sd-cta-right {
        flex-direction: row;
        gap: 50px;
    }
}
