:root {
    --font-main: "Urbanist";
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main), sans-serif;
}

/*HEADER*/

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 24px 0;
    pointer-events: none;
}

.navbar {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 14px 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: #fff;
    background: rgba(15, 23, 18, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    pointer-events: auto;
    transition: all 0.35s ease;
}

.site-header.is-scrolled .navbar {
    background: rgba(15, 23, 18, 0.82);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
}

.navbar-logo {
    flex: 0 0 auto;
}

.navbar-logo a {
    display: inline-flex;
    align-items: center;
}

.navbar-logo img {
    width: 185px;
    max-height: 58px;
    object-fit: contain;
    display: block;
}

.navbar-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar-menu ul,
.navbar-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-menu ul {
    display: flex;
    align-items: center;
    gap: 22px;
}

.navbar-menu a {
    position: relative;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.navbar-menu a:hover {
    color: #fff;
}

.navbar-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-social {
    flex: 0 0 auto;
}

.navbar-social ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-social a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-social a:hover {
    background: #fff;
    color: #142217;
    transform: translateY(-2px);
}

.navbar-toggle,
.mobile-menu-head,
.mobile-menu-social {
    display: none;
}

/*FOOTER*/
.site-footer {
    position: relative;
    background: #0f1712;
    color: #fff;
    padding: 86px 0 0;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 72px 64px;
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
    gap: 56px;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 26px;
}

.footer-logo img {
    max-width: 190px;
    max-height: 78px;
    object-fit: contain;
}

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #fff;
    color: #0f1712;
    transform: translateY(-2px);
}

.footer-column h4,
.footer-contact h4 {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
}

.footer-contact-item i {
    width: 18px;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

a.footer-contact-item:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 22px 72px;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}


/*HERO*/

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    background: #111;
}

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    overflow: hidden;
}

.hero-picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    background: #111;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            rgba(8, 20, 14, 0.88) 0%,
            rgba(8, 20, 14, 0.55) 42%,
            rgba(8, 20, 14, 0.18) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.hero-subtitle {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 22px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(8px);
}

.hero-title {
    max-width: 560px;
    font-size: clamp(34px, 5vw, 65px);
    line-height: 0.95;
    font-weight: 600;
    color: #fff;
}

.hero-btn {
    margin-top: 34px;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 999px;
    background: #ffffff;
    color: #173323;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    background: #e9efe9;
}

.hero-pagination {
    bottom: 36px !important;
    z-index: 5;
}

.hero-pagination .swiper-pagination-bullet {
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #fff;
}

.hero-navigation {
    position: absolute;
    right: 56px;
    bottom: 42px;
    z-index: 6;
    display: flex;
    gap: 12px;
}

.hero-nav {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: all 0.35s ease;
}

.hero-nav:hover {
    background: #fff;
    color: #173323;
}

/*ABOUT US*/
.soylu-section {
    position: relative;
    overflow: hidden;
    background: #0f1712;
    color: #fff;
    padding: 140px 0;
}

.soylu-bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(130, 162, 126, 0.16), transparent 32%),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.08), transparent 34%);
    opacity: 0.9;
    pointer-events: none;
}

.soylu-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 72px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.soylu-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.soylu-logo-card {
    width: 100%;
    max-width: 420px;
    min-height: 320px;
    padding: 56px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.soylu-logo-card img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.soylu-content h2 {
    max-width: 620px;
    margin-bottom: 24px;
    font-size: clamp(32px, 3.4vw, 52px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.035em;
    color: #fff;
}

.soylu-content p {
    max-width: 680px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}

.soylu-link {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
}

.soylu-link i {
    font-size: 13px;
    transition: transform 0.35s ease;
}

.soylu-link:hover {
    color: #d8e8d4;
}

.soylu-link:hover i {
    transform: translateX(5px);
}

/*GALLERY*/
.gallery-section {
    background: #f7f5ef;
    padding: 80px 0;
    color: #172018;
    position: relative;
}

.gallery-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 72px;
}

.gallery-heading {
    max-width: 660px;
    margin-bottom: 38px;
}

.section-kicker.light {
    background: rgba(23, 32, 24, 0.07);
    color: rgba(23, 32, 24, 0.62);
}

.gallery-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.035em;
    color: #172018;
}

