/* ========================================
   SERVICE DETAILS PAGE - STYLES
   ======================================== */

/* ---- BREADCRUMB HEADER ---- */
.service-breadcrumb-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.service-breadcrumb-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    background: radial-gradient(circle, rgba(211,47,47,0.2), transparent 60%);
}

.service-breadcrumb-header .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.service-breadcrumb-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-breadcrumb-header .breadcrumb-item a:hover {
    color: #ff5252;
}

.service-breadcrumb-header .breadcrumb-item.active {
    color: #ff5252;
}

.service-breadcrumb-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
    content: ">";
}

/* ========================================
   HERO SECTION
   ======================================== */
.service-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211,47,47,0.15), transparent 70%);
    border-radius: 50%;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(33,150,243,0.1), transparent 70%);
    border-radius: 50%;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(211,47,47,0.15);
    color: #ff8a80;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(211,47,47,0.3);
}

.service-hero-tag i {
    color: #D32F2F;
}

.service-hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.service-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
}

.service-hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
}

.service-hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-hero-stats .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.service-hero-stats .stat-info .stat-value {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.service-hero-stats .stat-info .stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.service-hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-service-primary {
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: #fff;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(211,47,47,0.4);
    transition: all 0.3s ease;
}

.btn-service-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(211,47,47,0.5);
    color: #fff;
}

.btn-service-outline {
    background: transparent;
    color: #fff;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-service-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* Hero Image / Card */
.service-hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(211,47,47,0.2));
    border-radius: 24px;
}

.service-rating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.service-rating-card .rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFC107;
}

.service-rating-card .rating-text {
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.service-rating-card .rating-text small {
    color: #666;
    font-weight: 400;
    margin-left: 5px;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.service-content-section {
    padding: 80px 0;
    background: #fff;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.sidebar-card-header {
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    padding: 20px;
    color: #fff;
}

.sidebar-card-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card-body {
    padding: 20px;
}

/* Service Categories Sidebar */
.service-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-categories-list li {
    border-bottom: 1px solid #f0f0f0;
}

.service-categories-list li:last-child {
    border-bottom: none;
}

.service-categories-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.service-categories-list a::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #D32F2F;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-categories-list a:hover,
.service-categories-list a.active {
    color: #D32F2F;
    padding-left: 10px;
}

.service-categories-list a:hover::before,
.service-categories-list a.active::before {
    transform: scaleY(1);
}

.service-categories-list a i {
    width: 30px;
    color: #D32F2F;
    font-size: 16px;
}

.service-categories-list a .arrow {
    margin-left: auto;
    color: #ccc;
    transition: all 0.3s ease;
}

.service-categories-list a:hover .arrow,
.service-categories-list a.active .arrow {
    color: #D32F2F;
    transform: translateX(3px);
}

/* Pricing Card */
.pricing-sidebar-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-sidebar-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(211,47,47,0.2), transparent 70%);
    border-radius: 50%;
}

.pricing-sidebar-card .price-label {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
}

.pricing-sidebar-card .price-amount {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
}

.pricing-sidebar-card .price-unit {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
}

.pricing-sidebar-card .price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    position: relative;
}

.pricing-sidebar-card .price-features li {
    padding: 8px 0;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-sidebar-card .price-features li i {
    color: #4CAF50;
    font-size: 11px;
}

.pricing-sidebar-card .btn-get-started {
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: #fff;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(211,47,47,0.3);
}

.pricing-sidebar-card .btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211,47,47,0.4);
    color: #fff;
}

/* Contact Sidebar */
.contact-sidebar-card {
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-sidebar-card::before {
    content: '\f095';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -30px;
    right: -10px;
    font-size: 150px;
    color: rgba(255,255,255,0.05);
}

.contact-sidebar-card .contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    backdrop-filter: blur(10px);
}

.contact-sidebar-card h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}

.contact-sidebar-card p {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    margin-bottom: 20px;
    position: relative;
}

.contact-sidebar-card .phone-number {
    background: #fff;
    color: #D32F2F;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.contact-sidebar-card .phone-number:hover {
    background: #1a1a2e;
    color: #fff;
    transform: translateY(-2px);
}

.contact-sidebar-card .btn-quote {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
}

