/* ============================================================
   NEXUM Mimarlik - Unified Stylesheet
   Base CSS from index.html + Page-specific sections
   ============================================================ */

/* ========== BASE (INDEX) ========== */

:root {
    --white: #FFFFFF;
    --off-white: #F2F2F0;
    --black: #0A0A0A;
    --gray: #6B6B6B;
    --light-border: rgba(0,0,0,0.08);
    --accent: #E63312;
    --cream: #FAF9F6;
    --dark: #141414;
    --light: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

.mono {
    font-family: 'Space Grotesk', sans-serif;
}

/* Epic Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.preloader-logo {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    opacity: 0;
    animation: preloader-fade 0.8s ease forwards 0.3s;
    overflow: hidden;
}

.preloader-logo span {
    display: inline-block;
    color: var(--accent);
    animation: preloader-bounce 0.6s ease infinite alternate;
}

@keyframes preloader-bounce {
    to { transform: translateY(-10px); }
}

.preloader-bar {
    width: 300px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), #ff6b4a);
    animation: preloader-load 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 0 0 20px var(--accent);
}

.preloader-percent {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    opacity: 0.7;
    letter-spacing: 0.1em;
}

.preloader-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.3;
}

@keyframes preloader-fade {
    to { opacity: 1; }
}

@keyframes preloader-load {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.preloader.loaded {
    animation: preloader-exit 1.2s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes preloader-exit {
    0% { clip-path: inset(0 0 0 0); }
    100% { clip-path: inset(0 0 100% 0); }
}

/* Magnetic Cursor */
.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-follower {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.cursor-text {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
    transform: translate(-50%, -50%);
}

.cursor.hover {
    transform: scale(0.5);
}

.cursor-follower.hover {
    width: 80px;
    height: 80px;
    opacity: 1;
}

.cursor-follower.project-hover {
    width: 120px;
    height: 120px;
    border-radius: 0;
    border-color: var(--white);
    background: rgba(230, 51, 18, 0.1);
}

/* Noise Overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Animated Grid */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    overflow: hidden;
}

.grid-line {
    position: absolute;
    background: var(--white);
}

.grid-line-v {
    width: 1px;
    height: 0;
    top: 0;
    animation: grid-grow-v 2s ease forwards;
}

.grid-line-h {
    width: 0;
    height: 1px;
    left: 0;
    animation: grid-grow-h 2s ease forwards;
}

@keyframes grid-grow-v { to { height: 100%; } }
@keyframes grid-grow-h { to { width: 100%; } }

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.4;
    animation: particle-float 20s ease-in-out infinite;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.4; }
    25% { transform: translateY(-150px) translateX(80px) scale(1.5); opacity: 0.8; }
    50% { transform: translateY(-250px) translateX(-50px) scale(1); opacity: 0.4; }
    75% { transform: translateY(-100px) translateX(-80px) scale(1.2); opacity: 0.6; }
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid var(--accent);
    opacity: 0.08;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    right: 0;
    animation: shape-rotate 50s linear infinite, shape-morph 10s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: -5%;
    animation: shape-rotate 40s linear infinite reverse, shape-morph 8s ease-in-out infinite 2s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    top: 45%;
    left: 15%;
    animation: shape-float 12s ease-in-out infinite;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 25%;
    right: 20%;
    animation: shape-float 10s ease-in-out infinite 1s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 10%;
    animation: shape-pulse 4s ease-in-out infinite;
}

@keyframes shape-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shape-morph {
    0%, 100% { border-radius: 0; }
    50% { border-radius: 50%; }
}

@keyframes shape-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-60px) rotate(180deg); }
}

@keyframes shape-pulse {
    0%, 100% { transform: scale(1); opacity: 0.08; }
    50% { transform: scale(1.3); opacity: 0.15; }
}

::selection {
    background: var(--accent);
    color: var(--white);
}

a { color: inherit; text-decoration: none; }

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 60px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    mix-blend-mode: difference;
}

