/* ============================================================
   SERVICE DETAIL PAGE — PREMIUM DESIGN SYSTEM
   Glory Group | Sunon International
   ============================================================ */

/* ── Hero Banner ── */
.service-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #010815 0%, #030f28 50%, #020b1e 100%);
    border-bottom: 1px solid rgba(253, 190, 51, 0.15);
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.service-hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 190, 51, 0.08) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.service-hero .hero-inner {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
}

.service-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(253, 190, 51, 0.1);
    border: 1px solid rgba(253, 190, 51, 0.25);
    border-radius: 30px;
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.service-hero .hero-badge i {
    font-size: 11px;
}

.service-hero h1 {
    font-size: 58px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.service-hero h1 span {
    color: var(--accent-gold);
    position: relative;
}

.service-hero p.hero-lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 40px;
}

.service-hero .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.service-hero .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent-gold);
    color: #020617;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(253, 190, 51, 0.3);
    border: 2px solid var(--accent-gold);
}

.service-hero .btn-hero-primary:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(253, 190, 51, 0.2);
}

.service-hero .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid rgba(255,255,255,0.15);
}

.service-hero .btn-hero-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Hero visual panel (right column) */
.service-hero .hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px 0;
}

.service-hero .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-hero .stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.service-hero .stat-card:hover {
    border-color: rgba(253, 190, 51, 0.3);
    background: rgba(253, 190, 51, 0.05);
    transform: translateY(-4px);
}

.service-hero .stat-card .stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}

.service-hero .stat-card .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── Section Wrapper ── */
.svc-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.svc-section.alt-bg {
    background: var(--bg-darker);
}

.svc-section .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.svc-section .section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.svc-section .section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 50px;
}

/* ── Feature Cards ── */
.svc-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 30px;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.svc-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow), 0 24px 48px rgba(0,0,0,0.5);
    border-color: rgba(253, 190, 51, 0.25);
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-card .card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(253, 190, 51, 0.12) 0%, rgba(253, 190, 51, 0.04) 100%);
    border: 1px solid rgba(253, 190, 51, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.svc-card:hover .card-icon {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(253, 190, 51, 0.3);
}

.svc-card .card-icon i {
    font-size: 26px;
    color: var(--accent-gold);
    transition: color 0.3s ease;
}

.svc-card:hover .card-icon i {
    color: #020617;
}

.svc-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.svc-card:hover h3 {
    color: var(--accent-gold);
}

.svc-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
}

/* ── Feature List Style ── */
.svc-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.svc-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.svc-feature-list li:last-child {
    border-bottom: none;
}

.svc-feature-list li:hover {
    color: var(--text-primary);
}

.svc-feature-list li .list-dot {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(253, 190, 51, 0.1);
    border: 1px solid rgba(253, 190, 51, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.svc-feature-list li .list-dot i {
    font-size: 11px;
    color: var(--accent-gold);
}

/* ── Process Steps ── */
.process-step {
    position: relative;
    padding: 30px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.process-step:hover {
    border-color: rgba(253, 190, 51, 0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateX(8px);
}

.process-step .step-num {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(253,190,51,0.15), rgba(253,190,51,0.05));
    border: 1px solid rgba(253,190,51,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.process-step:hover .step-num {
    background: var(--accent-gold);
    color: #020617;
    border-color: var(--accent-gold);
}

.process-step .step-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.process-step .step-body p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.65;
}

/* ── Benefits Strip ── */
.benefits-strip {
    background: linear-gradient(135deg, #030a1a 0%, #020617 100%);
    border-top: 1px solid rgba(253, 190, 51, 0.12);
    border-bottom: 1px solid rgba(253, 190, 51, 0.12);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.benefits-strip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(253,190,51,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-item .b-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(253, 190, 51, 0.1);
    border: 1px solid rgba(253, 190, 51, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item .b-icon i {
    font-size: 22px;
    color: var(--accent-gold);
}

.benefit-item .b-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 3px;
}

.benefit-item .b-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* ── CTA Section ── */
.svc-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #010c1f 0%, #020d24 100%);
    border-top: 1px solid rgba(253, 190, 51, 0.1);
}

.svc-cta::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(253,190,51,0.06) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
}

.svc-cta::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold) 30%, var(--accent-gold) 70%, transparent);
    opacity: 0.5;
}

.svc-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.svc-cta-inner .cta-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(253, 190, 51, 0.1);
    border: 1px solid rgba(253, 190, 51, 0.25);
    border-radius: 30px;
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.svc-cta-inner h2 {
    font-size: 46px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.svc-cta-inner p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-cta-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent-gold), #e5a91c);
    color: #020617;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(253, 190, 51, 0.3);
}

.btn-cta-gold:hover {
    background: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(253, 190, 51, 0.15);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.15);
    transition: var(--transition-smooth);
}

