/* 
 * Single Service Page Styles
 */

.single-service-page {
    padding-top: 0;
}

/* --- Banner --- */
.single-service-banner {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}
.single-service-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.single-service-banner .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.single-service-banner .breadcrumb {
    background: transparent;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}
.single-service-banner .breadcrumb a {
    color: #fff;
    text-decoration: none;
}
.single-service-banner .breadcrumb .fa {
    margin: 0 8px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}
.single-service-banner h1 {
    font-weight: 700;
    font-size: 44px;
    line-height: 54px;
    margin-bottom: 24px;
    color: #fff;
}

.single-service-banner p {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}


.single-service-banner .section-link a.btn-call-us { background: #11426D; color: #fff; margin-left: 30px; }
.single-service-banner .section-link a { display: inline-block; transition: transform 0.3s ease; }
.section-link a:hover { transform: translateY(-5px); }

/* --- Layout Grid --- */
.single-service-content-area .row {
    row-gap: 40px;
}

/* --- Main Content --- */
.service-main-content h2, 
.service-main-content h3 {
    color: #000;
    font-weight: 700;
    margin: 40px 0 20px;
    text-transform: capitalize;
}

.service-main-content h2 { font-size: 32px; line-height: 42px;margin-top: 0; }
.service-main-content h3 { font-size: 22px; line-height: 34px; }
.service-main-content p {
    font-size: 16px;
    line-height: 26px;
    color: #4a4a4a;
}
.service-main-content ul {
    margin: 0 0 30px 20px;
    padding: 0;
}
.service-main-content ul li {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #4a4a4a;
    margin-bottom: 12px;
    position: relative;
    list-style-type: disc;
}

/* --- Sidebar: Other Services --- */
.sidebar-other-services {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}
.sidebar-other-services h4 {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #11426D;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    text-transform: uppercase;
}
.service-sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.service-sidebar-link:last-child {
    border-bottom: none;
}
.service-sidebar-link h5 {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}
.service-sidebar-link .icon-arrow {
    color: #11426D;
    transition: transform 0.3s ease;
}
.service-sidebar-link:hover h5 {
    color: #11426D;
}
.service-sidebar-link:hover .icon-arrow {
    transform: translateX(4px) translateY(-4px);
}

/* --- Gallery Grid --- */
.services-page-gallery { padding: 30px 0;}
/* If using standard WP gallery */
.services-page-gallery .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.services-page-gallery .gallery-item {
    margin: 0;
    width: 100% !important;
}
.services-page-gallery .gallery-item img {
    border-radius: 8px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Process Timeline (Mockup styles if standard HTML is used) --- */
.process-timeline {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 16px;
}
.process-timeline h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #11426D;
}
.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: -30px;
    width: 2px;
    background: #e0e0e0;
}
.timeline-item:last-child::before {
    display: none;
}
.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #11426D;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.timeline-content {
    margin-left: 20px;
    padding-top: 10px;
}
.timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}
.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* --- Numbered List Section --- */
.numbered-reasons {
    margin: 60px 0;
}
.numbered-reasons h2 {
    font-size: 36px;
    color: #11426D;
    margin-bottom: 40px;
}
.reason-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.reason-number {
    font-size: 48px;
    font-weight: 800;
    color: #e0e0e0;
    line-height: 1;
    margin-right: 20px;
    min-width: 60px;
}
.reason-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}
.reason-content p {
    color: #666;
    line-height: 1.6;
}

/* =========================================================
   Service Process + FAQ sections
   Add this to assets/css/single-service.css (already enqueued
   only on is_singular('services-section') in functions.php).
   ========================================================= */

/* ---------- Shared heading ---------- */
.service-process-heading,
.service-faq-heading {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}

.service-process-eyebrow,
.service-faq-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #1f4e6b;
	margin-bottom: 10px;
}

.service-process-title,
.service-faq-title {
	font-size: 28px;
	font-weight: 800;
	color: #14314a;
	margin: 0 0 10px;
	letter-spacing: 0.3px;
}

