/* =========================================
   GENEL
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


/* =========================================
   TASARIM DEĞİŞKENLERİ (DESIGN TOKENS)
   Tüm yatay hizalama tek bir sütunda toplanır:
   içerik --content-max ile ortalanır, kenar boşluğu
   --gutter ile belirlenir. Böylece header, footer
   ve tüm bölümler her ekran genişliğinde aynı
   sol/sağ hizaya sahip olur.
========================================= */

:root {
    --content-max: 1400px;

    /* Tam genişlikli bölümler için ortalı sütun:
       geniş ekranlarda içerik 1400px ortalanır,
       dar ekranlarda 60px (ve altında tanımlı)
       kenar boşluğuna düşer. */
    --gutter: max(60px, calc((100% - var(--content-max)) / 2));

    /* Dikey boşluk ölçeği (tekrarlayan ritim) */
    --space-section: 110px;
    --space-section-sm: 90px;
    --space-block: 48px;

    /* Renkler */
    --color-bg: #111111;
    --color-bg-soft: #181818;
    --color-line: rgba(255, 255, 255, 0.12);
    --color-text: #ffffff;
    --color-muted: #888888;

    /* Elit altın vurgu */
    --accent: #c9a24a;
    --accent-light: #e0b964;
}


@media (max-width: 900px) {
    :root {
        --gutter: 35px;
        --space-section: 90px;
        --space-section-sm: 70px;
    }
}


@media (max-width: 600px) {
    :root {
        --gutter: 22px;
        --space-section: 74px;
        --space-section-sm: 54px;
    }
}

body {
    margin: 0;
    background-color: #111111;
    color: white;
    font-family: Arial, sans-serif;
}

img {
    max-width: 100%;
}


/* =========================================
   ÜST MENÜ
========================================= */

.navbar {
    width: 100%;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 var(--gutter);

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    background-color: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(8px);
}

.logo {
    display: flex;
    align-items: center;

    width: 150px;
    height: auto;

    text-decoration: none;
}

.logo img {
    display: block;

    width: 150px;
    height: auto;

    object-fit: contain;
}

.menu {
    display: flex;
    gap: 35px;
}

.menu a {
    color: white;
    text-decoration: none;

    font-size: 12px;
    letter-spacing: 1.5px;

    transition: 0.3s;
}

.menu a:hover {
    opacity: 1;

    color: var(--accent);
}


/* =========================================
   ANA GİRİŞ
========================================= */

.hero {
    width: 100%;
    height: 100vh;

    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;

    top: 0;
    left: 0;

    z-index: 0;
}

.hero-overlay {
    position: absolute;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;

    background: rgba(0, 0, 0, 0.38);

    z-index: 1;
}


/* =========================================
   HERO YAZILARI
========================================= */

.hero-content {
    position: absolute;

    z-index: 2;

    left: var(--gutter);
    bottom: 25%;

    max-width: 700px;

    text-align: left;
}

.hero-small {
    font-size: 14px;
    letter-spacing: 5px;

    margin-bottom: 20px;

    color: var(--accent);

    opacity: 1;

    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.95),
        0 4px 16px rgba(0, 0, 0, 0.85),
        0 0 42px rgba(0, 0, 0, 0.55);
}

.hero h1 {
    font-size: clamp(50px, 6vw, 90px);

    line-height: 0.95;
    letter-spacing: 3px;

    margin: 0 0 25px;

    font-weight: 500;
}

.hero h1 .hero-accent {
    color: var(--accent);
}

.hero-text {
    font-size: 15px;

    line-height: 1.7;

    color: #eeeeee;

    max-width: 520px;

    margin: 0 0 30px;
}


/* =========================================
   HERO BUTONU
========================================= */

.hero-button {
    display: inline-block;

    padding: 15px 30px;

    border: 1px solid var(--accent);

    color: white;

    text-decoration: none;

    font-size: 11px;

    letter-spacing: 2px;

    transition: 0.3s;
}

.hero-button:hover {
    background-color: var(--accent);

    border-color: var(--accent);

    color: #111111;
}


/* =========================================
   SCROLL
========================================= */

.scroll-indicator {
    position: absolute;

    right: 50px;
    bottom: 35px;

    z-index: 2;

    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 9px;

    letter-spacing: 3px;

    opacity: 0.7;

    writing-mode: vertical-rl;
}

.scroll-indicator span {
    width: 1px;
    height: 45px;

    background-color: white;

    display: block;
}


/* =========================================
   PROJELER
========================================= */

.projects-section {
    background-color: #f4f3f0;

    color: #111111;

    padding: 72px var(--gutter) var(--space-section);
}

.section-header {
    max-width: 750px;

    margin-bottom: 70px;
}

.section-small {
    font-size: 10px;

    letter-spacing: 4px;

    margin-bottom: 20px;

    color: var(--accent);

    opacity: 1;
}

.section-header h2 {
    font-size: clamp(40px, 5vw, 70px);

    line-height: 1;

    font-weight: 400;

    letter-spacing: 2px;

    margin: 0 0 25px;
}

.section-description {
    max-width: 500px;

    font-size: 15px;

    line-height: 1.7;

    color: #555555;
}


/* =========================================
   PROJE GRID
========================================= */

.projects-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 70px 35px;

    align-items: stretch;
}


/* =========================================
   PROJE KARTI
========================================= */

.project-card {
    display: flex;

    flex-direction: column;

    overflow: hidden;
}

.project-image {
    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center top;

    display: block;
}


/* =========================================
   PROJE BİLGİSİ
========================================= */

.project-info {
    padding-top: 25px;
}

.project-info p {
    font-size: 9px;

    letter-spacing: 3px;

    color: #777777;

    margin: 0 0 12px;
}

.project-info h3 {
    font-size: 24px;

    font-weight: 400;

    letter-spacing: 1px;

    margin: 0 0 18px;
}

.project-info a {
    color: #111111;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 2px;

    border-bottom: 1px solid var(--accent);

    padding-bottom: 5px;

    transition: 0.3s;
}

.project-info a:hover {
    opacity: 1;

    color: var(--accent);
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    width: 100%;

    background-color: #111111;

    color: #ffffff;

    padding: 60px var(--gutter) 28px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    position: relative;

    z-index: 10;
}


/* =========================================
   FOOTER ÜST
========================================= */

.footer-top {
    max-width: var(--content-max);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.6fr 1fr 1fr 1fr;

    gap: 52px;

    padding-bottom: 52px;
}


/* =========================================
   FOOTER MARKA
========================================= */

.footer-brand {
    max-width: 300px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* =========================================
   FOOTER LOGO
========================================= */

.footer-logo {
    width: 190px;
    height: auto;

    margin: 0 0 18px 0;

    display: block;

    line-height: 0;
}

.footer-logo img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 190px;

    object-fit: contain;

    opacity: 1;
}


/* =========================================
   FOOTER AÇIKLAMA
========================================= */

