/* Portfolio Split Layout Hero Section */
body,
html {
    cursor: none;
    /* Standart bilgisayar okunu sayfa genelinde gizle */
}

/* Tüm tıklanabilir ögelerde varsayılan el (pointer) ikonunu da gizleyelim ki kendi efekti çalışsın */
a,
button,
input,
textarea,
.nav-line,
.port-slide {
    cursor: none !important;
}

.hero {
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    background-color: var(--color-bg);
    overflow: hidden;
}

/* Sol Taraf: Tipografi ve Felsefe */
.hero-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    /* Ciddi bir whitespace bırakıyoruz */
    z-index: 2;
}

.hero-text-content {
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-gray-text);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: var(--spacing-lg);
}

.hero-title {
    display: flex;
    flex-direction: column;
    font-family: var(--font-primary);
    font-size: calc(var(--font-size-display) * 1.5);
    /* Çok büyük, iddialı boyut */
    font-weight: 300;
    /* Çok ince - Elegant */
    line-height: 1.25;
    color: var(--color-bg-dark);
    /* Koyu siyah/antrasit */
    margin-bottom: var(--spacing-lg);
    /* Üstteki hero-label'a olan (60px) mesafesiyle ALT kısımdaki description'a olan mesafeyi eşitledik. */
}

.hero-title span {
    display: block;
    /* overflow: hidden silindi; çünkü mobilde y ve g gibi dikey uzayan harflerin kuyruklarını makaslıyordu */
}

.hero-title span::after {
    display: block;
    content: '';
}

/* Title Satır Stilleri */
.hero-title .line-2 {
    font-style: italic;
}

.hero-description {
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    color: var(--color-text);
    line-height: 1.8;
    max-width: 450px;
    margin-bottom: var(--spacing-2xl);
}

/* Yeni: Hero Butonları Yan Yana Sığdırma Kapsayıcısı */
.hero-buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    /* İki buton arası dikey boşluk */
    margin-top: 10px;
}

/* Yeni: CV İndirme Butonuna Özgü Tasarım (Ana butondan ayrıştırmak için biraz daha şeffaf) */
.btn-download-cv {
    opacity: 0.6;
}

.btn-download-cv:hover {
    opacity: 1;
}

.btn-explore-arrow {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-secondary);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-bg-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    margin-top: 10px;
}

/* Çizgi ve Yönlendirme Oku (Saf CSS) */
.arrow-line {
    position: relative;
    display: flex;
    align-items: center;
    width: 60px;
    /* Standart başlangıç uzunluğu */
    height: 1px;
    background-color: var(--color-bg-dark);
    transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.arrow-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--color-bg-dark);
    border-right: 1px solid var(--color-bg-dark);
    transition: right 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Hover Uzama Efekti */
.btn-explore-arrow:hover .arrow-line {
    width: 140px;
    /* Sağa, resmin üzerine (slider'a) doğru uzama şovu */
}

/* Ekstra translateX animasyonuna veya icon hareketine artık gerek yok,
 * çünkü ok (.arrow-line::after) zaten .arrow-line'ın sağ köşesine yapışık! */

/* Sağ Taraf: Sanat/Resim Alanı */
.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5%;
    background-color: var(--color-bg);
}

/* Footer Section */
.footer-section {
    padding: 80px 0;
    /* Standart site alt/üst boşluğu 80px yapıldı */
    background-color: var(--color-bg);
}

.hero-image-wrapper {
    position: relative;
    width: 90%;
    /* Kullanıcı isteği: Resim biraz daha geniş olsun */
    height: 80vh;
    /* Biraz daha uzun ve görkemli */
    border-radius: 12px;
    /* Köşeleri ovallendir */
    overflow: hidden;
    box-shadow: var(--shadow-header);
    /* Slider için eklemeler */
    display: flex;
    align-items: center;
}

/* Yeni Portfolio Slider Yapısı */
.portfolio-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    /* Maskeleme taşmasını engelleyen fix */
}

.port-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    display: flex;
    /* İçerik için */
    align-items: flex-end;
    /* İçeriği alta almak için */
    justify-content: flex-start;
    /* İçeriği sola dayamak için */
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
}

/* Slider üstü hafif karartma (yazının okunması için) */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
    pointer-events: none;
}

/* Slayt içindeki içerik kutusu */
.slide-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    /* İçeriği genişlet */
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    /* Slayt aktif olduktan az sonra içeri gelsin */
}

/* Aktif slaytta içeriğin belirmesi */
.port-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

