/* ============================================
   ATD - ANKARA TURIZM DERNEGI
   Neobrutalist Creative Website
   ============================================ */

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

:root {
    --red: #FF4D4D;
    --orange: #FFB800;
    --purple: #6C63FF;
    --green: #00C9A7;
    --dark: #1a1a2e;
    --darker: #16213e;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --gray-100: #F7F7F8;
    --gray-200: #E8E8ED;
    --gray-300: #D1D1DB;
    --gray-600: #6B6B80;
    --gray-800: #2D2D3F;
    --black: #0F0F1A;
    --shadow-brutal: 4px 4px 0px var(--dark);
    --shadow-brutal-sm: 3px 3px 0px var(--dark);
    --shadow-brutal-lg: 6px 6px 0px var(--dark);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-handwritten: 'Caveat', cursive;
    --nav-height: 72px;
    --container-max: 1280px;
    --container-padding: 24px;
    --border: 2.5px solid var(--dark);
    --border-light: 2px solid var(--gray-200);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) { body { cursor: auto; } }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: none; font-family: inherit; }
@media (max-width: 768px) { button { cursor: pointer; } }

/* CUSTOM CURSOR */
.custom-cursor {
    width: 20px; height: 20px;
    border: 2.5px solid var(--dark);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 99999;
    transition: transform 0.15s var(--ease-out), background 0.15s;
    mix-blend-mode: difference; background: transparent;
}
.custom-cursor.hover { transform: scale(2); background: var(--purple); border-color: var(--purple); }
@media (max-width: 768px) { .custom-cursor { display: none; } }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--border); height: var(--nav-height);
    transition: transform 0.4s var(--ease-out), box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.navbar.hidden { transform: translateY(-100%); }

.nav-container {
    max-width: var(--container-max); margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 56px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-link {
    font-size: 14px; font-weight: 600; padding: 8px 12px; border-radius: 8px;
    transition: all 0.2s var(--ease-out); position: relative; white-space: nowrap;
}
.nav-link:hover { background: var(--dark); color: var(--white); transform: translateY(-1px); }
.nav-link.active { background: var(--dark); color: var(--white); }

.nav-link-cta {
    background: var(--red) !important; color: var(--white) !important;
    border: 2px solid var(--dark); box-shadow: var(--shadow-brutal-sm);
}
.nav-link-cta:hover { transform: translate(-2px, -2px) !important; box-shadow: 5px 5px 0px var(--dark) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-trigger { display: inline-flex; align-items: center; gap: 4px; }
.dropdown-arrow { width: 10px; height: 10px; transition: transform 0.2s; flex-shrink: 0; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 200px;
    background: var(--white); border: var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow-brutal); padding: 8px 0;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.25s var(--ease-out); z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-menu a {
    display: block; padding: 10px 20px; font-size: 14px; font-weight: 500;
    transition: all 0.15s; color: var(--dark);
}
.dropdown-menu a:hover { background: var(--cream); padding-left: 24px; color: var(--red); }

.nav-lang { display: flex; gap: 2px; margin-left: 8px; border: var(--border); border-radius: 8px; overflow: hidden; }
.lang-btn { padding: 6px 12px; font-size: 12px; font-weight: 700; transition: all 0.2s; background: var(--white); }
.lang-btn.active { background: var(--dark); color: var(--white); }
.lang-btn:hover:not(.active) { background: var(--gray-200); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: all 0.3s var(--ease-out); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1100px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
        background: var(--cream); flex-direction: column; padding: 32px; gap: 8px;
        transform: translateX(100%); transition: transform 0.4s var(--ease-out);
        border-top: var(--border); overflow-y: auto;
    }
    .nav-links.active { transform: translateX(0); }
    .nav-link { font-size: 18px; padding: 14px 20px; width: 100%; }
    .nav-dropdown { width: 100%; }
    .dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; border-left: 3px solid var(--red); margin-left: 20px;
        display: none;
    }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .nav-lang { margin-left: 0; margin-top: 16px; }
}

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-heading); font-weight: 700; font-size: 16px;
    padding: 14px 28px; border-radius: var(--radius); border: var(--border);
    transition: all 0.2s var(--ease-out); position: relative; cursor: pointer;
}
.btn-primary { background: var(--red); color: var(--white); box-shadow: var(--shadow-brutal); }
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0px var(--dark); }
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0px var(--dark); }
.btn-secondary { background: var(--white); color: var(--dark); box-shadow: var(--shadow-brutal); }
.btn-secondary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0px var(--dark); background: var(--orange); }
.btn-secondary:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0px var(--dark); }
.btn-sm { font-size: 14px; padding: 10px 20px; }
.btn-arrow { width: 20px; height: 20px; transition: transform 0.3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* HERO */
.hero {
    min-height: 100vh; position: relative; display: flex;
    flex-direction: column; align-items: center; justify-content: center;
    overflow: hidden;
}

.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(26,26,46,0.5) 0%, rgba(26,26,46,0.7) 60%, rgba(26,26,46,0.9) 100%);
}

