/* ========================================================
   SERVICE PAGE — UNIQUE DESIGN
   Font: Poppins | Primary: #EF6F25 | Dark: #000001
   ======================================================== */

/* ---- SP Hero: Split Layout (Left text + Right image) ---- */
.sp-hero {
    padding: 170px 0 90px 0;
    background: linear-gradient(160deg, #0a0a0a 0%, #1a1a2e 55%, #2d1810 100%);
    position: relative;
    overflow: hidden;
}
.sp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23EF6F25' fill-opacity='0.03'%3E%3Cpath d='M50 50v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V16h-2v4h-4v2h4v4h2v-4h4v-2h-4zM20 50v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM20 20V16h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.sp-hero::after {
    display: none;
}
.sp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 3;
}
.sp-hero-text {
    padding-bottom: 0;
    color: #fff;
}
.sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.sp-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}
.sp-breadcrumb a:hover {
    color: var(--primary);
}
.sp-breadcrumb .sp-bc-active {
    color: var(--primary);
}
.sp-hero-text h1 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.sp-hero-text h1 .sp-highlight {
    color: var(--primary);
    position: relative;
}
.sp-hero-text h1 .sp-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    opacity: 0.4;
    border-radius: 2px;
}
.sp-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 540px;
}
.sp-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.sp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}
.sp-btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.sp-btn-primary:hover {
    background: #d4611f;
    border-color: #d4611f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239,111,37,0.35);
}
.sp-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.sp-btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
}
.sp-hero-image {
    position: relative;
    align-self: center;
}
.sp-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: block;
}
.sp-hero-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--primary);
    color: #fff;
    padding: 14px 22px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(239,111,37,0.4);
    z-index: 5;
}
.sp-hero-badge span {
    font-size: 28px;
    font-weight: 900;
    display: block;
    line-height: 1;
}
.sp-hero-badge small {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ---- SP About / Intro Section ---- */
.sp-about {
    padding: 90px 0;
    background: #fff;
}
.sp-about-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}
.sp-sidebar {
    position: sticky;
    top: 120px;
}
.sp-sidebar-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 30px 24px;
    border-left: 4px solid var(--primary);
}
.sp-sidebar-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}
.sp-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sp-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.sp-sidebar-list li:last-child {
    border-bottom: none;
}
.sp-sidebar-list li .sp-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(239,111,37,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}
.sp-sidebar-cta {
    margin-top: 24px;
    display: block;
    text-align: center;
    padding: 14px 20px;
    background: var(--primary);
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}
.sp-sidebar-cta:hover {
    background: #d4611f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239,111,37,0.3);
}
.sp-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.25;
}
.sp-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 32px 0 14px;
}
.sp-content p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}
.sp-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s;
}
.sp-content a:hover {
    color: #d4611f;
}
.sp-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.sp-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}
.sp-content ul li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    margin-top: 8px;
}

/* ---- SP Callout Box ---- */
.sp-callout {
    background: linear-gradient(135deg, #fdf4ef 0%, #fef9f5 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0 10px 10px 0;
    padding: 24px 28px;
    margin: 28px 0;
}
.sp-callout h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sp-callout p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* ---- SP Process Section (Vertical Alternating) ---- */
.sp-process {
    padding: 90px 0;
    background: #f7f7f7;
}
.sp-process-header {
    text-align: center;
    margin-bottom: 60px;
}
.sp-process-header .sp-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}
.sp-process-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}
.sp-process-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}
.sp-process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.sp-process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), rgba(239,111,37,0.15));
    border-radius: 3px;
}
.sp-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}
.sp-step:last-child {
    margin-bottom: 0;
}
.sp-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #d4611f);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(239,111,37,0.3);
    justify-self: center;
    transition: transform 0.3s;
}
.sp-step:hover .sp-step-num {
    transform: scale(1.12);
}
.sp-step-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #eee;
    transition: all 0.4s;
}
.sp-step:hover .sp-step-card {
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    border-color: rgba(239,111,37,0.2);
    transform: translateY(-4px);
}
.sp-step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.sp-step-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}
/* Alternating: odd = card on left, even = card on right */
.sp-step:nth-child(odd) .sp-step-card {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}
.sp-step:nth-child(odd) .sp-step-num {
    grid-column: 2;
    grid-row: 1;
}
.sp-step:nth-child(odd) .sp-step-empty {
    grid-column: 3;
    grid-row: 1;
}
.sp-step:nth-child(even) .sp-step-card {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
}
.sp-step:nth-child(even) .sp-step-num {
    grid-column: 2;
    grid-row: 1;
}
.sp-step:nth-child(even) .sp-step-empty {
    grid-column: 1;
    grid-row: 1;
}