/* Aktif slaytta görünür hale gelmesi */
.port-slide.active {
    opacity: 1;
}

/* Proje Başlığı (Slider İçi) */
.slide-title {
    font-family: var(--font-primary);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 400;
    color: var(--color-text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* "GO TO PROJECT" Link Alanı (Slider İçi) */
.slide-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-light);
    /* Beyaz yazı */
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.slide-link:hover {
    opacity: 0.8;
}

/* Uzayan Ok Çizgisi */
.slide-arrow-line {
    position: relative;
    display: flex;
    align-items: center;
    width: 40px;
    /* Başlangıç uzunluğu (daha kompakt) */
    height: 1px;
    background-color: var(--color-text-light);
    transition: width 0.4s ease;
}

/* Okun ucu */
.slide-arrow-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--color-text-light);
    border-right: 1px solid var(--color-text-light);
}

/* Slider hoverında okun uzaması (Sadece linkin üstüne gelince) */
.slide-link:hover .slide-arrow-line {
    width: 100px;
    /* Uzadığı hali */
}

/* Alt Geniş Yatay Navigasyon Çizgileri */
.slider-nav-bottom {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    /* Hepsi en alta yapışık */
    gap: 0;
    z-index: 5;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
}

.slider-nav-bottom .nav-line {
    flex: 1;
    /* Uzunluğu ekran genişliğince eşit bölüşür */
    height: 3px;
    /* Normal hal ince */
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

/* En sağdaki ve en soldaki çizgilerin dış köşelerinin sivri kalıp dışarı taşmasını yüzde yüz engellemek için */
.slider-nav-bottom .nav-line:first-child {
    border-bottom-left-radius: 12px;
}

.slider-nav-bottom .nav-line:last-child {
    border-bottom-right-radius: 12px;
}

.slider-nav-bottom .nav-line.active {
    height: 6px;
    /* Aktif olan kalın */
    background-color: var(--color-text-light);
    box-shadow: 0 -2px 10px rgba(255, 255, 255, 0.4);
}

.slider-nav-bottom .nav-line:hover {
    background-color: rgba(255, 255, 255, 0.8);
    height: 6px;
}

/* Modern İnce Scroll Özelliği */
.scroll-indicator-modern {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 10%;
    /* Sol tarafın ortasına veya sayfanın tam geneline göre hizalama yapacağız */
    color: var(--color-gray-text);
    animation: bounce 2s infinite;
}

/* Scroll İkonunu Ekranın Tam Ortasına (İki bölümün arasına) Hizalama */
.hero .scroll-indicator-modern {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gray-text);
    z-index: 10;
    animation: bounce 2s infinite;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUpFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Manifesto / The Approach Section */
.manifesto {
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: var(--color-text-light);
    /* margin-bottom 0 yapılarak alt tarafa sadece Avantajlar'ın 80px'lik padding boşluğu bırakıldı */
}

.manifesto-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.manifesto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.65);
    /* Resmi soluk/karanlık yapan filtre */
}

.manifesto-container {
    position: relative;
    z-index: 3;
    /* Overlay'in üstünde kalacak */
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.manifesto-eyebrow {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: var(--spacing-xl);
}

.manifesto-title {
    font-family: var(--font-secondary);
    /* Kullanıcı isteği: Okunaklı düz font */
    font-size: var(--font-size-lg);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

.manifesto-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.sig-name {
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-text-light);
}

.sig-role {
    font-family: var(--font-secondary);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Advantages Section (Modern, Beyaz Minimalist Temalı) */
.advantages-modern {
    padding: 80px 0;
    /* İçerden üst ve alt tam 80px nizamı */
    /* margin-bottom 0 yapılarak alt bölümle (resim alanı) çakışması önlendi */
    background-color: var(--color-bg);
    /* Saf beyaz/açık ton */
    text-align: center;
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.adv-eyebrow {
    font-family: var(--font-secondary);
    font-size: var(--font-size-md);
    font-weight: 300;
    color: var(--color-bg-dark);
    /* Koyu Antrasit/Siyah */
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    /* Başlık altı geniş boşluk */
}

.adv-subtitle {
    font-family: var(--font-secondary);
    font-size: 15px;
    /* Resmi yansıtan ince-orta font */
    color: var(--color-gray-text);
    /* Hafif gri */
    line-height: 1.8;
    /* Satır aralığı daha nefes alsın */
    max-width: 800px;
    margin: 0 auto 80px;
    /* İkonlar alanından 80px koparır (Tam nizam) */
}

/* 4'lü Grid Alanı */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: 80px;
    /* Butondan koparır */
}

.adv-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    /* Yazıların çok sıkışmaması için yatay esneme */
}

/* İkon Alanı Şablonu (Artık Boxicons Font İkonu) */
.adv-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
    color: var(--color-bg-dark);
    /* İkon rengi */
}

