/* Basic Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden; /* Global yatay kaydırmayı engelle */
    overflow-y: scroll; /* Dikey kaydırmanın her zaman body tarafından yönetilmesini sağla */
    scroll-behavior: smooth;
    position: relative;
}

/* Navbar Variables */
:root {
    --navbar-height-desktop: 98px;
    --navbar-height-mobile: 70px;
}

/* Genel body padding-top'u, sticky navbar'ın içeriği örtmemesi için */
body > section:first-of-type,
body > header:first-of-type {
    padding-top: var(--navbar-height-desktop);
}
@media (max-width: 768px) {
    body > section:first-of-type,
    body > header:first-of-type {
        padding-top: var(--navbar-height-mobile);
    }
}

/* Blur effect when lightbox is open */
body.lightbox-open .hero-section,
body.lightbox-open .section,
body.lightbox-open .footer {
    filter: blur(8px);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scroll Animation Initial State */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- NAVIGATION BAR STYLES --- */
.navbar {
    background-color: #0D0D0D;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}
.logo-img {
    height: 32px;
    width: auto;
    max-width: 180px;
    display: block;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-logo {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.nav-links li {
    margin-left: 30px;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #a0dcff;
}
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}
.menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all 0.3s ease;
}
/* Mobile Responsiveness for Navbar */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: var(--navbar-height-desktop); /* Navbar yüksekliğine göre ayarla */
        left: 0;
        background-color: #000000;
        border: .1vw solid #ffffff0d;
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        height: 460px; /* Ya da height: auto; max-height: calc(100vh - var(--navbar-height-mobile)); */
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 40px 20px;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}
/* --- END NAVIGATION BAR STYLES --- */


/* --- MAIN CONTAINER & BRAND TEXT STYLES --- */
.main-container {
    position: relative;
    width: 100vw;
    height: auto; /* İçeriğine göre yüksekliği otomatik ayarla */
    min-height: 85vh; /* Masaüstünde minimum viewport yüksekliği */
    padding-top: 5vh; /* BRAND DESIGNER yazısının üstten boşluğu */
    padding-bottom: 5vh; /* Alt boşluk */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: visible; /* TÜM KAYDIRMA YETKİSİNİ BODY'YE BIRAK */
}

/* BRAND DESIGNER Yazıları */
.brand-text, .brand-text2 {
    font-size: 10vw;
    font-weight: 800;
    position: absolute; /* Absolute konumlandırma korunuyor */
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    white-space: nowrap; /* Metnin tek satırda kalmasını sağlar (responsive'de değişecek) */
    text-align: center;
    width: 100%;
}

.brand-text {
    color: white;
    top: 10%; /* Kapsayıcısına göre başlangıç dikey konumu */
}

.brand-text2 {
    color: transparent;
    -webkit-text-stroke: 2px white;
    text-stroke: 2px white;
}

/* Responsive adjustments for brand-text positioning and spacing */
/* Masaüstü ve Geniş Ekranlar için hassas ayarlar */
@media screen and (min-width: 1201px) {
    .brand-text2 {
        margin-top: 150px !important; /* Büyük ekranlarda orijinal boşluğu koru */
    }
}
@media (max-width: 1200px) and (min-width: 993px) { /* Orta boy ekranlar (laptoplar) */
    .brand-text2 {
        margin-top: 110px !important; /* Boşluğu biraz azalt */
    }
}
/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .brand-text, .brand-text2 {
        font-size: 14vw !important;
        white-space: normal;
        line-height: 1.1;
    }
    .brand-text {
        top: 8%;
    }
    .brand-text2 {
        top: 8%;
        margin-top: 110px !important; /* Boşluğu azalt */
        -webkit-text-stroke: 1.5px white;
        text-stroke: 1.5px white;
    }
    .main-container {
        min-height: 100vh;
        padding-top: 8vh;
    }
}

/* Mobil (max-width: 768px) */
@media (max-width: 768px) {
    .brand-text, .brand-text2 {
        font-size: 16vw !important;
        white-space: normal;
        line-height: 1.1;
    }
    .brand-text {
        top: 5%;
    }
    .brand-text2 {
        top: 5%;
        margin-top: 85px !important; /* Boşluğu daha da azalt */
        -webkit-text-stroke: 1px white;
        text-stroke: 1px white;
    }
    .main-container {
        padding-top: var(--navbar-height-mobile);
        min-height: 80vh;
        height: auto;
    }
}

/* Küçük Mobil Cihazlar (max-width: 480px) */
@media (max-width: 480px) {
    .brand-text, .brand-text2 {
        font-size: 20vw !important;
    }
    .brand-text {
        top: 2%;
    }
    .brand-text2 {
        top: 2%;
        margin-top: 50px !important; /* Minimal boşluk */
    }
    .main-container {
        min-height: 70vh;
    }
}
/* --- END MAIN CONTAINER & BRAND TEXT STYLES --- */


/* --- CARD CONTAINER & CARD STYLES --- */
.card-container {
    position: absolute;
    width: 100%;
    height: 100%; /* Ebeveyninin (main-container) yüksekliğini alır */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 50px;
    perspective: 1000px;
    overflow: hidden; /* Kartların container içinde kalmasını sağlar */
}