.footer-brand p {
    color: #999999;

    font-size: 15px;

    line-height: 1.7;

    max-width: 320px;

    margin: 0;
}


/* =========================================
   FOOTER SÜTUNLARI
========================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-column h3 {
    font-size: 11px;

    letter-spacing: 2.5px;

    font-weight: 600;

    color: var(--accent);

    margin: 0 0 16px;
}

.footer-column a,
.footer-column p {
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    line-height: 1.7;

    margin: 0 0 10px;

    transition: 0.3s;
}

.footer-column a:hover {
    opacity: 0.5;

    transform: translateX(4px);
}

.footer-column p {
    color: #aaaaaa;
}


/* =========================================
   FOOTER ALT
========================================= */

.footer-bottom {
    max-width: 1400px;

    margin: 0 auto;

    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.footer-bottom p {
    margin: 0;

    color: #666666;

    font-size: 10px;

    letter-spacing: 1.5px;
}


/* =========================================
   PROJE DETAY SAYFASI
========================================= */

.project-hero {
    width: 100%;
    height: 100vh;

    position: relative;
    overflow: hidden;

    background: #111;
}

.project-hero > img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}

.project-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.75),
            rgba(0,0,0,0.05) 65%
        );
}

.project-hero-content {
    position: absolute;

    left: var(--gutter);
    bottom: 12%;

    z-index: 2;

    color: white;
}

.project-hero-content p {
    font-size: 10px;

    letter-spacing: 5px;

    margin: 0 0 20px;

    color: var(--accent);

    opacity: 1;
}

.project-hero-content h1 {
    font-size: clamp(55px, 8vw, 110px);

    line-height: 0.9;

    letter-spacing: 3px;

    font-weight: 400;

    margin: 0 0 25px;
}

.project-hero-content span {
    font-size: 10px;

    letter-spacing: 4px;

    opacity: 0.8;
}


/* =========================================
   PROJE TANITIM
========================================= */

.project-intro {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    padding: var(--space-section) var(--gutter);

    background: #f4f3f0;

    color: #111;
}

.project-intro-title h2 {
    font-size: clamp(40px, 5vw, 70px);

    line-height: 1;

    font-weight: 400;

    letter-spacing: -1px;

    margin: 0;
}

.project-description {
    max-width: 550px;

    padding-top: 50px;
}

.project-description p {
    font-size: 16px;

    line-height: 1.8;

    color: #555;

    margin-bottom: 25px;
}


/* =========================================
   PROJE BİLGİLERİ
========================================= */

.project-details {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: #111;

    color: white;

    padding: var(--space-block) var(--gutter);
}

.detail-item {
    border-left: 1px solid #444;

    padding-left: 25px;
}

.detail-item span {
    display: block;

    font-size: 9px;

    letter-spacing: 3px;

    color: #888;

    margin-bottom: 15px;
}

.detail-item strong {
    font-size: 13px;

    font-weight: 400;

    letter-spacing: 1px;
}


/* =========================================
   GALERİ
========================================= */

.vera-gallery {
    background: #f4f3f0;

    color: #111;

    padding: var(--space-section-sm) var(--gutter);
}

.gallery-header {
    max-width: 700px;

    margin-bottom: 70px;
}

.gallery-header h2 {
    font-size: clamp(45px, 6vw, 80px);

    font-weight: 400;

    line-height: 0.95;

    margin: 0;
}


/* =========================================
   SEKME BUTONLARI
========================================= */

.gallery-tabs {
    display: flex;

    gap: 0;

    border-bottom: 1px solid #ccc;

    margin-bottom: 70px;

    overflow-x: auto;
}

.tab-button {
    background: transparent;

    border: none;

    padding: 18px 25px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    color: #777;

    cursor: pointer;

    position: relative;

    white-space: nowrap;

    transition: 0.3s;
}

.tab-button:hover {
    color: #111;
}

.tab-button.active {
    color: #111;
}

.tab-button.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 100%;
    height: 2px;

    background: var(--accent);
}


/* =========================================
   TAB İÇERİKLERİ
========================================= */

.tab-content {
    display: none !important;
}

.tab-content.active {
    display: block !important;

    animation: tabFade 0.5s ease;
}

@keyframes tabFade {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   GALERİ BAŞLIĞI
========================================= */

.gallery-title {
    display: flex;

    align-items: baseline;

    gap: 20px;

    margin-bottom: 40px;
}

.gallery-title span {
    font-size: 10px;

    letter-spacing: 2px;

    color: var(--accent);
}

.gallery-title h3 {
    font-size: 25px;

    font-weight: 400;

    margin: 0;
}


/* =========================================
   PLANLAR
========================================= */

.plan-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 40px;
}

.plan-card {
    background: white;

    overflow: hidden;

    position: relative;

    cursor: pointer;
}

.plan-card img {
    width: 100%;
    height: auto;

    display: block;
}

.plan-label {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 5px 0;
}

.plan-label span {
    font-size: 9px;

    letter-spacing: 2px;

    color: #888;
}

.plan-label strong {
    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 400;
}


/* =========================================
   RENDERLAR
========================================= */

.render-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.render-card {
    height: auto;

    overflow: hidden;

    background: #ddd;

    cursor: pointer;
}

.render-card.large {
    grid-column: span 2;
}

.render-card img {
    width: 100%;
    height: auto;

    display: block;
}


/* =========================================
   İÇ MEKAN
========================================= */

.interior-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

.interior-card {
    position: relative;

    overflow: hidden;

    height: auto;

    background: #ddd;
}

.interior-card img {
    width: 100%;
    height: auto;

    display: block;
}

.interior-card div {
    position: absolute;

    left: 25px;
    bottom: 25px;

    color: white;

    font-size: 10px;

    letter-spacing: 3px;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.5);
}


/* =========================================
   GÖRÜNÜŞLER
========================================= */

.elevation-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

.elevation-card {
    position: relative;

    height: auto;

    overflow: hidden;

    background: white;
}

.elevation-card img {
    width: 100%;
    height: auto;

    display: block;
}

.elevation-card span {
    position: absolute;

    left: 25px;
    bottom: 25px;

    font-size: 10px;

    letter-spacing: 3px;

    color: white;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.6);
}


/* =========================================
   PROJE İLETİŞİM
========================================= */

.project-contact {
    background: #111;

    color: white;

    padding: var(--space-section) var(--gutter);

    text-align: center;
}

.project-contact p {
    font-size: 10px;

    letter-spacing: 5px;

    color: #888;

    margin-bottom: 25px;
}

.project-contact h2 {
    font-size: clamp(45px, 6vw, 80px);

    line-height: 1;

    font-weight: 400;

    margin: 0 0 45px;
}

.project-contact a {
    color: white;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 3px;

    border-bottom: 1px solid var(--accent);

    padding-bottom: 8px;

    transition: 0.3s;
}

.project-contact a:hover {
    color: var(--accent);
}


/* =========================================
   KURUMSAL SAYFASI
========================================= */