.btn-cta-outline:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Contact Info Row */
.cta-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cta-contact-item .ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(253, 190, 51, 0.08);
    border: 1px solid rgba(253, 190, 51, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-contact-item .ci-icon i {
    font-size: 18px;
    color: var(--accent-gold);
}

.cta-contact-item .ci-text {
    text-align: left;
}

.cta-contact-item .ci-text .ci-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.cta-contact-item .ci-text a,
.cta-contact-item .ci-text span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.cta-contact-item .ci-text a:hover {
    color: var(--accent-gold);
}

/* ── Light Mode ── */
html.light-mode .service-hero {
    background: linear-gradient(135deg, #e8ecf1 0%, #dde2e8 50%, #e2e7ee 100%);
    border-bottom-color: rgba(212, 160, 23, 0.15);
}

html.light-mode .service-hero h1,
html.light-mode .service-hero .stat-card .stat-label {
    color: var(--text-primary);
}

html.light-mode .service-hero p.hero-lead {
    color: var(--text-secondary);
}

html.light-mode .service-hero .hero-badge {
    background: rgba(212, 160, 23, 0.1);
    border-color: rgba(212, 160, 23, 0.25);
}

html.light-mode .service-hero .stat-card {
    background: rgba(255,255,255,0.7);
    border-color: rgba(0,0,0,0.08);
}

html.light-mode .service-hero .stat-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    background: rgba(212, 160, 23, 0.05);
}

html.light-mode .svc-section.alt-bg {
    background: #eef1f6;
}

html.light-mode .svc-card {
    background: var(--bg-surface);
}

html.light-mode .svc-card .card-icon {
    background: rgba(212, 160, 23, 0.08);
    border-color: rgba(212, 160, 23, 0.2);
}

html.light-mode .svc-card:hover .card-icon {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

html.light-mode .process-step {
    background: var(--bg-surface);
}

html.light-mode .benefits-strip {
    background: linear-gradient(135deg, #e8ecf1 0%, #dde2e8 100%);
    border-color: rgba(212, 160, 23, 0.12);
}

html.light-mode .benefit-item {
    border-right-color: rgba(0,0,0,0.07);
}

html.light-mode .benefit-item .b-icon {
    background: rgba(212, 160, 23, 0.1);
    border-color: rgba(212, 160, 23, 0.2);
}

html.light-mode .svc-cta {
    background: linear-gradient(135deg, #e2e7ee 0%, #dde2e8 100%);
    border-top-color: rgba(212, 160, 23, 0.1);
}

html.light-mode .svc-cta::after {
    background: linear-gradient(90deg, transparent, var(--accent-gold) 30%, var(--accent-gold) 70%, transparent);
}

html.light-mode .cta-contact-row {
    border-top-color: rgba(0,0,0,0.07);
}

html.light-mode .cta-contact-item .ci-icon {
    background: rgba(212, 160, 23, 0.08);
    border-color: rgba(212, 160, 23, 0.2);
}

html.light-mode .btn-hero-secondary,
html.light-mode .btn-cta-outline {
    border-color: rgba(0,0,0,0.15);
    color: var(--text-primary);
}

html.light-mode .btn-cta-gold {
    color: #ffffff;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .service-hero h1 { font-size: 42px; }
    .service-hero .hero-inner { padding: 80px 0 60px; }
    .service-hero .stat-grid { grid-template-columns: 1fr 1fr; }
    .svc-section { padding: 70px 0; }
    .svc-section .section-title { font-size: 32px; }
    .svc-cta-inner h2 { font-size: 36px; }
    .benefit-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
}

@media (max-width: 767.98px) {
    .service-hero h1 { font-size: 32px; }
    .service-hero p.hero-lead { font-size: 15px; }
    .service-hero .hero-inner { padding: 60px 0 50px; }
    .service-hero .stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .service-hero .stat-card { padding: 20px 15px; }
    .service-hero .stat-card .stat-num { font-size: 28px; }
    .svc-section { padding: 55px 0; }
    .svc-section .section-title { font-size: 28px; }
    .svc-cta { padding: 70px 0; }
    .svc-cta-inner h2 { font-size: 28px; }
    .svc-cta-inner p { font-size: 15px; }
    .cta-contact-row { gap: 24px; flex-direction: column; align-items: flex-start; padding: 30px 0 0; }
    .benefits-strip { padding: 50px 0; }
    .process-step { flex-direction: column; gap: 16px; }
    .process-step:hover { transform: translateY(-4px); }
}