.card {
    position: absolute;
    width: 320px;
    height: 420px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0; /* JS tarafından yönetilecek başlangıç */
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Responsive adjustments for cards */
@media (max-width: 992px) {
    .card {
        width: 250px;
        height: 330px;
    }
}
@media (max-width: 768px) {
    .card {
          width: 350px;
        height: 440px;
        border-radius: 20px;
    }
    .card-container {
        min-height: 450px; /* Mobil animasyonlar için yeterli yükseklik */
        perspective: 600px;
    }
}
@media (max-width: 480px) {
    .card {
        width: 250px; /* Daha küçük telefonlar için boyut */
        height: 330px;
    }
    .card-container {
        min-height: 400px;
    }
}
/* --- END CARD CONTAINER & CARD STYLES --- */


/* --- HERO SECTION STYLES --- */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 50px 20px; /* Responsive padding */
}
.hero-tagline {
    font-size: 4em;
    font-weight: 500;
    line-height: 1.3;
    color: white;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
}
.taglines-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
    padding-top: 100px;
}
.hero-tagline2 {
    font-size: 1.1em;
    font-weight: 400;
    color: var(--dark-gray); /* Assuming --dark-gray is defined or replaced */
    width: 100%;
    text-align: right;
    line-height: 1.8em;
    padding-left: 400px;
    padding-top: 50px;
}
.hero-tagline3 {
    font-size: 1.1em;
    font-weight: 400;
    color: var(--dark-gray); /* Assuming --dark-gray is defined or replaced */
    width: 100%;
    text-align: right;
    line-height: 1.8em;
    padding-right: 70px;
    padding-top: 50px;
}
@media (max-width: 992px) {
    .hero-tagline { font-size: 3.2em; text-align: center; margin-left: auto; margin-right: auto; }
    .hero-tagline2, .hero-tagline3 { padding-left: 0; padding-right: 0; text-align: center; }
}
@media (max-width: 768px) {
    .hero-tagline { font-size: 2.5em; line-height: 1.4; }
    .hero-tagline2, .hero-tagline3 { font-size: 1em; }
}
@media (max-width: 480px) {
    .hero-tagline { font-size: 1.8em; }
}
/* --- END HERO SECTION STYLES --- */


/* --- MINIMAL STATS SECTION --- */
.minimal-stats-section {
    padding: 60px 20px;
    background-color: #000;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    box-sizing: border-box;
    width: 100%;
}
.minimal-stat-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}
.minimal-stat-column {
    flex: 1;
    min-width: 300px;
    background-color: #0d0d0d;
    padding: 40px 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}
.minimal-stat-column-1 {
    justify-content: flex-start;
    padding-top: 60px;
    padding-bottom: 60px;
}
.minimal-stat-number-main {
    font-size: 80px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    align-self: flex-start;
}
.minimal-stat-label-main {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 100px;
    opacity: 0.8;
    align-self: flex-start;
}
.minimal-stat-progress-bar {
    width: 100%;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}
