body{
    background: #f4f4f4 !important;
}
.pageHeader.-type-3 {
    position: relative;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    margin-top: 88px;
}
.listingContainer{
    padding: 0px 60px !important;
}
.pageHeader__title{
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    color: #28b446;
    margin-bottom: 0px;
}
.breadcrumbs{
    display: flex;
    gap: 10px;
    margin-left: 2px;
}
.breadcrumbs span {
    float: left;
    margin-left: 0px !important;
    position: relative;
    font-weight: 500;
}
.companyCard{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    padding: 15px;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.companyCardImage img{
    width: 150px;
    height: 130px;
    object-fit: cover;
    border-radius: 15px;
}
.companyInfo{
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 8px;
}
.companyName {
    font-size: 18px;
    font-weight: 700;
    color: #565656;
    margin: 0;
    max-width: 300px;
    line-height: 1.2;
}

.companyAddress,
.companyLocation {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
}

.companyAddress {
    color: #28b446;
}

.companyLocation {
    color: #565656;
}

.companyAddress i,
.companyLocation i {
    margin-right: 5px;
}
.commentRating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #565656;
}
.phoneButtonContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    background: #28b446;
    border-radius: 25px;
    padding: 5px;
    font-size: 14px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.showButtonContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #676767;
    border-radius: 25px;
    padding: 5px;
    font-size: 14px;
    transition: 0.3s ease-in-out;
}
.showButtonContainer span{
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 0px 5px;
}
.phoneButtonContainer:hover {
    background: black;
}
.phoneButtonContainer span{
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 0px 5px;
}
.phoneIcon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #28b446;
}.showIcon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #676767;
}
.buttonGroup {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}
.buttonGroup .borderedButtons {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #28b446;
    background-color: #fff;
    color: #28b446;
    font-weight: 600;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}
.borderedButtons:hover {
    background-color: black;
    color: #fff;
}
.showButton {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #28b446;
    color: #fff;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 25px;
    cursor: pointer;
}
.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
 .customSelect {
     position: relative;
     display: flex;
     flex-direction: row;
     justify-content: center;
     align-items: center;
     border: 1px solid rgba(67, 80, 110, 0.25);
     border-radius: 20px;
     height: 65px !important;
     width: 100%;
     background: white;
 }
.customSelect select {
    width: 100%;
    padding: 24px 32px;
    border: 0;
    outline: none;
    box-shadow: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
}
.customSelect select::-ms-expand {
    display: none;
}

.customSelect:after {
    position: absolute;
    content: "";
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 10px;
    background-image: url('/assets/img/icons/ico-arrow-down.svg');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 1000;
}
.customSelect.iconSelect select {
    padding: 24px 72px;
}
.customSelect.iconSelect:before {
    position: absolute;
    content: "";
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 9;
}

.customSelect .ts-wrapper {
    position: relative; /* absolute olursa container dışında olabilir */
    width: 100%;
    height: 65px; /* orijinal height ile uyumlu */
}
.customSelect .ts-wrapper .ts-control {
    background-color: white !important; /* saydam değil */
    height: 100%;
    border: 1px solid rgba(67, 80, 110, 0.25);
    border-radius: 20px;
    padding: 15px 72px;
    font-size: 15px;
    line-height: 23px;
    color: #34495e; /* okunabilir koyu renk */
    font-weight: 500;
    display: flex;
    align-items: center;

}
.customSelect .ts-wrapper.dropdown-active .ts-control {
    height: 100%;

}
.customSelect .ts-wrapper .ts-control > div {
    background: #28b446;
    color: white;
    padding: 1px 23px;
    height: 35px;
    border-radius: 20px;
    font-size: 15px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: left;
}
.customSelect .ts-dropdown {
    padding: 10px;
    width: 100%;
    border: 1px solid rgba(67, 80, 110, 0.25);
    border-radius: 15px;
    box-shadow: none !important;
    font-size: 15px;
    top: 100%; /* dropdown un container altına gelsin */
    left: 0;
    z-index: 9999;
}
.customSelect .ts-dropdown {
    border-radius: 15px;
}
.customSelect.iconSelect select {
    padding: 24px 72px;
}
.customSelect.iconSelect:before {
    position: absolute;
    content: "";
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 9;
}
.customSelect.iconSelect.servicesSelect:before {
    background-image: url('/assets/img/icons/ico-apps.svg');
}
.customSelect.iconSelect.citySelect:before {
    background-image: url('/assets/img/icons/ico-locations.svg');
}
.ts-control input[type="select-one"] {
    display: inline-block;
    width: auto;
    min-width: 2ch;
    font-size: 15px;
}
.searchForm {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}
.searchButton {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #28b446;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
}
.searchButton:hover {
    background-color: #3dd65c; /* biraz daha açık yeşil */
    box-shadow:
        0 4px 10px rgba(40, 180, 70, 0.4),
        0 0 8px rgba(40, 180, 70, 0.6);
    transform: translateY(-2px);
}

/* Tıklayınca (active) */
.searchButton:active {
    background-color: #249636; /* biraz daha koyu yeşil */
    box-shadow:
        inset 0 2px 5px rgba(0,0,0,0.3),
        0 2px 5px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: none; /* hızlı tepki için */
}