.corporate-hero {
    width: 100%;
    height: 70vh;

    position: relative;

    background:
        linear-gradient(
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.75)
        ),
        #111;

    display: flex;

    align-items: flex-end;

    padding: 0 var(--gutter) 100px;

    color: white;
}

.corporate-hero-content p {
    font-size: 10px;

    letter-spacing: 5px;

    margin: 0 0 25px;

    color: var(--accent);

    opacity: 1;
}

.corporate-hero-content h1 {
    font-size: clamp(60px, 9vw, 130px);

    line-height: 0.9;

    font-weight: 400;

    letter-spacing: 3px;

    margin: 0 0 30px;
}

.corporate-hero-content span {
    font-size: 10px;

    letter-spacing: 4px;

    opacity: 0.7;
}


/* =========================================
   KURUMSAL SEKME MENÜSÜ
========================================= */

.corporate-tabs {
    display: flex;

    gap: 0;

    background: #f4f3f0;

    border-bottom: 1px solid #ccc;

    padding: 0 var(--gutter);

    position: sticky;

    top: 90px;

    z-index: 100;
}

.corporate-tabs a {
    padding: 25px 35px;

    color: #555;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 2px;

    transition: 0.3s;

    border-bottom: 2px solid transparent;
}

.corporate-tabs a:hover {
    color: #111;

    border-bottom-color: var(--accent);
}


/* =========================================
   KURUMSAL BAŞLIKLAR
========================================= */

.corporate-section-header {
    max-width: 700px;

    margin-bottom: 70px;
}

.corporate-section-header p {
    font-size: 10px;

    letter-spacing: 4px;

    color: var(--accent);

    margin: 0 0 25px;
}

.corporate-section-header h2 {
    font-size: clamp(45px, 6vw, 80px);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -1px;

    margin: 0 0 25px;
}

.corporate-section-header span {
    font-size: 10px;

    letter-spacing: 3px;

    color: #999;
}


/* =========================================
   YÖNETİM
========================================= */

.management-section {
    background: #f4f3f0;

    color: #111;

    padding: var(--space-section-sm) var(--gutter);
}

.management-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 50px;
}

.manager-card {
    overflow: hidden;
}

.manager-image {
    width: 100%;

    height: auto;

    overflow: hidden;

    background: #ddd;
}

.manager-image img {
    width: 100%;
    height: auto;

    display: block;

    filter: grayscale(100%);

    transition: filter 0.7s ease;
}

.manager-card:hover .manager-image img {
    filter: grayscale(0%);
}

.manager-info {
    padding-top: 25px;
}

.manager-info p {
    font-size: 9px;

    letter-spacing: 3px;

    color: #888;

    margin: 0 0 12px;
}

.manager-info h3 {
    font-size: 28px;

    font-weight: 400;

    margin: 0 0 10px;
}

.manager-info span {
    font-size: 9px;

    letter-spacing: 3px;

    color: #777;
}


/* =========================================
   VİZYON & MİSYON
========================================= */

.vision-mission-section {
    background: #111;

    color: white;

    padding: var(--space-section) var(--gutter);
}

.vision-mission-section
.corporate-section-header p {
    color: #777;
}

.vision-mission-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 100px;
}

.vision-mission-card {
    border-top: 1px solid #444;

    padding-top: 30px;
}

.vision-mission-card > span {
    font-size: 10px;

    letter-spacing: 3px;

    color: #777;
}

.vision-mission-card h3 {
    font-size: 35px;

    font-weight: 400;

    letter-spacing: 2px;

    margin: 30px 0;
}

#hizmetler .vision-mission-card h3 {
    color: var(--accent);
}

.vision-mission-card p {
    max-width: 500px;

    font-size: 16px;

    line-height: 1.9;

    color: #aaa;

    margin: 0;
}

.vision-mission-card .vm-card-media {
    margin-bottom: 26px;

    overflow: hidden;

    border-radius: 4px;
}

.vision-mission-card .vm-card-media img {
    display: block;

    width: 100%;

    height: auto;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .navbar {
        padding: 0 var(--gutter);
    }

    .menu {
        gap: 20px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;

        gap: 44px;
    }

    .site-footer {
        padding: 54px var(--gutter) 24px;
    }
}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 800px) {

    .project-intro {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: var(--space-section-sm) var(--gutter);
    }

    .project-description {
        padding-top: 0;
    }

    .project-details {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px;

        padding: 60px var(--gutter);
    }

    .vera-gallery {
        padding: var(--space-section-sm) var(--gutter);
    }

    .plan-grid,
    .render-grid,
    .interior-grid,
    .elevation-grid {
        grid-template-columns: 1fr;
    }

    .render-card.large {
        grid-column: span 1;
    }

    .gallery-tabs {
        margin-bottom: 50px;
    }

    .tab-button {
        padding: 16px 15px;
    }

    .corporate-hero {
        height: 60vh;

        padding: 0 var(--gutter) 70px;
    }

    .corporate-tabs {
        padding: 0 var(--gutter);

        top: 90px;

        overflow-x: auto;
    }

    .corporate-tabs a {
        padding: 20px;

        white-space: nowrap;
    }

    .management-section,
    .vision-mission-section {
        padding: var(--space-section-sm) var(--gutter);
    }

    .management-grid,
    .vision-mission-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}


