:root {
    --black: #202126;
    --white: #fff;
    --cream: #E1EBF3;
    --gray: #A4A6B1;
    --dark-black: #000;
    --soft-white: #f5f5f5;
    --broke-white: #FAFAFB;
    --padding: 50px 10%;

}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--soft-white) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    position: relative;
}

a.btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--black);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.3s ease-in-out;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

a.btn:hover {
    transform: scale(0.96);
}

img.btn-icon {
    border-radius: 30px;
    width: 25px;
    height: 25px;
    vertical-align: middle;
}

a.btn-alternate {
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 400;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    position: relative;
    vertical-align: middle;
}

a.btn-alternate::before {
    content: "";
    right: 0;
    top: 19px;
    width: 5px;
    height: 5px;
    border: 2px solid var(--white);
    position: absolute;
    border-top: none;
    border-left: none;
    transform: rotate(-45deg);
    transition: right 0.3s ease-in-out, border-color 0.3s ease-in-out;
    border-radius: 1px;
}

a.btn-alternate:hover {
    color: var(--cream);
}

a.btn-alternate:hover::before {
    right: -3px;
    border-color: var(--cream);
}

section.page-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.page-wrapper div.section-card-wrapper {
    width: 90%;
    height: 100%;
    transform: translateY(30px);
    border-radius: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.page-wrapper div.section-card-wrapper header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: var(--padding);
}

section.page-wrapper div.section-card-wrapper header nav.main {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

section.page-wrapper div.section-card-wrapper header nav.main img {
    filter: none
}

section.page-wrapper div.section-card-wrapper header nav.main div.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

section.page-wrapper div.section-card-wrapper header nav.main div.nav-links a {
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    transition-duration: .5s;
}

section.page-wrapper div.section-card-wrapper header nav.main div.nav-links.open a{
    position: relative;
}

/*
section.page-wrapper div.section-card-wrapper header nav.main div.nav-links.open a::before {
    content: "";
    right: -15px;
    top: 10px;
    width: 6px;
    height: 6px;
    border: 2px solid var(--white);
    position: absolute;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    transition-duration: .5s;
    border-radius: 1px;
}
*/

section.page-wrapper div.section-card-wrapper header nav.main div.nav-links.open a:hover::before {
    transform: rotate(225deg);
    border-color: var(--cream);
}

section.page-wrapper div.section-card-wrapper header nav.main div.nav-links.open a:hover {
    transition-duration: .5s;
    color: var(--cream);
}

section.page-wrapper div.section-card-wrapper header img.menu {
    display: none;
}

/* header about us */
header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: var(--padding);
}

