/* ============================================
   SERVICE PAGE — REUSABLE STYLES (sp- prefix)
   Works for ALL inner service pages
   Isolated from homepage styles
============================================ */

/* ===== SECTION LABELS ===== */
.sp-section-subtitle {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.sp-section-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}

.sp-section-title span {
    color: var(--primary-red);
}

/* ===== SERVICE DETAIL SECTION ===== */
.sp-service-detail {
    padding: 60px 0;
}

.sp-service-main-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
}

.sp-service-main-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.sp-image-overlay-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--primary-red);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(211,47,47,0.4);
}

/* ===== SERVICE CONTENT ===== */
.sp-service-content p {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 15px;
}

.sp-content-heading {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin: 35px 0 15px;
    color: var(--dark-text);
    position: relative;
    padding-left: 18px;
}

.sp-content-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

/* ===== CONDITIONS / HIGHLIGHTS BOX ===== */
.sp-conditions-box {
    background: linear-gradient(135deg, #fff5f5, #ffeaea);
    border-radius: 14px;
    padding: 18px 25px;
    margin: 20px 0 30px;
    border-left: 4px solid var(--primary-red);
}

.sp-conditions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
}

.sp-conditions-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
}

.sp-conditions-list li i {
    color: var(--primary-red);
    font-size: 14px;
}

/* ===== CARE TYPES GRID ===== */
.sp-care-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0 30px;
}

.sp-care-type-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
    border: 1px solid #ffeaea;
    border-radius: 14px;
    padding: 16px 14px;
    transition: all 0.35s ease;
}

.sp-care-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(211,47,47,0.12);
    border-color: var(--primary-red);
}

.sp-care-type-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.35s ease;
}

.sp-care-type-card:hover .sp-care-type-icon {
    transform: rotate(-5deg) scale(1.08);
}

.sp-care-type-body h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.sp-care-type-body p {
    font-size: 12px;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.6;
}

/* ===== SERVICE INCLUDE CARDS ===== */
.sp-service-include-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border: 1px solid #ffeaea;
    border-radius: 14px;
    padding: 18px 15px;
    height: 100%;
    transition: all 0.35s ease;
}

.sp-service-include-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(211,47,47,0.1);
    transform: translateY(-4px);
}

.sp-service-include-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.35s ease;
}

.sp-service-include-card:hover .sp-service-include-icon {
    transform: rotate(-5deg) scale(1.05);
}

.sp-service-include-body h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
}

.sp-service-include-body p {
    font-size: 12px;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.6;
}

/* ===== WHY CHOOSE ITEMS ===== */
.sp-why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: white;
    border: 1px solid #f0f0f0;
    border-left: 3px solid var(--primary-red);
    border-radius: 12px;
    padding: 16px 15px;
    height: 100%;
    transition: all 0.35s ease;
}

.sp-why-choose-item:hover {
    box-shadow: 0 8px 25px rgba(211,47,47,0.08);
    transform: translateX(5px);
}

.sp-why-choose-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #ffeaea, #ffcdd2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 17px;
    transition: all 0.35s ease;
}

.sp-why-choose-item:hover .sp-why-choose-icon {
    background: var(--primary-red);
    color: white;
}

.sp-why-choose-body h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.sp-why-choose-body p {
    font-size: 12px;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.6;
}

/* ===== SIDEBAR ===== */
.sp-service-sidebar {
    position: sticky;
    top: 100px;
}

.sp-sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.sp-sidebar-stats-widget {
    background: linear-gradient(135deg, #fff5f5, #fff);
    border-color: #ffd6d6;
}

.sp-sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-red);
    color: var(--dark-text);
}

/* Sidebar Nav List */
.sp-service-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-service-nav-list li {
    margin-bottom: 8px;
}

.sp-service-nav-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    background: var(--light-bg);
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-text);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sp-service-nav-list li a:hover,
.sp-service-nav-list li a.sp-nav-active {
    background: var(--primary-red);
    color: white;
    transform: translateX(5px);
}

/* Sidebar Stats */
.sp-sidebar-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed #ffd6d6;
}