@media (max-width: 600px) {

    .navbar {
        height: 75px;

        padding: 0 25px;
    }

    .menu {
        display: none;
    }

    .hero-content {
        left: var(--gutter);

        bottom: 18%;

        right: var(--gutter);
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-text {
        font-size: 14px;
    }

    .scroll-indicator {
        right: 20px;

        bottom: 25px;
    }

    .projects-section {
        padding: 90px var(--gutter);
    }

    .projects-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .site-footer {
        padding: 52px var(--gutter) 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 36px;

        padding-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }
}


@media (max-width: 500px) {

    .project-details {
        grid-template-columns: 1fr;
    }

    .project-hero-content {
        left: var(--gutter);

        bottom: 10%;
    }

    .project-hero-content h1 {
        font-size: 55px;
    }

    .corporate-hero-content h1 {
        font-size: 60px;
    }

}
/* =========================================
   HAMBURGER MENÜ
========================================= */

.hamburger {
    display: none;

    width: 45px;
    height: 45px;

    padding: 0;

    border: none;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 6px;

    z-index: 1100;
}

.hamburger span {
    display: block;

    width: 25px;
    height: 1px;

    background-color: white;

    transition: 0.3s ease;
}


/* =========================================
   HAMBURGER AÇILINCA
========================================= */

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================
   MOBİL MENÜ
========================================= */

@media (max-width: 600px) {

    .navbar {
        height: 75px;

        padding: 0 25px;
    }

    /* LOGO */

    .logo {
        width: 130px;
    }

    .logo img {
        width: 130px;
    }


    /* HAMBURGER */

    .hamburger {
        display: flex;
    }


    /* MENÜ */

    .menu {
        position: fixed;

        top: 75px;
        left: 0;

        width: 100%;

        height: calc(100vh - 75px);

        background-color: rgba(17, 17, 17, 0.97);

        backdrop-filter: blur(12px);

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 35px;

        transform: translateX(100%);

        transition: transform 0.4s ease;

        z-index: 1050;
    }


    /* MENÜ AÇIK */

    .menu.active {
        transform: translateX(0);
    }


    /* MENÜ YAZILARI */

    .menu a {
        color: white;

        font-size: 14px;

        letter-spacing: 3px;

        opacity: 0;

        transform: translateY(15px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease;
    }


    /* MENÜ AÇILDIĞINDA YAZILAR */

    .menu.active a {
        opacity: 1;

        transform: translateY(0);
    }

    .menu.active a:nth-child(1) {
        transition-delay: 0.05s;
    }

    .menu.active a:nth-child(2) {
        transition-delay: 0.10s;
    }

    .menu.active a:nth-child(3) {
        transition-delay: 0.15s;
    }

    .menu.active a:nth-child(4) {
        transition-delay: 0.20s;
    }

    .menu.active a:nth-child(5) {
        transition-delay: 0.25s;
    }

}
/* =========================================
   MOBİL HAMBURGER MENÜ
========================================= */

.hamburger {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: none;

    background: transparent;

    cursor: pointer;

    position: relative;

    z-index: 1100;
}


/* Hamburger çizgileri */

.hamburger span {
    display: block;

    width: 25px;
    height: 1px;

    background: white;

    margin: 6px auto;

    transition: 0.3s ease;
}


/* =========================================
   MOBİL MENÜ
========================================= */

.mobile-menu {
    display: none;

    position: fixed;

    top: 75px;
    left: 0;

    width: 100%;

    background: rgba(17, 17, 17, 0.97);

    backdrop-filter: blur(12px);

    padding: 30px 25px 40px;

    flex-direction: column;

    gap: 25px;

    z-index: 1050;

    border-top: 1px solid rgba(255,255,255,0.1);
}


.mobile-menu a {
    color: white;

    text-decoration: none;

    font-size: 12px;

    letter-spacing: 3px;

    padding: 8px 0;

    transition: 0.3s;
}


.mobile-menu a:hover {
    opacity: 0.5;
}


/* MENÜ AÇILDIĞINDA */

.mobile-menu.active {
    display: flex;
}


/* =========================================
   HAMBURGER → X ANİMASYONU
========================================= */

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.hamburger.active span:nth-child(2) {
    opacity: 0;
}


.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 600px) {

    .navbar {
        height: 75px;

        padding: 0 25px;
    }


    /* Normal menüyü gizle */

    .menu {
        display: none;
    }


    /* Hamburgeri göster */

    .hamburger {
        display: block;
    }


    /* Mobil logo */

    .logo {
        width: 130px;
    }


    .logo img {
        width: 130px;
    }

}
/* =========================================
   PROJELER DROPDOWN - MASAÜSTÜ
========================================= */

.menu-dropdown {
    position: relative;
}

.menu-dropdown > a {
    display: flex;
    align-items: center;
    gap: 7px;
}

.dropdown-arrow {
    font-size: 12px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.dropdown-content {
    position: absolute;

    top: calc(100% + 20px);
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 230px;

    background: rgba(17, 17, 17, 0.97);

    border: 1px solid rgba(255,255,255,0.12);

    padding: 8px 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

    z-index: 2000;
}

.dropdown-content a {
    display: block;

    padding: 16px 22px;

    color: white;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 1.8px;

    white-space: nowrap;

    transition:
        background-color 0.3s ease,
        padding-left 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(255,255,255,0.08);

    padding-left: 28px;
}



/* =========================================
   MASAÜSTÜ PROJELER - TIKLAYINCA AÇILIR
========================================= */

/* =========================================
   PROJELER - TIKLAYINCA AÇILAN MENÜ
========================================= */

.projects-menu-button {
    background: none;
    border: none;
    padding: 0;

    color: white;

    font-family: Arial, sans-serif;
    font-size: 12px;

    letter-spacing: 1.5px;

    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 7px;
}

.projects-menu-button:hover {
    opacity: 1;

    color: var(--accent);
}


.dropdown-content {
    position: absolute;

    top: calc(100% + 20px);
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 230px;

    background: rgba(17, 17, 17, 0.97);

    border: 1px solid rgba(255,255,255,0.12);

    padding: 8px 0;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

    z-index: 2000;
}


/* TIKLANINCA AÇILIR */

.dropdown-content.open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}


/* OK */

.projects-menu-button .dropdown-arrow {
    transition: transform 0.3s ease;
}

.projects-menu-button.open .dropdown-arrow {
    transform: rotate(180deg);
}


/* ALT LİNKLER */

.dropdown-content a {
    display: block;

    padding: 16px 22px;

    color: white;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 1.8px;

    white-space: nowrap;
}

.dropdown-content a:hover {
    background: rgba(255,255,255,0.08);
}


/* =========================================
   MOBİL PROJELER DROPDOWN
========================================= */

.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-button {
    width: 100%;

    display: flex;

    justify-content: space-between;
    align-items: center;

    background: none;

    border: none;

    color: white;

    padding: 18px 0;

    font-family: Arial, sans-serif;

    font-size: 13px;

    letter-spacing: 2px;

    text-align: left;

    cursor: pointer;
}

.mobile-dropdown-button .dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-dropdown.open
.mobile-dropdown-button .dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;

    padding-left: 18px;

    border-left: 1px solid rgba(255,255,255,0.2);

    margin-bottom: 8px;
}

.mobile-dropdown.open
.mobile-dropdown-content {
    display: block;
}

.mobile-dropdown-content a {
    display: block;

    padding: 12px 0;

    color: #999;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 1.5px;
}

.mobile-dropdown-content a:hover {
    color: var(--accent);
}


/* =========================================
   MOBİL / MASAÜSTÜ AYRIMI
========================================= */

@media (min-width: 601px) {

    .mobile-dropdown {
        display: none;
    }

}

@media (max-width: 600px) {

    .menu-dropdown {
        display: none;
    }

}
/* =========================================
   YENİ HEADER - PROJELER MENÜSÜ
========================================= */

/* PROJELER ANA KAPSAYICI */

.menu-dropdown {
    position: relative;
}


/* PROJELER LİNKİ */

.projects-menu-link {
    display: flex !important;
    align-items: center;
    gap: 7px;
}


/* OK */

.projects-menu-link .dropdown-arrow {
    display: inline-block;

    font-size: 11px;

    line-height: 1;

    transition: transform 0.3s ease;
}


/* =========================================
   MASAÜSTÜ PROJELER ALT MENÜ
========================================= */