.adv-icon i {
    font-size: 40px;
    /* İkon boyutu */
    font-weight: 300;
}

.adv-title {
    font-family: var(--font-secondary);
    /* Daha düz, okunaklı font */
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-bg-dark);
    margin-bottom: 15px;
}

.adv-desc {
    font-family: var(--font-secondary);
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-gray-text);
}

/* Altındaki İnce Kesim ABOUT US Butonu */
.adv-action {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.btn-adv-outline {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-bg-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--color-black);
    /* Eski tip siyah ince kutu kenarlığı */
    transition: all 0.3s ease;
}

.btn-adv-outline:hover {
    background-color: var(--color-bg-dark);
    color: var(--color-bg);
}

/* Project of the Month (Single Featured Project) */
.project-of-month {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 0;
    /* İçerden üst/alt alanları 80px */
    /* Dış marjinler "0" yapılarak çevredeki blokların paddig'ine bırakıldı */
    overflow: hidden;
}

.pom-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.pom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    /* Resim1'deki gibi koyu overlay */
    z-index: 2;
}

.pom-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 var(--spacing-lg);
}

.pom-title {
    font-family: var(--font-primary);
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pom-subtitle {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Resim 2'deki gibi minimalist "GO TO PROJECT --->" Ok Linki (Ucu Birleşik) */
.pom-link {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    /* Yazı ile ok arasındaki boşluk */
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light);
    /* Koyu fon üzerinde beyaz */
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.pom-link span {
    position: relative;
}

/* Çizgi ve Yönlendirme Oku (Saf CSS) */
.pom-arrow-line {
    position: relative;
    display: flex;
    align-items: center;
    width: 60px;
    /* Başlangıç uzunluğu */
    height: 1px;
    background-color: var(--color-text-light);
    transition: width 0.4s ease;
}

.pom-arrow-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--color-text-light);
    border-right: 1px solid var(--color-text-light);
    /* Ok ucu çizginin ucunda tamamen sabit */
}

/* Hover esnasında çizginin kırılmadan uzaması ve soluklaşmaması */
.pom-link:hover {
    opacity: 1 !important;
}

.pom-link:hover .pom-arrow-line {
    width: 100px;
    opacity: 1 !important;
}

.pom-link:hover .pom-arrow-line::after {
    opacity: 1 !important;
}

/* Featured Works (Gallery Approach) */
.featured-works {
    position: relative;
    padding: 80px 0;
    /* Alt ve üst tam 80px alan bırakıarak resimden uzaklaşıldı */
    background-color: var(--color-bg);
    /* Varsayılan bembeyaz/açık zemin */
    overflow: hidden;
    /* Dışa taşan hovering resimleri engellemek için */
}

.featured-container {
    position: relative;
    z-index: 2;
    /* Resmin daima üstünde durur */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.featured-eyebrow {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-gray-text);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: var(--spacing-2xl);
    text-align: center;
}

.featured-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.featured-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.featured-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.featured-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: var(--color-bg-dark);
    overflow: hidden;
    /* Resmin satırdan dışarı taşmasını engeller */
}

/* Her bir satır için ayrı ayrı çalışan hover arkaplan resmi */
.feat-row-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.7s ease;
    transform: scale(1.05);
    /* Yavaşça zoom out ile açılır */
    z-index: 1;
}

.featured-link:hover .feat-row-bg {
    opacity: 1;
    /* Sadece o satırın resmi parlar */
    transform: scale(1);
}

.feat-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-xl) 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease;
    /* Yazının solma efekti çok daha yumuşak */
}

/* Hover olduğunda sadece içeriği (yazıları) saklar */
.featured-link:hover .feat-content {
    opacity: 0;
}

.feat-number {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--color-gray-text);
    width: 10%;
}

.feat-title {
    font-family: var(--font-primary);
    font-size: clamp(30px, 5vw, 60px);
    /* Dev ekranlarda büyük, telefonda küçük */
    font-weight: 300;
    line-height: 1;
    width: 70%;
}

.feat-category {
    font-family: var(--font-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gray-text);
    width: 20%;
    text-align: right;
    transition: color 0.3s ease;
}

/* Hover Etkileşimi */
.featured-link:hover .feat-title {
    color: var(--color-text-dark);
    /* Gerekirse hovering rengi */
}

