/*==================================================
    ŞİFA KAPLICA EVLERİ
==================================================*/

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

:root{

    --bg:#f3efe7;

    --white:#ffffff;

    --green:#1f4b3d;

    --green-dark:#17382d;

    --gold:#b99663;

    --text:#2d2d2d;

    --gray:#666;

    --border:#e8e3da;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:10px;

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html {
    scroll-behavior: smooth;
    min-height: 100%;
}

body {
    background: var(--bg);
    font-family: "Inter", sans-serif;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

/* =====================================================
   ORTAK SAYFA YAPISI
===================================================== */

.site-shell {
    width: min(1800px, 95vw);
    margin: 20px auto 0;

    min-height: calc(100vh - 20px);

    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
}


/*==========================
 CONTAINER
==========================*/

.home-grid{

    width:100%;
    height:100%;

    display:grid;

    gap:18px;

    grid-template-columns:340px 1fr 1fr 280px;

    grid-template-rows:430px 320px;

    grid-template-areas:
        "apartment hero hero hero"
        "reservation gallery reviews reviews";

}

.apartment{grid-area:apartment;}

.hero{grid-area:hero;}

.reservation{grid-area:reservation;}

.gallery{grid-area:gallery;}

.reviews{grid-area:reviews;}

.about{grid-area:about;}

.thermal{grid-area:thermal;}

.forest{grid-area:forest;}


.map{

    display:none;

}

.card{

    position:relative;

    overflow:hidden;

    background:#fff;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:.35s;

}

.card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.card img{

    width:100%;
    height:100%;
    object-fit:cover;

    filter:brightness(.72);

    transform:scale(1);

    transition:
        filter .45s ease,
        transform .45s ease;

    width:100%;

    height:100%;

    object-fit:cover;

}

.card:hover img{

    filter:brightness(1);

    transform:scale(1.05);

}

.overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.68) 0%,
        rgba(0,0,0,.32) 45%,
        rgba(0,0,0,.10) 100%
    );

    transition:.45s ease;

}

.card:hover .overlay{

    background:linear-gradient(
        to top,
        rgba(0,0,0,.45) 0%,
        rgba(0,0,0,.12) 45%,
        rgba(0,0,0,0) 100%
    );

}

.content{

    position:absolute;

    left:28px;
    right:28px;
    bottom:28px;

    z-index:2;

    color:#fff;

    padding:0;

    border-radius:14px;

    transition:
        background .35s ease,
        backdrop-filter .35s ease,
        padding .35s ease,
        transform .35s ease;

}

.card:hover .content{

    background:rgba(15,35,28,.35);

    backdrop-filter:blur(10px);

    padding:18px 20px;

}

.content h2{

    font-size:30px;

    font-weight:700;

    line-height:1.15;

    margin-bottom:14px;

}

.content p{

    font-family:"Inter",sans-serif;

font-size:15px;

    font-weight:300;

    line-height:1.9;

    letter-spacing:.3px;

    color:rgba(255,255,255,.95);

    text-shadow:0 1px 3px rgba(0,0,0,.25);

}

.content a{

    display:inline-flex;

    margin-top:20px;

    color:#fff;

    font-weight:600;

}

.card:hover .content{

    border-left:4px solid var(--gold);

    padding-left:18px;

}
/*==================================
 APARTMENT
==================================*/

.apartment .content{

    left:28px;

    right:28px;

    bottom:30px;
}

.apartment h2{

    font-size:28px;

    color:#fff;

    margin-bottom:10px;

}

.apartment p{

    font-size:15px;

    line-height:1.7;

    margin-bottom:18px;

}

.apartment a{

    font-size:15px;

    font-weight:600;

}

/*==================================
 HERO
==================================*/

.hero{

    position:relative;

}

.hero img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero .overlay{

    background:linear-gradient(

        rgba(0,0,0,.20),

        rgba(0,0,0,.55)

    );

}

.hero-content{

    position:absolute;

    left:58px;

    top:58px;

    z-index:5;

    max-width:560px;

}

.hero-label{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.22);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:28px;

}