header.scrolled {
    height: 80px;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(30px);
    mix-blend-mode: normal;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-mark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover .logo-mark::before { left: 0; }
.logo:hover .logo-mark { transform: rotate(90deg); }

.logo-mark span {
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.logo:hover .logo-mark span { color: var(--white); }

.logo-text {
    overflow: hidden;
    height: 1.5rem;
}

.logo-text span {
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover .logo-text span { transform: translateY(-100%); }

nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

nav a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    overflow: hidden;
}

nav a .nav-text {
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav a .nav-text-hover {
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--accent);
}

nav a:hover .nav-text { transform: translateY(-100%); }

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.header-social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}
.header-social svg {
    width: 14px;
    height: 14px;
    fill: var(--white);
}

.header-btn {
    padding: 16px 40px;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-btn:hover::before { transform: translateY(0); }
.header-btn:hover { border-color: var(--accent); }
.header-btn span { position: relative; z-index: 1; }

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 10;
}

/* Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 12s ease;
    transform: scale(1);
}

.slide.active .slide-bg img {
    transform: scale(1.15);
}

/* Glitch Effect */
.slide-bg.glitch::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    mix-blend-mode: overlay;
    animation: glitch-flash 0.2s ease;
    z-index: 2;
}

@keyframes glitch-flash {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 60px;
    width: 100%;
    max-width: 1000px;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    overflow: hidden;
}

.hero-tag-line {
    width: 80px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    animation: tag-line 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 2.8s;
}

@keyframes tag-line { to { transform: scaleX(1); } }

.hero-tag span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    opacity: 0;
    transform: translateY(30px);
    animation: tag-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 3s;
}

@keyframes tag-reveal { to { opacity: 1; transform: translateY(0); } }

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
    overflow: hidden;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    transform: translateY(120%) rotateX(-80deg);
    opacity: 0;
    transform-origin: top;
}

.hero-title .line:nth-child(1) .word {
    animation: title-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards 3.1s;
}

.hero-title .line:nth-child(2) .word {
    animation: title-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards 3.3s;
}

@keyframes title-reveal {
    to { transform: translateY(0) rotateX(0); opacity: 1; }
}

.hero-title .accent {
    color: var(--accent);
    position: relative;
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--accent);
    opacity: 0.2;
    transform: scaleX(0);
    transform-origin: left;
    animation: accent-line 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 3.8s;
}

@keyframes accent-line { to { transform: scaleX(1); } }

.hero-subtitle {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.9;
    max-width: 550px;
    opacity: 0;
    transform: translateY(40px);
    animation: subtitle-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 3.5s;
    color: rgba(255,255,255,0.7);
}

@keyframes subtitle-reveal { to { opacity: 1; transform: translateY(0); } }

/* Hero Side Stats */
.hero-side {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 48px;
    z-index: 10;
}

.hero-stat {
    text-align: right;
    opacity: 0;
    transform: translateX(50px);
    position: relative;
    padding-right: 24px;
}

.hero-stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--accent);
    opacity: 0.3;
}

.hero-stat:nth-child(1) { animation: stat-reveal 1s ease forwards 3.6s; }
.hero-stat:nth-child(2) { animation: stat-reveal 1s ease forwards 3.8s; }
.hero-stat:nth-child(3) { animation: stat-reveal 1s ease forwards 4s; }

@keyframes stat-reveal { to { opacity: 1; transform: translateX(0); } }

.hero-stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.75rem;
    font-weight: 300;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 2px;
}

.hero-stat-number span {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 400;
}

.hero-stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.5;
    margin-top: 12px;
}

/* Hero Bottom */
.hero-bottom {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0;
    transform: translateY(40px);
    animation: controls-reveal 1s ease forwards 3.8s;
}

@keyframes controls-reveal { to { opacity: 1; transform: translateY(0); } }

.slider-counter {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-counter .current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 2ch;
}

.slider-counter .divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

.slider-counter .total {
    opacity: 0.5;
}

.slider-progress {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.slider-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), #ff6b4a);
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--accent);
}

.slider-arrows {
    display: flex;
    gap: 12px;
}

.slider-arrow {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.slider-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-arrow:hover::before { transform: translateX(0); }
.slider-arrow:hover { border-color: var(--accent); }

.slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.slider-arrow:hover svg { transform: scale(1.2); }

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: scroll-reveal 1s ease forwards 4.2s;
}

@keyframes scroll-reveal { to { opacity: 1; } }

.scroll-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    writing-mode: vertical-rl;
    opacity: 0.5;
}

.scroll-line {
    width: 1px;
    height: 100px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: scroll-down 2.5s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* Slide Thumbnails */
.slide-thumbs {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    gap: 16px;
    z-index: 10;
    opacity: 0;
    transform: translateY(40px);
    animation: thumbs-reveal 1s ease forwards 4s;
}

@keyframes thumbs-reveal { to { opacity: 1; transform: translateY(0); } }

.slide-thumb {
    width: 90px;
    height: 60px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.slide-thumb::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--accent);
    transition: width 0.4s ease;
    z-index: 2;
}