.dropdown-content {
    position: absolute;

    top: calc(100% + 18px);

    left: 50%;

    width: 240px;

    padding: 8px 0;

    background: rgba(17, 17, 17, 0.98);

    border: 1px solid rgba(255, 255, 255, 0.12);

    transform: translateX(-50%) translateY(10px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

    z-index: 3000;
}


/* ALT MENÜ LİNKLERİ */

.dropdown-content a {
    display: block;

    width: 100%;

    padding: 16px 22px;

    color: #ffffff;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 1.8px;

    white-space: nowrap;

    transition:
        background-color 0.25s ease,
        padding-left 0.25s ease;
}


/* HOVER */

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.08);

    padding-left: 28px;
}


/* PROJELERİN ÜZERİNE GELİNCE AÇ */

.menu-dropdown:hover .dropdown-content {
    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(0);
}


/* OK DÖNSÜN */

.menu-dropdown:hover
.dropdown-arrow {
    transform: rotate(180deg);
}


/* =========================================
   HAMBURGER
========================================= */

.hamburger {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: none;

    background: transparent;

    cursor: pointer;

    position: relative;

    z-index: 3000;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 6px;
}


.hamburger span {
    display: block;

    width: 25px;
    height: 1px;

    background-color: #ffffff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================
   HAMBURGER → X
========================================= */

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================
   MOBİL MENÜ
========================================= */

.mobile-menu {
    display: none;

    position: fixed;

    top: 75px;

    left: 0;

    width: 100%;

    height: calc(100vh - 75px);

    background: rgba(17, 17, 17, 0.98);

    backdrop-filter: blur(12px);

    padding: 40px 25px;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    overflow-y: auto;

    z-index: 2500;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* MENÜ AÇIK */

.mobile-menu.active {
    display: flex;
}


/* MOBİL ANA LİNKLER */

.mobile-menu > a {
    width: 100%;

    padding: 18px 0;

    color: #ffffff;

    text-decoration: none;

    text-align: center;

    font-size: 13px;

    letter-spacing: 3px;

    transition: opacity 0.3s ease;
}

.mobile-menu > a:hover {
    opacity: 1;

    color: var(--accent);
}


/* =========================================
   MOBİL PROJELER
========================================= */

.mobile-dropdown {
    width: 100%;
}


/* PROJELER BUTONU */

.mobile-dropdown-button {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 18px 0;

    border: none;

    background: transparent;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 13px;

    letter-spacing: 3px;

    cursor: pointer;
}


/* MOBİL OK */

.mobile-dropdown-button .dropdown-arrow {
    display: inline-block;

    font-size: 11px;

    transition: transform 0.3s ease;
}


/* =========================================
   MOBİL ALT MENÜ
========================================= */

.mobile-dropdown-content {
    display: none;

    width: 100%;

    padding: 5px 0 10px;

    border-left: 1px solid rgba(255, 255, 255, 0.2);
}


/* ALT MENÜ AÇIK */

.mobile-dropdown.open .mobile-dropdown-content {
    display: block;
}


/* OK DÖNSÜN */

.mobile-dropdown.open
.mobile-dropdown-button
.dropdown-arrow {
    transform: rotate(180deg);
}


/* ALT MENÜ LİNKLERİ */

.mobile-dropdown-content a {
    display: block;

    width: 100%;

    padding: 13px 0 13px 20px;

    color: #999999;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 2px;

    text-align: left;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}


.mobile-dropdown-content a:hover {
    color: var(--accent);

    padding-left: 25px;
}


/* =========================================
   MASAÜSTÜ / MOBİL AYRIMI
========================================= */

@media (min-width: 601px) {

    .hamburger {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .mobile-dropdown {
        display: none;
    }

}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 600px) {

    .navbar {
        height: 75px;

        padding: 0 25px;
    }


    /* Masaüstü menüyü gizle */

    .menu {
        display: none;
    }


    /* Masaüstü dropdown gizle */

    .menu-dropdown {
        display: none;
    }


    /* Hamburger göster */

    .hamburger {
        display: flex;
    }


    /* Logo */

    .logo {
        width: 130px;
    }

    .logo img {
        width: 130px;
    }

}
/* =========================================
   PROJELER SAYFASI
========================================= */

/* PROJELER HERO */

.projects-hero {
    width: 100%;
    height: 70vh;

    position: relative;

    display: flex;
    align-items: flex-end;

    padding: 0 var(--gutter) 100px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.40),
            rgba(0, 0, 0, 0.75)
        ),
        #111;

    color: white;
}

.projects-hero-content p {
    font-size: 10px;

    letter-spacing: 5px;

    margin: 0 0 25px;

    color: var(--accent);

    opacity: 1;
}

.projects-hero-content h1 {
    font-size: clamp(60px, 9vw, 130px);

    line-height: 0.9;

    font-weight: 400;

    letter-spacing: 3px;

    margin: 0 0 30px;
}

.projects-hero-content span {
    display: block;

    font-size: 10px;

    letter-spacing: 4px;

    opacity: 0.7;
}


/* =========================================
   PROJE KATEGORİLERİ
========================================= */

.project-category {
    padding: var(--space-section-sm) var(--gutter);
}

.ongoing-projects {
    background: #f4f3f0;

    color: #111;
}

.completed-projects {
    background: #111;

    color: white;
}


/* =========================================
   KATEGORİ BAŞLIĞI
========================================= */

.project-category-header {
    display: block;

    margin-bottom: 80px;

    text-align: left;
}

.project-category-header > p {
    font-size: 11px;

    letter-spacing: 3px;

    color: #888;

    margin: 0 0 15px;

    padding-top: 0;
}

.project-category-header span {
    display: block;

    font-size: 10px;

    letter-spacing: 4px;

    color: #888;

    margin-bottom: 25px;
}

.project-category-header h2 {
    font-size: clamp(50px, 7vw, 100px);

    line-height: 0.9;

    font-weight: 400;

    letter-spacing: 1px;

    margin: 0;

    text-transform: capitalize;

    color: var(--accent);
}


/* =========================================
   PROJE LİSTESİ
========================================= */

.project-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 50px;

    align-items: stretch;
}


/* =========================================
   PROJE KARTI
========================================= */

.project-list-card {
    display: flex;

    flex-direction: column;

    overflow: hidden;
}


/* =========================================
   PROJE GÖRSELİ
========================================= */

.project-list-image {
    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;
}

.project-list-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center top;

    display: block;
}


/* =========================================
   PROJE BİLGİSİ
========================================= */

.project-list-info {
    padding-top: 25px;
}

.project-list-info span {
    display: block;

    font-size: 9px;

    letter-spacing: 3px;

    color: #888;

    margin-bottom: 15px;
}

.project-list-info h3 {
    font-size: 30px;

    font-weight: 400;

    letter-spacing: 1px;

    margin: 0 0 18px;
}

.project-list-info p {
    max-width: 450px;

    font-size: 14px;

    line-height: 1.8;

    color: #777;

    margin: 0 0 25px;
}

.project-list-info a {
    display: inline-block;

    color: inherit;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 2px;

    border-bottom: 1px solid var(--accent);

    padding-bottom: 6px;

    transition: 0.3s;
}