.locationButton {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
}
.locationButton:hover {
    background-color: #000000; /* biraz daha açık yeşil */
    box-shadow:
        0 4px 10px rgba(39, 41, 39, 0.4),
        0 0 8px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}

/* Tıklayınca (active) */
.locationButton:active {
    background-color: #000000; /* biraz daha koyu yeşil */
    box-shadow:
        inset 0 2px 5px rgba(0,0,0,0.3),
        0 2px 5px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: none; /* hızlı tepki için */
}
.dataSummary{
    font-size: 16px;
    font-weight: 700;
    color: rgb(117 117 117);
    margin: 20px;
}
.filterMobileButton{
    display: none;
    background-color: #000000;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
}
.webFilterArea{
    display: flex;
}
.fastFormSection{
    background: url('/assets/img/project/fast-form-bg.png') no-repeat top center;
    background-size: cover !important;
    padding: 50px 0;
    min-height: 300px;
    box-shadow: 1px 1px 10px rgb(0 0 0 / 53%);
}
.mt-30 {
    margin-top: 30px;
}
.mx-30 {
    margin-left: 30px;
    margin-right: 30px;
}
.rounded-15{
    border-radius: 45px;
}
.fastRegisterButton {
    display: flex;
    padding: 15px 25px;
    background-color: #008141;
    color: #fff;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    align-items: center;
    justify-content: center;
}
.filter-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, .5)
}
.cursorPointer {
    cursor: pointer;
}
@media screen and (max-width: 1600px) {
    .customSelect {
        height: 51px;
    }
    .customSelect .ts-wrapper .ts-control {
        padding: 13px 72px;
    }
    .customSelect:after {
        width: 12px;
        height: 8px;
    }
}
@media screen and (max-width: 1024px) {
    .customSelect.iconSelect select {
        padding: 15px 50px;
        font-size: 12px;
    }

    .customSelect.iconSelect:before {
        left: 15px;
    }
}

@media screen and (max-width: 768px) {
    .customSelect .ts-wrapper .ts-control{
        min-width: 100%;
        padding: 10px 55px !important;
    }
    .locationButton{
        padding: 10px 16px;
        font-size: 14px;
    }
    .searchButton {
        padding: 10px 16px;
        font-size: 14px;
    }
    .btnContainer {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
    .listing-cat-address {
        display: block;
        font-size: 10px !important;
        text-align: left;
    }
    .listing-place-name a {
        font-size: .7rem !important;
    }
    .swiper-pagination-bullet{
        gap: 5px !important;
        border: 1px solid rgb(255, 255, 255) !important;
    }
    .swiper-pagination {
        gap: 5px !important;
    }
    .swiper-pagination-bullet-active{
        border: 1px solid rgb(255, 255, 255) !important;
    }
    .customBg{
        padding-top: 50px !important;
        height: auto !important;
    }
    .slogan{
        font-size: 20px;
        text-align: center !important;
    }
    .card-body {
        flex: 1 1 auto;
        padding: 1rem;
    }
    .listing-cat-box {
        min-width: 270px !important;
        height: 300px !important;
    }
    .listing-cat-media img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    .swiperTitle {
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 5px;
        text-align: center;
    }
    .dataSummary{
        font-size: 13px;
        font-weight: 600;
        color: rgb(117 117 117);
        margin: 10px 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
@media screen and (max-width: 767px) {
    .companyCard{
        padding: 5px !important;
        border-radius: 15px;
        margin-bottom: 10px;
    }
    .companyName{
        font-size: 12px !important;
        max-width: 200px !important;
    }
    .commentRating{
        font-size: 10px !important;
    }
    .phoneButtonContainer span{
        font-size: 7px !important;
    }
    .phoneButtonContainer{
        padding: 1px !important;
        font-size: 7px !important;
        min-width: 70px !important;
        margin-top: 0px !important;
    }
    .phoneIcon{
        width: 20px !important;
        height: 20px !important;
    }
    .showButtonContainer{
        font-size: 7px !important;
    }
    .showButtonContainer span{
        font-size: 10px !important;
        display: none;
    }
    .showIcon{
        width: 20px !important;
        height: 20px !important;
        font-size: 14px !important;
    }
    .buttonGroup{
        margin-top: 5px;
    }
    .buttonGroup .borderedButtons{
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
    }

    .companyAddress, .companyLocation {
        font-size: 10px !important;
    }
    .companyInfo {
        gap: 5px !important;
        width: 100% !important;
    }
    .companyCardImage{
        width: 120px !important;
    }
    .commentCount{
        display: none !important;
    }
    .companyCardImage img {
        width: 80px;
        height: 80px;
        border-radius: 15px;
    }
    .breadcrumbs {
        flex-wrap: wrap !important;
        gap: 1px !important;
        line-height: normal;
    }
    .pageHeader__title {
        font-size: 18px !important;
        line-height: 24px !important;
        margin-top: 15px !important;
    }
    .filterMobileButton {
        display: block;
        margin-top: 0px !important;
        font-size: 12px;
        padding: 6px 10px;
        border-radius: 25px !important;
    }
    .webFilterArea{
        display: none !important;
    }
}