.minimal-stat-progress-fill {
    width: 65%;
    height: 100%;
    background-color: #a0dcff;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
}
.minimal-stat-column-2 {
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
}
.minimal-stat-rotated-wrapper {
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-origin: center center;
    z-index: 1;
}
.rotated-work {
    font-size: 70px;
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: 5px;
    display: block;
}
.rotated-hard {
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-top: 10px;
}
.minimal-stat-24-7 {
    font-size: 140px;
    font-weight: 600;
    line-height: 1;
    z-index: 2;
    position: relative;
    letter-spacing: -5px;
}
.minimal-stat-circle-icon {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}
.minimal-stat-circle-icon::after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
}
.minimal-stat-column-3 {
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 60px;
}
.minimal-stat-future-group {
    display: flex;
    align-items: center;
    margin-bottom: auto;
    align-self: flex-start;
}
.minimal-stat-future-text {
    font-size: 50px;
    font-weight: 600;
    letter-spacing: -1px;
    padding-bottom: 5px;
    margin-right: 15px;
    color: transparent;
    -webkit-text-stroke: 1px white;
    text-stroke: 1px white;
}
.minimal-stat-future-arrows {
    font-size: 70px;
    font-weight: 300;
    opacity: 0.7;
    line-height: 1;
    padding-left: 10px;
}
.minimal-stat-footer-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.5px;
    max-width: 250px;
    text-transform: uppercase;
    opacity: 0.9;
    text-align: left;
    align-self: flex-start;
    margin-top: auto;
}
/* Responsive adjustments for Minimal Stats */
@media (max-width: 992px) {
    .minimal-stat-grid {
        flex-direction: column;
        align-items: center;
    }
    .minimal-stat-column {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }
    .minimal-stat-column-1,
    .minimal-stat-column-3 {
        align-items: center;
        text-align: center;
    }
    .minimal-stat-number-main,
    .minimal-stat-label-main,
    .minimal-stat-future-group,
    .minimal-stat-footer-text {
        align-self: center;
        text-align: center;
    }
    .minimal-stat-rotated-wrapper {
        position: static;
        transform: none;
        flex-direction: row;
        margin-bottom: 20px;
    }
    .rotated-work {
        font-size: 60px;
        margin-right: 15px;
        line-height: 1;
    }
    .rotated-hard {
        font-size: 25px;
        margin-top: 0;
    }
    .minimal-stat-24-7 {
        font-size: 100px;
    }
    .minimal-stat-circle-icon {
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .minimal-stats-section {
        padding: 40px 15px;
    }
    .minimal-stat-column {
        padding: 30px 20px;
        min-width: unset;
    }
    .minimal-stat-number-main {
        font-size: 70px;
    }
    .minimal-stat-label-main {
        font-size: 14px;
        margin-bottom: 50px;
    }
    .rotated-work {
        font-size: 50px;
    }
    .rotated-hard {
        font-size: 20px;
    }
    .minimal-stat-24-7 {
        font-size: 80px;
    }
    .minimal-stat-future-text {
        font-size: 60px;
    }
    .minimal-stat-future-arrows {
        font-size: 60px;
    }
    .minimal-stat-footer-text {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .minimal-stat-column {
        padding: 25px 15px;
    }
    .minimal-stat-number-main {
        font-size: 60px;
    }
    .minimal-stat-label-main {
        font-size: 12px;
        letter-spacing: 2px;
    }
    .minimal-stat-progress-bar {
        height: 8px;
    }
    .rotated-work {
        font-size: 40px;
    }
    .rotated-hard {
        font-size: 18px;
    }
    .minimal-stat-24-7 {
        font-size: 60px;
    }
    .minimal-stat-circle-icon {
        width: 40px;
        height: 40px;
    }
    .minimal-stat-circle-icon::after {
        content: '';
        width: 10px;
        height: 10px;
    }
    .minimal-stat-future-text {
        font-size: 50px;
    }
    .minimal-stat-future-arrows {
        font-size: 50px;
    }
    .minimal-stat-footer-text {
        font-size: 14px;
        line-height: 1.4;
    }
}
/* --- END MINIMAL STATS SECTION --- */


/* --- WORKS SECTION STYLES --- */
.works-section {
    position: relative;
    width: 100%;
    height: 60vh; /* Masaüstü için */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 50px 0;
}
.cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bigcard {
    position: absolute;
    width: 15rem;
    height: 20rem;
    border-radius: 10px;
    background-image: var(--img); /* Bu değişkenin JS veya HTML'de tanımlandığından emin olun */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(var(--x), var(--y)) rotate(var(--r));
    z-index: calc(var(--i) * 10);
    transition: transform 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28), filter 0.3s ease-out;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    will-change: transform, filter;
    pointer-events: auto;
    overflow: hidden;
}
.bigcard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* Blur efekti ve Hover */
.cards-container:has(.bigcard:hover) .bigcard:not(:hover) {
    filter: blur(2px) brightness(0.8);
    transition: filter 0.3s ease-out;
}
.bigcard:hover {
    transform: translate(calc(var(--x) * 0.9), calc(var(--y) * 0.9)) rotate(0deg) scale(1.15);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
    z-index: 1000;
}
/* Mobil cihazlarda hover'ı kapat */
@media (pointer: coarse) {
    .bigcard:hover {
        transform: none !important;
        filter: none !important;
        z-index: auto !important;
    }
    .cards-container:has(.bigcard:hover) .bigcard:not(:hover) {
        filter: none !important;
    }
}
/* Responsive adjustments for bigcards */
@media (max-width: 768px) {
    .works-section {
        min-height: 80vh;
        height: auto;
    }
    .cards-container {
        flex-direction: column;
        padding: 20px;
        height: auto;
    }
    .bigcard {
        position: relative;
        width: 80%;
        max-width: 250px;
        height: auto;
        aspect-ratio: 0.75;
        margin: 10px 0;
        transform: none !important;
        filter: none !important;
        z-index: auto !important;
    }
}

/* Works Grid (Not clear if this is for the same section or another) */
/* Eğer works-section ve bigcard'lar içinse, yukarıdaki tanımlarla çakışabilir. */
/* Eğer farklı bir grid yapısıysa, bu kısmı olduğu gibi bırakıyorum. */
.works-section .container { padding-top: 0; }
.works-title { font-size: 6em; letter-spacing: -3px; display: inline-block; }
.works-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding: 20px 0;
    margin-top: 50px;
}
.works-grid::-webkit-scrollbar { display: none; }
.works-grid { -ms-overflow-style: none; scrollbar-width: none; }
.work-card {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    scroll-snap-align: start;
}
.work-card:hover { transform: translateY(-10px); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7); }
.work-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section-header-works {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-left: 80px;
    display: inline-block;
}
.section-header-works::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 4px;
    background-color: #BBBBBB;
    border-radius: 2px;
}
.section-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    color: #AAAAAA;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
@media (max-width: 768px) {
    .works-title { font-size: 4.5em; }
    .works-grid { gap: 20px; padding: 10px 0; }
    .work-card { width: 250px; height: 350px; }
    .section-header-works { padding-left: 0; display: block; }
    .section-header-works::before { display: none; }
}
@media (max-width: 480px) {
    .works-title { font-size: 3.5em; }
    .works-grid { gap: 15px; }
    .work-card { width: 200px; height: 300px; }
}
/* --- END WORKS SECTION STYLES --- */