.hero-content {
    position: relative; z-index: 2; text-align: center;
    max-width: 800px; padding: 0 var(--container-padding);
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 160px;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3); border-radius: 100px;
    padding: 8px 20px; font-size: 14px; font-weight: 600; color: var(--white);
    margin-bottom: 24px; animation: slideUp 0.6s var(--ease-out) both;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
    font-family: var(--font-heading); font-size: clamp(52px, 10vw, 100px);
    font-weight: 800; line-height: 1.05; letter-spacing: -3px;
    margin-bottom: 20px; color: var(--white);
}
.title-line { display: block; animation: slideUp 0.6s var(--ease-out) both; animation-delay: 0.1s; }
.title-accent { color: var(--orange); animation-delay: 0.2s; }

.hero-subtitle {
    font-family: var(--font-heading); font-size: clamp(18px, 3vw, 28px);
    font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 16px;
    animation: slideUp 0.6s var(--ease-out) both; animation-delay: 0.3s;
}
.hero-desc {
    font-size: 17px; color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 32px;
    animation: slideUp 0.6s var(--ease-out) both; animation-delay: 0.35s;
}
.hero-cta {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    animation: slideUp 0.6s var(--ease-out) both; animation-delay: 0.4s;
}

@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Hero Dots */
.hero-dots {
    position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; gap: 10px;
}
.hero-dot {
    width: 12px; height: 12px; border-radius: 50%;
    border: 2px solid var(--white); background: transparent;
    cursor: pointer; transition: all 0.3s;
}
.hero-dot.active { background: var(--orange); border-color: var(--orange); transform: scale(1.2); }
.hero-dot:hover { background: rgba(255,255,255,0.5); }

/* Hero Stats */
.hero-stats {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; gap: 24px;
}
.stat-card {
    background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2); border-radius: var(--radius);
    padding: 16px 28px; text-align: center; color: var(--white);
    transition: all 0.3s var(--ease-out);
}
.stat-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-4px); }
.stat-number { font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: var(--orange); }
.stat-suffix { font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: var(--orange); }
.stat-label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* SECTIONS COMMON */
.section { padding: 100px 0; position: relative; }
.section-container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--purple); letter-spacing: 2px; display: block; margin-bottom: 12px; }
.section-title { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 16px; }
.section-desc { font-size: 18px; color: var(--gray-600); max-width: 560px; margin: 0 auto; }

.highlight-box { background: var(--orange); padding: 2px 12px; border-radius: 6px; border: 2px solid var(--dark); box-shadow: 2px 2px 0px var(--dark); display: inline-block; }
.highlight-box-alt { background: var(--purple); color: var(--white); }
.highlight-box-dark { background: var(--dark); color: var(--white); }
.highlight-underline { position: relative; display: inline-block; }
.highlight-underline::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 6px;
    background: var(--red); border-radius: 3px; transform: scaleX(0); transform-origin: left;
    transition: transform 0.6s var(--ease-out);
}
.highlight-underline-alt::after { background: var(--purple); }
.highlight-underline-green::after { background: var(--green); }
.highlight-underline.visible::after { transform: scaleX(1); }

/* KESFET */
.section-kesfet { background: var(--white); border-top: var(--border); border-bottom: var(--border); }
.kesfet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.kesfet-card {
    background: var(--cream); border: var(--border); border-radius: var(--radius-lg);
    overflow: hidden; position: relative; transition: all 0.3s var(--ease-out);
    box-shadow: var(--shadow-brutal);
}
.kesfet-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0px var(--dark); }