.hero h1{

	color:#fff;

    font-size:56px;

    font-weight:800;

    line-height:1.08;

    margin:18px 0;

}
.hero p{

	color:#fff;

    font-size:18px;

    line-height:1.65;

    max-width:520px;

    margin-bottom:34px;

}

.hero-buttons{

    display:flex;

    gap:16px;

    margin-top:36px;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:58px;

    padding:0 34px;

    border-radius:50px;

    font-weight:600;

    transition: background .3s, transform .3s, box-shadow .3s;

}

.btn.white{

    background:#fff;

    color:#1f4b3d;

}

.btn.white:hover{

    background:#f4efe7;

}

.btn.transparent{

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(8px);

    color:#fff;

}

.btn.transparent:hover{

    background:rgba(255,255,255,.30);

}

/*==================================
 GALLERY
==================================*/

.gallery{

    display:flex;

    flex-direction:column;

    overflow:hidden;

}

.gallery-top{

    position:relative;

    height:180px;

}

.gallery-top img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.gallery-info{

    position:absolute;

    left:30px;

    bottom:30px;

    z-index:5;

    color:#fff;

}

.gallery-info h2{

    font-size:34px;

    color:#fff;

    margin-bottom:8px;

}

.gallery-info p{

     font-size:16px;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    height:135px;

}

.gallery-grid img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.35s;

	transform:none !important;

}

.gallery-grid img{

    transition:filter .3s ease;

}

.gallery:hover .gallery-grid img{

    transform:none !important;

    filter:brightness(.95);

}

}

/*==================================
 REVIEWS
==================================*/

.review-list{
    height:150px;
    overflow-y:auto;
}

/* Chrome */

.review-list::-webkit-scrollbar{

    width:8px;

}

.review-list::-webkit-scrollbar-track{

    background:#ece7df;

    border-radius:20px;

}

.review-list::-webkit-scrollbar-thumb{

    background:#1f4b3d;

    border-radius:20px;

}

.review-list::-webkit-scrollbar-thumb:hover{

    background:#17382d;

}

.reviews{

    background:#fff;

    padding:20px;

    display:flex;
    flex-direction:column;

    overflow:visible !important;

    min-height:0;

}

.reviews .stars{

    color:#c6a76a;

    font-size:18px;

    letter-spacing:3px;

    margin-bottom:14px;

}

.reviews h2{

	font-size:34px;

    line-height:1.15;

    color:#20382f;

    margin-bottom:16px;

}

.reviews > p{

    font-size:17px;

    color:#666;

    line-height:1.7;

    margin-bottom:24px;

}

.review{

    background:#faf8f4;

    border:1px solid #ece7df;

    border-radius:10px;

    padding:5px;

    margin-bottom:4px;

}

.review:first-child{

    border-top:none;

    padding-top:0;

}

.review:first-of-type{

    border-top:none;

    padding-top:0;

}

.review p{

    font-size:15px;

    line-height:1.8;

    color:#505050;

    font-style:italic;

    margin-bottom:5px;

}

.review strong{

    color:#1f4b3d;

    font-size:10px;

    font-weight:700;

}

.reviews-header{

    margin-bottom:5px;

}

.reviews-header h2{

    font-size:20px;

    color:#1f4b3d;

    line-height:1.15;

    margin-bottom:0px;

}

.reviews-header p{

    color:#6f6f6f;

    font-size:15px;

    line-height:1.7;

}

.review strong::before{

    content:"●";

    color:#2f8f5b;

    margin-right:8px;

    font-size:10px;

    vertical-align:middle;

}
/*==================================
 RESERVATION
==================================*/

.reservation .content{
    left:28px;
    right:28px;
    bottom:30px;
}

.reservation h2{

    font-size:28px;

    color:#fff;

    margin-bottom:12px;

}

.reservation p{

    font-size:15px;

    line-height:1.7;

}

.reservation a{

    margin-top:18px;

}

.google-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    margin-top:auto;

    flex-shrink:0;

    padding:14px 24px;

    background:var(--green);

    color:#fff;

    border-radius:8px;

    font-weight:600;

    transition:.30s;

}

.google-btn:hover{

    background:#17382d;

    transform:translateY(-2px);

}

/* =======================================================
   FOOTER
======================================================= */