.project-list-info a:hover {
    opacity: 1;

    color: var(--accent);
}


/* =========================================
   MASAÜSTÜ PROJELER DROPDOWN
   TIKLAYINCA AÇILIR
========================================= */

.menu-dropdown {
    position: relative;
}


/* PROJELER BUTONU */

.projects-button {
    display: flex;

    align-items: center;

    gap: 7px;

    padding: 0;

    border: none;

    background: transparent;

    color: white;

    font-family: Arial, sans-serif;

    font-size: 12px;

    letter-spacing: 1.5px;

    cursor: pointer;
}

.projects-button:hover {
    opacity: 1;

    color: var(--accent);
}


/* OK */

.projects-button .dropdown-arrow {
    font-size: 12px;

    line-height: 1;

    transition: transform 0.3s ease;
}


/* =========================================
   DROPDOWN KUTUSU
========================================= */

.dropdown-content {
    position: absolute;

    top: calc(100% + 20px);

    left: 50%;

    width: 240px;

    padding: 8px 0;

    background: rgba(17, 17, 17, 0.98);

    border: 1px solid rgba(255, 255, 255, 0.12);

    transform: translateX(-50%) translateY(10px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

    z-index: 2000;
}


/* =========================================
   DROPDOWN AÇILDI
========================================= */

.dropdown-content.open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}


/* OK DÖNSÜN */

.projects-button.open .dropdown-arrow {
    transform: rotate(180deg);
}


/* ALT LİNKLER */

.dropdown-content a {
    display: block;

    padding: 16px 22px;

    color: white;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 1.8px;

    white-space: nowrap;

    transition:
        background-color 0.3s ease,
        padding-left 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.08);

    padding-left: 28px;
}


/* =========================================
   MOBİL PROJELER
========================================= */

.mobile-projects {
    width: 100%;
}

.mobile-projects-button {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 8px 0;

    border: none;

    background: transparent;

    color: white;

    font-family: Arial, sans-serif;

    font-size: 12px;

    letter-spacing: 3px;

    text-align: left;

    cursor: pointer;
}

.mobile-projects-button .dropdown-arrow {
    font-size: 12px;

    transition: transform 0.3s ease;
}


/* =========================================
   MOBİL ALT MENÜ
========================================= */

.mobile-projects-content {
    display: none;

    padding: 8px 0 8px 20px;

    margin-top: 8px;

    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-projects-content.open {
    display: block;
}

.mobile-projects-content a {
    display: block;

    padding: 12px 0;

    color: #999;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-decoration: none;
}

.mobile-projects-content a:hover {
    color: var(--accent);
}

.mobile-projects-button.open .dropdown-arrow {
    transform: rotate(180deg);
}


/* =========================================
   MOBİL
========================================= */

@media (max-width: 800px) {

    .projects-hero {
        height: 60vh;

        padding: 0 var(--gutter) 70px;
    }

    .project-category {
        padding: var(--space-section-sm) var(--gutter);
    }

    .project-category-header {
        grid-template-columns: 50px 1fr;

        gap: 20px;

        margin-bottom: 55px;
    }

    .project-list {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}


/* =========================================
   TELEFON
========================================= */

@media (max-width: 600px) {

    .projects-hero {
        height: 60vh;

        padding: 0 var(--gutter) 60px;
    }

    .projects-hero-content h1 {
        font-size: 60px;
    }

    .projects-hero-content span {
        font-size: 9px;

        line-height: 1.7;

        letter-spacing: 2px;
    }

    .project-category {
        padding: 90px var(--gutter);
    }

    .project-category-header {
        grid-template-columns: 35px 1fr;

        gap: 15px;

        margin-bottom: 50px;
    }

    .project-category-header h2 {
        font-size: 50px;
    }

    .project-category-header span {
        font-size: 9px;

        letter-spacing: 3px;
    }

    .project-list {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .project-list-info h3 {
        font-size: 25px;
    }

    .project-list-info p {
        font-size: 13px;
    }


    /* Masaüstü dropdown'u telefonda gizle */

    .menu-dropdown {
        display: none;
    }

}
/* =========================================
   PROJELER DROPDOWN - TEMİZ VE SABİT SİSTEM
========================================= */

.menu-dropdown {
    position: relative;
}

/* PROJELER BUTONU */

.projects-menu-button {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 0;
    margin: 0;

    border: none;
    background: transparent;

    color: white;

    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;

    cursor: pointer;
}

.projects-menu-button:hover {
    opacity: 1;

    color: var(--accent);
}


/* OK */

.projects-menu-button .dropdown-arrow {
    display: inline-block;

    font-size: 12px;
    line-height: 1;

    transition: transform 0.3s ease;
}


/* DROPDOWN KUTUSU */

.menu-dropdown .dropdown-content {
    position: absolute;

    /*
       BURADA ARTIK 20PX BOŞLUK YOK
       Menü doğrudan PROJELER'in altına geliyor.
    */
    top: 100%;
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 240px;

    margin-top: 10px;

    padding: 8px 0;

    background: rgba(17, 17, 17, 0.98);

    border: 1px solid rgba(255, 255, 255, 0.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

    z-index: 3000;
}


/* SADECE TIKLAYINCA AÇILACAK */

.menu-dropdown .dropdown-content.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}


/* ALT LİNKLER */

.menu-dropdown .dropdown-content a {
    display: block;

    width: 100%;

    padding: 16px 22px;

    color: white;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 1.8px;

    white-space: nowrap;

    transition:
        background-color 0.25s ease,
        padding-left 0.25s ease;
}


.menu-dropdown .dropdown-content a:hover {
    background-color: rgba(255,255,255,0.08);

    padding-left: 28px;
}


/* OK DÖNSÜN */

.projects-menu-button.open .dropdown-arrow {
    transform: rotate(180deg);
}


/* ÖNEMLİ:
   Eski hover sistemini tamamen iptal ediyoruz.
*/

.menu-dropdown:hover .dropdown-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-50%) translateY(10px);
}


/* TIKLANMIŞSA HOVER KURALINI EZ */

.menu-dropdown:hover .dropdown-content.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}
/* =========================================
   HAMBURGER - SON DÜZELTME
========================================= */