.featured-link:hover .feat-number,
.featured-link:hover .feat-category {
    color: var(--color-text-dark);
}

/* Social Networks Section */
.social-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    padding: 0 !important;
    overflow: hidden;
    color: var(--color-text-light);
}

.social-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: transform var(--transition-slow);
}

.social-section:hover .social-bg {
    transform: scale(1.05);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: var(--color-overlay-darker);
    transition: all var(--transition-slow);
}

.social-section:hover .social-overlay {
    opacity: 0.9;
}

.social-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    text-align: center;
}

.social-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-regular-thin);
    text-transform: uppercase;
}

.social-subtitle {
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
    opacity: 0.9;
    font-family: var(--font-primary);
    font-size: var(--font-size-ms);
}

.social-icons {
    display: flex;
    gap: 20px;
    margin: 0 auto var(--spacing-md);
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--icon-size-xl);
    height: var(--icon-size-xl);
    background-color: var(--color-text-light);
    color: var(--color-bg-dark);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.social-icon i {
    font-size: 50px;
    line-height: 1;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 1 !important;
}

.social-studio-team {
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Tablet Responsiveness (iPad Air etc.) */
@media (max-width: 1024px) {
    .hero-left {
        flex: 0.8;
        /* Make text area noticeably smaller */
        padding: 0 5%;
        /* Reduce whitespace around text */
    }

    .hero-right {
        flex: 1.5;
        /* Make image slider noticeably wider */
        /* Padding inherits from desktop (5%) */
    }

    .hero-title {
        font-size: 6vw;
        /* Scale down for tablets */
    }

    .projects-links {
        height: 300px;
        /* Reduced height to prevent vertical cropping */
    }

    .project-title {
        font-size: 36px;
        /* Reduced for tablet (from 48px) */
    }

    .project-subtitle {
        font-size: 12px;
        /* Reduced for tablet */
    }

    /* Social Section (Tablet) */
    .social-section {
        height: auto;
        padding: 0 !important;
        aspect-ratio: 16/9;
        /* Standard Tablet Ratio */
    }

    .social-title {
        font-size: 36px;
    }

    .social-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .social-icon {
        width: 60px;
        height: 60px;
    }

    .social-icon i {
        font-size: 32px;
    }

    /* Grids (Services & Advantages) - Stack on Tablet */
    .services-grid,
    .adv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    /* Hero Layout Structure */
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        /* Push below header */
    }

    .hero-left {
        flex: none;
        padding: 0 5%;
        margin-bottom: 80px;
        /* Force exactly 80px gap above the image */
        align-items: center;
        text-align: center;
    }

    .hero-buttons-wrapper {
        align-items: center;
    }

    .hero-right {
        flex: none;
        padding: 0 5%;
        /* Same side padding as text */
        justify-content: center;
        margin-bottom: var(--spacing-2xl);
    }

    .hero-image-wrapper {
        width: 100%;
        height: 50vh;
        /* Landscape orientation */
        min-height: 350px;
    }

    /* Hero Typography */
    .hero-title {
        font-size: 8vw;
        /* Slightly larger on mobile due to smaller screen width */
        letter-spacing: 1px;
    }

    .typewriter-text {
        font-size: var(--font-size-sm);
        min-height: 1.2em;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: var(--spacing-ms);
        /* Closer to bottom */
    }

    .scroll-indicator svg {
        width: var(--icon-size-sm);
        /* Smaller icon */
    }

    /* Grids (Services & Advantages) */
    .services-grid,
    .adv-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .service-item,
    .advantages-item {
        padding: var(--spacing-xxs);
    }

    /* Project of the Month (Tablet/Mobile) */
    .pom-link {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        /* Merkezi Hizalama */
        text-align: center;
    }

    .pom-arrow-line {
        align-self: center;
        /* Oku da tam merkeze çeker */
    }

    /* Project Links Section */
    .projects-links {
        flex-direction: column;
        height: auto;
    }

    .project-link-item {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        /* Prevent cropping */
    }

    .project-content {
        padding: 0 var(--spacing-sm);
    }

    .project-title {
        font-size: 42px;
        /* Tablet size (larger) */
        letter-spacing: 1px;
    }

    .project-subtitle {
        font-size: 12px;
        /* Tablet size */
        letter-spacing: 2px;
    }

    /* Featured Works (Tablet) */
    .feat-title {
        font-size: 32px;
        /* Smaller for tablet */
    }

    .feat-category {
        font-size: 11px;
    }

    .feat-number {
        font-size: 12px;
    }

    /* Social Section */
    .social-section {
        height: auto;
        padding: 0 !important;
        aspect-ratio: 16/9;
        /* Revert to landscape for tablet */
    }

    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-xs);
        /* Decrease gap slightly */
    }

    .social-icon {
        width: 60px;
        /* Increased for Tablet */
        height: 60px;
    }

    .social-icon i {
        font-size: 32px;
        /* Increased for Tablet */
    }

    .social-title {
        font-size: 36px;
        /* Increased for Tablet */
    }

    .social-subtitle {
        font-size: 14px;
        /* Increased for Tablet */
        padding: 0 10px;
    }


    /* Services Buttons Mobile */
    /* Services Buttons Mobile */

    .footer-bottom {
        font-size: 12px;
        /* Increased for Tablet */
        align-items: flex-start;
        /* Align closer to top */
    }
}