.footer {
    background: #f8f4ec;
    border-top: 1px solid rgba(0,0,0,.08);
    padding: 8px 50px 6px;
    margin-top: auto;

    flex-shrink: 0;
}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr 1fr;

    align-items:center;

    gap:16px;

}

.footer-logo{

    display:flex;

    align-items:center;

    justify-content:center;

    height:80px;

    overflow:visible;

}

.footer-logo img{

    display:block;

    width:155px;

    height:auto;

    max-width:none;
    max-height:none;

    transform:scale(0.8);

    transform-origin:center;

}

.footer-item{

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.footer-item i{
    color:#1f5a46;
    transition:color .25s ease, transform .25s ease;
}

.footer-item:hover i{
    color:#b7953b;
    transform:translateY(-2px);
}

.footer-item span{
    font-size:24px;
    line-height:1;

    color:#1f5a46;
}

.footer-item > span{
    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(31,90,70,.08);
    border:1px solid rgba(31,90,70,.12);

    font-size:17px;
    flex-shrink:0;

    transition:.25s;
}

.footer-item:hover > span{
    background:rgba(183,149,59,.10);
    border-color:rgba(183,149,59,.25);
}

.footer-item > span,
.footer-item > span i,
.footer-item i{
    color:#1f5a46 !important;
}

.footer-item:hover > span,
.footer-item:hover > span i,
.footer-item:hover i{
    color:#b7953b !important;
}

.footer-item small{
    display:block;
    color:#777;
    font-size:13px;
    margin-bottom:4px;
}

.footer-item strong{
    font-size:16px;
    color:#1f5a46;
    font-weight:700;
}

.footer-bottom{
    margin-top:10px;
    padding-top:8px;

    border-top:1px solid rgba(31,90,70,.14);

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;

    gap:10px;

    font-size:13px;
    color:#666;
}

.gallery-link{

    display:flex;

    flex-direction:column;

    width:100%;

    height:100%;

    color:inherit;

    text-decoration:none;

}

.gallery{

    cursor:pointer;

}

.gallery:hover .gallery-top img{

    transform:scale(1.03);

}

.section-title{

    display:flex;

    align-items:center;

    gap:14px;

}

.section-title i{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#1f4b3d;

    color:#fff;

    border-radius:50%;

    font-size:14px;

    flex-shrink:0;

    transition:.3s ease;

}

.card:hover .section-title i{

    background:#17382d;

    transform:rotate(-8deg);

}

.content,
.gallery-info{

    transition:
        background .35s ease,
        backdrop-filter .35s ease,
        padding .35s ease;

    border-radius:14px;

}

.card:hover .content,
.gallery:hover .gallery-info{

    background:rgba(15,35,28,.35);

    backdrop-filter:blur(10px);

    padding:18px 20px;

    border-left:4px solid var(--gold);

}

.hero-menu{

    position:absolute;

    left:58px;

    top:58px;

    z-index:6;

    display:flex;

    flex-direction:column;

    gap:14px;

}

.hero-menu a{

    display:flex;
    align-items:center;
    gap:12px;

        width:100%;

    padding:14px 18px;

    padding:14px 18px;

    border-left:6px solid var(--gold);

    background:rgba(255,255,255,.14);
    backdrop-filter:blur(12px);

    border-top:1px solid rgba(255,255,255,.18);
    border-right:1px solid rgba(255,255,255,.18);
    border-bottom:1px solid rgba(255,255,255,.18);

    border-radius:14px;

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.hero-menu a:hover{

    border-left-color:#d8b57a;

    background:rgba(255,255,255,.24);

    transform:translateX(8px);

}

.hero-menu{

    position:absolute;

    top:55px;

    right:55px;

    left:auto;

    z-index:10;

    display:flex;

    flex-direction:column;

    gap:14px;

    width:320px;

}

.hero-menu a:hover{

    background:rgba(255,255,255,.24);

    transform:translateX(8px);

}

.hero-menu-title{

    color:#fff;

    font-size:13px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    opacity:.9;

    margin-bottom:4px;

    padding-left:6px;

}

.review-list{
    height:150px !important;
    overflow-y:auto !important;
}

::view-transition-old(root){
    animation: fadeOut .35s ease both;
}

::view-transition-new(root){
    animation: fadeIn .45s ease both;
}

@keyframes fadeOut{

    from{
        opacity:1;
        transform:scale(1);
        filter:blur(0);
    }

    to{
        opacity:0;
        transform:scale(1.03);
        filter:blur(8px);
    }

}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:scale(.97);
        filter:blur(8px);
    }

    to{
        opacity:1;
        transform:scale(1);
        filter:blur(0);
    }

}

