/* Breadcrumb Styles - Add this to the beginning of service-costs.css */
.service-costs-page .service-breadcrumb { 
    padding: 16px 24px;  
    border-bottom: 1px solid #EAEAEA;
    border-top: 1px solid #EAEAEA;
    background: #FCFCFC;
}

.service-costs-page .breadcrumb-nav {
    width: 100%;
}

.service-costs-page .service-breadcrumb-container {
    max-width: 1260px;
    margin: 0 auto;
}

.service-costs-page .breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.service-costs-page .breadcrumb-item {
    display: inline-flex;
    align-items: center; 
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; 
}

.service-costs-page .breadcrumb-item a { 
    text-decoration: none;
    transition: color 0.2s ease;
    color: #A7A7A7;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;  
}

.service-costs-page .breadcrumb-item a:hover {
    color: #1E73BE;
    text-decoration: underline;
}

.service-costs-page .breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    color: #A7A7A7;
}

.service-costs-page .breadcrumb-current {
    color: #2C2C2C; 
}

/* Service Costs Page Styles */

.service-costs-wrapper{
    padding: 72px 16px 28px;
}

.service-costs-page .service-costs-container {
    max-width: 1260px;
    margin: 0 auto; 
}

.service-costs-page h1 {
    color: #2C2C2C;
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 56px;
}

.service-costs-page .service-label { 
    color: #625D5E;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 20px;
}

/* Desktop Tabs */
.service-costs-page .tabs-desktop {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 52px;
}

.service-costs-page .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px 16px 24px;
    background: white;
    border-radius: 100px;
    border: 1px solid #EAEAEA;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #2C2C2C;
}

.service-costs-page .tab:hover {
    background: #F4F8FC;
    border-color: #E8F1F8;
    color: #1E73BE;
}

.service-costs-page .tab.active {
    background: #F4F8FC;
    border-color: #E8F1F8;
    color: #1E73BE;
}

.service-costs-page .tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-costs-page .tab-icon svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.service-costs-page .tab:not(.active) svg path,
.service-costs-page .tab:not(.active) svg circle,
.service-costs-page .tab:not(.active) svg rect,
.service-costs-page .tab:not(.active) svg ellipse {
    fill: #2C2C2C !important; 
}

.service-costs-page .tab.active svg path,
.service-costs-page .tab.active svg circle,
.service-costs-page .tab.active svg rect,
.service-costs-page .tab.active svg ellipse {
    fill: #1E73BE !important; 
}

/* Hover state for non-active tabs */
.service-costs-page .tab:not(.active):hover svg path,
.service-costs-page .tab:not(.active):hover svg circle,
.service-costs-page .tab:not(.active):hover svg rect,
.service-costs-page .tab:not(.active):hover svg ellipse {
    fill: #1E73BE !important; 
}

/* Mobile Dropdown */
.service-costs-page .tabs-mobile {
    display: none;
    margin-bottom: 44px;
}

.service-costs-page .service-dropdown {
    position: relative;
    background: #fff;
	border-radius: 32px;
	border: 1px solid #E8F1F8;
}

.service-costs-page .dropdown-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px 12px 16px;
    cursor: pointer;
    border-radius: 32px;  
	z-index: 101;
    position: relative;
}

.service-costs-page .service-dropdown.open .dropdown-selected {
    background: #E8F1F8;
}

.service-costs-page .service-dropdown.open .dropdown-selected-content {
	color: #1E73BE;
}

.service-costs-page .dropdown-selected-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2C2C2C;
    font-size: 16px;
    font-weight: 400;
}

.service-costs-page #selectedServiceIcon svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.service-costs-page .dropdown-arrow {
    width: 24px;
    height: 24px;
    color: #2C2C2C;
    transition: transform 0.3s ease;
}

.service-costs-page .service-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
	color: #1E73BE;
}

.service-costs-page .dropdown-options {
   position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 32px 32px 16px 16px;
    margin-top: 0;
    overflow: auto;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid #F4F8FC;
	display: flex;
    flex-direction: column;
    gap: 8px;
	padding-top: 56px;
}

.service-costs-page .service-dropdown.open .dropdown-options {
    max-height: 500px;
    opacity: 1;
}

.service-costs-page .dropdown-option {
    display: flex;
   	align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #2C2C2C;
}  
 
.service-costs-page .dropdown-option.active{
	display: none;
}

.service-costs-page .dropdown-option-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-costs-page .dropdown-option-arrow {
    width: 10px;
    height: 10px;
    color: #1E73BE;
}

/* Tab Content */
.service-costs-page .tab-content {
    display: none;
}

.service-costs-page .tab-content.active {
    display: block;
}

.service-costs-page .tab-content.active .accordion-item.expanded .accordion-header{
    padding-bottom: 20px;
}

.service-costs-page .price-date {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1E73BE;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;  
}

.service-costs-page .info-icon {
    width: 20px;
    height: 20px; 
    display: flex;
    align-items: center;
    justify-content: center; 
    cursor: help;
}

/* Accordion */
.service-costs-page .accordion-item {
    border-bottom: 1px solid #EAEAEA;
    overflow: hidden; 
}

.service-costs-page .accordion-item:last-child{
    border-bottom: none;
}

.service-costs-page .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    cursor: pointer; 
    gap: 95px;
} 

.service-costs-page .accordion-title { 
    width: 70%;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #2C2C2C;
}

.service-costs-page .accordion-price {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.service-costs-page .price-text {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    color: #1E73BE;
    white-space: nowrap;
}

.service-costs-page .accordion-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 32px;
    border: 1px solid #D2E3F2;
    background: #fff;
}