.contact-sidebar-card .btn-quote:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* Brochure Download */
.brochure-card {
    background: #fff;
    border: 2px dashed #D32F2F;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
}

.brochure-card .brochure-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFEBEE, #fff);
    border-radius: 12px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #D32F2F;
}

.brochure-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.brochure-card p {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.brochure-card .download-links {
    display: flex;
    gap: 8px;
}

.brochure-card .download-btn {
    flex: 1;
    background: #f8f9fc;
    color: #333;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.brochure-card .download-btn:hover {
    background: #D32F2F;
    color: #fff;
    border-color: #D32F2F;
}

.brochure-card .download-btn i {
    margin-right: 5px;
}

/* ========================================
   MAIN CONTENT AREA
   ======================================== */
.service-main-content {
    padding-left: 30px;
}

.service-main-content > .service-section {
    margin-bottom: 50px;
}

/* Section Headings */
.service-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 15px;
}

.service-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #D32F2F, #B71C1C);
    border-radius: 2px;
}

.service-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.service-section p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Highlights Box */
.highlights-box {
    background: linear-gradient(135deg, #fff5f5, #fff);
    border-left: 5px solid #D32F2F;
    border-radius: 16px;
    padding: 20px;
    margin: 30px 0;
}

.highlights-box h4 {
    color: #D32F2F;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlights-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-box ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #444;
    font-size: 14px;
}

.highlights-box ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #D32F2F;
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    box-shadow: 0 2px 8px rgba(211,47,47,0.2);
}

/* ========================================
   FEATURES GRID
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature-box {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: #D32F2F;
}

.feature-box .feat-icon-box {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #FFEBEE, #fff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #D32F2F;
    transition: all 0.3s ease;
}

.feature-box:hover .feat-icon-box {
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}

.feature-box h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   PROCESS / STEPS
   ======================================== */
.process-list {
    margin: 30px 0;
}

.process-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: #fafafa;
    border-radius: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.process-item:hover {
    background: #fff;
    border-left-color: #D32F2F;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateX(5px);
}

.process-item .process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(211,47,47,0.3);
}

.process-item .process-content h5 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.process-item .process-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   IMAGE GALLERY
   ======================================== */
.service-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

.gallery-item:first-child {
    grid-row: span 2;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(211,47,47,0.9);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* ========================================
   BENEFITS LIST
   ======================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: linear-gradient(135deg, #fafafa, #fff);
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #D32F2F;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.benefit-item .benefit-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* ========================================
   TECHNOLOGIES TAGS
   ======================================== */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.tech-tag {
    background: linear-gradient(135deg, #FFEBEE, #fff);
    color: #D32F2F;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #ffcdd2;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-tag:hover {
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211,47,47,0.3);
    border-color: transparent;
}

.tech-tag i {
    margin-right: 6px;
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.service-video-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    cursor: pointer;
}

.service-video-wrap img {
    width: 100%;
    display: block;
}

.service-video-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.6), rgba(211,47,47,0.3));
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 3px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: pulsePlay 2s infinite;
}

@keyframes pulsePlay {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.play-button i {
    font-size: 24px;
    color: #D32F2F;
    margin-left: 4px;
}

.service-video-wrap:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: #D32F2F;
}

.service-video-wrap:hover .play-button i {
    color: #fff;
}

/* ========================================
   FAQ
   ======================================== */
.service-faq {
    margin: 30px 0;
}