/* --- LIGHTBOX/MODAL STYLES --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}
.lightbox.active {
    display: flex;
    opacity: 1;
}
.lightbox-content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    max-height: 90%;
    cursor: default;
}
#lightboxImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
}
.close-button {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.2s ease;
}
.close-button:hover, .close-button:focus {
    color: #bbb;
    text-decoration: none;
}
.nav-button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 3em;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
    z-index: 100;
}
.nav-button:hover {
    background: rgba(0, 0, 0, 0.8);
}
.prev-button {
    left: -60px;
}
.next-button {
    right: -60px;
}
@media (max-width: 1200px) {
    .prev-button { left: 20px; }
    .next-button { right: 20px; }
}
@media (max-width: 480px) {
    .close-button { font-size: 40px; top: 15px; right: 20px; }
    .nav-button { font-size: 2.5em; padding: 5px 10px; }
}
/* --- END LIGHTBOX/MODAL STYLES --- */


/* --- MODERN SEASONS SECTION (REFERENCE LOGOS) --- */
.modern-seasons-section .section-title { margin-bottom: 10px; }
.season-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.logo-item {
    background-color: #0d0d0d;
    border-radius: 8px;
    aspect-ratio: 9/9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    border: 1px solid #ffffff0d;
}
.logo-item img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}
.logo-item:hover img { filter: grayscale(0%) brightness(1.2); }
/* Animation delays */
.animate-logo:nth-child(1) { transition-delay: 0.1s; }
.animate-logo:nth-child(2) { transition-delay: 0.2s; }
.animate-logo:nth-child(3) { transition-delay: 0.3s; }
.animate-logo:nth-child(4) { transition-delay: 0.4s; }
.animate-logo:nth-child(5) { transition-delay: 0.5s; }
.animate-logo:nth-child(6) { transition-delay: 0.6s; }
.animate-logo:nth-child(7) { transition-delay: 0.7s; }
.animate-logo:nth-child(8) { transition-delay: 0.8s; }
.logo-item.animated { opacity: 1; transform: translateY(0); }
/* Responsive for Logos */
@media (max-width: 991px) {
    .season-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 3rem 1.5rem; }
}
@media (max-width: 767px) {
    .season-logos-grid { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1rem; place-items: center; }
    .logo-item { width: 100%; max-width: 300px; padding: 1.5rem; margin: 0 auto; }
}
@media (max-width: 575px) {
    .season-logos-grid { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem 0.5rem; }
    .logo-item { width: 100%; max-width: 300px; padding: 1.5rem; margin: 0 auto; }
}
/* --- END MODERN SEASONS SECTION --- */


/* --- SERVICES SECTION STYLES --- */
.services-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    width: 100%;
    align-items: flex-start;
    text-align: left;
}
.service-description p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #DDDDDD;
}
.service-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #0d0d0d;
    padding: 80px;
    border-radius: 8px;
}
.stat-large {
    text-align: left;
    border-bottom: none;
    padding: 20px;
}
.stat-large .number {
    font-size: 6.5em;
    font-weight: 500;
    color: white;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    padding-bottom: 20px;
}
.stat-large .number .suffix {
    font-size: 0.5em;
    vertical-align: super;
    font-weight: 400;
}
.stat-large .label {
    font-size: 1em;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
    display: block;
    border-top: 1px solid #ffffff0d;
    padding-top: 15px;
}
.service-items-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 80px;
    width: 100%;
}
.service-square {
    background-color: #1a1a1a;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    color: #BBBBBB;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.service-square:hover {
    background-color: #2a2a2a;
    transform: translateY(-5px);
}
/* Responsive for Services */
@media (max-width: 768px) {
    .service-grid { grid-template-columns: 1fr; text-align: center; }
    .stat-large { text-align: center; }
    .service-square { width: 150px; height: 150px; }
    .stat-large .number { font-size: 3em; }
    .stat-large .label { font-size: 0.9em; }
}
@media (max-width: 480px) {
    .service-square { width: 120px; height: 120px; font-size: 0.9em; }
}
/* --- END SERVICES SECTION --- */