@media (max-width: 600px) {

    /* Header */
    .navbar {
        height: 75px;
        padding: 0 var(--gutter);
        position: fixed;
        z-index: 5000;
    }

    /* Logo */
    .logo {
        width: 130px;
        position: relative;
        z-index: 5001;
    }

    .logo img {
        width: 130px;
    }

    /* Hamburger */
    .hamburger {
        display: flex !important;

        width: 42px;
        height: 42px;

        padding: 0;
        margin: 0;

        border: none;
        background: transparent;

        position: relative;

        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 6px;

        cursor: pointer;

        z-index: 6000;
    }

    /* Hamburger çizgileri */
    .hamburger span {
        display: block !important;

        width: 25px;
        height: 2px;

        margin: 0;

        background-color: #ffffff;

        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* X haline dönüşünce */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Masaüstü menüyü kesin olarak gizle */
    .menu {
        display: none !important;
    }

    /* Mobil menü */
    .mobile-menu {
        display: none;

        position: fixed;

        top: 75px;
        left: 0;

        width: 100%;
        height: calc(100vh - 75px);

        background: rgba(17, 17, 17, 0.98);

        backdrop-filter: blur(12px);

        padding: 40px 25px;

        flex-direction: column;
        align-items: center;

        overflow-y: auto;

        z-index: 5500;
    }

    .mobile-menu.active {
        display: flex;
    }

}
/* =========================================
   GURUR TABLOMuz
========================================= */

.stats-section {
    background: #111111;

    color: #ffffff;

    padding: 130px var(--gutter) 140px;

    border-top: 1px solid rgba(255,255,255,0.08);
}


/* BAŞLIK */

.stats-header {
    max-width: 700px;

    margin-bottom: 90px;
}

.stats-header p {
    font-size: 10px;

    letter-spacing: 4px;

    color: #777777;

    margin: 0 0 25px;
}

.stats-header h2 {
    font-size: clamp(45px, 6vw, 80px);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: 1px;

    margin: 0 0 30px;
}

.stats-header span {
    display: block;

    max-width: 500px;

    font-size: 14px;

    line-height: 1.8;

    color: #888888;
}


/* RAKAMLAR */

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    max-width: 100%;

    margin: 0;
}


/* TEK RAKAM */

.stat-item {
    min-height: 220px;

    padding: 50px 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    gap: 20px;
}


/* SAYI */

