/* ========================================
   SERVICE PAGE — Styles partagés & Mobile
   ======================================== */

.service-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 80vh;
}

.service-image-container {
    width: 100%;
    height: 400px;
    background-color: var(--brand-black);
    border: 2px dashed rgba(43, 110, 180, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 40px 0;
    color: var(--brand-gray);
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-image-container i {
    font-size: 48px;
    color: var(--brand-blue);
    margin-bottom: 15px;
}

/* ==================
   CONTENT CARD
   ================== */
.service-details-content {
    background: linear-gradient(145deg, #0d1317, #08111a);
    padding: 50px 45px;
    border-radius: 20px;
    border: 1px solid rgba(43, 110, 180, 0.15);
    text-align: left;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-details-content>h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-white);
    letter-spacing: 0.5px;
    margin-bottom: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.service-details-content>p.mt-30 {
    font-size: 15px;
    line-height: 1.8;
    color: var(--brand-gray);
    margin-top: 20px;
}

/* ==================
   PRICE TAG
   ================== */
.price-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 28px 0 18px;
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-blue);
}

.price-tag>div[style*="orange"] {
    font-size: 26px !important;
}

.price-tag .badge {
    font-size: 11px;
    font-weight: 700;
    background: rgba(43, 110, 180, 0.12);
    color: var(--brand-blue);
    padding: 5px 13px;
    border-radius: 20px;
    border: 1px solid rgba(43, 110, 180, 0.35);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-deluxe {
    background: rgba(255, 165, 0, 0.1) !important;
    color: orange !important;
    border-color: rgba(255, 165, 0, 0.4) !important;
}

/* ==================
   SERVICE LIST
   ================== */
.service-list {
    list-style: none;
    margin: 0 0 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 14px 16px;
    transition: background 0.2s;
}

.service-list li:hover {
    background: rgba(43, 110, 180, 0.07);
    border-color: rgba(43, 110, 180, 0.2);
}

.service-list li i {
    color: var(--brand-blue);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-list.deluxe-list li {
    background: rgba(255, 165, 0, 0.04);
    border-color: rgba(255, 165, 0, 0.1);
}

.service-list.deluxe-list li:hover {
    background: rgba(255, 165, 0, 0.08);
    border-color: rgba(255, 165, 0, 0.25);
}

.service-list.deluxe-list li i {
    color: orange;
}

/* Divider between Express and Deluxe */
.service-details-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin: 32px 0;
}

/* ==================
   OPTIONS BOX
   ================== */
.options-box {
    margin-top: 28px;
    padding: 20px 22px;
    background: rgba(43, 110, 180, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(43, 110, 180, 0.2);
    border-left: 4px solid var(--brand-blue);
}

.options-box h4 {
    margin-bottom: 10px;
    color: var(--brand-white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.options-box h4 i {
    color: var(--brand-blue);
}

.options-box p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.options-box small {
    color: var(--brand-gray);
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-style: italic;
}

/* ==================
   BACK LINK
   ================== */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-gray);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s, gap 0.3s;
}

.back-link:hover {
    color: var(--brand-white);
    gap: 14px;
}

header {
    background-color: var(--brand-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==================
   MOBILE & TABLET — max-width: 1024px
   ================== */
@media (max-width: 1024px) {

    .service-page {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .service-image-container {
        height: 240px;
    }

    .service-details-content {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .service-details-content>h3 {
        font-size: 18px;
    }

    .price-tag {
        font-size: 20px;
        gap: 10px;
        margin: 20px 0 14px;
    }

    .price-tag .badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .service-list li {
        font-size: 14px;
        padding: 12px 14px;
        gap: 12px;
    }

    .options-box {
        padding: 16px 16px;
    }

    .options-box p {
        font-size: 13px;
    }

    h1.reveal-up {
        font-size: 28px;
    }

    p.subtitle {
        font-size: 15px;
    }
}

/* ==================
   VERY SMALL — max-width: 400px
   ================== */
@media (max-width: 400px) {
    .service-details-content {
        padding: 20px 16px;
    }

    .price-tag {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ==================
   SECTION ET AUTRES
   ================== */
.other-works {
    background-color: var(--brand-black);
    padding-top: 60px;
    padding-bottom: 80px;
}

.other-works .divider {
    margin-bottom: 50px;
}

.sliders-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-bottom: 50px;
}

.sliders-container .ba-slider {
    flex: 1 1 48%;
    max-width: 550px;
}

@media (max-width: 1024px) {
    .sliders-container .ba-slider {
        flex: 1 1 100%;
        max-width: 600px;
    }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 350px;
    }
}

/* Square 'Et d’autres' Card */
.etc-card {
    flex: 1 1 48%;
    max-width: 550px;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(43, 110, 180, 0.05) 0%, rgba(43, 110, 180, 0.15) 100%);
    border: 2px dashed rgba(43, 110, 180, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--brand-white);
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.etc-card:hover {
    background: linear-gradient(135deg, rgba(43, 110, 180, 0.15) 0%, rgba(43, 110, 180, 0.25) 100%);
    border-color: var(--brand-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(43, 110, 180, 0.2);
}

.etc-card i {
    display: block;
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--brand-blue);
}

@media (max-width: 1024px) {
    .etc-card {
        flex: 1 1 100%;
        max-width: 600px;
    }
}