html{
    opacity:1;
    transition:
        opacity .35s ease,
        transform .35s ease,
        filter .35s ease;
}

html.page-leaving{

    opacity:0;

    transform:scale(.98);

    filter:blur(6px);

}

.reservation-link{
    display:inline-flex;
    align-items:center;
    gap:7px;

    color:#fff;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
	line-height:1;
}

.reservation-link i{
    font-size:14px;
    line-height:1;
}

/* Sadece hover sırasında hareket */
.reservation-link:hover i{
    animation:reservationArrow .65s ease-in-out infinite;
}

@keyframes reservationArrow{

    0%, 100%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(5px);
    }

}

.footer-whatsapp{
    color:inherit;
    text-decoration:none;
}

.footer-whatsapp strong{
    transition:.2s ease;
}

.footer-whatsapp:hover strong{
    color:#2f6b4f;
}

.gallery-link{
    display:block;
    width:100%;
    height:100%;
}

.gallery-top{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
}

.gallery-top img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.gallery-button{
    display:inline-block;
    margin-top:18px;

    color:#fff;
    font-size:14px;
    font-weight:700;

    transition:transform .3s ease;
}

.gallery-link:hover .gallery-button{
    transform:translateX(6px);
}

.gallery-button i{
    margin-left:5px;
    font-size:12px;
    transition:transform .3s ease;
}

.gallery-link:hover .gallery-button i{
    transform:translateX(4px);
}

.full-card-link{
    position:relative;

    display:block;

    width:100%;
    height:100%;

    color:inherit;
    text-decoration:none;

    overflow:hidden;

    cursor:pointer;
}

.full-card-link > img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* =======================================================
   DAİRELER + GALERİ OK ANİMASYONU
======================================================= */

.card-action,
.gallery-button{
    display:inline-flex;
    align-items:center;
    gap:7px;
}


/* İkon boyutları */

.card-action > i,
.gallery-button > i{
    font-size:14px;
    line-height:1;
}


/* DAİRELER - sadece hover sırasında */

.apartment:hover .card-action > i{
    animation:reservationArrow .65s ease-in-out infinite;
}


/* GALERİ - sadece hover sırasında */

.gallery:hover .gallery-button > i{
    animation:reservationArrow .65s ease-in-out infinite;
}

/* =========================================================
   GERİ DÖN BUTONU - ORTAK
========================================================= */

.back-button{
	letter-spacing: 0.7px;
    display:inline-flex;
    align-items:center;
    gap:8px;

    align-self:flex-start;

    height:24px;
    margin:0 0 5px 0;
    padding:0;

    color:var(--green);

    font-size:14px;
    font-weight:600;
    line-height:24px;

    text-decoration:none;
    flex-shrink:0;

    transition:.25s ease;
}

.back-button i{
    width:12px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    font-size:12px;
    line-height:1;

    transition:.25s ease;
}

.back-button:hover{
    color:var(--gold);
}

.back-button:hover i{
    transform:translateX(-4px);
}

/* =========================================================
   MOBİL - ANA SAYFA
========================================================= */

@media (max-width: 768px) {
	
	/* Hero butonlarını mobilde gizle */
.hero-buttons {
    display: none;
}

.hero {
    height: 460px;
}

.hero-content {
    left: 20px;
    right: 20px;
    top: 24px;
}

.hero h1 {
    font-size: 34px;
    line-height: 1.05;
    margin: 14px 0 10px;
}

.hero p {
    font-size: 13px;
    line-height: 1.55;
    max-width: 280px;
}

.hero-menu {
    left: 20px;
    right: 20px;
    bottom: 18px;
    width: auto;
    gap: 6px;
}

.hero-menu-title {
    display: none;
}

.hero-menu a {
    padding: 8px 12px;
    min-height: 38px;
    font-size: 12px;
}

    /* -----------------------------------------------------
       GENEL
    ----------------------------------------------------- */

    body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
    overflow-x: hidden;
    }