.kesfet-card-visual {
    height: 200px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.kesfet-card-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.kesfet-card:hover .kesfet-card-visual img { transform: scale(1.08); }

.kesfet-card-content { padding: 24px; }
.kesfet-icon { font-size: 28px; margin-bottom: 8px; }
.kesfet-card h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.kesfet-list { list-style: none; margin-bottom: 16px; }
.kesfet-list li { font-size: 14px; color: var(--gray-600); padding: 4px 0 4px 16px; position: relative; }
.kesfet-list li::before { content: '\2192'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.kesfet-link { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--red); transition: all 0.2s; }
.kesfet-link:hover { color: var(--dark); letter-spacing: 1px; }

.kesfet-kultur { border-color: var(--purple); box-shadow: 4px 4px 0px var(--purple); }
.kesfet-kultur:hover { box-shadow: 8px 8px 0px var(--purple); }
.kesfet-gastro { border-color: var(--red); box-shadow: 4px 4px 0px var(--red); }
.kesfet-gastro:hover { box-shadow: 8px 8px 0px var(--red); }
.kesfet-alisveris { border-color: var(--orange); box-shadow: 4px 4px 0px var(--orange); }
.kesfet-alisveris:hover { box-shadow: 8px 8px 0px var(--orange); }
.kesfet-doga { border-color: var(--green); box-shadow: 4px 4px 0px var(--green); }
.kesfet-doga:hover { box-shadow: 8px 8px 0px var(--green); }

/* YAPILACAKLAR */
.section-yapilacaklar { background: var(--dark); color: var(--white); overflow: hidden; }
.yapilacaklar-header { margin-bottom: 60px; }
.yapilacaklar-header .section-tag { color: var(--orange); }
.yapilacaklar-header .section-title { color: var(--white); }

.yapilacaklar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.yapilacak-card {
    background: var(--darker); border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: all 0.3s var(--ease-out); position: relative;
}
.yapilacak-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(108,99,255,0.2); }
.yapilacak-number {
    font-family: var(--font-heading); font-size: 72px; font-weight: 900;
    color: rgba(255,255,255,0.15); position: absolute; top: 10px; right: 20px; z-index: 1;
    -webkit-text-stroke: 1px rgba(255,183,0,0.3);
    text-shadow: 0 0 40px rgba(255,183,0,0.1);
    transition: all 0.4s var(--ease-out);
}
.yapilacak-card:hover .yapilacak-number {
    color: rgba(255,183,0,0.25);
    -webkit-text-stroke: 1px rgba(255,183,0,0.5);
    transform: scale(1.1);
}
.yapilacak-img { height: 180px; overflow: hidden; }
.yapilacak-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.yapilacak-card:hover .yapilacak-img img { transform: scale(1.05); }
.yapilacak-card h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--orange); padding: 20px 24px 0; }
.yapilacak-card p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; padding: 0 24px 24px; }

/* ROTALAR */
.section-rotalar { background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }
.rotalar-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.rota-card {
    background: var(--white); border: var(--border); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-brutal); transition: all 0.3s var(--ease-out);
}
.rota-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0px var(--dark); }
.rota-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.rota-visual { position: relative; overflow: hidden; min-height: 220px; }
.rota-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.rota-card:hover .rota-visual img { transform: scale(1.05); }
.rota-badge-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--red); color: var(--white);
    font-family: var(--font-heading); font-weight: 700; font-size: 12px;
    padding: 4px 12px; border-radius: 100px; border: 2px solid var(--dark); z-index: 1;
}
.rota-content { padding: 32px; }
.rota-label { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--purple); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.rota-title { font-family: var(--font-heading); font-size: 26px; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
.rota-stops { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.rota-stop { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; }
.stop-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); border: 2px solid var(--dark); }
.dot-orange { background: var(--orange); }
.dot-purple { background: var(--purple); }
.dot-green { background: var(--green); }
.rota-arrow-txt { color: var(--gray-600); font-weight: 700; }