.slide-thumb.active { opacity: 1; }
.slide-thumb.active::before { width: 100%; }
.slide-thumb:hover { opacity: 0.6; }

.slide-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: blur(2px) grayscale(100%);
}

.slide-thumb.active img {
    filter: blur(0) grayscale(0%);
}

.slide-thumb:hover img {
    filter: blur(1px) grayscale(50%);
}

.slide-thumb:hover img { transform: scale(1.1); }

/* Section Styles */
section { position: relative; z-index: 10; }

.section-padding { padding: 200px 60px; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 100px;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 28px;
}

.section-tag::before {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    max-width: 700px;
}

.section-title span { color: var(--accent); }

/* Disciplines */
.disciplines {
    background: var(--white);
    color: var(--black);
}

.disciplines-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
}

.disciplines-content {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.disciplines-text {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--gray);
    margin-top: 40px;
}

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--light-border);
}

.discipline-card {
    background: var(--white);
    padding: 56px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.discipline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.discipline-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    transform: translateY(100%);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.discipline-card:hover::before { transform: scaleX(1); }
.discipline-card:hover::after { transform: translateY(0); }
.discipline-card:hover { transform: translateY(-15px); }

.discipline-card > * { position: relative; z-index: 1; }

.discipline-card:hover .discipline-icon,
.discipline-card:hover .discipline-name,
.discipline-card:hover .discipline-desc,
.discipline-card:hover .discipline-count { color: var(--white); }

.discipline-card:hover .discipline-icon,
.discipline-card:hover > svg { stroke: var(--accent); }

.discipline-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.625rem;
    opacity: 0.3;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.discipline-card:hover .discipline-number {
    opacity: 1;
    color: var(--accent);
}

.discipline-icon,
.discipline-card > svg {
    width: 64px;
    height: 64px;
    stroke: var(--black);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 36px;
    transition: all 0.3s ease;
}

.discipline-name {
    font-size: 1.625rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.discipline-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 28px;
    transition: color 0.3s ease;
}

.discipline-count {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    opacity: 0.5;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.discipline-count::before {
    content: '';
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

/* Projects - Horizontal Scroll on Vertical Scroll */
.projects-wrapper {
    height: 400vh;
    position: relative;
    background: var(--black);
}

.projects-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.projects-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.project-panel {
    flex: 0 0 100vw;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.project-panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.project-panel-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.2) 100%);
}

.project-panel-content {
    position: absolute;
    left: 80px;
    bottom: 100px;
    max-width: 550px;
    z-index: 2;
}

.project-panel-num {
    font-family: 'Inter', sans-serif;
    font-size: 9rem;
    font-weight: 100;
    color: rgba(255,255,255,0.08);
    line-height: 0.8;
    margin-bottom: 20px;
}

.project-panel-cat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 16px;
}

.project-panel-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--white);
}

.project-panel-loc {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.project-panel-loc svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.project-panel-meta {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.project-panel-meta-item span:first-child {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 6px;
}

.project-panel-meta-item span:last-child {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--white);
}

.project-panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 36px;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    transition: all 0.4s ease;
}

.project-panel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.project-panel-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.project-panel-btn:hover svg {
    transform: translateX(5px);
}

/* Progress Bar */
.projects-progress {
    position: absolute;
    bottom: 50px;
    left: 80px;
    right: 80px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.projects-progress-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.15);
    position: relative;
}

.projects-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.1s linear;
}

.projects-progress-count {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.projects-progress-count .cur {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 500;
}

/* Section Header */
.projects-header {
    position: absolute;
    top: 50px;
    left: 80px;
    z-index: 10;
}

.projects-header .section-tag {
    margin-bottom: 10px;
}

.projects-header .section-title {
    color: var(--white);
    font-size: 2rem;
}

/* Stats */
.stats {
    background: var(--black);
    padding: 150px 60px;
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
}

.stats-bg-text {
    font-size: 35vw;
    font-weight: 800;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 56px 40px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--accent);
    transition: width 0.5s ease;
}

.stat-item:hover::before { width: 70%; }

.stat-item:hover {
    background: rgba(255,255,255,0.02);
    transform: translateY(-15px);
    border-color: rgba(230, 51, 18, 0.3);
}

.stat-icon {
    width: 56px;
    height: 56px;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
    margin: 0 auto 32px;
    opacity: 0.5;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number { transform: scale(1.05); }
.stat-number span { color: var(--accent); font-weight: 400; }

.stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.5;
}