.sp-sidebar-stat-last {
    border-bottom: none;
    padding-bottom: 0;
}

.sp-sidebar-stat-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
}

.sp-sidebar-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.2;
}

.sp-sidebar-stat-label {
    font-size: 11px;
    color: var(--gray-text);
}

/* Quick Book Box */
.sp-quick-book-box {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sp-quick-book-box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.sp-quick-book-icon {
    font-size: 38px;
    color: white;
    margin-bottom: 12px;
    opacity: 0.9;
}

.sp-quick-book-title {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sp-quick-book-text {
    color: rgba(255,255,255,0.88);
    font-size: 13px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.sp-quick-book-phone {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    background: rgba(255,255,255,0.15);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.sp-quick-book-phone:hover {
    background: rgba(255,255,255,0.25);
    color: white;
}

.sp-quick-book-btn {
    display: inline-block;
    background: white;
    color: var(--primary-red);
    padding: 10px 28px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sp-quick-book-btn:hover {
    background: var(--dark-text);
    color: white;
    transform: translateY(-2px);
}

/* ===== HOW IT WORKS SECTION ===== */
.sp-how-works-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
}

.sp-how-works-header {
    text-align: center;
    margin-bottom: 45px;
}

.sp-how-works-desc {
    color: var(--gray-text);
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.sp-step-card {
    text-align: center;
    padding: 32px 22px;
    border-radius: 18px;
    border: 2px solid #f6d6d6;
    box-shadow: 0 5px 15px rgba(211,47,47,0.08);
    height: 100%;
    transition: all 0.4s ease;
    background: white;
}

.sp-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(211,47,47,0.12);
    border-color: var(--primary-red);
}

.sp-step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ffeaea;
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 30px;
    position: relative;
    border: 1px dashed rgba(244,67,54,0.45);
    transition: all 0.4s ease;
}

.sp-step-card:hover .sp-step-icon-wrapper {
    background: var(--primary-red);
    color: white;
}

.sp-step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-red);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.sp-step-card:hover .sp-step-number {
    background: var(--dark-text);
}

.sp-step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.sp-step-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.7;
    margin: 0;
}

/* ===== TRUSTED CTA SECTION ===== */
.sp-trusted-cta-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(211,47,47,0.96) 0%, rgba(183,28,28,0.88) 100%),
                url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.sp-trusted-cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.sp-trusted-cta-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.sp-trusted-cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.sp-trusted-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 34px;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    animation: sp-pulse-glow 2s infinite;
}

@keyframes sp-pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50%       { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
}

.sp-trusted-cta-subtitle {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffcdd2;
    margin-bottom: 14px;
}

.sp-trusted-cta-title {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.3;
    color: white;
}

.sp-trusted-cta-highlight {
    position: relative;
    display: inline-block;
}

.sp-trusted-cta-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(246,120,120,0.8);
    border-radius: 4px;
}

.sp-trusted-cta-desc {
    font-size: 15px;
    line-height: 1.9;
    opacity: 0.95;
    max-width: 820px;
    margin: 0 auto 32px;
}

.sp-service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.sp-service-tag {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s ease;
    cursor: default;
}

.sp-service-tag:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-3px);
}

.sp-trusted-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.sp-btn-cta-call {
    background: white;
    color: var(--primary-red);
    border: 2px solid white;
    padding: 13px 34px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sp-btn-cta-call:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.sp-btn-cta-enquire {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 34px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sp-btn-cta-enquire:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-3px);
}

.sp-cta-phone-display {
    font-size: 13px;
    color: rgba(255,255,255,0.88);
}

.sp-cta-phone-display a {
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}

.sp-cta-phone-display a:hover { color: #ffcdd2; }

/* ===== FAQ SECTION ===== */
.sp-faq-section {
    padding: 70px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.sp-faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(211,47,47,0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.sp-faq-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(211,47,47,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.sp-faq-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.sp-faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.sp-faq-title span { color: var(--primary-red); }

.sp-faq-intro-box {
    background: linear-gradient(135deg, #fff5f5, #ffffff);
    border-left: 4px solid var(--primary-red);
    