.gallery-heading p {
    max-width: 560px;
    margin: 0;
    color: rgba(23, 32, 24, 0.62);
    font-size: 16px;
    line-height: 1.75;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.gallery-filter-btn {
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(23, 32, 24, 0.14);
    background: transparent;
    color: rgba(23, 32, 24, 0.68);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: #172018;
    border-color: #172018;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 250px;
    border-radius: 22px;
    background: #e8e5dc;
    text-decoration: none;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    /*min-height: 380px;*/
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(
            180deg,
            rgba(15, 23, 18, 0) 0%,
            rgba(15, 23, 18, 0.42) 100%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-card-overlay span {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #172018;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.gallery-card:hover img {
    transform: scale(1.055);
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card {
    transition: opacity 0.35s ease,
    transform 0.35s ease;
}

.gallery-card.is-hiding {
    opacity: 0;
    transform: scale(0.96);
    pointer-events: none;
}

.gallery-card.is-hidden {
    display: none;
}

.gallery-card.is-showing {
    opacity: 0;
    transform: scale(0.96);
}

.gallery-card.is-visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-empty {
    padding: 42px;
    border-radius: 22px;
    background: #fff;
    color: rgba(23, 32, 24, 0.6);
    font-size: 15px;
}

.gallery-card:nth-child(2n) {
    transition-delay: 0.04s;
}

.gallery-card:nth-child(3n) {
    transition-delay: 0.08s;
}

.bg-shape {
    position: absolute;
    opacity: 0.3;
}

.bg-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-shape-1 {
    bottom: 50px;
    left: 50px;
    width: 350px;
}

.bg-shape-2 {
    bottom: 50px;
    right: 50px;
    height: 350px;
}

.bg-shape-3 {
    top: 50px;
    right: 50px;
    width: 350px;
}

.bg-shape-4 {
    top: 50px;
    left: 50px;
    height: 350px;
}

.features-section {
    position: relative;
    overflow: hidden;
    background: #f8f6f0;
    padding: 80px 0;
    color: #172018;
}

.features-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(31, 59, 45, 0.08);
    pointer-events: none;
}

.features-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 72px;
}

.features-heading {
    max-width: 680px;
    margin-bottom: 46px;
}

.features-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.035em;
    color: #172018;
}

.features-heading p {
    max-width: 590px;
    margin: 0;
    color: rgba(23, 32, 24, 0.62);
    font-size: 16px;
    line-height: 1.75;
}

.features-layout {
    display: grid;
    /*grid-template-columns: 0.85fr 1.15fr;*/
    gap: 28px;
    align-items: start;
}

.features-intro-card {
    position: sticky;
    top: 120px;
    min-height: 440px;
    padding: 36px;
    border-radius: 28px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(145deg, #101a13 0%, #1f3324 100%);
    color: #fff;
    overflow: hidden;
}

.features-intro-card::after {
    content: "Yeşil His";
    position: absolute;
    left: 28px;
    bottom: -8px;
    color: rgba(255, 255, 255, 0.045);
    font-size: 76px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.06em;
    white-space: nowrap;
}

.features-intro-card span {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.features-intro-card h3 {
    position: relative;
    z-index: 2;
    max-width: 360px;
    margin-bottom: 18px;
    font-size: clamp(26px, 2.4vw, 38px);
    line-height: 1.14;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.features-intro-card p {
    position: relative;
    z-index: 2;
    max-width: 370px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.75;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card {
    position: relative;
    min-height: 220px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(23, 32, 24, 0.08);
    box-shadow: 0 18px 60px rgba(20, 28, 22, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at var(--x, 50%) var(--y, 50%),
            rgba(31, 59, 45, 0.11),
            transparent 34%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 59, 45, 0.16);
    box-shadow: 0 24px 70px rgba(20, 28, 22, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 26px;
    display: flex;
    flex-direction: column;
}

.feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.feature-number {
    color: rgba(23, 32, 24, 0.28);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #f0eee6;
    color: #1f3b2d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/*.feature-image {*/
/*    height: 170px;*/
/*    margin: -4px -4px 22px;*/
/*    border-radius: 20px;*/
/*    overflow: hidden;*/
/*    background: #ece8dd;*/
/*}*/

/*.feature-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    display: block;*/
/*    object-fit: cover;*/
/*    transition: transform 0.6s ease;*/
/*}*/

/*.feature-card:hover .feature-image img {*/
/*    transform: scale(1.045);*/
/*}*/

.feature-content {
    margin-top: auto;
}

.feature-content h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #172018;
}

.feature-content p {
    margin: 0;
    color: rgba(23, 32, 24, 0.6);
    font-size: 14.5px;
    line-height: 1.7;
}

.features-empty {
    grid-column: 1 / -1;
    padding: 34px;
    border-radius: 22px;
    background: #fff;
    color: rgba(23, 32, 24, 0.62);
}

.floorplans-section {
    position: relative;
    overflow: hidden;
    background: #f4f1e9;
    padding: 80px 0;
    color: #172018;
}

.floorplans-section::before {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -220px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(31, 59, 45, 0.08);
    pointer-events: none;
}

.floorplans-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 72px;
}

.floorplans-heading {
    max-width: 680px;
    margin-bottom: 44px;
}

.floorplans-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.035em;
    color: #172018;
}

.floorplans-heading p {
    max-width: 590px;
    margin: 0;
    color: rgba(23, 32, 24, 0.62);
    font-size: 16px;
    line-height: 1.75;
}

.floorplans-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 22px;
    align-items: stretch;
}

.floorplans-tabs {
    padding: 12px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(23, 32, 24, 0.08);
    box-shadow: 0 18px 60px rgba(20, 28, 22, 0.06);
}

.floorplan-tab {
    width: 100%;
    min-height: 78px;
    padding: 16px;
    border: 0;
    border-radius: 20px;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    cursor: pointer;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.floorplan-tab:not(:last-child) {
    margin-bottom: 6px;
}

.floorplan-tab-number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    flex: 0 0 auto;
    background: #f0eee6;
    color: rgba(23, 32, 24, 0.48);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.floorplan-tab-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.floorplan-tab-content strong {
    color: #172018;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
}

.floorplan-tab-content small {
    color: rgba(23, 32, 24, 0.52);
    font-size: 13px;
    line-height: 1.3;
}

.floorplan-tab:hover {
    background: #f7f5ef;
}

.floorplan-tab.active {
    background: #172018;
}

.floorplan-tab.active .floorplan-tab-number {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.floorplan-tab.active .floorplan-tab-content strong {
    color: #fff;
}

.floorplan-tab.active .floorplan-tab-content small {
    color: rgba(255, 255, 255, 0.62);
}

.floorplans-stage {
    position: relative;
    min-height: 610px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid rgba(23, 32, 24, 0.08);
    box-shadow: 0 18px 60px rgba(20, 28, 22, 0.06);
    overflow: hidden;
}

.floorplan-panel {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition:
        opacity 0.45s ease,
        visibility 0.45s ease,
        transform 0.45s ease;
}

.floorplan-panel.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floorplan-visual {
    min-height: 560px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(244, 241, 233, 0.88), rgba(255, 255, 255, 0.96));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.floorplan-image-link {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.floorplan-image-link img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(20, 28, 22, 0.12));
    transition: transform 0.45s ease;
}

.floorplan-image-link:hover img {
    transform: scale(1.025);
}

.floorplan-zoom {
    position: absolute;
    right: 22px;
    bottom: 22px;
    height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #172018;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.floorplan-info {
    padding: 18px 10px 18px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.floorplan-label {
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(23, 32, 24, 0.07);
    color: rgba(23, 32, 24, 0.56);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.floorplan-info h3 {
    margin-bottom: 16px;
    font-size: clamp(28px, 2.7vw, 42px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.035em;
    color: #172018;
}

.floorplan-info p {
    margin: 0 0 24px;
    color: rgba(23, 32, 24, 0.62);
    font-size: 15.5px;
    line-height: 1.75;
}

.floorplan-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.floorplan-spec {
    min-height: 104px;
    padding: 18px;
    border-radius: 20px;
    background: #f7f5ef;
    display: flex;
    flex-direction: column;
}

.floorplan-spec i {
    margin-bottom: 14px;
    color: #1f3b2d;
    font-size: 18px;
}

.floorplan-spec span {
    margin-bottom: 6px;
    color: rgba(23, 32, 24, 0.48);
    font-size: 12px;
    line-height: 1.3;
}

.floorplan-spec strong {
    color: #172018;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
}

.floorplan-btn {
    width: fit-content;
    margin-top: 26px;
    height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: #172018;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floorplan-btn:hover {
    background: #1f3b2d;
    transform: translateY(-2px);
}

.floorplans-empty {
    padding: 36px;
    border-radius: 22px;
    background: #fff;
    color: rgba(23, 32, 24, 0.62);
}

.contact-section {
    position: relative;
    overflow: hidden;
    background: #f8f6f0;
    padding: 80px 0;
    color: #172018;
}

.contact-section::before {
    content: "";
    position: absolute;
    right: -180px;
    top: 120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(31, 59, 45, 0.08);
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 72px;
}

.contact-heading {
    max-width: 680px;
    margin-bottom: 44px;
}

.contact-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.035em;
    color: #172018;
}

.contact-heading p {
    max-width: 590px;
    margin: 0;
    color: rgba(23, 32, 24, 0.62);
    font-size: 16px;
    line-height: 1.75;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 24px;
    align-items: stretch;
}

.contact-form-card,
.contact-info-area {
    border-radius: 30px;
}

.contact-form-card {
    padding: 34px;
    background: #172018;
    color: #fff;
    box-shadow: 0 20px 70px rgba(20, 28, 22, 0.12);
}

.contact-card-title {
    margin-bottom: 28px;
}

.contact-card-title span {
    display: inline-flex;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-card-title h3 {
    margin: 0;
    max-width: 360px;
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1.14;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    padding: 0 18px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

textarea.form-control {
    min-height: 128px;
    padding-top: 16px;
    resize: vertical;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form-control:focus {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.1);
}

.form-group small {
    display: block;
    margin-top: 7px;
    color: #ffb8a8;
    font-size: 12px;
}

.contact-submit {
    width: 100%;
    height: 54px;
    margin-top: 4px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #172018;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    background: #e9efe9;
}

.contact-messages {
    margin-bottom: 18px;
}

.contact-message {
    padding: 13px 15px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-message.success {
    background: rgba(111, 191, 115, 0.14);
    color: #c8f2cb;
}

.contact-message.error {
    background: rgba(255, 105, 82, 0.14);
    color: #ffc8bd;
}

.contact-info-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.contact-info-card,
.contact-address-card {
    background: #fff;
    border: 1px solid rgba(23, 32, 24, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 60px rgba(20, 28, 22, 0.06);
}

.contact-info-card {
    min-height: 104px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #172018;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 65px rgba(20, 28, 22, 0.1);
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    flex: 0 0 auto;
    background: #f0eee6;
    color: #1f3b2d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-info-card small,
.contact-address-card small {
    display: block;
    margin-bottom: 6px;
    color: rgba(23, 32, 24, 0.5);
    font-size: 12px;
    line-height: 1.2;
}

.contact-info-card strong {
    color: #172018;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
}

.contact-address-card {
    padding: 22px;
    display: flex;
    gap: 15px;
}

.contact-address-card p {
    margin: 0;
    color: rgba(23, 32, 24, 0.68);
    font-size: 15px;
    line-height: 1.65;
}

.contact-map-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(23, 32, 24, 0.08);
    box-shadow: 0 18px 60px rgba(20, 28, 22, 0.06);
}

#yesilhisMap {
    width: 100%;
    height: 390px;
    min-height: 390px;
    z-index: 1;
}

.map-actions {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 402;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.map-actions a {
    height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    background: #172018;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(20, 28, 22, 0.22);
}

.leaflet-popup-content-wrapper {
    border-radius: 18px;
}

.leaflet-popup-content {
    margin: 14px 16px;
    color: #172018;
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

.leaflet-popup-content strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}