.site-shell {
    width: min(1800px, 95vw);
    margin: 12px auto 0;

    height: auto;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
}

    /* -----------------------------------------------------
       ANA GRID
    ----------------------------------------------------- */

    .home-grid {
        width: 100%;
        height: auto;

        display: grid;

        grid-template-columns: 1fr;
        grid-template-rows: auto;

        grid-template-areas:
            "hero"
            "apartment"
            "reservation"
            "gallery"
            "reviews";

        gap: 12px;
    }


    /* -----------------------------------------------------
       KARTLAR
    ----------------------------------------------------- */

    .card {
        width: 100%;
        border-radius: 12px;
    }

    /* Mobilde masaüstü hover hareketlerini kapat */
    .card:hover {
        transform: none;
    }

    .card:hover img {
        transform: none;
    }

    .card:hover .content,
    .gallery:hover .gallery-info {
        padding: 0;
        border-left: 0;
        background: transparent;
        backdrop-filter: none;
    }


    /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

    .hero {
        height: 500px;
    }

    .hero-content {
        left: 22px;
        right: 22px;
        top: 28px;

        max-width: none;
    }

    .hero-label {
        padding: 7px 14px;

        font-size: 10px;
        letter-spacing: 2px;

        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.08;

        margin: 12px 0;
    }

    .hero p {
        max-width: 100%;

        font-size: 14px;
        line-height: 1.6;

        margin-bottom: 0;
    }


    /* -----------------------------------------------------
       HERO KEŞFEDİN MENÜSÜ
    ----------------------------------------------------- */

    .hero-menu {
        left: 22px;
        right: 22px;
        top: auto;
        bottom: 22px;

        width: auto;

        gap: 7px;
    }

    .hero-menu-title {
        font-size: 10px;
        letter-spacing: 3px;

        margin-bottom: 2px;
    }

    .hero-menu a {
        width: 100%;

        padding: 9px 12px;

        border-left-width: 4px;
        border-radius: 9px;

        font-size: 13px;
    }

    .hero-menu a:hover {
        transform: none;
    }


    /* -----------------------------------------------------
       DAİRELER
    ----------------------------------------------------- */

    .apartment {
        height: 320px;
    }

    .apartment .content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .apartment h2 {
        font-size: 25px;
    }

    .apartment p {
        font-size: 14px;
        margin-bottom: 14px;
    }


    /* -----------------------------------------------------
       REZERVASYON
    ----------------------------------------------------- */

    .reservation {
        height: 300px;
    }

    .reservation .content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .reservation h2 {
        font-size: 25px;
    }

    .reservation p {
        font-size: 14px;
    }


    /* -----------------------------------------------------
       GALERİ
    ----------------------------------------------------- */

    .gallery {
        height: 300px;
    }

    .gallery-link,
    .gallery-top {
        height: 100%;
    }

    .gallery-info {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .gallery-info h2 {
        font-size: 25px;
    }

    .gallery-info p {
        font-size: 14px;
    }


    /* -----------------------------------------------------
       ORTAK BAŞLIK İKONLARI
    ----------------------------------------------------- */

    .section-title {
        gap: 10px;
    }

    .section-title i {
        width: 36px;
        height: 36px;

        font-size: 13px;
    }


    /* -----------------------------------------------------
       YORUMLAR
    ----------------------------------------------------- */

    .reviews {
        min-height: 330px;
        padding: 18px;
    }

    .reviews-header h2 {
        font-size: 19px;
    }

    .reviews-header p {
        font-size: 13px;
        line-height: 1.5;
    }

    .review-list {
        height: 170px !important;
    }

    .review p {
        font-size: 13px;
        line-height: 1.55;
    }

    .google-btn {
        padding: 11px 12px;

        font-size: 13px;
    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

 .footer {
    flex-shrink: 0;
    margin-top: 12px;
    padding: 18px 18px 12px;
}

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 20px 12px;
    }

    .footer-logo {
        grid-column: 1 / -1;
        height: 75px;
    }

    .footer-item {
        gap: 8px;
    }

    .footer-item > span {
        width: 34px;
        height: 34px;

        font-size: 14px;
    }

    .footer-item small {
        font-size: 11px;
    }

    .footer-item strong {
        font-size: 13px;
    }

    .footer-bottom {
        margin-top: 16px;
        padding-top: 10px;

        justify-content: center;
        text-align: center;

        font-size: 11px;
    }

}