/* Mobile Phones Only (Stacked Buttons & Smaller Text) */
@media (max-width: 600px) {
    .services-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: 0;
    }

    .project-title {
        font-size: var(--font-size-lg);
        /* 32px for phones */
    }

    .project-subtitle {
        font-size: var(--font-size-xxs);
        /* 10px for phones */
    }

    /* Featured Works (Mobile Phone) */
    .featured-eyebrow {
        margin-bottom: 80px;
        /* Standartlasma icin 120'den 80'e dusuruldu */
    }

    .feat-title {
        font-size: 18px;
        /* Daha kucuk telefonlar icin biraz daha ufaldi */
        flex: 1;
        /* Sag tarafa dogru iter (Boslugu kullanir) */
        padding-right: 15px;
        /* Kategoriden uzak tutar */
    }

    .feat-category {
        font-size: 8px;
        /* Yine kucuk */
        width: auto;
        /* Sabit yuzde yerine bosluk kadar yer */
        white-space: nowrap;
        /* Asla alt satira ucube sekilde inmez */
    }

    .feat-number {
        font-size: 9px;
        width: auto;
        padding-right: 10px;
    }

    .social-section {
        aspect-ratio: 4/5;
        /* Keep portrait for phones */
    }

    .social-icon {
        width: 50px;
        /* Keep small for phone */
        height: 50px;
    }

    .social-icon i {
        font-size: 24px;
        /* Keep small for phone */
    }

    .social-title {
        font-size: 30px;
        /* Slightly smaller for phone */
    }

    .social-subtitle {
        font-size: 12px;
        /* Keep small for phone */
    }

    .footer-bottom {
        font-size: var(--font-size-xxs);
        border-top: 1px solid var(--color-border-subtle);
        /* 10px for phones */
    }
}


/* Background Image Utilities */
.bg-img-1 {
    background-image: url('../img/main_view_1.webp');
}

.bg-img-2 {
    background-image: url('../img/main_view_2.webp');
}

.bg-img-3 {
    background-image: url('../img/main_view_3.webp');
    /* Sisteme eklenecek yeni fotoğraflarla güncellenebilir */
}

/* Service Icons */
.icon-interior {
    background-image: url('https://static.tildacdn.pro/lib/tildaicon/62663366-3135-4433-b431-633766666563/Tilda_Icons_33_interior_office.svg');
}

.icon-supervision {
    background-image: url('https://static.tildacdn.pro/lib/tildaicon/32653631-3438-4630-a664-343839353236/Tilda_Icons_33_interior_hosteye.svg');
}

.icon-assembly {
    background-image: url('https://static.tildacdn.pro/lib/tildaicon/32353130-3334-4130-a461-336334646331/tile.svg');
}

.icon-estimating {
    background-image: url('https://static.tildacdn.pro/lib/tildaicon/64656633-6562-4734-b730-383037643831/treaty.svg');
}

.icon-design {
    background-image: url('https://static.tildacdn.pro/lib/tildaicon/31383063-3636-4465-b765-623939643934/design.svg');
}

/* =========================================
   SCROLL REVEAL UTILITIES
========================================= */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add slight delay options if needed */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.icon-tour {
    background-image: url('https://static.tildacdn.pro/lib/tildaicon/65336162-6138-4435-b533-633832346635/touragency_group.svg');
}

.icon-hours {
    background-image: url('https://static.tildacdn.pro/lib/tildaicon/35333563-6232-4131-a562-663033373163/8yo_hours.svg');
}

.icon-builder {
    background-image: url('https://static.tildacdn.pro/lib/tildaicon/65633137-3839-4862-a661-663538623232/Tilda_Icons_32_profession_builder.svg');
}



/* Lenis Styles Taşındı */