.service-process-subtitle,
.service-faq-subtitle {
	font-size: 15px;
	color: #5a6b78;
	margin: 0;
}

/* ---------- Process timeline ---------- */
.service-process-section {
	padding: 20px 0;
}

.service-process-timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

/* vertical connecting line */
.service-process-timeline::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: #d7dee3;
	transform: translateX(-50%);
}

.service-process-step {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 130px;
    margin: 30px 0;
}

.service-process-step--left {
	flex-direction: row;
}

.service-process-step--right {
	flex-direction: row-reverse;
}

.service-process-step-content {
	width: calc(50% - 48px);
}

.service-process-step--left .service-process-step-content {
	text-align: right;
	padding-right: 8px;
}

.service-process-step--right .service-process-step-content {
	text-align: left;
	padding-left: 8px;
}

.service-process-step-content h3 {
	font-size: 15px;
	font-weight: 700;
	color: #14314a;
	letter-spacing: 0.3px;
	margin: 0 0 6px;
}

.service-process-step-content p {
	font-size: 13.5px;
	line-height: 1.6;
	color: #5a6b78;
	margin: 0;
}

.service-process-step-marker {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1f4e6b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
}
.service-process-step--right .service-process-step-marker{
    margin-left: 0;
	margin-right: 25px;
}

.service-process-step-number {color: #fff;font-size: 16px;font-weight: 600;}

.service-process-step-spacer {width: calc(50% - 48px);}


.single-service-page.content .testimonials-new .section-title h2{color: #000;font-family: "Open Sans", sans-serif;font-weight: 700; font-size: 30px; line-height: 42px; margin: 10px 0 20px;}
.single-service-page.content .testimonials-new .section-title p{font-weight: 500;font-size: 16px;line-height: 28px;color: #000;}
.single-service-page.content .testimonial-card-body p{color: #000;}
.single-service-page.content .testimonial-card--active .testimonial-card-body p{color: #fff;}

@media (max-width: 700px) {
	.service-process-timeline::before {left: unset;right: 21px;}

	.service-process-step,
	.service-process-step--right {
		flex-direction: row;
		align-items: flex-start;
	}

	.service-process-step-marker {
		order: 0;
		margin-top: 2px;
	}

	.service-process-step-content,
	.service-process-step--left .service-process-step-content,
	.service-process-step--right .service-process-step-content {
		width: auto;
		flex: 1;
		text-align: left !important;
		padding: 0 0 0 16px !important;
	}

	.service-process-step-spacer {
		display: none;
	}
}

/* ---------- FAQ list ---------- */
.service-faq-section {padding: 40px 0;}
.service-faq-list {max-width: 720px;margin: 0 auto;}
.service-faq-item {border-bottom: 1px solid #e2e6e9;padding: 20px 0;}
.service-faq-item-summary {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	cursor: pointer;
	list-style: none;
}

.service-faq-item-summary::-webkit-details-marker {
	display: none;
}

.service-faq-number {
	flex: 0 0 auto;
	font-size: 30px;
	font-weight: 800;
	color: #e3e7ea;
	line-height: 1;
}

.service-faq-question-wrap {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.service-faq-question {
	font-size: 16px;
	font-weight: 700;
	color: #000;
}

.service-faq-answer {
	font-size: 16px;
	line-height: 1.6;
	color: #5a6b78;
}

/* Collapsed state: hide the answer until <details> is opened */
.service-faq-item:not([open]) .service-faq-answer {
	display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-page-gallery .gallery {
        grid-template-columns: repeat(1, 1fr);
    }
    .single-service-banner h1, .single-service-banner h2 {
        font-size: 32px;
        line-height: 44px;
    }

    .service-main-content h2{font-size:27px;}
    .service-main-content h3 {font-size: 18px;line-height: 30px;}
    /* .service-process-timeline{display: none;} */
    .service-process-step-marker,.service-process-step--right .service-process-step-marker{margin: 0;}
}