/* ETKINLIKLER */
.section-etkinlikler { background: var(--white); border-top: var(--border); }
.etkinlik-filters { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
    font-family: var(--font-heading); font-weight: 600; font-size: 14px;
    padding: 10px 20px; border-radius: 100px; border: var(--border);
    background: var(--white); transition: all 0.2s var(--ease-out); cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--dark); color: var(--white); box-shadow: var(--shadow-brutal-sm); }

.etkinlik-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 20px; }
.etkinlik-card {
    display: flex; align-items: center; gap: 16px;
    background: var(--cream); border: var(--border); border-radius: var(--radius);
    padding: 16px; box-shadow: var(--shadow-brutal-sm);
    transition: all 0.3s var(--ease-out); overflow: hidden;
}
.etkinlik-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-brutal-lg); }
.etkinlik-card.hidden { display: none; }

.etkinlik-date {
    flex-shrink: 0; text-align: center; background: var(--white);
    border: 2px solid var(--dark); border-radius: 10px; padding: 10px 14px; min-width: 60px;
}
.etkinlik-day { display: block; font-family: var(--font-heading); font-size: 28px; font-weight: 800; line-height: 1; }
.etkinlik-month { display: block; font-size: 12px; font-weight: 700; color: var(--red); letter-spacing: 1px; }
.etkinlik-info { flex: 1; min-width: 0; }
.etkinlik-badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; margin-bottom: 6px; letter-spacing: 0.5px; }
.badge-festival { background: var(--red); color: var(--white); }
.badge-konser { background: var(--purple); color: var(--white); }
.badge-sergi { background: var(--orange); color: var(--dark); }
.badge-gastro { background: var(--green); color: var(--dark); }
.etkinlik-info h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.etkinlik-info p { font-size: 13px; color: var(--gray-600); }

.etkinlik-thumb { width: 70px; height: 70px; flex-shrink: 0; border-radius: 10px; overflow: hidden; border: 2px solid var(--dark); }
.etkinlik-thumb img { width: 100%; height: 100%; object-fit: cover; }

.etkinlik-cta { text-align: center; margin-top: 48px; }
.cta-handwritten { font-family: var(--font-handwritten); font-size: 22px; color: var(--red); margin-top: 12px; display: block; }

/* HIKAYELER */
.section-hikayeler { background: var(--cream); }
.hikayeler-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hikaye-card {
    background: var(--white); border: var(--border); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-brutal); transition: all 0.3s var(--ease-out);
}
.hikaye-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0px var(--dark); }
.hikaye-featured { grid-column: 1; grid-row: 1 / 3; }
.hikaye-visual { position: relative; overflow: hidden; height: 220px; }
.hikaye-featured .hikaye-visual { height: 300px; }
.hikaye-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hikaye-card:hover .hikaye-visual img { transform: scale(1.05); }
.hikaye-category {
    position: absolute; top: 16px; left: 16px;
    background: var(--dark); color: var(--white);
    font-family: var(--font-heading); font-weight: 700; font-size: 12px;
    padding: 4px 12px; border-radius: 6px;
}
.hikaye-content { padding: 24px; }
.hikaye-content h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.5px; }
.hikaye-featured .hikaye-content h3 { font-size: 26px; }
.hikaye-content p { font-size: 15px; color: var(--gray-600); margin-bottom: 12px; line-height: 1.6; }
.hikaye-meta { display: flex; gap: 16px; font-size: 13px; color: var(--gray-600); margin-bottom: 16px; }

