/* ===== SERVICE DETAIL PAGES ===== */

.svc-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
    margin-top: 80px;
}

.svc-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(1,42,158,0.65) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.svc-hero-overlay h1 {
    color: white;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.svc-badge {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.svc-badge-summer { background: rgba(255,200,0,0.18); color: #f5c400; border: 1px solid rgba(255,200,0,0.35); }
.svc-badge-winter { background: rgba(100,160,255,0.18); color: #90c4ff; border: 1px solid rgba(100,160,255,0.35); }

.svc-content {
    max-width: 860px;
    margin: 72px auto;
    padding: 0 48px;
}

.svc-intro {
    font-size: 1.12rem;
    color: #012a9e;
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 28px;
}

.svc-body p {
    font-size: 1rem;
    color: #333;
    line-height: 1.85;
    margin-bottom: 20px;
}

.svc-bullets {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.svc-bullets li {
    padding: 12px 0;
    border-bottom: 1px solid #eaeaea;
    color: #222;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.98rem;
}

.svc-bullets li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #012a9e;
    border-radius: 50%;
    flex-shrink: 0;
}

.svc-photos-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 56px 0 0;
}

.svc-photos-two img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.svc-photos-three {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin: 56px 0 0;
}

.svc-photos-three img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.svc-extra-photos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.5s ease;
}

.svc-extra-photos.revealed {
    max-height: 2000px;
    opacity: 1;
}

.svc-extra-photos img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.svc-photo-toggle {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.svc-sjameira-btn {
    padding: 10px 24px;
    background: #012a9e;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.svc-sjameira-btn:hover {
    background: #001f7a;
    transform: translateY(-2px);
}

.svc-sjaminna-btn {
    padding: 10px 24px;
    background: transparent;
    color: #012a9e;
    border: 2px solid #012a9e;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.svc-sjaminna-btn:hover {
    background: #012a9e;
    color: white;
    transform: translateY(-2px);
}

.svc-photos-one {
    margin: 56px 0 0;
}

.svc-photos-one img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.svc-cta {
    background: #012a9e;
    color: white;
    text-align: center;
    padding: 80px 40px;
    margin-top: 80px;
}

.svc-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: 1px;
}

.svc-cta p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin: 0 auto 36px;
    max-width: 520px;
    line-height: 1.7;
}

.svc-cta-btn {
    display: inline-block;
    background: white;
    color: #012a9e;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 44px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.svc-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

@media (max-width: 700px) {
    .svc-hero { height: 300px; }
    .svc-hero-overlay { padding: 28px 24px; }
    .svc-hero-overlay h1 {
        font-size: 2rem;
        letter-spacing: 0;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .svc-content { padding: 0 20px; margin: 48px auto; }
    .svc-photos-two { grid-template-columns: 1fr; }
    .svc-photos-two img { height: 240px; }
    .svc-photos-three { grid-template-columns: 1fr; }
    .svc-photos-three img { height: 240px; }
    .svc-extra-photos { grid-template-columns: 1fr; }
    .svc-extra-photos img { height: 240px; }
    .svc-photos-one img { height: 300px; }
    .svc-cta { padding: 56px 20px; }
    .svc-cta h2 { font-size: 1.5rem; }
}