header nav.main {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

header nav.main img {
    filter: invert(1);
}

header img.menu {
    display: none;
}

header nav.main div.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

header nav.main div.nav-links a {
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    transition-duration: .5s;
}

header nav.main div.nav-links.open a {
    position: relative;
}
/*
header nav.main div.nav-links.open a::before {
    content: "";
    right: -15px;
    top: 10px;
    width: 6px;
    height: 6px;
    border: 2px solid var(--white);
    position: absolute;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    transition-duration: .5s;
    border-radius: 1px;
}
*/    

header nav.main div.nav-links.open a:hover::before {
    transform: rotate(225deg);
    border-color: var(--white);
}

header nav.main div.nav-links a:hover {
    transition-duration: .5s;
    color: var(--gray);
}

/* header about us */

section.page-wrapper div.section-card-wrapper div.layout-blockcontainer {
    width: 100%;
    padding: var(--padding);
    transform: translateY(-55px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
}

section.page-wrapper div.section-card-wrapper div.layout-blockcontainer h1 {
    width: 50%;
    font-size: 70px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.3em;
}

section.page-wrapper div.section-card-wrapper div.layout-blockcontainer span {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
}

section.page-wrapper div.section-card-wrapper div.layout-blockcontainer span p {
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

section.page-wrapper div.section-card-wrapper div.layout-blockcontainer span div.buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

section.z-Pattern {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

section.z-Pattern div.z-Pattern-Blockcontainer {
    padding: var(--padding);
    width: 100%;
}

section.z-Pattern div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

section.z-Pattern div span {
    display: flex;
    flex-direction: column;
}

section.z-Pattern div span strong {
    font-size: 20px;
    color: var(--black);
    font-weight: 500;
}

section.z-Pattern div span h3 {
    font-size: 80px;
    font-weight: 500;
    display: inline-flex;
    color: var(--black);
}

section.z-Pattern div span h3 span {
    color: var(--gray);
    font-weight: 400;
}

section.z-Pattern div span p {
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5rem;
}

section.z-Pattern div.card {
    background-color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 30px 50px;
    border-radius: 20px;
}

section.z-Pattern div.card picture img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

section.z-Pattern div.card span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

section.z-Pattern div.card span h4 {
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
}

section.z-Pattern div.card span p {
    color: var(--black);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5rem;
}

section.z-Pattern div.card span strong {
    font-weight: 600;
}

section.swipper-slider {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.swipper-slider div {
    width: 90%;
    height: auto;
    background-color: var(--black);
    text-align: center;
    border-radius: 20px;
}

section.swipper-slider div span {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 50px;
}

section.swipper-slider div span a {
    display: inline-flex;
    vertical-align: middle;
    gap: 10px;
    padding: 10px 15px;
    background-color: var(--dark-black);
    border-radius: 20px;
}

section.swipper-slider div span a img {
    width: 30px;
    height: 30px;
}

section.swipper-slider div span a p {
    font-size: 18px;
    font-weight: 500;
}

section.swipper-slider div span h3 {
    font-size: 45px;
    font-weight: 500;
}

section.swipper-slider div span p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.swiper {
    width: 100%;
    margin-top: 50px;
    height: 50vh;
    padding: 40px 0;
    overflow: visible;
    margin-bottom: 100px;
}

.swiper-slide {
    width: 600px !important;
    font-size: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.swiper-slide img {
    border-radius: 20px;
    width: 600px;
}

.swiper-slide-active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

.slider-caption {
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
    color: var(--white);
    transition: all 0.4s ease;
}

.swiper-slide {
    opacity: 0.5;
    transform: scale(0.85);
    transition: all 0.3s ease;
    position: relative;
}

.slide-action {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.slide-action img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.slide-sales {
    position: absolute;
    top: 30px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 2;
    transition: all 0.3s ease;
    background-color: #202126;
    border-radius: 0;
    padding: 10px 15px;
    border-radius: 20px;
}

.slide-sales img {
    width: 15px;
    height: 15px;
    object-fit: cover;
    border-radius: 0;
}

.slide-sales p {
    font-size: 14px;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.swiper-slide .text-wrapper {
    width: 90%;
    opacity: 0;
    transform: translateX(200px);
    pointer-events: none;
    transition: all 0.7s ease;
    color: var(--white);
}

.swiper-slide-active .text-wrapper {
    opacity: 1;
    transform: translateX(20px);
    pointer-events: auto;
    border-radius: 0;
}

.swiper-slide .text-wrapper p.caption {
    font-size: 26px;
    font-weight: 400;
}

.swiper-slide .text-wrapper p {
    font-size: 16px;
    text-align: left;
    font-weight: 400;
}

section.z-Pattern-Alternate {
    width: 100%;
    padding: var(--padding);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

section.z-Pattern-Alternate div {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
}

section.z-Pattern-Alternate div a:not([class]) {
    display: inline-flex;
    vertical-align: middle;
    gap: 10px;
    padding: 5px 15px;
    background-color: var(--broke-white);
    border-radius: 20px;
}

section.z-Pattern-Alternate div a img {
    width: 30px;
    height: 30px;
}

section.z-Pattern-Alternate div a p {
    font-size: 18px;
    color: var(--black);
    font-weight: 400;
}

section.z-Pattern-Alternate div h3 {
    color: var(--black);
    font-size: 46px;
    font-weight: 500;
}

section.z-Pattern-Alternate div p {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
}

section.z-Pattern-Alternate picture {
    width: 50%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    position: relative;
}

section.z-Pattern-Alternate picture img {
    object-fit: cover;
    border-radius: 20px;
    width: 100%;
    height: 500px;
    object-position: top;
}

section.properties-prewiew {
    width: 100%;
    padding: var(--padding);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    text-align: center;
}

section.properties-prewiew span {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: end;
    gap: 40px;
}


section.properties-prewiew span h2 {
    color: var(--black);
    font-size: 46px;
    font-weight: 500;
}

section.properties-prewiew span a.btn-alternate {
    color: var(--black);
}

section.properties-prewiew span a.btn-alternate::before {
    border: 2px solid var(--black);
    border-top: none;
    border-left: none;
}

section.properties-prewiew a:not([class]) {
    display: inline-flex;
    vertical-align: middle;
    gap: 10px;
    padding: 5px 15px;
    background-color: var(--broke-white);
    border-radius: 20px;
    color: var(--black);
    font-size: 18px;
}

section.properties-prewiew a img {
    width: 25px;
    height: 25px;
}

section.properties-prewiew h3 {
    color: var(--black);
    font-size: 46px;
    font-weight: 500;
}

section.properties-prewiew p {
    font-size: 18px;
    color: var(--black);
    font-weight: 400;
}

section.properties-prewiew div.properties {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

section.properties-prewiew div.properties div.item {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    overflow: hidden;
    border-radius: 20px;
    background-color: #fff;
}

section.properties-prewiew div.properties div.item div.image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 20px;
}

section.properties-prewiew div.properties div.item div.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

section.properties-prewiew div.properties div.item div.image-wrapper img:hover {
    transform: scale(1.1);
    border-radius: 20px;
}

section.properties-prewiew div.properties div.item h4 {
    font-size: 22px;
    color: var(--black);
    font-weight: 500;
    text-align: left;
}

section.properties-prewiew div.properties div.item p {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-start;
    border-bottom: 1px solid var(--broke-white);
    padding-bottom: 14px;
}

section.properties-prewiew div.properties div.item p img.location {
    width: 20px;
    height: 20px;
}

section.properties-prewiew div.properties div.item a.btn-alternate {
    color: var(--black);
    font-size: 16px;
    width: 40%;
    transform: translateX(30px);
}

section.properties-prewiew div.properties div.item a.btn-alternate::before {
    border: 2px solid var(--black);
    border-top: none;
    border-left: none;
    top: 17px;
    right: 5%;
}

section.properties-prewiew div.properties div.item div.information {
    width: 95%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

section.properties-prewiew div.properties div.item div.information span.feature {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 25% !important;
}

section.properties-prewiew div.properties div.item div.information span a.feature {
    width: 25px;
    height: 25px;
    border-radius: 20px;
    display: inline-flex;
    color: var(--black);
    vertical-align: middle;
    font-size: 18px;
    gap: 5px
}

btn-alternate section.properties-prewiew div.properties-btn {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

section.properties-prewiew div.properties-btn a.btn-alternate {
    color: var(--black);
}

section.properties-prewiew div.properties-btn a.btn-alternate::before {
    border: 2px solid var(--black);
    border-top: none;
    border-left: none;
    top: 18px;
}

section.properties-prewiew div.properties-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
}


section.scroll-zPatern {
    width: 100%;
    padding: var(--padding);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
}

section.scroll-zPatern a:not([class]) {
    display: inline-flex;
    vertical-align: middle;
    gap: 5px;
    padding: 5px 15px;
    background-color: var(--broke-white);
    border-radius: 20px;
    color: var(--black);
    font-size: 18px;
}

section.scroll-zPatern a img {
    border-radius: 50%;
}

section.scroll-zPatern a p {
    font-size: 14px;
}

section.scroll-zPatern div.title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    gap: 25px;
}

section.scroll-zPatern div.title h3 {
    font-size: 40px;
    color: var(--black);
    font-weight: 600;
}

section.scroll-zPatern div.scroll-zItem {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(50px);
    /* aşağıdan hafif kalkma efekti */
    height: 700px;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    padding: 20px 0;
}

section.scroll-zPatern div.scroll-zItem.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

section.scroll-zPatern div.scroll-zItem span.text {
    width: 40%;
    position: sticky;
    top: 20px;
    /* ekran üstünden aynı boşluk */
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--black);
}

section.scroll-zPatern div.scroll-zItem span.text h3 {
    font-size: 30px;
    font-weight: 500;
    display: inline-flex;
    color: var(--black);
}

section.scroll-zPatern div.scroll-zItem span.text p {
    color: var(--black);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5rem;
}

section.scroll-zPatern div.scroll-zItem span.details {
    width: 60%;
    position: sticky;
    top: 20px;
    /* ekran üstünden biraz boşluk */
    height: fit-content;
    /* içerik yüksekliği kadar */
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

section.scroll-zPatern div.scroll-zItem span.details img:not([class]) {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

section.scroll-zPatern div.scroll-zItem span.details img.top {
    position: absolute;
    top: 150px;
    right: -60px;
    width: 45%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

section.scroll-zPatern div.scroll-zItem span.details img.bottom {
    position: absolute;
    left: -60px;
    width: 45%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    bottom: 100px;
}

section.scroll-zPatern div.scroll-zItem span.details img.bottom-two {
    position: absolute;
    right: -100px;
    width: 40%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    bottom: 30px;
}

section.testimonials {
    width: 100%;
    padding: var(--padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
    min-height: 700px;
    /* Kart yüksekliği ve alt boşluk için */
}

section.testimonials h3 {
    color: var(--black);
    font-size: 50px;
    font-weight: 500;
    text-align: center;
}

section.testimonials>p {
    color: var(--black);
    font-weight: 400;
    text-align: center;
    font-size: 16px;
}

section.testimonials a:not([class]) {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background-color: var(--broke-white);
    border-radius: 20px;
    color: var(--black);
    font-size: 18px;
}

section.testimonials a img {
    border-radius: 50%;
}

section.testimonials a p {
    font-size: 14px;
}

/* 💬 Yorum kartlarının container'ı */
section.testimonials .card-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    /* Sabit kart yüksekliği */
    margin-top: 40px;
    /* Butonlardan sonra boşluk */
}

/* 🎴 Kartlar */
section.testimonials .card-wrapper .card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    opacity: 0;
    pointer-events: none;
    z-index: 0;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 30px 50px;
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

section.testimonials .card-wrapper .card.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scale(1);
    z-index: 2;
}

section.testimonials .card-wrapper .card picture {
    width: 25%;
}

section.testimonials .card-wrapper .card picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

section.testimonials .card-wrapper .card span {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

section.testimonials .card-wrapper .card span h4 {
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
}

section.testimonials .card-wrapper .card span p {
    color: var(--black);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5rem;
    text-align: left;
}

section.testimonials .card-wrapper .card span strong {
    font-weight: 600;
    color: var(--black);
}

/* 🔘 Kontroller */
section.testimonials .testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: absolute;
    top: -80px;
    right: 0;
    z-index: 9;
}

section.testimonials .testimonial-controls button {
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition-duration: .5s;
}

section.testimonials .testimonial-controls button:hover {
    transition-duration: .5s;
    background-color: var(--cream);
    color: var(--black);
}


/* FAQ Bölümü */
section.faq {
    width: 100%;
    padding: var(--padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
    min-height: 700px;
}

section.faq h3 {
    color: var(--black);
    font-size: 50px;
    font-weight: 500;
    text-align: center;
}

section.faq>p {
    color: var(--black);
    font-weight: 400;
    text-align: center;
    font-size: 16px;
}

section.faq a:not([class]) {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background-color: var(--broke-white);
    border-radius: 20px;
    color: var(--black);
    font-size: 18px;
}

section.faq a img {
    border-radius: 50%;
}

section.faq a p {
    font-size: 14px;
}

section.faq .faq-item {
    padding: 15px 0;
    width: 100%;
    max-width: 800px;
}

.faq-question .icon {
    transition-duration: 0.3s;
}

.faq-item.active .faq-question .icon {
    background-color: black;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    transition-duration: 0.3s;
}

section.faq .faq-question {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

section.faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

section.faq .faq-answer p {
    width: 90%;
}

section.faq .faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}



section.descripton-Z-pattern {
    width: 100%;
    padding: var(--padding);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

section.descripton-Z-pattern h1 {
    font-size: 70px;
    color: var(--black);
    font-weight: 500;
}

section.descripton-Z-pattern div.description {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
}

section.descripton-Z-pattern div.description p {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
}

section.descripton-Z-pattern div.description div.buttons a.btn-alternate {
    color: var(--black);
    font-size: 16px;
}

section.descripton-Z-pattern div.description div.buttons a.btn-alternate::before {
    border: 2px solid var(--black);
    border-top: none;
    border-left: none;
    top: 18px;
}

section.w-layout-blockcontainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

section.w-layout-blockcontainer div {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
}

section.w-layout-blockcontainer div picture {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}

section.w-layout-blockcontainer div picture img {
    width: 100%;
    height: auto;
}

section.w-layout-blockcontainer div div.counter {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 25px;
}

section.w-layout-blockcontainer div div.counter span {
    width: 35%;
    display: flex;
    flex-direction: column;
}

section.w-layout-blockcontainer div div.counter span strong {
    font-size: 20px;
    color: var(--black);
    font-weight: 500;
}

section.w-layout-blockcontainer div div.counter span h3 {
    font-size: 80px;
    font-weight: 500;
    display: inline-flex;
    color: var(--black);
}

section.w-layout-blockcontainer div div.counter span h3 span {
    color: var(--gray);
    font-weight: 400;
}

section.w-layout-blockcontainer div div.counter span p {
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5rem;
}

section.w-layout-blockcontainer picture {
    width: 69%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}

section.w-layout-blockcontainer picture img {
    width: 100%;
    height: auto;
}

section.services {
    width: 100%;
    padding: var(--padding);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

section.services div:not([class]) {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
    position: sticky;
    top: 100px;
    /* Sabitleneceği mesafe (header varsa ayarla) */
    align-self: flex-start;
}

section.services div a:not([class]) {
    display: inline-flex;
    vertical-align: middle;
    gap: 10px;
    padding: 5px 10px;
    background-color: var(--broke-white);
    border-radius: 20px;
}

section.services div a img {
    width: 30px;
    height: 30px;
}

section.services div a p {
    font-size: 18px;
    color: var(--black);
    font-weight: 400;
}

section.services div h3 {
    font-size: 45px;
    font-weight: 500;
    color: var(--black);
}

section.services div p {
    font-size: 16px;
    font-weight: 300;
    color: var(--black);
}

section.services div.container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

section.services div.container div.item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
}

section.services div.container div.item img {
    width: 30px;
    height: 30px;
}

section.services div.container div.item h4 {
    font-size: 24px;
    color: var(--black);
    font-weight: 500;
}

section.rewerse-z-Patern {
    width: 100%;
    padding: var(--padding);
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
}

section.rewerse-z-Patern picture {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}

section.rewerse-z-Patern picture img {
    width: 100%;
    height: auto;
}

section.rewerse-z-Patern div {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
}

section.rewerse-z-Patern a:not([class]) {
    display: inline-flex;
    vertical-align: middle;
    gap: 10px;
    padding: 5px 10px;
    background-color: var(--broke-white);
    border-radius: 20px;
}

section.rewerse-z-Patern div a img {
    width: 30px;
    height: 30px;
}

section.rewerse-z-Patern a p {
    font-size: 18px;
    color: var(--black);
    font-weight: 400;
}

section.rewerse-z-Patern h3 {
    font-size: 40px;
    color: var(--black);
    font-weight: 400;
}

section.rewerse-z-Patern p {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
}

section.offices {
    width: 95%;
    padding: var(--padding);
    background-color: var(--black);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

section.offices a:not([class]) {
    display: inline-flex;
    vertical-align: middle;
    gap: 10px;
    padding: 5px 10px;
    background-color: var(--broke-white);
    border-radius: 20px;
}

section.offices a img {
    width: 25px;
    height: 25px;
}

section.offices a p {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
}

section.offices h2 {
    font-size: 46px;
    color: var(--white);
    font-weight: 400;
}

section.offices span.title {
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

section.offices span.title p {
    width: 100%;
    text-align: center;
}

section.offices span p {
    width: 50%;
    line-height: 1.5rem;
    font-weight: 300;
    font-size: 16px;
    color: var(--gray);
}

section.offices  a.btn {
    filter: invert(1);
    padding: 8px 15px;
    display: inline-flex;
    gap: 5px;
}

section.offices div.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

section.offices div.container div.item{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
    padding: 50px;
    position: relative;
}

section.offices div.container div.itemMap {
    width: 100%;
    height: 500px;
    position: relative;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.offices div.container div.item::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.609);
    z-index: 99;
}

section.offices div.container div.itemMap iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

section.offices div.container div.item h4 {
    z-index: 100;
    font-size: 35px;
    font-weight: 400;
}

section.offices div.container div.item p {
    z-index: 100;
    font-size: 16px;
    font-weight: 400;
}

section.offices div.container div.item p a {
    z-index: 100;
    font-size: 16px;
    font-weight: 400;
    background: transparent;
}

section.offices div.container div.item span,
section.offices div.container div.itemMap span {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    z-index: 100;
}

section.offices div.container div.item span img,
section.offices div.container div.itemMap span img {
    width: 20px;
    height: 20px;
}

section.offices div.container div.item span a.info ,
section.offices div.container div.itemMap span a.info {
    display: flex;
    width: 100%;
}

section.offices div.container div.item span a.info p,
section.offices div.container div.itemMap span a.info p {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

section.offices span {
    width: 100%;
    display: flex;
    justify-content: center;
}

section.offices span a.btn {
    filter: invert(1);
    padding: 8px 15px;
    display: inline-flex;
    gap: 5px;
    text-align: center;
}

/* Contact */
section.contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 5%;
    padding: var(--padding);
}

section.contact div.contactText {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    width: 45%;
}

section.contact div.contactText h1{
    color: var(--dark-black);
    font-size: 60px;
    font-weight: 500;
    line-height: 1.2em;
}

section.contact div.contactText p{
    color: var(--dark-black);
    font-size: 16px;
    font-weight: 300;
}

section.contact div.contactText div.contactInfo {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

section.contact div.contactText div.contactInfo div.box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

section.contact div.contactText div.contactInfo div.box div.info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

section.contact div.contactText div.contactInfo div.box div.info h2 {
    color: var(--dark-black);
    font-size: 16px;
    font-weight: 300;
}

section.contact div.contactText div.contactInfo div.box div.info a p {
    color: var(--dark-black);
    font-size: 14px;
    font-weight: 500;
}

section.contact form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 20px;
    width: 45%;
    padding:  60px;
    gap: 20px;
}

section.contact form div.formGroup {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    gap: 10px;
    width: 100%;
}

section.contact form div.formGroup img.icon {
    position: absolute;
    left: 15px;
    top: 13px;
}

section.contact form div.formGroup input {
    color: var(--gray);
    padding: 15px 50px;
    border-radius: 22px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
}

section.contact form div.formGroup textarea {
    color: var(--gray);
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 25px;
    padding: 15px 50px;
    font-family: "Poppins", sans-serif;
    width: 100%;
}

section.contact form div.button {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: start;
    position: relative;
    width: 100%;
}

section.contact form button {
    color: var(--white);
    background-color: var(--black);
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 25px;
    padding: 15px 40px;
    width: 100%;
    text-align: start;
    font-size: 16px;
    transition: transform 0.3s ease-in-out;
}

section.contact form div.button img {
    border-radius: 30px;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 20px;
    top: 12px;
}

section.contact form button:hover {
    transform: scale(0.96);
}



section.agents {
    width: 90%;
    padding: var(--padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

section.agents h3 {
    color: var(--black);
    font-size: 50px;
    font-weight: 500;
    text-align: center;
}

section.agents>p {
    color: var(--black);
    font-weight: 400;
    text-align: center;
    font-size: 16px;
}

section.agents a:not([class]) {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background-color: var(--broke-white);
    border-radius: 20px;
    color: var(--black);
    font-size: 18px;
}

section.agents a p {
    font-size: 14px;
}

section.agents div.buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

section.agents div.buttons a.btn-alternate {
    color: var(--black);
    font-size: 16px;
}

section.agents div.buttons a.btn-alternate::before {
    border: 2px solid var(--black);
    border-top: none;
    border-left: none;
    top: 18px;
}

section.agents div.container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

section.agents div.container div.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    padding: 15px 30px;
}

section.agents div.container div.card span {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: end;
}

section.agents div.container div.card span p {
    color: var(--white);
    font-size: 18px;
    border-radius: 50%;
    background-color: var(--black);
    padding: 3px 10px;
}

section.agents div.container div.card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

section.agents div.container div.card h3 {
    color: var(--black);
    font-size: 26px;
    font-weight: 500;
}

section.agents div.container div.card p {
    color: var(--black);
    font-size: 18px;
    font-weight: 300;
}

section.agents div.container div.card div {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

section.agents div.container div.card div img {
    filter: invert(1);
    width: 20px;
    height: 20px;
    border-radius: 0px !important;
    transition-duration: 0.4s;
    cursor: pointer;
}

section.agents div.container div.card div img:hover {
    filter: invert(0.5);
    transition-duration: 0.4s;
}

section.social {
    width: 95%;
    padding: var(--padding);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
}

section.social a:not([class]) {
    display: inline-flex;
    vertical-align: middle;
    gap: 10px;
    padding: 5px 10px;
    background-color: var(--broke-white);
    border-radius: 20px;
}

section.social a img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

section.social a p {
    font-size: 16px;
    color: var(--black);
    font-weight: 400;
}

section.social h2 {
    font-size: 46px;
    color: var(--black);
    font-weight: 500;
}

section.social span.title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
}

section.social span p {
    line-height: 1.5rem;
    font-weight: 300;
    font-size: 16px;
    color: var(--black);
}

section.social div.swiper-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

section.social div.swiper {
    width: 100%;
    height: 100vh;
    padding: 40px 0;
    overflow: visible;
    margin-top: 0;
}

section.social div.swiper-slide {
    width: 400px !important;
    height: 500px;
    font-size: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.4s ease;
    border-radius: 20px;
    opacity: 1 !important;
    transform: scale(1) !important;
}

section.social div.swiper-wrapper div.instagram-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
}

section.social div.swiper-wrapper div.instagram-card span.top-bar {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--soft-white);
    padding: 10px 20px;
}

section.social div.swiper-wrapper div.instagram-card span.top-bar div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

section.social div.swiper-wrapper div.instagram-card span.top-bar div img {
    width: 55px;
    height: 55px;
}


section.social div.swiper-wrapper div.instagram-card span.top-bar img {
    width: 20px;
    height: 20px;
}

section.social div.swiper-wrapper div.instagram-card span.top-bar div div.name {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: self-start;
    gap: 0;
}

section.social div.swiper-wrapper div.instagram-card span.top-bar div div.name strong {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
}

section.social div.swiper-wrapper div.instagram-card span.top-bar div div.name p {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
}

section.social div.swiper-wrapper div.instagram-card picture {
    width: 100%;
    height: 600px;
    overflow: hidden;
    object-fit: cover;
}

section.social div.swiper-wrapper div.instagram-card picture img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0px !important;
}

section.social div.swiper-wrapper div.instagram-card span.bottom-bar {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--soft-white);
}

section.social div.swiper-wrapper div.instagram-card span.bottom-bar div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

section.social div.swiper-wrapper div.instagram-card span.bottom-bar div img {
    width: 25px;
    height: 25px;
    border-radius: 0px !important;
}

section.social div.swiper-wrapper div.instagram-card span.bottom-bar img {
    width: 25px;
    height: 25px;
}

section.social div.swiper-wrapper div.instagram-card strong {
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    text-align: left;

}

section.social div.swiper-wrapper div.instagram-card p {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    text-align: left;
}

section.page-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

section.page-header div.page-header-card {
    width: 95%;
    height: 70vh;
    background-color: #14161C;
    border-radius: 20px;
    transform: translateY(30px);
}


section.page-header div.page-header-card header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: var(--padding);
}

section.page-header div.page-header-card header a.btn {
    background-color: var(--broke-white);
    color: var(--black);
}

section.page-header div.page-header-card header a.btn img {
    filter: invert(1);
}

section.page-header div.page-header-card header nav.main {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

section.page-header div.page-header-card header nav.main img {
    filter: none
}

section.page-header div.page-header-card header nav.main a {
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    transition-duration: .5s;
}

section.page-header div.page-header-card header nav.main a.active {
    position: relative;
}

section.page-header div.page-header-card header nav.main a.active::before {
    content: "";
    right: -12px;
    top: 10px;
    width: 6px;
    height: 6px;
    border: 2px solid var(--white);
    position: absolute;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    transition-duration: .5s;
    border-radius: 1px;
}

section.page-header div.page-header-card header nav.main a.active:hover::before {
    transform: rotate(225deg);
    border-color: var(--black);
}

section.page-header div.page-header-card header nav.main a:hover {
    transition-duration: .5s;
    color: var(--gray);
}

section.page-header div.page-header-card div.page-header-text h3 {
    color: var(--white);
    font-size: 70px;
    font-weight: 500;
    text-align: center;
}

section.page-header div.page-header-card div.page-header-text>p {
    color: var(--gray);
    font-weight: 400;
    text-align: center;
    font-size: 16px;
    width: 60%;
}

section.page-header div.page-header-card div.page-header-text a:not([class]) {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background-color: var(--black);
    border-radius: 20px;
    color: var(--white);
    font-size: 18px;
}

section.page-header div.page-header-card div.page-header-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    transform: translateY(50px);
}

section.page-header div.page-header-card div.page-header-text a img {
    border-radius: 0px;
    filter: invert(1);
}

section.page-header div.page-header-card div.page-header-text a p {
    font-size: 14px;

}

section.search-bar {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transform: translateY(-90px);
}

section.search-bar div.search {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

section.search-bar div.search div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 50px;
}

section.search-bar div form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 30px;
}

section.search-bar div form div {
    background-color: var(--broke-white);
    padding: 0;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

section.search-bar div form div input {
    outline: none;
    border: 1px solid transparent;
    background-color: transparent;
    padding: 15px 70px;
    font-size: 14px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
}

section.search-bar div form div img {
    width: 40px;
    height: 40px;
}

section.search-bar div form select {
    padding: 15px 60px;
    font-size: 14px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    background-color: var(--broke-white);
    outline: none;
    border: 1px solid transparent;
}

section.search-bar div form div:hover {
    box-shadow: 0 0 0 1px #999;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transition: box-shadow 0.2s ease-in-out;
}

section.search-bar div form select:hover {
    box-shadow: 0 0 0 1px #999;
    border-radius: 4px;
    transition: box-shadow 0.2s ease-in-out;
}

section.search-bar div form button {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    background-color: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}


section.search-bar div form button:hover {
    background-color: var(--gray); 
    transform: scale(1.05); 
}

#reset-search {
    background-color: var(--black);
    color: var(--white);
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#reset-search:hover {
    background-color: var(--gray);
    transform: scale(1.05);
}




section.galery {
    width: 100%;
    padding: var(--padding);
}

section.galery div.gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 3 eşit sütun */
    grid-auto-rows: 200px;
    grid-auto-flow: row;
    gap: 10px;
}

/* İlk görsel büyük: 2 sütun genişliğinde (%66), 2 satır yüksekliğinde */
section.galery div.gallery div.img-wrapper:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Diğer tüm görseller */
section.galery div.gallery div.img-wrapper {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

/* Görsellerin stilleri */
section.galery div.gallery div.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, border-radius 0.3s ease;
    display: block;
}

/* Hover'da büyüme */
section.galery div.gallery .img-wrapper img:hover {
    transform: scale(1.1);
    border-radius: 20px;
}

section.galery div.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
}

section.galery div.lightbox.hidden {
    display: none;
}

section.galery div.lightbox img#lightbox-img {
    max-width: 95%;
    max-height: 80%;
    border-radius: 8px;
}

section.galery div.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* THUMBNAIL BARI */
section.galery div.lightbox .lightbox-thumbnails {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

section.galery div.lightbox .lightbox-thumbnails img {
    width: 80px;
    height: auto;
    cursor: pointer;
    opacity: 0.6;
    border-radius: 5px;
    transition: all 0.2s ease;
}

section.galery div.lightbox .lightbox-thumbnails img:hover {
    transform: scale(1.05);
    opacity: 1;
}

section.galery div.lightbox .lightbox-thumbnails img.active {
    border: 2px solid #fff;
    opacity: 1;
}


section.properties-details {
    width: 100%;
    padding: var(--padding);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

section.properties-details div.container {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.properties-details div.container div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.properties-details div.container div h4 {
    width: 100%;
    font-size: 50px;
    color: var(--black);
    font-weight: 500;
    text-align: left;
}

section.properties-details div.container div strong {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-start;
    border-bottom: 1px solid var(--broke-white);
    padding-bottom: 14px;
    color: var(--black);
    font-weight: 500;
    width: 100%;
}

section.properties-details div.container div p {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-start;
    padding-bottom: 14px;
    color: var(--black);
    font-weight: 300;
    width: 100%;
}

section.properties-details div.container div p img.location {
    width: 20px;
    height: 20px;
}

section.properties-details div.container div a.btn-alternate {
    color: var(--black);
    font-size: 16px;
}

section.properties-details div.container div a.btn-alternate::before {
    border: 2px solid var(--black);
    border-top: none;
    border-left: none;
    top: 18px;
}

section.properties-details div.container div div.information {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
}

section.properties-details div.container div div.information span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

section.properties-details div.container div div.information span a.feature {
    width: 25px;
    height: 25px;
    border-radius: 20px;
    display: inline-flex;
    color: var(--black);
    vertical-align: middle;
    font-size: 16px;
    gap: 10px
}

section.properties-details div.container div.description {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

section.properties-details div.container div.description h5 {
    width: 100%;
    font-size: 30px;
    color: var(--black);
    font-weight: 500;
    text-align: left;
    padding-top: 50px;
}

section.properties-details div.container div.description p {
    width: 100%;
    font-size: 16px;
    color: var(--black);
    font-weight: 300;
    text-align: left;
}

section.properties-details div.container div.description ul li {
    font-size: 16px;
    color: var(--black);
    font-weight: 300;
}

section.properties-details div.container div.properties-services {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

section.properties-details div.container div.properties-services h5 {
    width: 100%;
    font-size: 30px;
    color: var(--black);
    font-weight: 500;
    text-align: left;
    padding-top: 50px;
}

section.properties-details div.container div.properties-services span {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Her satırda 3 item */
    gap: 20px;
    /* Elemanlar arası boşluk */
    margin-top: 20px;
}

section.properties-details div.container div.properties-services span a:not([class]) {
    display: inline-flex;
    vertical-align: middle;
    gap: 5px;
    padding: 10px 15px;
    background-color: var(--broke-white);
    border-radius: 10px;
    color: var(--black);
    font-size: 18px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

section.properties-details div.container div.properties-services span a img {
    border-radius: 50%;
    filter: invert(1);
}

section.properties-details div.container div.properties-services span a p {
    font-size: 14px;
    padding-bottom: 0;
}

section.properties-details div.sticky {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    position: sticky;
    top: 10px;
    z-index: 10;
}

section.properties-details div.sticky span.pay-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    padding: 20px 0px;
}

section.properties-details div.sticky span.pay-card p strong {
    color: var(--black);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 50px;
    font-weight: 400;
}

section.properties-details div.sticky span.pay-card p {
    color: var(--gray);
    font-size: 25px;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}


section.properties-details div.sticky div {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

section.properties-details div.sticky div form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 30px;
}

section.properties-details div.sticky div.form form div {
    background-color: var(--broke-white);
    padding: 15px 10px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
}

section.properties-details div.sticky div.form form a.btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

section.properties-details div.sticky div.form form div input {
    width: 200px;
    outline: none;
    border: 1px solid transparent;
    background-color: transparent;
    font-size: 14px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
}

section.properties-details div.sticky div form div img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

section.properties-details div.sticky div form select {
    padding: 15px 60px;
    font-size: 14px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    background-color: var(--broke-white);
    outline: none;
    border: 1px solid transparent;
}

section.properties-details div.sticky div form div:hover {
    box-shadow: 0 0 0 1px #999;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transition: box-shadow 0.2s ease-in-out;
}

section.properties-details div.sticky div form select:hover {
    box-shadow: 0 0 0 1px #999;
    border-radius: 4px;
    transition: box-shadow 0.2s ease-in-out;
}


section.properties-details div.sticky div.card {
    background-color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 30px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

section.properties-details div.sticky div.card picture img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

section.properties-details div.sticky div.card span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

section.properties-details div.sticky div.card span h4 {
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
}

section.properties-details div.sticky div.card span p {
    color: var(--black);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5rem;
}

section.properties-details div.sticky div.card div.information {
    font-weight: 600;
    color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    box-shadow: none;
}

section.properties-details div.sticky div.card div.information h4 {
    text-align: left;
    color: var(--black);
    font-weight: 500;
    font-size: 18px;
}

section.properties-details div.sticky div.card div.information span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

section.properties-details div.sticky div.card div.information span p,
section.properties-details div.sticky div.card div.information span a {
    color: var(--gray);
    font-size: 14px;
    font-weight: 400;
}

section.properties-details div.sticky div.card div.information span img {
    filter: invert(0.5);
}

footer {
    width: 95%;
    background-color: var(--black);
    color: #fff;
    padding: var(--padding);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    border-radius: 20px;
    gap: 35px;
    position: relative;
}

footer div.footerInfo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20%;
}

footer div {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
}

footer div h2 {
    color: var(--white);
    font-size: 30px;
    font-weight: 500;
}

footer div h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

footer div p {
    color: var(--white);
    max-width: 400px;
    line-height: 1.6;
}

footer div span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

footer div.contact {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 35px;
}

footer div.contact span.contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0
}

footer div.contact span.contact a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

footer div.contact span.contact a img {
    width: 25px;
    height: 25px;
}

footer div.footerBottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 30px;
}

footer div.footerBottom p {
    font-size: 14px;
    font-weight: 200;
    color: var(--cream);
}






@media (max-width: 600px) {
    section.page-wrapper div.section-card-wrapper {
        width: 100%;
        transform: translateY(0px);
        border-radius: 0px;
    }

    section.page-wrapper div.section-card-wrapper div.layout-blockcontainer {
        padding: 20px;
        transform: translateY(0px);
    }

    section.page-wrapper div.section-card-wrapper div.layout-blockcontainer h1 {
        font-size: 35px;
        width: 100%;
        font-weight: 600;

    }

    section.page-wrapper div.section-card-wrapper div.layout-blockcontainer span {
        width: 100%;
    }

    section.page-wrapper div.section-card-wrapper div.layout-blockcontainer span div.buttons {
        flex-direction: column;
        width: 100%;
    }

    section.page-wrapper div.section-card-wrapper div.layout-blockcontainer span div.buttons a.btn {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    header {
        padding: 20px;
    }

    header a.btn {
        display: none;
    }

    section.page-wrapper div.section-card-wrapper header {
        padding: 20px;
    }

    section.page-header div.page-header-card header {
        padding: 20px;
    }

    header nav.main img {
        width: 150px;
        height: auto;
    }

    header nav.main div.nav-links,
    section.page-wrapper div.section-card-wrapper header nav.main div.nav-links {
        position: absolute;
        left: 0;
        width: 95%;
        top: 50px;
        opacity: 0;
        pointer-events: none;
        transition: top 0.3s ease;
    }

    header nav.main div.nav-links.open,
    section.page-wrapper div.section-card-wrapper header nav.main div.nav-links.open {
        top: 60px;
        opacity: 1;
        pointer-events: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        z-index: 1000;
        background-color: var(--black);
        border-radius: 20px;
        left: 10px;
        right: 0;
        padding: 20px;
    }

    header nav.main div.nav-links.open a,
    section.page-wrapper div.section-card-wrapper header nav.main div.nav-links.open a {
        color: white;
    }

    header nav.main div.nav-links.open,
    section.page-wrapper div.section-card-wrapper header nav.main div.nav-links.open a {
        color: white;
    }

    section.page-wrapper div.section-card-wrapper header img.menu {
        display: flex;
        filter: invert(1);
        width: 40px;
        height: 40px;
    }

    header img.menu {
        display: flex;
        filter: invert(1);
        width: 40px;
        height: 40px;
    }

    section.z-Pattern {
        flex-direction: column;
    }

    section.z-Pattern div.z-Pattern-Blockcontainer {
        display: flex;
        flex-direction: column;
    }

    section.z-Pattern div {
        display: flex;
        flex-direction: column;
    }

    section.z-Pattern div span {
        text-align: center;
    }

    section.z-Pattern div span h3 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    section.z-Pattern div.card span {
        align-items: center;
    }

    section.swipper-slider div {
        width: 100%;
    }

    section.swipper-slider div span {
        padding: 50px 20px;
    }

    section.swipper-slider div span a img {
        width: 20px;
        height: 20px;
    }

    section.swipper-slider div span a p {
        font-size: 14px;
    }

    section.swipper-slider div span h3 {
        font-size: 26px;
        font-weight: 500;
    }

    .swiper-slide {
        width: 100% !important;
        height: auto;
    }

    .swiper-slide img {
        border-radius: 20px;
        width: 90%;
        height: auto;
    }

    .swiper-slide a.slide-action img {
        width: 40px;
        height: 40px;
        border-radius: 0px;
    }

    .swiper-slide a.slide-sales {
        left: 25px;
    }

    .swiper-slide a.slide-sales img {
        width: 20px;
        height: 20px;
        border-radius: 0px;
    }

    section.z-Pattern-Alternate {
        width: 100%;
        padding: 20px;
        flex-direction: column;
    }

    section.z-Pattern-Alternate div {
        width: 100%;
    }

    section.z-Pattern-Alternate div h3 {
        font-size: 30px;
    }

    section.z-Pattern-Alternate div a.btn {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    section.z-Pattern-Alternate picture {
        width: 100%;
    }

    section.properties-prewiew {
        padding: 20px;
    }

    section.properties-prewiew h3 {
        font-size: 28px;
        width: 100%;
    }

    section.properties-prewiew div.properties {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    section.properties-prewiew div.properties div.item div.information {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    section.properties-prewiew div.properties div.item a.btn-alternate {
        color: var(--black);
        font-size: 16px;
        width: 100%;
        padding: 8px 0px;
        text-align: left;
    }

    section.properties-prewiew div.properties-btn {
        width: 100%;
    }

    section.properties-prewiew div.properties-btn a.btn {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    section.intro-banner {
        flex-direction: column;
        height: 100vh;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
    }

    section.intro-banner img {
        width: 100%;
        height: auto;
        transform: translateY(500px);
    }

    section.intro-banner div {
        width: 100%;
        padding: 20px;
        right: 0;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    section.intro-banner div a.btn {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    section.scroll-zPatern div.title {
        flex-direction: column;
    }

    section.scroll-zPatern {
        padding: 20px;
    }

    section.scroll-zPatern div.title h3 {
        text-align: center;
        font-size: 30px;
    }

    section.scroll-zPatern div.title a.btn {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    section.scroll-zPatern div.scroll-zItem {
        flex-direction: column;
    }

    section.scroll-zPatern div.scroll-zItem span.text {
        width: 100%;
    }

    section.scroll-zPatern div.scroll-zItem span.details {
        width: 100%;
    }

    section.scroll-zPatern div.scroll-zItem span.details img.top {
        top: 140px;
        right: 0;
        width: 35%;
    }

    section.scroll-zPatern div.scroll-zItem span.details img.bottom {
        left: 0px;
    }

    section.scroll-zPatern div.scroll-zItem span.details img.bottom-two {
        right: 0;
        width: 30%;
        bottom: 20px;
    }

    section.testimonials {
        padding: 20px;
    }

    section.testimonials h3 {
        font-size: 30px;
    }

    section.testimonials .card-wrapper .card {
        flex-direction: column;
    }

    section.testimonials .card-wrapper .card picture {
        width: 70%;
    }

    section.testimonials .card-wrapper .card span {
        width: 100%;
    }

    section.articles {
        padding: 20px;
    }

    section.articles div.title {
        flex-direction: column;
        align-items: flex-start;
    }

    section.articles div.title a.btn-alternate {
        padding: 8px 15px 8px 0px;
    }

    section.articles div.articles-box {
        flex-direction: column;
    }

    section.faq {
        padding: 20px;
    }

    section.faq h3 {
        font-size: 35px;
    }

    section.faq>p {
        font-size: 14px;
    }

    section.cards-wrapper {
        width: 100%;
        padding: 20px;
        flex-direction: column;
    }

    section.cards-wrapper div.purpose-card {
        width: 100%;
    }

    footer {
        width: 100%;
        flex-direction: column;
        gap: 25px;
    }

    footer div {
        width: 100%;
    }

    footer div.contact {
        width: 100%;
    }

    footer div h3 {
        font-size: 30px;
    }

    footer div.contact span.contact {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px;
    }

    section.descripton-Z-pattern {
        flex-direction: column;
        padding: 20px;
    }

    section.descripton-Z-pattern h1 {
        font-size: 45px;
        width: 100%;
        text-align: left;
    }

    section.descripton-Z-pattern div.description {
        width: 100%;
    }

    section.descripton-Z-pattern div.buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    section.descripton-Z-pattern div.buttons a.btn {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    section.w-layout-blockcontainer {
        flex-direction: column;
    }

    section.w-layout-blockcontainer div {
        width: 100%;
    }

    section.w-layout-blockcontainer picture {
        width: 100%;
    }

    section.w-layout-blockcontainer div div.counter {
        justify-content: center;
        flex-direction: column;
        padding: 20px;
    }

    section.w-layout-blockcontainer div div.counter span {
        width: 100%;
    }

    section.services {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }

    section.services div:not([class]) {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        position: static;
    }

    section.services div h3 {
        font-size: 28px;
    }

    section.services div a.btn {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    section.rewerse-z-Patern {
        flex-direction: column;
        padding: 20px;
    }

    section.rewerse-z-Patern div {
        width: 100%;
    }

    section.rewerse-z-Patern h3 {
        font-size: 30px;
        font-weight: 500;
    }

    section.rewerse-z-Patern div a.btn {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    section.offices {
        width: 100%;
        padding: 20px;
    }

    section.offices h2 {
        font-size: 40px;
    }

    section.offices span.title {
        flex-direction: column;
        gap: 25px;
    }

    section.offices span p {
        width: 100%;
    }

    section.offices span a.btn {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    section.offices div.container {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    section.offices div.container div.item {
        height: auto;
    }

    section.agents {
        width: 100%;
        padding: 20px;
    }

    section.agents h3 {
        font-size: 36px;
    }

    section.agents div.container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }

    section.agents div.container div.card {
        width: 100%;
    }

    section.agents div.buttons {
        flex-direction: column;
        width: 100%;
    }

    section.agents div.buttons a.btn {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    section.social {
        width: 100%;
        padding: 20px;
    }

    section.social span.title {
        flex-direction: column;
    }

    section.social h2 {
        font-size: 38px;
    }

    section.social div.swiper {
        overflow: hidden;
    }

    section.social div.swiper-wrapper div.instagram-card {
        width: 95% !important;
        height: 300px !important;
    }

    section.social div.swiper-wrapper {
        width: 90%;
        gap: 5px
    }

    section.social div.swiper {
        height: 100%;
    }

    .swiper {
        margin-bottom: 0px;
    }

    section.galery {
        padding: 20px;
    }

    section.galery div.gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    section.properties-details {
        flex-direction: column;
        padding: 20px;
        gap: 25px;
    }

    section.properties-details div.container {
        width: 100%;
    }

    section.properties-details div.container div.properties-services span {
        grid-template-columns: repeat(2, 1fr);
    }

    section.properties-details div.container div.description ul {
        padding: 0px 20px;
    }

    section.properties-details div.sticky {
        width: 100%;
    }

    section.properties-details div.sticky div.card {
        flex-direction: column;
    }

    section.properties-details div.sticky div.card div.information {
        width: 100%;
    }

    section.properties-prewiew span.title {
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
    }

    section.properties-prewiew span.title h2 {
        text-align: left;
        font-size: 40px;
    }

    section.properties-prewiew span a.btn-alternate {
        padding: 8px 15px 8px 0px;
    }

    section.page-header div.page-header-card {
        width: 100%;
        transform: translateY(0px);
        border-radius: 0px;
    }

    section.page-header div.page-header-card div.page-header-text {
        padding: 20px;
    }

    section.page-header div.page-header-card div.page-header-text h3 {
        font-size: 35px;
    }

    section.page-header div.page-header-card div.page-header-text p {
        font-size: 14px;
    }

    section.search-bar {
        flex-direction: column;
    }

    section.search-bar div {
        flex-direction: column;
    }

    section.search-bar div form {
        flex-direction: column;
        padding: 20px;
    }

    section.search-bar div form div {
        flex-direction: row;
        display: flex;
    }

    section.search-bar div form select {
        width: 100%;
    }



    section.contact {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    section.contact div.contactText,
    section.contact form {
        width: 100%;
    }

    section.contact div.contactText h1 {
        font-size: 40px;
    }

    section.contact div.contactText p {
        font-size: 14px;
    }

    section.contact div.contactText div.contactInfo {
        flex-direction: column;
        gap: 20px;
    }

    section.contact form {
        padding: 40px 20px;
    }

    section.contact form div.formGroup {
        flex-direction: column;
    }

    section.contact form button {
        padding: 15px;
        font-size: 14px;
    }

    section.contact form div.button img {
        width: 20px;
        height: 20px;
    }
}