.stat-item strong {
    display: block;

    font-size: clamp(55px, 6vw, 90px);

    line-height: 1;

    font-weight: 300;

    letter-spacing: -2px;

    background: linear-gradient(180deg, #ffffff 0%, #cfcfcf 100%);

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* BAŞLIK */

.stat-item span {
    display: block;

    font-size: 10px;

    line-height: 1.6;

    letter-spacing: 3px;

    color: #9a9a9a;
}


/* HOVER */

.stat-item {
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.stat-item:hover {
    background-color: #181818;

    transform: translateY(-6px);
}


/* =========================================
   GURUR TABLOSU - MOBİL
========================================= */

@media (max-width: 900px) {

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .stats-section {
        padding: 90px var(--gutter) 100px;
    }

    .stats-header {
        margin-bottom: 60px;
    }

    .stats-header h2 {
        font-size: 50px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        min-height: 180px;

        padding: 35px 25px;
    }

    .stat-item strong {
        font-size: 65px;
    }

}

/* =========================================
   BÖLÜM GEÇİŞ YUMUŞATMALARI
========================================= */

.section-fade {
    height: 150px;

    pointer-events: none;
}

.fade-dark-to-light {
    background: linear-gradient(180deg, #111111 0%, #f4f3f0 100%);
}

.fade-light-to-dark {
    background: linear-gradient(180deg, #f4f3f0 0%, #111111 100%);
}

@media (max-width: 600px) {

    .section-fade {
        height: 90px;
    }

}

/* =========================================
   İLETİŞİM SAYFASI
========================================= */

.footer-column h3 a {
    color: inherit;

    text-decoration: none;

    transition: 0.3s;
}

.footer-column h3 a:hover {
    opacity: 0.7;
}

.contact-info-section {
    background: #f4f3f0;

    color: #111111;

    padding: var(--space-section-sm) var(--gutter);
}

.contact-info-grid {
    max-width: var(--content-max);

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 50px 40px;
}

.contact-info-item {
    border-top: 2px solid var(--accent);

    padding-top: 25px;
}

.contact-info-item > span {
    display: block;

    font-size: 10px;

    letter-spacing: 3px;

    color: var(--accent);

    margin-bottom: 16px;
}

.contact-info-item a,
.contact-info-item p {
    display: block;

    width: fit-content;

    color: #111111;

    text-decoration: none;

    font-size: 14px;

    line-height: 1.8;

    margin: 0 0 10px;

    transition: 0.3s;
}

.contact-info-item p:last-child {
    margin-bottom: 0;
}

.contact-info-item a:hover {
    color: var(--accent);
}

/* YÖNETİCİ HATLARI */

.contact-persons-section {
    background: #f4f3f0;

    color: #111111;

    padding: 0 var(--gutter) var(--space-section-sm);
}

.contact-persons-header {
    max-width: 700px;

    margin-bottom: 60px;
}

.contact-persons-header p {
    font-size: 10px;

    letter-spacing: 4px;

    color: var(--accent);

    margin: 0 0 25px;
}

.contact-persons-header h2 {
    margin: 0 0 30px;

    font-size: clamp(50px, 7vw, 100px);

    line-height: 0.9;

    font-weight: 400;

    letter-spacing: 1px;
}

.contact-persons-header span {
    display: block;

    max-width: 480px;

    font-size: 15px;

    line-height: 1.8;

    color: #666666;
}

.contact-persons-grid {
    max-width: var(--content-max);

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 40px;

    align-items: stretch;
}

.contact-person-card {
    display: flex;

    align-items: center;

    gap: 30px;

    background: #ffffff;

    border-top: 2px solid var(--accent);

    padding: 40px;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.contact-person-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 24px 48px rgba(17, 17, 17, 0.08);
}

.contact-person-media {
    flex-shrink: 0;
}

.contact-person-media img {
    display: block;

    width: 110px;

    height: 110px;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid var(--accent);

    filter: grayscale(100%);

    transition: filter 0.5s ease;
}

.contact-person-card:hover .contact-person-media img {
    filter: grayscale(0%);
}

.contact-person-body {
    min-width: 0;
}

.contact-person-card p {
    font-size: 10px;

    letter-spacing: 3px;

    color: #888888;

    margin: 0 0 14px;
}

.contact-person-card h3 {
    font-size: 26px;

    font-weight: 400;

    letter-spacing: 1px;

    margin: 0 0 20px;
}

.contact-person-card a {
    display: inline-block;

    color: #111111;

    text-decoration: none;

    font-size: 13px;

    letter-spacing: 2px;

    border-bottom: 1px solid var(--accent);

    padding-bottom: 6px;

    transition: 0.3s;
}

.contact-person-card a:hover {
    color: var(--accent);
}

/* HARİTA */

.contact-map-section {
    line-height: 0;
}

.contact-map {
    width: 100%;

    height: 480px;

    border: 0;

    display: block;

    filter: grayscale(100%) contrast(1.05);
}

/* İLETİŞİM FORMU */

.contact-form-section {
    background: #111111;

    color: #ffffff;

    padding: var(--space-section-sm) var(--gutter);
}

.contact-form-header {
    max-width: 700px;

    margin-bottom: 60px;
}

.contact-form-header p {
    font-size: 10px;

    letter-spacing: 4px;

    color: var(--accent);

    margin: 0 0 25px;
}

.contact-form-header h2 {
    margin: 0 0 30px;

    font-size: clamp(50px, 7vw, 100px);

    line-height: 0.9;

    font-weight: 400;

    letter-spacing: 1px;

    color: var(--accent);
}

.contact-form-header span {
    display: block;

    max-width: 480px;

    font-size: 15px;

    line-height: 1.8;

    color: #999999;
}

.contact-form {
    max-width: 820px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;
}

.form-field {
    margin-bottom: 35px;
}

.form-field label {
    display: block;

    font-size: 10px;

    letter-spacing: 3px;

    color: #9a9a9a;

    margin-bottom: 14px;
}

.form-field input,
.form-field textarea {
    width: 100%;

    background: transparent;

    border: none;

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 16px;

    padding: 10px 0;

    outline: none;

    resize: vertical;

    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--accent);
}

.hp-field {
    position: absolute !important;

    left: -9999px !important;

    height: 0 !important;

    opacity: 0 !important;
}

.contact-submit {
    display: inline-block;

    padding: 16px 46px;

    border: 1px solid var(--accent);

    background: transparent;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 11px;

    letter-spacing: 3px;

    cursor: pointer;

    transition: 0.3s;
}

.contact-submit:hover {
    background: var(--accent);

    color: #111111;
}

.contact-submit:disabled {
    opacity: 0.5;

    cursor: wait;
}

.form-status {
    min-height: 22px;

    margin: 25px 0 0;

    font-size: 13px;

    letter-spacing: 1px;

    color: #9a9a9a;
}

.form-status.ok {
    color: var(--accent-light);
}

.form-status.err {
    color: #e08a7a;
}

@media (max-width: 800px) {

    .contact-info-grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px 30px;
    }

    .contact-persons-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .contact-map {
        height: 340px;
    }

}

@media (max-width: 600px) {

    .contact-info-grid {
        grid-template-columns: 1fr;

        gap: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .contact-person-card {
        gap: 20px;

        padding: 30px 25px;
    }

    .contact-person-media img {
        width: 84px;

        height: 84px;
    }

    .contact-map {
        height: 280px;
    }

}

/* ---------- KARŞILAMA ANİMASYONU (PRELOADER) ---------- */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 38%, #1c2029 0%, #0f1115 72%);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: clamp(220px, 48vw, 400px);
    height: auto;
    margin: 0 auto 6px;
    display: block;
    filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.45));
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    animation: plLogo 1s 0.7s ease forwards;
}

@keyframes plLogo {
    to { opacity: 1; transform: none; }
}

.preloader-bar {
    margin: 24px auto 0;
    width: 160px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent, #c9a24a), var(--accent-2, #e0b964));
    animation: plBar 1.3s 0.5s ease forwards;
}

.preloader-villa {
    width: clamp(150px, 30vw, 230px);
    height: auto;
    margin: 6px auto 4px;
    display: block;
    color: var(--accent, #c9a24a);
    filter: drop-shadow(0 0 14px rgba(201, 162, 74, 0.4));
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    animation: plVilla 1.1s 0.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes plVilla {
    to { opacity: 1; transform: scaleY(1); }
}

@keyframes plBar {
    to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .preloader {
        display: none;
    }
}


.mobile-home-btn {
    display: none;
}


@media (max-width: 768px) {

    .mobile-home-btn {
        display: inline-flex;

        position: fixed;

        bottom: 22px;

        right: 22px;

        z-index: 5000;

        align-items: center;

        gap: 8px;

        padding: 14px 22px;

        background: #111111;

        color: #ffffff;

        text-decoration: none;

        font-size: 11px;

        letter-spacing: 2px;

        border-radius: 40px;

        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);

        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .mobile-home-btn:hover {
        background: #2a2a2a;

        transform: translateY(-3px);
    }

    .mobile-home-icon {
        font-size: 16px;

        line-height: 1;
    }

}


.lightbox {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.92);

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 9999;

    cursor: zoom-out;
}

.lightbox.open {
    display: flex;
}

.lightbox-img {
    max-width: 92%;

    max-height: 88%;

    object-fit: contain;

    cursor: grab;

    transition: transform 0.05s linear;

    user-select: none;

    -webkit-user-drag: none;
}

.lightbox-img:active {
    cursor: grabbing;
}

.lightbox-close {
    position: absolute;

    top: 24px;

    right: 32px;

    width: 48px;

    height: 48px;

    border: none;

    background: rgba(255, 255, 255, 0.12);

    color: #fff;

    font-size: 32px;

    line-height: 1;

    border-radius: 50%;

    cursor: pointer;

    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-hint {
    position: absolute;

    bottom: 24px;

    left: 50%;

    transform: translateX(-50%);

    color: rgba(255, 255, 255, 0.7);

    font-size: 12px;

    letter-spacing: 1px;

    pointer-events: none;
}
/* =========================================
   GURUR TABLOMUZ
========================================= */

.stats-section {
    background: #f4f3f0;
    color: #111111;

    padding: 150px var(--gutter) 80px;

    position: relative;
}


/* BAŞLIK */

.stats-header {
    max-width: 700px;

    margin-bottom: 110px;
}

.stats-header p {
    margin: 0 0 25px;

    font-size: 10px;

    letter-spacing: 4px;

    color: var(--accent);
}

.stats-header h2 {
    margin: 0 0 30px;

    font-size: clamp(50px, 7vw, 100px);

    line-height: 0.9;

    font-weight: 400;

    letter-spacing: 1px;
}

.stats-header span {
    display: block;

    max-width: 480px;

    font-size: 15px;

    line-height: 1.8;

    color: #666666;
}


/* RAKAMLAR */

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    max-width: 100%;

    margin: 0;
}


/* TEK RAKAM */

.stat-item {
    min-height: 220px;

    padding: 50px 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    gap: 20px;

    transition: background-color 0.4s ease, transform 0.4s ease;
}

.stat-item:first-child {
    padding-left: 30px;
}

.stat-item:hover {
    background-color: #ecebe7;

    transform: translateY(-6px);
}


/* BÜYÜK RAKAM */

.stat-item strong {
    display: block;

    font-size: clamp(55px, 6vw, 90px);

    line-height: 1;

    font-weight: 300;

    letter-spacing: -2px;

    background: linear-gradient(180deg, #8f7130 0%, #d9bc72 100%);

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* AÇIKLAMA */

.stat-item span {
    font-size: 10px;

    letter-spacing: 3px;

    color: #777777;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .stats-section {
        padding: 110px var(--gutter);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        min-height: 180px;

        padding: 35px;
    }

    .stat-item:first-child {
        padding-left: 35px;
    }

}


/* =========================================
   TELEFON
========================================= */

@media (max-width: 600px) {

    .stats-section {
        padding: 90px var(--gutter) 100px;
    }

    .stats-header {
        margin-bottom: 70px;
    }

    .stats-header h2 {
        font-size: 55px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item,
    .stat-item:first-child {
        min-height: auto;

        padding: 35px 0;
    }

    .stat-item strong {
        font-size: 65px;
    }

}