.footer-phone-item {
    transform: translateX(-18px);
}

.footer-phone-item > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-phone-numbers {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    margin-top: 2px;
}

.footer-phone {
    color: #1f5a46;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-phone:hover {
    opacity: 0.7;
}

.footer-phone-separator {
    font-size: 11px;
    opacity: 0.45;
}

/* =========================================================
   FOOTER ALT SATIR
========================================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    white-space: nowrap;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-legal-links a {
    color: inherit;

    font-size: 11px;
    font-weight: 500;

    text-decoration: none;

    opacity: .72;

    transition: opacity .2s ease;
}

.footer-legal-links a:hover {
    opacity: 1;
}

.footer-legal-links > span {
    font-size: 7px;
    opacity: .35;
}

.footer-copyright-text,
.footer-location,
.footer-rights {
    font-size: 11px;
}


/* MOBİL */

@media (max-width: 900px) {

    .footer-bottom {
        white-space: normal;

        flex-wrap: wrap;
        justify-content: center;

        gap: 8px 15px;

        text-align: center;
    }

    .footer-legal-links {
        width: 100%;

        flex-wrap: wrap;
    }

}

/* =========================================================
   FOOTER YASAL BUTONLAR
========================================================= */

.footer-legal-button {
    padding: 0;
    margin: 0;

    border: 0;
    outline: 0;

    background: transparent;
    color: inherit;

    font: inherit;
    font-size: 11px;
    font-weight: 500;

    cursor: pointer;

    opacity: .72;

    transition: opacity .2s ease;
}

.footer-legal-button:hover {
    opacity: 1;
}


/* =========================================================
   YASAL METİNLER MODAL
========================================================= */

.legal-modal {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    visibility: hidden;
    opacity: 0;

    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}


/* MODAL AÇIK */

.legal-modal.active {
    visibility: visible;
    opacity: 1;

    pointer-events: auto;
}


/* ARKA PLAN */

.legal-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(10, 32, 27, .72);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


/* MODAL KUTUSU */

.legal-modal-dialog {
    position: relative;
    z-index: 2;

    width: min(820px, 100%);
    max-height: 82vh;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border-radius: 20px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .25);

    transform: translateY(15px) scale(.98);

    transition: transform .25s ease;
}

.legal-modal.active .legal-modal-dialog {
    transform: translateY(0) scale(1);
}


/* =========================================================
   MODAL HEADER
========================================================= */

.legal-modal-header {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 25px 30px 22px;

    border-bottom: 1px solid #e5ebe7;
}

.legal-modal-header > div > span {
    display: block;

    margin-bottom: 5px;

    color: #b78343;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.legal-modal-header h2 {
    margin: 0;

    color: #155447;

    font-size: 24px;
    font-weight: 800;
}


/* KAPAT */