/* About */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.about-image:hover img { transform: scale(1.05); }

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(230, 51, 18, 0.4));
    pointer-events: none;
}

.about-image-text {
    position: absolute;
    bottom: 80px;
    left: 80px;
    font-size: 10rem;
    font-weight: 800;
    color: var(--white);
    opacity: 0.08;
    letter-spacing: -0.06em;
}

.about-content {
    padding: 140px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    color: var(--black);
}

.about-text {
    font-size: 1.375rem;
    line-height: 2;
    color: var(--gray);
    margin: 48px 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--off-white);
    transition: all 0.4s ease;
}

.about-feature:hover {
    background: var(--black);
    color: var(--white);
    transform: translateX(15px);
}

.about-feature:hover .feature-icon { stroke: var(--accent); }

.feature-icon {
    width: 28px;
    height: 28px;
    stroke: var(--black);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    transition: stroke 0.3s ease;
}

.feature-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

/* News */
.news {
    background: var(--white);
    color: var(--black);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
}

.news-card { cursor: pointer; }

.news-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    margin-bottom: 36px;
    position: relative;
}

.news-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: var(--accent);
    transition: width 0.6s ease;
}

.news-card:hover .news-image::after { width: 100%; }

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: grayscale(40%);
}

.news-card:hover .news-image img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.news-date {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 20px;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.news-card:hover .news-title { color: var(--accent); }

.news-excerpt {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
}

/* Contact */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.contact-info {
    padding: 140px 100px;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-bg-shape {
    position: absolute;
    top: 50%;
    right: -25%;
    width: 600px;
    height: 600px;
    border: 1px solid var(--accent);
    opacity: 0.08;
    animation: shape-rotate 50s linear infinite;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 72px;
    position: relative;
    z-index: 1;
}

.contact-title span { color: var(--accent); }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.contact-item { transition: transform 0.3s ease; }
.contact-item:hover { transform: translateX(24px); }

.contact-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.5;
    margin-bottom: 10px;
}

.contact-value {
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

a.contact-value:hover { color: var(--accent); }

.contact-social {
    display: flex;
    gap: 20px;
    margin-top: 72px;
    position: relative;
    z-index: 1;
}

.social-link {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.social-link:hover::before { transform: translateY(0); }
.social-link:hover { border-color: var(--accent); }

.social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
    position: relative;
    z-index: 1;
}

.contact-form-wrapper {
    padding: 140px 100px;
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-group { position: relative; }
.form-group.full { grid-column: span 2; }

.form-group label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray);
    margin-bottom: 16px;
    display: block;
    transition: color 0.3s ease;
}

.form-group:focus-within label { color: var(--accent); }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 24px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--light-border);
    font-family: 'Outfit', sans-serif;
    font-size: 1.0625rem;
    color: var(--black);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: none;
    min-height: 140px;
}