/* ---- SP Benefits Grid ---- */
.sp-benefits {
    padding: 90px 0;
    background: #fff;
}
.sp-benefits-header {
    text-align: center;
    margin-bottom: 50px;
}
.sp-benefits-header .sp-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}
.sp-benefits-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
}
.sp-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.sp-benefit-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 32px 28px;
    border-left: 4px solid var(--primary);
    transition: all 0.4s;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.sp-benefit-card:hover {
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.sp-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(239,111,37,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    transition: all 0.3s;
}
.sp-benefit-card:hover .sp-benefit-icon {
    background: var(--primary);
    transform: scale(1.08);
}
.sp-benefit-card:hover .sp-benefit-icon span {
    filter: brightness(10);
}
.sp-benefit-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.sp-benefit-text p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* ---- SP Image Banner ---- */
.sp-image-banner {
    padding: 80px 0;
    background: #f8f8f8;
    position: relative;
}
.sp-image-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.sp-image-banner-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.sp-image-banner-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.sp-image-banner-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.25;
}
.sp-image-banner-text p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* ---- SP FAQ Section ---- */
.sp-faq {
    padding: 90px 0;
    background: #fff;
}
.sp-faq-header {
    text-align: center;
    margin-bottom: 50px;
}
.sp-faq-header .sp-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}
.sp-faq-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
}
.sp-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sp-faq-item {
    background: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
}
.sp-faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.sp-faq-item.active {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.sp-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
    transition: color 0.3s;
    gap: 16px;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}
.sp-faq-q:hover {
    color: var(--primary);
}
.sp-faq-q .sp-faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(239,111,37,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s;
}
.sp-faq-item.active .sp-faq-q {
    color: var(--primary);
}
.sp-faq-item.active .sp-faq-icon {
    transform: rotate(45deg);
}
.sp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.sp-faq-a-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
}
.sp-faq-item.active .sp-faq-a {
    max-height: 500px;
}

/* ---- SP Related Services ---- */
.sp-related {
    padding: 80px 0;
    background: #f7f7f7;
}
.sp-related-header {
    text-align: center;
    margin-bottom: 40px;
}
.sp-related-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
}
.sp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sp-related-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}
.sp-related-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.sp-related-card .sp-related-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(239,111,37,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    transition: all 0.3s;
}
.sp-related-card:hover .sp-related-icon {
    background: var(--primary);
    transform: scale(1.1);
}
.sp-related-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
}

/* ---- SP CTA Section ---- */
.sp-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #2d1810 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.sp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23EF6F25' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sp-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.sp-cta-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.sp-cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 32px;
}
.sp-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.sp-cta-btns .sp-btn {
    padding: 16px 36px;
    font-size: 17px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .sp-hero {
        padding: 150px 0 70px;
        min-height: auto;
    }
    .sp-hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sp-hero-text {
        padding-bottom: 0;
        text-align: center;
    }
    .sp-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    .sp-hero-btns {
        justify-content: center;
    }
    .sp-hero-image {
        display: none;
    }
    .sp-about-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sp-sidebar {
        position: static;
    }
    .sp-benefits-grid {
        grid-template-columns: 1fr;
    }
    .sp-image-banner-inner {
        grid-template-columns: 1fr;
    }
    .sp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sp-process-timeline::before {
        left: 28px;
    }
    .sp-step {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }
    .sp-step:nth-child(odd) .sp-step-card,
    .sp-step:nth-child(even) .sp-step-card {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
    }
    .sp-step:nth-child(odd) .sp-step-num,
    .sp-step:nth-child(even) .sp-step-num {
        grid-column: 1;
        grid-row: 1;
    }
    .sp-step .sp-step-empty {
        display: none;
    }
}

@media (max-width: 768px) {
    .sp-hero {
        padding: 130px 0 60px;
    }
    .sp-hero-text h1 {
        font-size: 30px;
    }
    .sp-hero-sub {
        font-size: 14px;
    }
    .sp-hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .sp-hero-btns .sp-btn {
        width: 100%;
        max-width: 300px;
    }
    .sp-about, .sp-process, .sp-benefits, .sp-faq, .sp-related {
        padding: 60px 0;
    }
    .sp-content h2 {
        font-size: 26px;
    }
    .sp-content h3 {
        font-size: 20px;
    }
    .sp-process-header h2,
    .sp-benefits-header h2,
    .sp-faq-header h2 {
        font-size: 28px;
    }
    .sp-related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .sp-cta-content h2 {
        font-size: 28px;
    }
    .sp-cta-btns {
        flex-direction: column;
        align-items: center;
    }
    .sp-cta-btns .sp-btn {
        width: 100%;
        max-width: 300px;
    }
    .sp-step-num {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .sp-image-banner-img img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .sp-hero {
        padding: 110px 0 45px;
    }
    .sp-hero-text h1 {
        font-size: 24px;
    }
    .sp-about, .sp-process, .sp-benefits, .sp-faq, .sp-related {
        padding: 50px 0;
    }
    .sp-content h2 {
        font-size: 22px;
    }
    .sp-process-header h2,
    .sp-benefits-header h2,
    .sp-faq-header h2 {
        font-size: 24px;
    }
    .sp-cta-content h2 {
        font-size: 24px;
    }
    .sp-related-grid {
        grid-template-columns: 1fr;
    }
    .sp-benefit-card {
        flex-direction: column;
        gap: 14px;
    }
    .sp-step-card {
        padding: 22px 18px;
    }
    .sp-image-banner-img img {
        height: 220px;
    }
}