.legal-modal-close {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #edf3ef;
    color: #155447;

    font-size: 16px;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.legal-modal-close:hover {
    background: #dfeae4;

    transform: rotate(8deg);
}


/* =========================================================
   MODAL İÇERİK
========================================================= */

.legal-modal-content {
    flex: 1;

    min-height: 0;

    overflow-y: auto;

    padding: 28px 30px 32px;

    color: #66716d;

    font-size: 13px;
    line-height: 1.75;
}


/* PANELLER */

.legal-modal-panel {
    display: none;
}

.legal-modal-panel.active {
    display: block;
}


/* METİN */

.legal-text p {
    margin: 0 0 14px;
}

.legal-text h3 {
    margin: 27px 0 8px;

    color: #155447;

    font-size: 16px;
    font-weight: 800;
}

.legal-text h3:first-child {
    margin-top: 0;
}

.legal-text ul {
    margin: 8px 0 18px;
    padding-left: 16px;
}

.legal-text li {
    margin-bottom: 6px;
}


/* İLETİŞİM KUTUSU */

.legal-contact-box {
    display: flex;
    flex-direction: column;

    gap: 5px;

    margin-top: 22px;
    padding: 18px 20px;

    background: #f3f6f2;

    border-radius: 12px;
}

.legal-contact-box strong {
    color: #155447;
}

.legal-contact-box a {
    color: #155447;

    font-weight: 700;

    text-decoration: none;
}


/* MODAL AÇIKKEN SAYFA SCROLL KAPALI */

body.legal-modal-open {
    overflow: hidden;
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 600px) {

    .legal-modal {
        padding: 12px;
    }

    .legal-modal-dialog {
        max-height: 90vh;

        border-radius: 16px;
    }

    .legal-modal-header {
        padding: 20px;
    }

    .legal-modal-header h2 {
        font-size: 20px;
    }

    .legal-modal-content {
        padding: 22px 20px 25px;

        font-size: 12px;
    }

}

/* =========================================================
   FLOATING HOME
========================================================= */

.floating-home {
    position: fixed;

    right: 28px;
    bottom: 28px;

    z-index: 9000;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 50%;

    background: #175847;
    color: #fff;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(18, 70, 58, .22);

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    transition:
        width .25s ease,
        border-radius .25s ease,
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease,
        background .2s ease;
}


/* SCROLL SONRASI GÖSTER */

.floating-home.visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* İKON */

.floating-home i {
    flex: 0 0 auto;

    font-size: 15px;
}


/* YAZI */

.floating-home span {
    max-width: 0;

    margin-left: 0;

    overflow: hidden;

    white-space: nowrap;

    opacity: 0;

    font-size: 11px;
    font-weight: 700;

    transition:
        max-width .25s ease,
        margin-left .25s ease,
        opacity .2s ease;
}


/* HOVER */

@media (hover: hover) {

    .floating-home:hover {
        width: 120px;

        padding: 0 17px;

        border-radius: 24px;

        background: #124c3e;
    }

    .floating-home:hover span {
        max-width: 70px;

        margin-left: 8px;

        opacity: 1;
    }

}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 700px) {

    .floating-home {
        right: 16px;
        bottom: 16px;

        width: 44px;
        height: 44px;
    }

    .floating-home span {
        display: none;
    }

}

.footer-location-link {
    color: inherit;
    text-decoration: none;
}

.footer-location-link strong {
    transition: opacity .2s ease;
}

.footer-location-link:hover strong {
    opacity: .7;
}

/* =========================================================
   FOOTER SOSYAL MEDYA
========================================================= */

/* Footer sosyal medya linkleri */

.footer-social {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.footer-social a {
    color: inherit;
    font: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.footer-social a:hover {
    opacity: .7;
}



/* =========================================================
   FOOTER BOTTOM - MOBİL
========================================================= */

@media (max-width: 900px) {

    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: center;

        gap: 8px;

        text-align: center;
    }

    .footer-copyright-text,
    .footer-rights {
        justify-self: center;
    }

    .footer-legal-links {
        justify-self: center;
        flex-wrap: wrap;
        white-space: normal;
    }
}

/* =========================================================
   FOOTER SON DÜZEN
========================================================= */

.footer {
    overflow: hidden;
}

/* Alt bölüm */

.footer-bottom {
    width: 100%;
    box-sizing: border-box;

    margin-top: 8px;
    padding: 8px 0 4px;

    border-top: 1px solid rgba(31, 90, 70, .14);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    font-size: 11px;
    line-height: 1.4;
    color: #666;
}

/* Sol */

.footer-copyright-text {
    flex: 1;
    text-align: left;
    white-space: nowrap;
}

/* Orta */

.footer-legal-links {
    flex: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    white-space: nowrap;
}

.footer-legal-button {
    padding: 0;
    margin: 0;

    border: 0;
    background: transparent;

    color: inherit;

    font-family: inherit;
    font-size: 11px;
    font-weight: 500;

    cursor: pointer;

    opacity: .75;
}

.footer-legal-button:hover {
    opacity: 1;
}

.footer-legal-links > span {
    font-size: 7px;
    opacity: .4;
}

/* Sağ */

.footer-rights {
    flex: 1;

    text-align: right;
    white-space: nowrap;
}


/* =========================================================
   SOSYAL MEDYA
========================================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 5px;

    white-space: nowrap;
}

.footer-social a {
    color: inherit;
    font: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.footer-social a:hover {
    opacity: .7;
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 900px) {

    .footer-bottom {
        flex-direction: column;
        justify-content: center;

        gap: 7px;

        text-align: center;
    }

    .footer-copyright-text,
    .footer-rights {
        flex: none;
        width: 100%;

        text-align: center;
    }

    .footer-legal-links {
        flex: none;

        width: 100%;

        flex-wrap: wrap;
        justify-content: center;

        white-space: normal;
    }
	
	/* -----------------------------------------------------
   MOBİL HERO - ORTALAMA
----------------------------------------------------- */

.hero-content {
    left: 20px;
    right: 20px;
    text-align: center;
}

.hero-label {
    display: inline-block;
}

.hero h1 {
    text-align: center;
}

.hero p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-menu {
    align-items: center;
}

.hero-menu a {
    justify-content: center;
    text-align: center;
}
}