.submit-btn {
    align-self: flex-start;
    padding: 24px 64px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.submit-btn:hover::before { transform: translateX(0); }

.submit-btn span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.submit-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.submit-btn:hover svg { transform: translateX(8px); }

/* Footer */
footer {
    padding: 72px 60px;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 1.625rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.footer-links {
    display: flex;
    gap: 56px;
}

.footer-links a {
    font-size: 0.875rem;
    opacity: 0.5;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-links a:hover::after { width: 100%; }

.footer-copy {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6875rem;
    opacity: 0.3;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Base Responsive */
@media (max-width: 1200px) {
    .disciplines-wrapper { grid-template-columns: 1fr; }
    .disciplines-content { position: relative; top: 0; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .project-card:nth-child(1) { grid-column: span 2; }
    .project-card:nth-child(2),
    .project-card:nth-child(3),
    .project-card:nth-child(4),
    .project-card:nth-child(5) { grid-column: span 1; aspect-ratio: 1/1; }
}

@media (max-width: 1024px) {
    .cursor, .cursor-follower, .cursor-text { display: none; }
    body { cursor: auto; }
    header { padding: 0 24px; }
    nav { display: none; }
    .header-social { display: none; }
    .section-padding { padding: 120px 24px; }
    .hero-content { padding: 0 24px; }
    .hero-side { display: none; }
    .hero-bottom { left: 24px; right: 24px; }
    .slide-thumbs { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about { grid-template-columns: 1fr; }
    .about-content { padding: 100px 24px; }
    .news-grid { grid-template-columns: 1fr; }
    .contact { grid-template-columns: 1fr; }
    .contact-info, .contact-form-wrapper { padding: 100px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .projects-wrapper { height: 300vh; }
    .project-panel-content { left: 30px; bottom: 120px; right: 30px; max-width: none; }
    .project-panel-num { font-size: 5rem; }
    .projects-progress { left: 30px; right: 30px; bottom: 30px; }
    .projects-header { left: 30px; top: 30px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: clamp(2.5rem, 12vw, 6rem); }
    .section-header { flex-direction: column; align-items: flex-start; gap: 32px; }
    .disciplines-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-card:nth-child(1),
    .project-card:nth-child(2),
    .project-card:nth-child(3),
    .project-card:nth-child(4),
    .project-card:nth-child(5) { grid-column: span 1; aspect-ratio: 4/3; }
    .stats-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 40px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .floating-shapes, .particles { display: none; }
}


/* ========== HAKKIMIZDA PAGE ========== */

/* Hakkimizda Nav Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hakkimizda Full Screen Nav */
.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.fullscreen-nav.active { opacity: 1; pointer-events: all; }

.fullscreen-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.fullscreen-nav a {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.fullscreen-nav a:hover { opacity: 1; color: var(--accent); }

/* Hakkimizda Hero */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

/* Hakkimizda Story Section */
.story {
    padding: 150px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.story-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.story-content h2 span { color: var(--accent); }

.story-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 30px;
}

.story-year {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.story-year-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.story-year-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.story-image-overlay {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
}

.story-image-overlay span:first-child {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.story-image-overlay span:last-child {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 5px;
}

/* Hakkimizda Values */
.values {
    background: var(--black);
    padding: 150px 80px;
    color: var(--white);
}

.values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 100px;
}

.values-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.values-header p {
    font-size: 1.125rem;
    opacity: 0.6;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.value-item {
    text-align: center;
    padding: 60px 40px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s ease;
}

.value-item:hover {
    border-color: var(--accent);
    background: rgba(230, 51, 18, 0.05);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.6;
}

/* Hakkimizda Team */
.team {
    padding: 150px 80px;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.team-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
}

.team-header h2 span { color: var(--accent); }

.team-header p {
    max-width: 400px;
    color: var(--gray);
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team-member {
    position: relative;
    overflow: hidden;
}

.team-member-img {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

.team-member:hover .team-member-img img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-member-info {
    padding: 25px 0;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-member-role {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hakkimizda Timeline */
.timeline {
    background: var(--black);
    padding: 150px 80px;
    color: var(--white);
}

.timeline-header {
    text-align: center;
    margin-bottom: 100px;
}

.timeline-header h2 {
    font-size: 3rem;
    font-weight: 700;
}

.timeline-track {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.timeline-item:nth-child(odd) { flex-direction: row-reverse; }

.timeline-content {
    width: 45%;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
}

.timeline-item:nth-child(odd) .timeline-content { text-align: right; }

.timeline-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-desc {
    font-size: 0.95rem;
    opacity: 0.6;
    line-height: 1.7;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    margin: 0 40px;
}

/* Hakkimizda Awards */
.awards {
    padding: 150px 80px;
    background: var(--cream);
}

.awards-header {
    text-align: center;
    margin-bottom: 80px;
}

.awards-header h2 {
    font-size: 3rem;
    font-weight: 700;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.award-item {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.award-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.award-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.award-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.award-org {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Hakkimizda CTA */
.cta {
    background: var(--accent);
    padding: 120px 80px;
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 50px;
    background: var(--white);
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.cta-btn:hover { background: var(--black); color: var(--white); }

.cta-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Hakkimizda Fade Animation */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.active { opacity: 1; transform: translateY(0); }

/* Hakkimizda Responsive */
@media (max-width: 1200px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .story { grid-template-columns: 1fr; padding: 100px 40px; gap: 60px; }
    .story-image-overlay { top: auto; right: auto; bottom: -30px; left: -30px; }
    .values { padding: 100px 40px; }
    .values-grid { grid-template-columns: 1fr; gap: 30px; }
    .team { padding: 100px 40px; }
    .team-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .timeline { padding: 100px 40px; }
    .timeline-line { display: none; }
    .timeline-item, .timeline-item:nth-child(odd) { flex-direction: column; }
    .timeline-content { width: 100%; text-align: left !important; }
    .timeline-dot { margin: 20px 0; }
    .awards { padding: 100px 40px; }
    .cta { padding: 80px 40px; }
}

@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
    .awards-grid { grid-template-columns: 1fr; }
}


/* ========== HIZMETLER PAGE ========== */

/* Hizmetler Floating Header */
.header-cta {
    padding: 12px 28px;
    background: var(--accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.header-cta:hover { transform: scale(1.05); }

/* Hizmetler Hero Split */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 80px;
    background: var(--black);
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.6;
    max-width: 450px;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-right-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--black) 0%, transparent 30%);
}

/* Hizmetler Services Grid */
.services {
    padding: 150px 80px;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-header h2 span { color: var(--accent); }

.services-header p {
    font-size: 1.125rem;
    opacity: 0.6;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-10px);
}

.service-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 30px;
    right: 30px;
    line-height: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.6;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* Hizmetler Process */
.process {
    padding: 150px 80px;
    background: var(--black);
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 100px;
}

.process-header h2 {
    font-size: 3rem;
    font-weight: 700;
}

.process-header h2 span { color: var(--accent); }

.process-header p {
    max-width: 400px;
    text-align: right;
    opacity: 0.6;
    line-height: 1.7;
}

.process-timeline {
    display: flex;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,0.1);
}

.process-step {
    flex: 1;
    padding-right: 40px;
    position: relative;
}

.process-step-num {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step-desc {
    font-size: 0.9rem;
    opacity: 0.6;
    line-height: 1.7;
}

/* Hizmetler Expertise */
.expertise {
    padding: 150px 80px;
}

.expertise-header {
    text-align: center;
    margin-bottom: 80px;
}

.expertise-header h2 {
    font-size: 3rem;
    font-weight: 700;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.expertise-item {
    background: rgba(255,255,255,0.03);
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.expertise-item:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.expertise-item:hover .expertise-icon svg { stroke: var(--white); }
.expertise-item:hover .expertise-name { opacity: 1; }

.expertise-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}

.expertise-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.3s ease;
}

.expertise-name {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Hizmetler Stats */
.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

/* Hizmetler Certifications */
.certifications {
    padding: 150px 80px;
    background: var(--black);
}

.certifications-header {
    text-align: center;
    margin-bottom: 80px;
}

.certifications-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.certifications-header p {
    opacity: 0.6;
}

.certifications-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.cert-item {
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.cert-item:hover { opacity: 1; }

.cert-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent);
}

.cert-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hizmetler Slide Animation */
.slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-up.active { opacity: 1; transform: translateY(0); }

/* Hizmetler Responsive */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .expertise-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .services { padding: 100px 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .process { padding: 100px 40px; }
    .process-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .process-header p { text-align: left; }
    .process-timeline { flex-direction: column; gap: 60px; }
    .process-timeline::before { display: none; }
    .expertise { padding: 100px 40px; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .certifications { padding: 100px 40px; }
}


/* ========== PROJELER PAGE ========== */

/* Projeler Hero */
.hero-info {
    max-width: 400px;
    text-align: right;
}

.hero-count {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.hero-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 10px;
}

/* Projeler Filter */
.filter-bar {
    padding: 40px 60px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.filter-btn {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Projeler Grid - Masonry */
.projects-grid {
    padding: 80px 60px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.project-card.large { grid-column: span 8; }
.project-card.medium { grid-column: span 6; }
.project-card.small { grid-column: span 4; }
.project-card.tall { grid-row: span 2; }

.project-card-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.project-card.tall .project-card-img { min-height: 830px; }
.project-card.large .project-card-img { min-height: 500px; }

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-img img {
    transform: scale(1.08);
}

.project-card-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) 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-card:hover .project-card-overlay { opacity: 1; }

.project-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-content {
    transform: translateY(0);
    opacity: 1;
}

.project-card-cat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 12px;
}

.project-card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.project-card-location {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.project-card-num {
    position: absolute;
    top: 30px;
    left: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
    background: var(--black);
    padding: 8px 16px;
}

.project-card-arrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.project-card:hover .project-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.project-card-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
}

/* Projeler Load More */
.load-more {
    text-align: center;
    padding: 60px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 50px;
    background: var(--black);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover { background: var(--accent); }

.load-more-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.load-more-btn:hover svg { transform: translateY(5px); }

/* Projeler Reveal Animation */
.reveal.active { opacity: 1; transform: translateY(0); }

/* Projeler Responsive */
@media (max-width: 1024px) {
    .filter-bar { padding: 30px; }
    .projects-grid { padding: 40px 30px; grid-template-columns: 1fr; }
    .project-card.large, .project-card.medium, .project-card.small { grid-column: span 1; }
    .project-card.tall { grid-row: span 1; }
    .project-card-img, .project-card.tall .project-card-img, .project-card.large .project-card-img { min-height: 350px; }
}


/* ========== PROJE DETAY PAGE ========== */

/* Proje Detay Cursor */
.cursor.expand {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(230, 51, 18, 0.1);
}

/* Proje Detay Navigation */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-back {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.nav-back:hover { opacity: 1; }

.nav-back svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.nav-back:hover svg { transform: translateX(-8px); }

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-contact {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 15px 35px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.nav-contact:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* Proje Detay Hero */
.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1) translateY(0); }
    100% { transform: scale(1.15) translateY(-20px); }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 30%),
        linear-gradient(to top, var(--black) 0%, transparent 50%),
        linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.hero-breadcrumb {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.5;
    margin-bottom: 25px;
}

.hero-breadcrumb span { color: var(--accent); }

.hero-title-wrap {
    overflow: hidden;
    margin-bottom: 30px;
}

@keyframes slideUp {
    to { transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 0.7; }
}

/* Proje Detay Hero Side */
.hero-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
}

/* Proje Detay Scroll Indicator */
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Proje Detay Meta Strip */
.meta-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.meta-item {
    padding: 50px 40px;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease;
}

.meta-item:last-child { border-right: none; }

.meta-item:hover { background: rgba(255,255,255,0.02); }

.meta-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 12px;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Proje Detay Story */
.story-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30vw;
    font-weight: 900;
    color: rgba(255,255,255,0.015);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.05em;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 150px;
    align-items: center;
    position: relative;
}

.story-left {
    position: relative;
}

.story-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15rem;
    font-weight: 700;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: -100px;
    left: -50px;
    line-height: 1;
    pointer-events: none;
}

.story-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 40px;
    position: relative;
}

.story-title span {
    color: var(--accent);
    font-style: italic;
}

.story-quote {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.8;
    padding-left: 30px;
    border-left: 3px solid var(--accent);
}

.story-right p {
    font-size: 1.1rem;
    line-height: 2;
    opacity: 0.7;
    margin-bottom: 30px;
}

.story-right p:first-child {
    font-size: 1.35rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Proje Detay Horizontal Gallery */
.h-gallery {
    padding: 150px 0;
    overflow: hidden;
}

.h-gallery-header {
    padding: 0 80px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.h-gallery-title {
    font-size: 2rem;
    font-weight: 600;
}

.h-gallery-count {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    opacity: 0.5;
}

.h-gallery-track {
    display: flex;
    gap: 30px;
    padding: 0 80px;
    cursor: grab;
    user-select: none;
}

.h-gallery-track:active { cursor: grabbing; }

.h-gallery-item {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
}

.h-gallery-item.large { width: 70vw; height: 80vh; }
.h-gallery-item.medium { width: 50vw; height: 70vh; }
.h-gallery-item.small { width: 35vw; height: 60vh; }

.h-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.h-gallery-item:hover img { transform: scale(1.05); }

.h-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.h-gallery-item:hover .h-gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.h-gallery-caption span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.6;
}

.h-gallery-caption h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 8px;
}

/* Proje Detay Specs */
.specs {
    padding: 150px 80px;
    background: var(--dark);
}

.specs-header {
    max-width: 600px;
    margin-bottom: 100px;
}

.specs-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 20px;
}

.specs-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.1);
}

.spec-card {
    background: var(--dark);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.spec-card:hover::before { transform: scaleX(1); }

.spec-card:hover { background: rgba(255,255,255,0.02); }

.spec-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.spec-card:hover .spec-icon { opacity: 1; }

.spec-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
}

.spec-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.spec-label {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Proje Detay Awards Marquee */
.awards-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.awards-marquee {
    display: flex;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.award-badge {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 80px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.award-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.award-info p {
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Proje Detay Next Project */
.next-project {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.next-project-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    transition: all 1s ease;
}

.next-project:hover .next-project-bg { opacity: 0.5; transform: scale(1.05); }

.next-project-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.next-project-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.next-project-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    opacity: 0.5;
    margin-bottom: 30px;
}

.next-project-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    transition: color 0.3s ease;
}

.next-project:hover .next-project-title { color: var(--accent); }

.next-project-arrow {
    width: 100px;
    height: 100px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 0;
    transition: all 0.5s ease;
}

.next-project:hover .next-project-arrow {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.next-project-arrow svg {
    width: 35px;
    height: 35px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.next-project:hover .next-project-arrow svg { transform: translateX(5px); }

/* Proje Detay Footer */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.5;
    max-width: 300px;
    line-height: 1.7;
}

.footer-nav {
    display: flex;
    gap: 80px;
}

.footer-nav-col h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.4;
    margin-bottom: 25px;
}

.footer-nav-col a {
    display: block;
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-nav-col a:hover { opacity: 1; color: var(--accent); }

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

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

/* Proje Detay Responsive */
@media (max-width: 1200px) {
    .meta-strip { grid-template-columns: repeat(3, 1fr); }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .nav-fixed { padding: 25px 30px; }
    .nav-logo { position: static; transform: none; }
    .nav-contact { display: none; }
    .hero-content { padding: 0 40px 80px; }
    .hero-stat-value { font-size: 2.5rem; }
    .meta-strip { grid-template-columns: repeat(2, 1fr); }
    .meta-item { padding: 30px 25px; }
    .story-container { grid-template-columns: 1fr; gap: 60px; padding: 0 40px; }
    .story-number { font-size: 8rem; top: -50px; left: -20px; }
    .story-title { font-size: 2.5rem; }
    .h-gallery { padding: 80px 0; }
    .h-gallery-header { padding: 0 40px; }
    .h-gallery-track { padding: 0 40px; }
    .h-gallery-item.large { width: 85vw; height: 60vh; }
    .h-gallery-item.medium { width: 75vw; height: 50vh; }
    .h-gallery-item.small { width: 70vw; height: 45vh; }
    .specs { padding: 80px 40px; }
    .specs-grid { grid-template-columns: 1fr; }
    .award-badge { padding: 0 40px; }
    .next-project-title { font-size: 2.5rem; }
    .footer-top { flex-direction: column; gap: 50px; }
    .footer-nav { gap: 40px; flex-wrap: wrap; }
}


/* ========== ILETISIM PAGE ========== */

/* Iletisim Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 100vh;
}

/* Iletisim Left Info */
.contact-info::before {
    content: 'NEXUM';
    position: absolute;
    font-size: 25vw;
    font-weight: 800;
    color: rgba(255,255,255,0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
}

.contact-info-content {
    position: relative;
    z-index: 2;
}

.contact-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--accent);
    margin-bottom: 40px;
}

.contact-text {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.6;
    max-width: 450px;
    margin-bottom: 60px;
}

/* Iletisim Contact Item Labels */
.contact-item-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.4;
}

.contact-item-value {
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item-value:hover { color: var(--accent); }

/* Iletisim Form Section */
.contact-form-section {
    background: var(--light);
    padding: 180px 80px 80px;
    display: flex;
    flex-direction: column;
}

.form-header {
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.form-header p {
    color: var(--gray);
    line-height: 1.6;
}

.form-row.full { grid-template-columns: 1fr; }

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
    opacity: 0.6;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* Iletisim Map Section */
.map-section {
    height: 500px;
    position: relative;
    background: var(--black);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(100%);
    opacity: 0.8;
}

.map-overlay {
    position: absolute;
    top: 50px;
    left: 80px;
    background: var(--white);
    padding: 40px;
    max-width: 350px;
}

.map-overlay h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.map-overlay p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.map-overlay a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.map-overlay a svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Iletisim Offices */
.offices {
    padding: 120px 80px;
    background: var(--white);
}

.offices-header {
    text-align: center;
    margin-bottom: 80px;
}

.offices-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.office-card {
    padding: 50px;
    background: var(--light);
    transition: all 0.4s ease;
}

.office-card:hover {
    background: var(--black);
    color: var(--white);
}

.office-city {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.office-type {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 25px;
}

.office-address {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 25px;
}

.office-phone {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Iletisim Animate */
.animate-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* Iletisim Responsive */
@media (max-width: 1200px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-info { padding: 150px 60px 80px; }
    .contact-form-section { padding: 80px 60px; }
}

@media (max-width: 1024px) {
    .contact-info { padding: 120px 40px 60px; }
    .contact-form-section { padding: 60px 40px; }
    .map-section { height: 400px; }
    .map-overlay { top: 30px; left: 30px; right: 30px; max-width: none; }
    .offices { padding: 80px 40px; }
    .offices-grid { grid-template-columns: 1fr; }
}