/* --- PROFILE SECTION STYLES --- */
.profile-section { padding-top: 150px; padding-bottom: 150px; }
.profile-content {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
}
.profile-image-wrapper { flex-shrink: 0; }
.profile-photo {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
.profile-text-info { flex-grow: 1; max-width: 600px; }
.profile-greeting {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #E0E0E0;
}
.highlight-name { color: #BBBBBB; font-weight: 700; }
.profile-bio { font-size: 1.1em; margin-bottom: 30px; color: #DDDDDD; }
.profile-stats-small { display: flex; gap: 40px; margin-top: 30px; }
.stat-small-item { text-align: left; }
.stat-small-item .number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: #E0E0E0;
    display: block;
    line-height: 1;
}
.stat-small-item .label { font-size: 0.85em; text-transform: uppercase; color: #AAAAAA; }
@media (max-width: 992px) {
    .profile-content { flex-direction: column; gap: 50px; text-align: center; }
    .profile-text-info { max-width: 100%; }
    .profile-stats-small { justify-content: center; }
    .profile-photo { max-width: 80%; height: auto; }
}
@media (max-width: 480px) {
    .profile-photo { width: 100%; }
    .profile-greeting { font-size: 2em; }
    .profile-bio { font-size: 1em; }
    .profile-stats-small { flex-direction: column; gap: 20px; }
}
/* --- END PROFILE SECTION STYLES --- */


/* --- CONTACT SECTION STYLES --- */
.contact-section { padding: 80px 20px; background-color: #000; text-align: center; }
.contact-header { margin-bottom: 60px; }
.get-in-touch {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1;
    position: relative;
    display: inline-block;
}
.contact-title::before { content: 'CONTACT'; color: #fff; }
.contact-title::after {
    content: 'T';
    color: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}
.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.contact-form {
    flex: 2;
    min-width: 300px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
}
.form-group { margin-bottom: 25px; }
.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color:white;
    margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: calc(100% - 20px);
    padding: 15px 10px;
    background-color: #ffffff08;
    border: .1vw solid #ffffff0d;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #777; }
.form-group input:focus, .form-group textarea:focus { border-color: #666; }
.form-group textarea { resize: vertical; min-height: 100px; }
.submit-button {
    background-color: #fff;
    color: #000;
    padding: 18px 50px;
    border: none;
    border-radius: 5px;
    font-size: 15.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
}
.submit-button:hover { background-color: #eee; }
.contact-info {
    flex: 1;
    min-width: 510px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 42px;
}
.info-card {
    background-color: #ffffff08;
    border: .1vw solid #ffffff0d;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    height: 245px;
}
.icon-wrapper {
    background-color: #333;
    border-radius: 50%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.icon { width: 24px; height: 24px; color: #fff; }
.info-label {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.info-value { font-size: 16px; font-weight: 400; color: #fff; line-height: 1.4; }
@media (max-width: 768px) {
    .contact-content { flex-direction: column; align-items: center; }
    .contact-form, .contact-info { width: 100%; max-width: 500px; }
    .contact-header { margin-bottom: 40px; }
    .contact-title { font-size: 45px; }
}
@media (max-width: 480px) {
    .contact-section { padding: 50px 15px; }
    .contact-title { font-size: 35px; }
    .contact-form { padding: 25px; }
    .info-card { flex-direction: column; text-align: center; padding: 20px; }
    .icon-wrapper { margin-bottom: 10px; }
}
/* --- END CONTACT SECTION --- */


/* --- TESTIMONIALS SECTION STYLES --- */
.testimonials-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}
.testimonials-container {
    position: relative;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.central-image-wrapper {
    position: absolute;
    width: 600px;
    height: 800px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    will-change: transform, opacity, filter;
    z-index: 1;
    pointer-events: none;
    transition: filter 0.3s ease;
}
.central-image-wrapper:hover .central-image { filter: blur(10px); }
.central-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: filter 0.3s ease;
}
.testimonial-cards-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.testimonial-card {
    position: absolute;
    width: 400px;
    height: auto;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    will-change: transform, opacity, backdrop-filter;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: translateX(100vw);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: #ffffff08;
    border: 1px solid #ffffff0d;
}
.testimonial-card .card-logo {
    width: 100px;
    margin-bottom: 15px;
    filter: grayscale(100%) brightness(200%);
}
.testimonial-card p { font-size: 1.1rem; line-height: 1.8; margin: 0; color: white; }
.testimonial-card .author {
    font-weight: bold;
    font-size: 1rem;
    color: #bbb;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.testimonial-card .author-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-card .author-info { flex-direction: column; line-height: 1.2; color: white; display: flex; }
.testimonial-card .author-subtitle { font-size: 0.8rem; font-weight: normal; color: white; }
/* Card Positions */
.testimonial-card[data-index="0"] { top: 30%; left: 30%; transform: translate(-50%, -50%); z-index: 5; }
.testimonial-card[data-index="1"] { top: 72%; left: 60%; transform: translate(-50%, -50%); z-index: 4; }
.testimonial-card[data-index="2"] { top: 35%; left: 80%; transform: translate(-50%, -50%); z-index: 3; }
/* Responsive for Testimonials */
@media (max-width: 1024px) {
    .central-image-wrapper { width: 400px; height: 500px; }
    .testimonial-card { width: 350px; padding: 20px; }
    .testimonial-card[data-index="0"] { top: 30%; left: 25%; }
    .testimonial-card[data-index="1"] { top: 50%; left: 50%; }
    .testimonial-card[data-index="2"] { top: 70%; left: 75%; }
}
@media (min-width: 769px) { .central-image-wrapper { opacity:1 !important; display: block !important;} }
@media (max-width: 768px) {
    .item-overlay h3, .item-overlay a { display: none; }
    .central-image-wrapper { display: none; }
    .testimonial-card {
        width: 90%; max-width: 400px; position: relative; margin: 20px auto;
        opacity: 0; transform: translateY(100px);
        left: auto !important; top: auto !important;
        backdrop-filter: none; -webkit-backdrop-filter: none;
        background: rgba(26, 26, 26, 0.9);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .testimonial-cards-wrapper {
        display: flex; flex-direction: column; align-items: center;
        justify-content: flex-start; position: relative; height: auto;
        padding-top: 20px; width: 100%;
    }
    .testimonials-container { flex-direction: column; justify-content: flex-start; align-items: center; }
    .testimonial-card[data-index="0"], .testimonial-card[data-index="1"], .testimonial-card[data-index="2"] {
        top: auto; left: auto; transform: translateY(100px); z-index: auto;
    }
}
/* --- END TESTIMONIALS SECTION --- */


/* --- PERSPECTIVE GALLERY SECTION STYLES --- */
.perspective-gallery-section { position: relative; width: 100%; overflow: hidden; }
.gallery-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    perspective: 1200px;
}
.gallery-container {
    display: flex;
    gap: 25px;
    padding: 0 10vw;
    height: 100%;
    align-items: center;
    transform-style: preserve-3d;
    will-change: transform;
    transform: translateX(0);
}
.gallery-item {
    flex-shrink: 0;
    width: 400px;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: rotateX(10deg) skewY(-2deg);
    transform-origin: bottom center;
    transition: transform 0.4s ease-out;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .item-overlay { opacity: 1; }
.item-overlay h3 { margin: 0 0 10px; font-size: 1.8em; font-weight: 600; text-shadow: 2px 2px 5px rgba(0,0,0,0.5); }
.contact-button {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}
.contact-button::before { content: '↗'; font-size: 1.2em; }
.contact-button:hover { background-color: #ddd; }
/* Responsive for Gallery */
@media (max-width: 1200px) {
    .gallery-item { width: 350px; height: 480px; }
    .gallery-container { gap: 20px; }
}
@media (max-width: 768px) {
    .perspective-gallery-section { min-height: auto; }
    .gallery-sticky-wrapper {
        position: relative; height: auto; padding: 50px 0; perspective: none; overflow: visible;
    }
    .gallery-container {
        flex-direction: column; transform: none !important; padding: 0; gap: 30px; height: auto;
    }
    .gallery-item {
        width: 85%; height: auto; transform: none !important; box-shadow: 0 5px 15px rgba(0,0,0,0.3); flex-shrink: 1;
    }
    .gallery-item img { height: 400px; object-fit: cover; }
    .item-overlay {
        opacity: 1; position: relative; background: none; padding: 20px;
        align-items: center; text-align: center; height: auto;
    }
    .item-overlay h3 { font-size: 1.5em; margin-bottom: 15px; }
    .contact-button { margin-top: 0; align-self: center; }
}
/* --- END PERSPECTIVE GALLERY SECTION --- */


/* --- FOOTER STYLES --- */
.footer {
    background-color: #0a0a0a;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}
.footer-col { padding: 0 10px; }
.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #BBBBBB;
    letter-spacing: 1px;
}
.footer-col p { font-size: 0.95em; margin-bottom: 10px; color: #AAAAAA; }
.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95em;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.social-links a:hover { color: #BBBBBB; }
.copyright { font-size: 0.85em; color: #777777; margin-top: 40px; }
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col { margin-bottom: 30px; }
}
/* --- END FOOTER STYLES --- */


/* --- GENERAL SECTION & TITLE STYLES --- */
.section {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
@media (max-width: 768px) {
    .section { padding: 80px 0; }
}
.section-title {
    font-size: 7em;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-transform: uppercase;
}
.section-title2 {
    font-size: 7em;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px white;
    margin-top: -80px;
}
.section-title3 {
    font-size: 7em;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: white;
}
.section-subtitle {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #BBBBBB;
    margin-top: -70px;
}
@media (max-width: 992px) {
    .section-title { font-size: 4em; }
    .section-title2 { font-size: 4em; margin-top: -60px; }
    .section-subtitle { font-size: 3.5em; }
}
@media (max-width: 768px) {
    .section-title { font-size: 4em; }
    .section-title2 { font-size: 4em; margin-top: -60px; }
    .section-subtitle { font-size: 2.8em; margin-top: -55px; }
}
@media (max-width: 480px) {
    .section-title { font-size: 2.5em; }
    .section-title2 { font-size: 4em; margin-top: -50px; }
    .section-subtitle { font-size: 2.2em; margin-top: -45px; }
}
/* --- END GENERAL SECTION & TITLE STYLES --- */


/* --- STAT GRID STYLES --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: auto;
    margin-bottom: 80px;
    margin-left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    padding: 20px;
}
.stat-item {
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.stat-item:hover { background-color: #2a2a2a; border-color: #555555; }
.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    font-weight: 800;
    color: #E0E0E0;
    margin-bottom: 5px;
    line-height: 1;
}
.stat-label { font-size: 0.9em; text-transform: uppercase; color: #AAAAAA; letter-spacing: 1px; font-weight: 500; }
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        margin-left: 0;
        transform: none;
        justify-content: center;
        width: 100%;
        max-width: none;
    }
}
@media (max-width: 768px) {
    .stat-item { padding: 15px; }
    .stat-number { font-size: 2.2em; }
    .stat-label { font-size: 0.8em; }
}
/* --- END STAT GRID STYLES --- */

/* --- WORKS GRID (GENEL İSİMLENDİRME) --- */
/* Works Section, Work Card ve Works Grid'in yapısal olarak birbirinden farklı olduğunu varsayıyorum. */
/* Eğer works-section'daki bigcard'lar içinse, bu kurallar çakışabilir. */
.works-section .container { padding-top: 0; }
.works-title { font-size: 6em; letter-spacing: -3px; display: inline-block; }
.works-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding: 20px 0;
    margin-top: 50px;
}
.works-grid::-webkit-scrollbar { display: none; }
.works-grid { -ms-overflow-style: none; scrollbar-width: none; }
.work-card {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    scroll-snap-align: start;
}
.work-card:hover { transform: translateY(-10px); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7); }
.work-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section-header-works {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-left: 80px;
    display: inline-block;
}
.section-header-works::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 4px;
    background-color: #BBBBBB;
    border-radius: 2px;
}
.section-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    color: #AAAAAA;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
@media (max-width: 768px) {
    .works-title { font-size: 4.5em; }
    .works-grid { gap: 20px; padding: 10px 0; }
    .work-card { width: 250px; height: 350px; }
    .section-header-works { padding-left: 0; display: block; }
    .section-header-works::before { display: none; }
}
@media (max-width: 480px) {
    .works-title { font-size: 3.5em; }
    .works-grid { gap: 15px; }
    .work-card { width: 200px; height: 300px; }
}
/* --- END WORKS GRID (GENEL İSİMLENDİRME) --- */


/* --- FOOTER STYLES --- */
.footer {
    background-color: #0a0a0a;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}
.footer-col { padding: 0 10px; }
.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #BBBBBB;
    letter-spacing: 1px;
}
.footer-col p { font-size: 0.95em; margin-bottom: 10px; color: #AAAAAA; }
.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95em;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.social-links a:hover { color: #BBBBBB; }
.copyright { font-size: 0.85em; color: #777777; margin-top: 40px; }
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col { margin-bottom: 30px; }
}
/* --- END FOOTER STYLES --- */


















/* --- İletişim Sayfası: Sadece İletişim Formu ve Başlık İçin Responsive CSS --- */

/* Hero Section (Boş olduğu için sadece minimal yükseklik ayarı) */
/* Bu kısım zaten genel stil dosyanızda varsa, burayı eklemeyin veya çakışmaları kontrol edin. */
/* Eğer main.css'inizde .hero-section tanımı yoksa ekleyebilirsiniz. */
.hero-section {
    min-height: 20vh; /* İletişim sayfasında hero section için daha küçük bir yükseklik */
    padding: 0; /* İç paddingleri sıfırla */
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .hero-section {
        min-height: 10vh; /* Mobil cihazlarda daha da küçült */
    }
}


/* --- CONTACT SECTION STYLES --- */
.contact-section {
    padding: 80px 20px; /* Genel padding (masaüstü) */
    background-color: #000; /* Arka plan rengi */
    text-align: center;
    display: flex; /* İçeriği dikey sıralayıp ortalamak için */
    flex-direction: column;
    align-items: center; /* Yatayda ortalamak için */
    justify-content: center; /* Dikeyde ortalamak için */
    /* Sayfanın kalan yüksekliğini doldurmak için min-height */
    /* Navbar ve footer yüksekliğini düşerek hesaplayın. Örnek bir değer: */
    min-height: calc(100vh - var(--navbar-height-desktop, 98px) - 160px); /* Tahmini navbar + footer toplamı 160px (80+80) */
}
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 15px; /* Mobil için padding azalt */
        min-height: auto; /* Mobil cihazlarda içeriğe göre yüksekliği otomatik ayarla */
    }
}

/* Contact Header (İletişim başlığı ve varsa alt başlık için) */
.contact-header {
    margin-bottom: 60px; /* Başlık ve form/bilgiler arası boşluk */
}
@media (max-width: 768px) {
    .contact-header {
        margin-bottom: 40px; /* Mobil için boşluğu azalt */
    }
}

/* Section Title (İLETİŞİM başlığı) */
.section-title3 {
    font-size: 7em; /* Masaüstü boyutu */
    font-weight: 700;
    margin-bottom: 20px; /* Diğer başlıklar gibi boşluk */
    letter-spacing: -2px;
    text-transform: uppercase;
    color: white;
    line-height: 1.2; /* Satır yüksekliği */
}
@media (max-width: 1200px) {
    .section-title3 {
        font-size: 6em; /* Daha büyük tablet/laptop ekranları için */
    }
}
@media (max-width: 992px) {
    .section-title3 {
        font-size: 5em; /* Tabletler için */
    }
}
@media (max-width: 768px) {
    .section-title3 {
        font-size: 4em; /* Mobil ve küçük tabletler için */
    }
}
@media (max-width: 480px) {
    .section-title3 {
        font-size: 3em; /* Çok küçük mobil cihazlar için */
    }
}

/* Contact Content (Form ve Bilgi Kartlarını içeren ana düzen) */
.contact-content {
    display: flex;
    flex-wrap: wrap; /* Küçük ekranlarda elementlerin alt alta sarmasını sağlar */
    justify-content: center; /* İçerikleri yatayda ortala */
    gap: 40px; /* Form ve bilgi kartları arasındaki boşluk */
    max-width: 1200px; /* İçeriğin maksimum genişliği */
    margin: 0 auto; /* Ortala */
    padding: 0 20px; /* Yatay padding */
        width: 100%;
}
@media (max-width: 992px) {
    .contact-content {
        gap: 30px; /* Tabletlerde boşluğu azalt */
        padding: 0 15px; /* Tabletlerde padding azalt */
    }
}
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column; /* Mobil ve küçük tabletlerde alt alta sırala */
        align-items: center; /* Dikeyde ortala */
        gap: 25px; /* Mobil için boşluğu azalt */
    }
}


/* Contact Form */
.contact-form {
    flex: 2; /* Flex öğesi olarak daha fazla yer kaplar */
    min-width: 300px; /* Formun minimum genişliği */
    max-width: 650px; /* Formun maksimum genişliği */
    padding: 40px; /* İç boşlukları */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: left; /* Metin hizalaması */
    background-color: #0d0d0d; /* Form arka planı */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Hafif kenarlık */
}
@media (max-width: 992px) {
    .contact-form {
        flex: 1; /* Tabletlerde daha esnek bir büyüme */
        max-width: 600px; /* Tabletlerde maksimum genişlik */
        padding: 30px; /* Tabletlerde padding azalt */
    }
}
@media (max-width: 768px) {
    .contact-form {
        width: 100%; /* Mobil cihazlarda tam genişlik */
        max-width: 500px; /* Maksimum genişliği koru */
        padding: 25px; /* Mobil için padding azalt */
    }
}
@media (max-width: 480px) {
    .contact-form {
        padding: 20px; /* Çok küçük mobil için padding azalt */
    }
}

/* Form Groups (Label ve Input/Textarea) */
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: white;
    margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%; /* Her zaman %100 genişlik */
    padding: 15px 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1); /* .1vw yerine sabit 1px */
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #666;
}
.form-group textarea {
    resize: vertical; /* Dikey yeniden boyutlandırmaya izin ver */
    min-height: 100px;
}

.submit-button {
    background-color: #fff;
    color: #000;
    padding: 18px 50px;
    border: none;
    border-radius: 5px;
    font-size: 15.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
}
.submit-button:hover {
    background-color: #eee;
}


/* Contact Info Cards (E-MAIL, TELEFON) */
.contact-info {
    flex: 1; /* Kalan alanı kaplar */
    min-width: 300px; /* Minimum genişlik */
    max-width: 450px; /* Maksimum genişlik */
    display: flex;
    flex-direction: column; /* Dikey sıralama (masaüstü) */
    gap: 30px;
    padding: 42px;
    background-color: #0d0d0d;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 992px) {
    .contact-info {
        max-width: 400px; /* Tabletlerde daha az genişlik */
        padding: 30px;
    }
}
@media (max-width: 768px) {
    .contact-info {
        width: 100%; /* Mobil cihazlarda tam genişlik */
        max-width: 500px; /* Maksimum genişliği koru */
        padding: 25px;
        flex-direction: row; /* Mobil cihazlarda kartları yan yana sırala */
        flex-wrap: wrap; /* Yan yana sığmazsa sar */
        justify-content: center; /* İçerikleri ortala */
        gap: 20px; /* Kartlar arası boşluk */
        height: auto; /* İçeriğe göre yüksekliği otomatik ayarla */
    }
    .info-card {
        width: calc(50% - 10px); /* İki kartın yan yana sığması için boşlukları düş */
        min-width: unset; /* Minimum genişliği kaldır */
        height: auto; /* İçeriğe göre yükseklik */
        padding: 20px;
        flex-direction: column; /* Kart içeriğini alt alta sırala */
        text-align: center; /* Metinleri ortala */
    }
    .info-card .icon-wrapper { margin-bottom: 10px; } /* Mobil için ikon altında boşluk */
}
@media (max-width: 480px) {
    .contact-info {
        padding: 20px;
        flex-direction: column; /* Çok küçük ekranlarda tekrar alt alta sırala */
        gap: 15px;
    }
    .info-card {
        width: 100%; /* Tam genişlik */
        max-width: 300px; /* Daha dar bir maksimum genişlik */
    }
}


/* Info Card Specifics */
.info-card {
    background-color: #1a1a1a; /* Kartların kendi arka planı */
    border: 1px solid rgba(255, 255, 255, 0.1); /* .1vw yerine sabit 1px */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    height: 245px; /* Sabit yükseklik, responsive'de değişecek */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}
.icon-wrapper {
    background-color: #333;
    border-radius: 50%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.icon {
    width: 24px;
    height: 24px;
    color: #fff;
}
.info-label {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.info-value {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
}

/* --- END CONTACT SECTION STYLES --- */