.faq-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.faq-card-header {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-card.active .faq-card-header {
    background: linear-gradient(135deg, #fff5f5, #fff);
}

.faq-card-header .faq-q {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    flex: 1;
}

.faq-card-header .faq-toggle-icon {
    width: 30px;
    height: 30px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-card.active .faq-toggle-icon {
    background: #D32F2F;
    color: #fff;
    transform: rotate(45deg);
}

.faq-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-card.active .faq-card-body {
    max-height: 300px;
}

.faq-card-body .faq-a {
    padding: 0 22px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   RELATED SERVICES
   ======================================== */
.related-services {
    padding: 80px 0;
    background: #f8f9fc;
}

.related-services-header {
    text-align: center;
    margin-bottom: 50px;
}

.related-services-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.related-services-header p {
    color: #666;
    font-size: 15px;
}

.related-service-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.related-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #D32F2F, #B71C1C);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.related-service-card:hover::before {
    transform: scaleX(1);
}

.related-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.related-service-card .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #FFEBEE, #fff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #D32F2F;
    transition: all 0.4s ease;
}

.related-service-card:hover .service-icon {
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: #fff;
    transform: rotate(-5deg);
}

.related-service-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.related-service-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
}

.related-service-card .service-link {
    color: #D32F2F;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.related-service-card .service-link:hover {
    gap: 12px;
}

/* ========================================
   CTA BANNER
   ======================================== */
.service-cta-banner {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.service-cta-banner::before {
    content: '\f0e7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 200px;
    color: rgba(255,255,255,0.06);
}

.service-cta-banner::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    border-radius: 50%;
}

.service-cta-content {
    position: relative;
    z-index: 2;
}

.service-cta-content h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
}

.service-cta-content .btn-cta-white {
    background: #fff;
    color: #D32F2F;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-right: 12px;
}

.service-cta-content .btn-cta-white:hover {
    background: #1a1a2e;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.service-cta-content .btn-cta-outline {
    background: transparent;
    color: #fff;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-cta-content .btn-cta-outline:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
    color: #fff;
}

/* ========================================
   TESTIMONIAL FOR SERVICE
   ======================================== */
.service-testimonial {
    background: linear-gradient(135deg, #fff5f5, #fff);
    border: 1px solid #ffcdd2;
    border-radius: 18px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
}

.service-testimonial::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 80px;
    color: #ffcdd2;
    font-family: Georgia, serif;
    line-height: 1;
}

.service-testimonial p {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin: 30px 0 20px;
    padding-left: 20px;
}

.service-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.testimonial-info h6 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 3px 0;
}

.testimonial-info span {
    font-size: 12px;
    color: #999;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1199px) {
    .service-hero h1 { font-size: 40px; }
    .service-main-content { padding-left: 15px; }
}

@media (max-width: 991px) {
    .service-hero { padding: 50px 0 60px; }
    .service-hero h1 { font-size: 32px; }
    .service-hero-image { margin-top: 40px; }
    .service-content-section { padding: 60px 0; }
    .service-main-content { padding-left: 0; margin-top: 40px; }
    .service-sidebar { position: static; }
    .service-section h2 { font-size: 26px; }
    .service-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    .service-gallery .gallery-item:first-child {
        grid-row: 1;
        grid-column: span 2;
        height: 250px;
    }
    .service-cta-content h2 { font-size: 28px; }
}

@media (max-width: 767px) {
    .service-hero { padding: 40px 0 50px; }
    .service-hero h1 { font-size: 26px; }
    .service-hero .hero-subtitle { font-size: 15px; }
    .service-hero-stats { padding: 18px; gap: 20px; }
    .service-hero-stats .stat-info .stat-value { font-size: 18px; }
    .service-hero-cta { flex-direction: column; }
    .btn-service-primary,
    .btn-service-outline { width: 100%; justify-content: center; }
    .service-rating-card { padding: 15px; bottom: 15px; left: 15px; right: 15px; }
    .service-content-section { padding: 40px 0; }
    .service-section h2 { font-size: 22px; }
    .features-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .process-item { padding: 18px; gap: 15px; }
    .process-item .process-number { width: 50px; height: 50px; font-size: 18px; }
    .service-cta-banner { padding: 50px 0; }
    .service-cta-content h2 { font-size: 24px; }
    .service-cta-content .btn-cta-white,
    .service-cta-content .btn-cta-outline { 
        width: 100%; 
        justify-content: center; 
        margin-right: 0; 
        margin-bottom: 10px;
    }
    .service-cta-banner::before { display: none; }
    .related-services { padding: 50px 0; }
    .related-services-header h2 { font-size: 24px; }
    .play-button { width: 60px; height: 60px; }
    .play-button i { font-size: 18px; }
}

@media (max-width: 576px) {
    .service-gallery { grid-template-columns: 1fr; }
    .service-gallery .gallery-item:first-child { grid-column: 1; height: 200px; }
    .service-gallery .gallery-item { height: 150px; }
    .pricing-sidebar-card .price-amount { font-size: 34px; }
}