.service-costs-page .accordion-item.expanded .accordion-toggle {
    transform: rotate(45deg);
}

.service-costs-page .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-costs-page .accordion-item.expanded .accordion-content {
    max-height: 1000px;
}

.service-costs-page .content-wrapper { 
    display: flex;
    gap: 95px;
    justify-content: space-between;
    padding-bottom: 32px;
}

.service-costs-page .content-left {
    width: 70%;
}

.service-costs-page .content-right {
    width: 30%;
}

.service-costs-page .how-it-works {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-costs-page .description {
    font-size: 14px;
    line-height: 22px;
    color: #625D5E;
    margin-bottom: 24px;
}

.service-costs-page .description p {
    margin-bottom: 8px;
}

.service-costs-page .description p:last-child {
    margin-bottom: 0;
}

.service-costs-page .review-link {
    color: #1E73BE;
    text-decoration: none;
    font-size: 14px;
	font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-costs-page .review-link:hover {
    text-decoration: underline;
}

.service-costs-page .price-list {
    list-style: none;
    margin: 0;
    padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.service-costs-page .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap: 56px;
}

.service-costs-page .price-label {
    color: #2C2C2C;
	max-width: 200px;
	font-size: 16px; 
	font-weight: 500;
}

.service-costs-page .price-value {
    color: #1E73BE;
    font-weight: 500;
    white-space: nowrap;
	font-size: 16px;
}

.service-costs-page .service-dropdown.open .dropdown-selected-content span svg path,
.service-costs-page .service-dropdown.open .dropdown-selected-content span svg circle,
.service-costs-page .service-dropdown.open .dropdown-selected-content span svg rect,
.service-costs-page .service-dropdown.open .dropdown-selected-content span svg ellipse {
    fill: #1E73BE !important; 
}

.service-costs-page .price-text.gm-mobile{
	display: none;
}

@media (max-width: 1024px) {
	.service-costs-page .accordion-header,
	.service-costs-page .content-wrapper{
		gap: 24px;
	}
	.service-costs-page .accordion-title,
	.service-costs-page .content-left{
		width: 60%;
	}
	.service-costs-page .accordion-price,
	.service-costs-page .content-right{
		width: 40%;
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	
	.service-costs-wrapper {
    	padding: 28px 16px;
	}

    .service-costs-page h1 {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .service-costs-page .tabs-desktop {
        display: none;
    }

    .service-costs-page .tabs-mobile {
        display: block;
    }
	
	.service-costs-page .service-label{
		font-size: 16px;
		margin-bottom: 16px;
	}
	
	.service-costs-page .price-date{
		font-size: 14px;
	}

    .service-costs-page .content-wrapper {
        flex-direction: column;
        gap: 16px;
		padding-bottom: 64px;
        position: relative;
    }

    .service-costs-page .accordion-title {
        font-size: 20px;
		width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
	.dropdown-selected-content span{
		font-size: 16px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.service-costs-page .accordion-header{
		padding: 28px 0;
		gap: 35px;
		align-items: flex-start;
	}
	.service-costs-page .price-text{
		display: none;
	}
	.service-costs-page .price-text.gm-mobile{
		display: block;
	}
	.service-costs-page .accordion-price{
		width: auto;
	}
	.service-costs-page .content-left{
		width: 100%;
	}
	.service-costs-page .content-right{
		width: 100%;
		border-radius: 12px;
		background: #F4F8FC;
		padding: 12px;
	}
	.service-costs-page .tab-content.active .accordion-item.expanded .accordion-header{
		padding-bottom: 16px;
	}
	.service-costs-page .how-it-works {
		font-size: 14px; 
		margin-bottom: 8px; 
	}
	.service-costs-page .description{
		margin-bottom: 0; 
	}
	.service-costs-page .price-list,
	.service-costs-page .price-item{
		gap: 12px;
	}
	.service-costs-page .price-label,
	.service-costs-page .price-value{
		font-size: 14px;
	}
	.service-costs-page .review-link{
		position: absolute;
		bottom: 28px;
		left: 0;
	}
}

.cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 48px 16px 100px;
    background-color: #ffffff;
}

.cta-container {
    display: flex;
    width: 100%;
    max-width: 1260px;
    min-height: 315px;
    padding: 80px 148px;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    border-radius: 32px;
    background: radial-gradient(69.9% 100% at 50% 100%, #F4F8FC 0%, #D2E3F2 100%);
}

.cta-container h2.cta-title {
	font-family: "Helvetica Neue";
    color: #2C2C2C;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
    margin: 0 0 16px;
	text-align: center; 
}

.cta-container .cta-subtitle {
    color: #2C2C2C;
	text-align: center; 
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;  
    margin: 0 0 40px;
}

.button-group {
    display: flex;
    gap: 8px;
    align-items: center;
}  

.btn-secondary {
        display: flex;
    width: 126px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 32px;
    border: 1px solid #D2E3F2;
    background: #fff;
    color: #1E73BE;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.btn-secondary:hover {
    background: #E8F1F8;
} 

@media (max-width: 768px) {
	.cta-section {
		padding: 32px 16px;
	}
    .cta-container {
        padding: 60px 40px; 
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 16px;
    }
	
	.cta-container .cta-subtitle{
		margin-bottom: 28px;
	}

    .button-group {
        flex-direction: column;
        width: 100%;
    } 
	.button-group a{
		width: 100%;
		justify-content: center;
	}
}