/* PROJELER */
.section-projeler { background: linear-gradient(135deg, #F0ECFF 0%, #FFF0E0 100%); border-top: var(--border); border-bottom: var(--border); }
.projeler-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.proje-card {
    background: var(--white); border: var(--border); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-brutal); transition: all 0.3s var(--ease-out);
}
.proje-card:hover { transform: translate(-3px, -3px) rotate(-1deg); box-shadow: 7px 7px 0px var(--dark); }
.proje-img-wrap { height: 200px; overflow: hidden; }
.proje-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.proje-card:hover .proje-img-wrap img { transform: scale(1.05); }
.proje-content { padding: 24px; }
.proje-content h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.proje-content p { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.proje-tag {
    display: inline-block; font-family: var(--font-heading); font-size: 12px; font-weight: 700;
    padding: 4px 12px; background: var(--cream); border: 2px solid var(--dark); border-radius: 6px;
}

/* SEKTOR */
.section-sektor { background: var(--cream); }
.sektor-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sektor-content .section-title { text-align: left; }
.sektor-content .section-desc { margin: 0 0 32px; text-align: left; }
.sektor-items { display: grid; gap: 20px; }
.sektor-item {
    display: flex; gap: 16px; align-items: flex-start; padding: 20px;
    background: var(--white); border: var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow-brutal-sm); transition: all 0.3s var(--ease-out);
}
.sektor-item:hover { transform: translateX(4px); box-shadow: var(--shadow-brutal); }
.sektor-item-icon { font-size: 28px; flex-shrink: 0; }
.sektor-item h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.sektor-item p { font-size: 14px; color: var(--gray-600); }
.sektor-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: var(--border); box-shadow: var(--shadow-brutal); }
.sektor-visual img { width: 100%; height: 400px; object-fit: cover; }

/* HAKKINDA */
.section-hakkinda { background: var(--white); border-top: var(--border); }
.hakkinda-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hakkinda-visual { border-radius: var(--radius-lg); overflow: hidden; border: var(--border); box-shadow: var(--shadow-brutal); }
.hakkinda-visual img { width: 100%; height: 400px; object-fit: cover; }
.hakkinda-content .section-title { text-align: left; }
.hakkinda-desc { font-size: 17px; color: var(--gray-600); margin-bottom: 32px; line-height: 1.7; }
.hakkinda-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.hakkinda-item {
    padding: 20px; background: var(--cream); border: 2px solid var(--gray-200);
    border-radius: var(--radius); transition: all 0.3s var(--ease-out);
}
.hakkinda-item:hover { border-color: var(--dark); box-shadow: var(--shadow-brutal-sm); transform: translate(-2px, -2px); }
.hakkinda-item h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.hakkinda-item p { font-size: 13px; color: var(--gray-600); }

/* MEDYA */
.section-medya { background: var(--cream); }
.medya-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.medya-card {
    background: var(--white); border: var(--border); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-brutal); transition: all 0.3s var(--ease-out);
    display: block; text-align: center;
}
.medya-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0px var(--dark); }
.medya-icon-img { height: 160px; overflow: hidden; }
.medya-icon-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.medya-card:hover .medya-icon-img img { transform: scale(1.05); }
.medya-card h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin: 16px 0 8px; padding: 0 16px; }
.medya-count { font-size: 13px; color: var(--gray-600); font-weight: 600; display: block; padding-bottom: 20px; }

/* UYE */
.section-uye { background: var(--dark); color: var(--white); }
.uye-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.uye-content .section-tag { color: var(--green); }
.uye-content .section-title { color: var(--white); text-align: left; }
.uye-content .section-desc { margin: 0 0 32px; text-align: left; color: rgba(255,255,255,0.7); }
.uye-actions { display: grid; gap: 16px; }
.uye-action-card {
    display: flex; align-items: center; gap: 16px; padding: 20px;
    background: var(--darker); border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); transition: all 0.3s var(--ease-out);
}
.uye-action-card:hover { border-color: var(--green); background: rgba(0,201,167,0.1); transform: translateX(4px); }
.uye-action-icon { font-size: 28px; flex-shrink: 0; }
.uye-action-card h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.uye-action-card p { font-size: 13px; color: rgba(255,255,255,0.5); }
.uye-visual { border-radius: var(--radius-lg); overflow: hidden; border: 2px solid rgba(255,255,255,0.1); }
.uye-visual img { width: 100%; height: 380px; object-fit: cover; }

/* CTA */
.section-cta { background: var(--cream); padding: 80px 0; }
.cta-card-big {
    background: var(--white); border: var(--border); border-radius: var(--radius-xl);
    box-shadow: var(--shadow-brutal-lg); display: grid; grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
}
.cta-content { padding: 60px 48px; }
.cta-content h2 { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.15; }
.cta-content > p { font-size: 17px; color: var(--gray-600); margin-bottom: 28px; }
.cta-form { display: flex; gap: 8px; flex-wrap: wrap; }
.cta-input {
    flex: 1; min-width: 200px; padding: 14px 20px;
    font-family: var(--font-body); font-size: 16px;
    border: var(--border); border-radius: var(--radius);
    background: var(--cream); outline: none; transition: all 0.2s;
}
.cta-input:focus { box-shadow: var(--shadow-brutal-sm); background: var(--white); }
.cta-note { margin-top: 16px; }
.cta-illust { overflow: hidden; min-height: 280px; }
.cta-illust img { width: 100%; height: 100%; object-fit: cover; }