/* =========================================================
   MOBILE FOOTER - FINAL
========================================================= */

@media (max-width: 768px) {

    .footer {
        margin-top: 12px;
        padding: 22px 16px 16px;
    }

    /* ÜST ALAN */

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}

    /* LOGO */

    .footer-logo {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        padding-bottom: 16px;
        margin-bottom: 2px;
        border-bottom: 1px solid rgba(15, 76, 58, 0.12);
    }

    .footer-logo img {
        width: 125px;
        height: auto;
        display: block;
    }

    /* TELEFON */



.footer-item {
    width: 100%;
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 11px 12px;

    border-radius: 12px;
    background: rgba(255, 255, 255, 0.42);
}

.footer-item > span {
    width: 34px;
    height: 34px;
    min-width: 34px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-item > div {
    min-width: 0;
    flex: 1;
}

.footer-item small {
    display: block;
    margin-bottom: 3px;
    font-size: 11px;
}

.footer-item strong,
.footer-item a {
    font-size: 13px;
    line-height: 1.35;
}

    /* TELEFONLAR TEK SATIR */

    .footer-phone-numbers {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 5px 8px;
    }

    .footer-phone {
        white-space: nowrap;
    }

    /* WHATSAPP */

    .footer-whatsapp {
        display: inline-block;
    }

    /* SOSYAL MEDYA */

    .footer-social {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 4px 6px;
    }

    /* ALT ALAN */

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        width: 100%;
        margin-top: 18px;
        padding-top: 14px;

        gap: 10px;

        text-align: center;

        border-top: 1px solid rgba(15, 76, 58, 0.12);
    }

    .footer-copyright-text {
        font-size: 10px;
        line-height: 1.4;
    }

    /* YASAL LİNKLER */

    .footer-legal-links {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;

        width: 100%;
        gap: 6px 8px;

        line-height: 1.5;
    }

    .footer-legal-button {
        font-size: 10px;
        padding: 2px 0;
    }

    .footer-legal-links > span {
        font-size: 8px;
        opacity: 0.45;
    }

    .footer-rights {
        width: 100%;
        text-align: center;
        font-size: 10px;
    }
}

/* MOBİL FOOTER İLETİŞİM ALANLARINI ORTALA */

@media (max-width: 768px) {

    .footer-item {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 7px;
    }

    .footer-item > div {
        width: 100%;
        text-align: center;
    }

    .footer-item small {
        text-align: center;
    }

    .footer-phone-numbers {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-location-link,
    .footer-whatsapp {
        display: inline-block;
        text-align: center;
    }
}

/* =========================================================
   MOBİL FOOTER - TELEFON KESİN DÜZELTME
========================================================= */

@media (max-width: 768px) {

    .footer-phone-item {
        transform: none;
    }

    .footer-phone-item > div {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer-phone-numbers {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 7px;
        margin-top: 2px;
        white-space: nowrap;
    }

    .footer-phone {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 13px;
    }

    .footer-phone-separator {
        flex: 0 0 auto;
        font-size: 9px;
    }
}