/* Tiny Village - KÖMÜRKÖY STABLE LUXURY DESIGN */
:root {
    --primary: #b08e58;
    --primary-dark: #8e7347;
    --secondary: #728996;
    --tertiary: #55514f;
    --luxury-black: #121212;
    --text-main: #222;
    --text-muted: #666;
    --bg-light: #fcfcfc;
    --white: #fff;
    --nav-height: 100px;
    --container-max: 1320px;
    --radius: 12px;
    --shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    --transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Font Scales */
    --font-base: 18px;
    --font-nav: 1rem;
    --font-h1: 7rem;
    --font-h2: 4rem;
    --font-h3: 1.6rem;
}

@media (max-width: 1200px) {
    :root {
        --font-h1: 5rem;
        --font-h2: 3.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --font-h1: 3.2rem;
        --font-h2: 2.2rem;
        --font-base: 17px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-base);
    overflow-x: hidden;
}

body {
    font-family: 'Mulish', sans-serif;
    color: var(--text-main);
    line-height: 1.8;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo-tiny,
.nav-links li a {
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
}

.section {
    padding: 150px 0;
}

@media (max-width: 991px) {
    .section {
        padding: 100px 0;
    }
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--luxury-black);
}

.text-light {
    color: var(--white);
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

/* Navbar - DESKTOP FIRST STABILITY */
.navbar {
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.navbar.scrolled {
    height: 85px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--tertiary);
}

.nav-logo-img {
    height: 60px;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo-img {
    height: 50px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-tiny {
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: var(--primary);
    font-weight: 500;
}

.logo-komurkoy {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--tertiary);
    font-size: var(--font-nav);
    font-weight: 900;
    transition: 0.3s;
}

.nav-links a i {
    display: none;
}

/* Hide icons on desktop */
.nav-links a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
}

/* HIDDEN ON DESKTOP */
.mobile-menu-header,
.mobile-menu-footer {
    display: none;
}

/* ELITE MOBILE MENU - STABILIZED */
@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 7px;
        cursor: pointer;
        z-index: 3100;
    }

    .nav-toggle span {
        width: 35px;
        height: 3px;
        background: var(--tertiary);
        border-radius: 3px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
        transition: left 0.6s var(--transition);
        z-index: 3000;
        gap: 0;
        overflow-y: auto;
        display: flex;
        align-items: flex-start;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 60px 20px 40px;
        background: #fbfbfb;
        border-bottom: 1px solid #eee;
        width: 100%;
        position: relative;
    }

    .menu-logo-img {
        height: 80px;
        margin-bottom: 15px;
    }

    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 20px;
        margin-top: auto;
        background: var(--luxury-black);
        color: var(--white);
        width: 100%;
    }

    .footer-tag {
        font-family: 'Barlow';
        font-weight: 900;
        letter-spacing: 4px;
        color: var(--primary);
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .menu-tel {
        display: flex;
        align-items: center;
        gap: 15px;
        color: var(--white);
        font-size: 1.8rem;
        font-weight: 900;
        text-decoration: none;
    }

    .menu-tel i {
        color: var(--primary);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-links li a {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 25px 40px;
        font-size: 1.3rem;
        color: var(--tertiary);
        width: 100%;
    }

    .nav-links li a i {
        display: block;
        width: 30px;
        font-size: 1.5rem;
        color: var(--primary);
        text-align: center;
    }
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('longoz.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: var(--nav-height);
}

.hero-logo-img {
    height: 140px;
    filter: brightness(0) invert(1);
    margin-bottom: 40px;
}

.hero-tiny {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 18px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.hero-komurkoy {
    font-size: var(--font-h1);
    font-weight: 900;
    letter-spacing: 12px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 50px;
    opacity: 1;
    font-weight: 300;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.h-feature {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 15px 35px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 800;
    font-size: 1rem;
}

.btn-luxury {
    display: inline-block;
    padding: 22px 65px;
    border-radius: 60px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(176, 142, 88, 0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.1rem;
}

.btn-luxury:hover {
    transform: translateY(-8px);
    background: var(--luxury-black);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Common UI */
.section-title {
    font-size: var(--font-h2);
    color: var(--tertiary);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    font-weight: 400;
}

.luxury-tag {
    color: var(--primary);
    letter-spacing: 4px;
    font-weight: 900;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    width: fit-content;
    padding-bottom: 5px;
}

/* Profile - DESKTOP FIRST (Side-by-Side) */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.profile-image-wrapper {
    position: relative;
}

.profile-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 40px 40px 0 var(--primary);
    transition: 0.5s;
    display: block;
}

.profile-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.profile-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 45px;
    border-top: 1px solid #eee;
    padding-top: 45px;
    width: 100%;
}

/* Profile - MOBILE ONLY (Premium Stacked) */
@media (max-width: 991px) {
    .profile-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 60px;
    }

    .profile-image-wrapper {
        width: 320px;
    }

    .profile-img {
        box-shadow: 25px 25px 0 var(--primary);
    }

    .profile-content {
        align-items: center;
    }

    .profile-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .profile-image-wrapper {
        width: 100%;
        max-width: 300px;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 900;
    font-size: 1rem;
}

.stat-item i {
    color: var(--primary);
    font-size: 1.8rem;
}

/* Feature Bullets */
.feature-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.bullet {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 800;
    font-size: 1.1rem;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
}

/* Galleries - STABILIZED MASONRY */
.masonry-gallery {
    columns: 4;
    column-gap: 25px;
    margin-top: 70px;
    width: 100%;
}

.m-item {
    break-inside: avoid;
    margin-bottom: 25px;
    transition: 0.4s;
}

.m-item img {
    width: 100%;
    border-radius: var(--radius);
    cursor: pointer;
    transition: 0.5s var(--transition);
    display: block;
}

.m-item img:hover {
    transform: scale(1.02) translateY(-5px);
    filter: brightness(1.05);
}

@media (max-width: 1200px) {
    .masonry-gallery {
        columns: 3;
    }
}

@media (max-width: 900px) {
    .masonry-gallery {
        columns: 2;
    }
}

@media (max-width: 600px) {
    .masonry-gallery {
        columns: 1;
    }
}

/* Social Icons */
.amenities-icons-grid-restored {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid #eee;
}

.icon-box {
    text-align: center;
    padding: 35px 20px;
    background: #fff;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.icon-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.icon-box i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.icon-box span {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Landmarks */
.landmark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.l-item {
    position: relative;
    height: 380px;
    border-radius: var(--radius);
    overflow: hidden;
}

.l-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.l-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    font-weight: 900;
}

/* FAQ */
.accordion-container {
    max-width: 1000px;
    margin: 80px auto 0;
}

.acc-item {
    border-bottom: 1px solid #eee;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.acc-header {
    padding: 35px 45px;
    cursor: pointer;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--tertiary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.acc-header::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    color: var(--primary);
    transition: 0.4s;
}

.acc-item.active .acc-header::after {
    content: '\f068';
}

.acc-content {
    padding: 0 45px;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s var(--transition);
}

.acc-item.active .acc-content {
    padding: 10px 45px 45px;
    max-height: 600px;
}

/* Contact Mobile Card */
@media (max-width: 768px) {
    .contact-card {
        padding: 60px 25px;
        border-radius: 40px;
    }

    .contact-tel {
        font-size: 2.5rem;
    }
}

/* Widgets */
.widget-wrap {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2500;
}

.btn-top,
.btn-wa {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-top {
    background: #fff;
    color: var(--primary);
    opacity: 0;
    visibility: hidden;
}

.btn-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-wa {
    background: #25d366;
    color: #fff;
    text-decoration: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 4000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.5s var(--transition) forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Tweaks */
.proje-text {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 70px;
}

.am-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
}

.am-image {
    height: 280px;
    overflow: hidden;
}

.am-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.am-item:hover img {
    transform: scale(1.1);
}

.am-content {
    padding: 25px;
    text-align: center;
}

.am-content h4 {
    font-size: 1.2rem;
}