/* ILETISIM */
.section-iletisim { background: var(--white); border-top: var(--border); }
.iletisim-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.iletisim-info { display: grid; gap: 20px; }
.iletisim-card {
    display: flex; gap: 16px; align-items: flex-start; padding: 24px;
    background: var(--cream); border: var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow-brutal-sm); transition: all 0.3s var(--ease-out);
}
.iletisim-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-brutal); }
.iletisim-icon { font-size: 28px; flex-shrink: 0; }
.iletisim-card h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.iletisim-card p { font-size: 14px; color: var(--gray-600); line-height: 1.5; }

.iletisim-form-wrap {
    background: var(--cream); border: var(--border); border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow-brutal);
}
.iletisim-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-heading); font-size: 14px; font-weight: 700; }
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px; font-family: var(--font-body); font-size: 15px;
    border: var(--border); border-radius: var(--radius); background: var(--white);
    outline: none; transition: all 0.2s; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    box-shadow: var(--shadow-brutal-sm); border-color: var(--purple);
}

/* FOOTER */
.footer { background: var(--dark); color: var(--white); padding-top: 60px; }
.footer-container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }
.footer-main { display: grid; grid-template-columns: 1.2fr 3fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: block; margin-bottom: 12px; }
.footer-logo-img { height: 64px; width: auto; display: block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255,255,255,0.2); border-radius: 10px;
    transition: all 0.2s; color: rgba(255,255,255,0.7);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-2px); }

.footer-links-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--white); }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); padding: 4px 0; transition: all 0.2s; }
.footer-col a:hover { color: var(--white); padding-left: 6px; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* BACK TO TOP */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px;
    background: var(--dark); color: var(--white); border: 2px solid var(--white);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-brutal); z-index: 100;
    opacity: 0; pointer-events: none; transition: all 0.3s var(--ease-out);
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0px var(--red); background: var(--red); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .rotalar-showcase, .sektor-layout, .hakkinda-layout, .uye-layout, .iletisim-layout { grid-template-columns: 1fr; gap: 40px; }
    .rota-featured { grid-column: 1; grid-template-columns: 1fr; }
    .hakkinda-visual { order: -1; }
    .cta-card-big { grid-template-columns: 1fr; }
    .cta-illust { min-height: 200px; }
    .footer-main { grid-template-columns: 1fr; gap: 40px; }
    .footer-links-grid { grid-template-columns: repeat(3, 1fr); }
    .hikayeler-grid { grid-template-columns: 1fr; }
    .hikaye-featured { grid-row: auto; }
    .hero-stats { flex-wrap: wrap; justify-content: center; bottom: 20px; gap: 12px; }
}

@media (max-width: 640px) {
    :root { --container-padding: 16px; }
    .hero-title { letter-spacing: -2px; }
    .hero-stats { position: relative; bottom: auto; left: auto; transform: none; flex-direction: column; align-items: stretch; padding: 0 16px; margin-top: 20px; }
    .hero { min-height: auto; padding-bottom: 40px; }
    .hero-dots { bottom: auto; position: relative; margin-top: 24px; }
    .stat-card { display: flex; align-items: center; gap: 12px; text-align: left; padding: 12px 16px; }
    .kesfet-grid { grid-template-columns: 1fr; }
    .hakkinda-grid { grid-template-columns: 1fr; }
    .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-content { padding: 36px 24px; }
    .section { padding: 72px 0; }
    .form-row { grid-template-columns: 1fr; }
    .etkinlik-grid { grid-template-columns: 1fr; }
    .iletisim-form-wrap { padding: 24px; }
}

/* PRINT */
@media print {
    .navbar, .back-to-top, .custom-cursor { display: none; }
    body { background: white; cursor: auto; }
    .section { padding: 24px 0; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}
