/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:   #0a0a0a;
    --white:   #ffffff;
    --red:     #e31e24;
    --gray:    #6b6b6b;
    --light:   #f5f5f5;
    --border:  #e0e0e0;
    --font:    'Montserrat', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ========== UTILITY ========== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--light { background: var(--light); }
.section-tag { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; display: block; }
.section-title { font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; text-transform: uppercase; }
.section-title span { color: var(--red); }
.section-desc { font-size: 16px; color: var(--gray); line-height: 1.8; max-width: 600px; margin-top: 20px; }
.section--dark .section-desc { color: #aaa; }
.divider { width: 48px; height: 3px; background: var(--red); margin: 24px 0; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .25s;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #c01a1f; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-outline-dark { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 80px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .4s, border-color .4s, box-shadow .4s;
}

/* Video geçildikten sonra arka plan gelir */
.navbar.solid {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,.08);
}

/* Şeffaf hâlde logo ve linkler beyaz */
.navbar__logo svg .logo-text-dark { fill: #fff; transition: fill .4s; }
.navbar__logo svg .logo-text-red  { fill: var(--red); }
.navbar.solid .navbar__logo svg .logo-text-dark { fill: var(--black); }

.navbar__logo img { height: 36px; }
.navbar__logo svg { height: 36px; width: auto; }

.navbar__menu { display: flex; align-items: center; gap: 36px; }
.navbar__menu a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    position: relative;
    transition: color .2s;
}
.navbar__menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width .25s;
}
.navbar__menu a:hover { color: var(--red); }
.navbar__menu a:hover::after { width: 100%; }
.navbar__menu a.active { color: var(--red); }
.navbar__menu a.active::after { width: 100%; }

/* Solid hâlde linkler koyu */
.navbar.solid .navbar__menu a { color: var(--black); }
.navbar.solid .navbar__menu a:hover { color: var(--red); }
.navbar.solid .navbar__menu a.active { color: var(--red); }

.navbar__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.navbar__hamburger span { display: block; width: 28px; height: 2px; background: var(--white); transition: all .3s; }
.navbar.solid .navbar__hamburger span { background: var(--black); }
.mobile-nav.open ~ header .navbar__hamburger { display: none; }

/* ========== HERO — TAM SAYFA VİDEO ========== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

/* Katman 1: Animasyonlu yedek arka plan (video yokken) */
.hero__bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 1;
    background: linear-gradient(-45deg, #050d0a, #071a0f, #051510, #0a2015);
    background-size: 400% 400%;
    animation: heroGradient 12s ease infinite;
}
@keyframes heroGradient {
    0%   { background-position: 0%   50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0%   50%; }
}

/* Katman 2: HTML5 Video */
.hero__video {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Katman 2: YouTube iframe alternatifi */
.hero__yt {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}
.hero__yt iframe {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    border: none;
}

/* Katman 3: Koyu overlay (video okunabilirliği için) */
.hero__overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.45);
}

/* Katman 4: İçerik (başlık, açıklama, butonlar) */
.hero__content {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 80px 80px; /* üstte navbar için boşluk */
}
.hero__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    display: block;
}
.hero__title {
    font-size: clamp(52px, 9vw, 110px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.hero__title span { color: var(--red); }

.hero__sub {
    margin-top: 16px;
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 400;
    line-height: 1.7;
    max-width: 1080px;
    color: #fff;
}
.hero__slide-img {
    max-width: min(320px, 60vw);
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 16px rgba(0,0,0,.5));
    animation: heroFadeIn .8s ease forwards;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero__desc {
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 24px 0 40px;
    line-height: 1.8;
    text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Katman 4: Ses butonu */
.hero__mute {
    position: absolute;
    bottom: 96px; right: 40px;
    z-index: 4;
    width: 48px; height: 48px;
    border: 2px solid rgba(255,255,255,.35);
    background: rgba(0,0,0,.35);
    color: #fff;
    cursor: pointer;
    display: none;          /* video yüklenince JS gösterir */
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .25s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero__mute:hover { border-color: var(--red); background: rgba(227,30,36,.25); }

/* Katman 4: Aşağı kaydır */
.hero__scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.5);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounceScroll 2s infinite;
    cursor: pointer;
    user-select: none;
}
.hero__scroll::before {
    content: '';
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.3);
}
@keyframes bounceScroll {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ========== STATS BAR ========== */
.stats-bar { background: var(--red); padding: 32px 0; }
.stats-bar__inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.stat { text-align: center; color: var(--white); }
.stat__number { font-size: clamp(36px, 5vw, 56px); font-weight: 900; line-height: 1; display: block; }
.stat__label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: .8; margin-top: 6px; display: block; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,.3); }

/* ========== HISTORY / TIMELINE ========== */
.timeline { position: relative; padding: 60px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border); transform: translateX(-50%); }
.timeline-item { display: flex; align-items: center; margin-bottom: 60px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content { width: calc(50% - 60px); padding: 32px; background: var(--white); border: 1px solid var(--border); }
.timeline-item:nth-child(odd) .timeline-content { margin-right: auto; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; }
.timeline-year { position: absolute; left: 50%; transform: translateX(-50%); width: 80px; height: 80px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; letter-spacing: 1px; z-index: 1; }
.timeline-content h3 { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.timeline-content p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ========== LOCATIONS GRID ========== */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1px; background: var(--border); margin-top: 60px; }
.location-card { background: var(--white); padding: 32px; transition: background .2s; }
.location-card:hover { background: var(--red); color: var(--white); }
.location-card__flag { font-size: 32px; margin-bottom: 16px; }
.location-card__country { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.location-card__email { font-size: 13px; color: var(--gray); word-break: break-all; }
.location-card:hover .location-card__email { color: rgba(255,255,255,.8); }

/* ========== CHANNELS GRID ========== */
.channels-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 32px; margin-top: 60px; }
.channel-card { border: 1px solid var(--border); padding: 40px; text-align: center; transition: all .25s; position: relative; overflow: hidden; }
.channel-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transition: transform .25s; }
.channel-card:hover { border-color: var(--red); box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.channel-card:hover::before { transform: scaleX(1); }
.channel-card__logo { width: 80px; height: 80px; border-radius: 50%; background: var(--black); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 13px; font-weight: 900; letter-spacing: 1px; }
.channel-card__name { font-size: 20px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.channel-card__desc { font-size: 13px; color: var(--gray); line-height: 1.7; }
.channel-card__badge { display: inline-block; margin-top: 16px; padding: 4px 12px; background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }

/* ========== PRODUCTIONS GRID ========== */
.productions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; margin-top: 60px; background: var(--border); }
.production-card { background: var(--black); color: var(--white); padding: 48px 40px; position: relative; overflow: hidden; transition: all .25s; min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end; }
.production-card__number { position: absolute; top: 20px; right: 20px; font-size: 64px; font-weight: 900; color: rgba(255,255,255,.05); line-height: 1; }
.production-card__cat { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }
.production-card__name { font-size: 26px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.production-card__desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; }
.production-card__countries { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.production-card__countries span { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.6); }
.production-card:hover { background: #111; }
.production-card:hover .production-card__cat { color: #ff4d52; }

/* ========== HUB SECTION ========== */
.hub { background: var(--red); color: var(--white); padding: 100px 0; }
.hub .section-tag { color: rgba(255,255,255,.7); }
.hub .section-title { color: var(--white); }
.hub__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 60px; }
.hub-stat { border-top: 2px solid rgba(255,255,255,.3); padding-top: 24px; }
.hub-stat__num { font-size: clamp(40px, 5vw, 64px); font-weight: 900; line-height: 1; display: block; }
.hub-stat__label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: .8; margin-top: 8px; display: block; }

/* ========== NEWS ========== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 32px; margin-top: 60px; }
.news-card { border: 1px solid var(--border); transition: all .25s; }
.news-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.08); transform: translateY(-4px); }
.news-card__img { height: 220px; background: linear-gradient(135deg, #1a1a2e, #16213e); position: relative; overflow: hidden; }
.news-card__img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.2); font-size: 48px; font-weight: 900; }
.news-card__body { padding: 28px; }
.news-card__date { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }
.news-card__title { font-size: 18px; font-weight: 800; line-height: 1.3; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.news-card__cat { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; border: 1px solid var(--border); color: var(--gray); }

/* ========== PAGE HERO ========== */
.page-hero { padding: 160px 0 80px; background: var(--black); color: var(--white); }
.page-hero .section-tag { color: var(--red); }
.page-hero .section-title { color: var(--white); }
.page-hero .section-desc { color: rgba(255,255,255,.6); }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
.contact-info h3 { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.contact-info p, .contact-info a { font-size: 15px; color: var(--gray); line-height: 1.8; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--black); }
.form-group input, .form-group textarea, .form-group select {
    padding: 14px 16px;
    border: 2px solid var(--border);
    font-family: var(--font);
    font-size: 14px;
    background: var(--white);
    outline: none;
    transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ========== FOOTER ========== */
.footer { background: var(--black); color: var(--white); padding: 80px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; margin: 20px 0 28px; max-width: 280px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all .2s; }
.footer__social a:hover { background: var(--red); border-color: var(--red); }
.footer__col h4 { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 24px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer__col ul li a:hover { color: var(--red); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 12px; }
.footer__bottom a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer__bottom a:hover { color: var(--white); }
.footer__legal { display: flex; gap: 24px; }

/* ========== BREADCRUMB ========== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.2); }


/* ========== SABİT FLOATING BUTONLAR ========== */
.float-btns {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* WhatsApp butonu */
.float-wa {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.float-wa svg { width: 28px; height: 28px; fill: #fff; }

/* Teklif Al butonu */
.float-quote {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 0 16px;
    height: 52px;
    border-radius: 26px;
    background: var(--red);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(227,30,36,.4);
    transition: transform .25s, box-shadow .25s;
    white-space: nowrap;
}
.float-quote:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(227,30,36,.55); }
.float-quote svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

/* ========== TEKLİF MODAL ========== */
.modal-backdrop {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,.65);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}
.modal {
    background: #fff;
    width: 100%;
    max-width: 520px;
    padding: 48px 40px 40px;
    position: relative;
    transform: translateY(24px);
    transition: transform .3s;
    box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.modal-backdrop.open .modal { transform: translateY(0); }

.modal__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: background .2s;
}
.modal__close:hover { background: var(--red); color: #fff; }

.modal__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 10px;
}
.modal__title {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}
.modal__sub {
    font-size: 13px;
    color: #999;
    margin-bottom: 28px;
}
.modal__divider {
    width: 40px; height: 3px;
    background: var(--red);
    margin-bottom: 28px;
}

.modal-form { display: flex; flex-direction: column; gap: 16px; }
.modal-form .form-group { display: flex; flex-direction: column; gap: 6px; }
.modal-form label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
}
.modal-form input,
.modal-form select,
.modal-form textarea {
    padding: 13px 14px;
    border: 2px solid #e8e8e8;
    font-family: var(--font);
    font-size: 14px;
    background: #fafafa;
    outline: none;
    transition: border-color .2s, background .2s;
    width: 100%;
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    border-color: var(--red);
    background: #fff;
}
.modal-form textarea { resize: vertical; min-height: 90px; }
.modal-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-form .btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--red);
    color: #fff;
    border: none;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 4px;
    transition: background .2s;
}
.modal-form .btn-submit:hover { background: #c01a1f; }

.modal-success {
    text-align: center;
    padding: 24px 0;
    display: none;
}
.modal-success__icon {
    width: 64px; height: 64px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}
.modal-success h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.modal-success p  { font-size: 14px; color: #777; }

@media (max-width: 540px) {
    .modal { padding: 40px 24px 32px; }
    .modal-form .form-row { grid-template-columns: 1fr; }
    .float-quote span { display: none; }
    .float-quote { padding: 0; width: 52px; border-radius: 50%; justify-content: center; }
}

/* ========== HİKAYEMİZ ÖNZLEME ========== */
.story-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story-heading {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: .95;
    letter-spacing: -2px;
    color: var(--red);
    margin: 0;
}
.story-btn {
    border-radius: 40px !important;
    position: relative;
    overflow: hidden;
    transition: color .45s ease;
}
.story-btn::before {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 100%;
    background: var(--black);
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    z-index: 0;
    border-radius: 40px;
}
.story-btn:hover { background: transparent !important; color: var(--white) !important; }
.story-btn:hover::before { transform: scaleY(1); }
/* metin pseudo-element'in üstünde kalır */
.story-btn > * { position: relative; z-index: 1; }

.story-preview__img { position: relative; overflow: hidden; }

.story-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1c1c1c 50%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255,255,255,.15);
}
.story-img-placeholder strong { color: var(--red); font-weight: 900; }

/* img gerçek görsel geldiğinde */
.story-preview__img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== HİKAYEMİZ TAM EKRAN PANEL ========== */
.story-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: var(--black);
    color: var(--white);
    z-index: 1100;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.story-panel.is-open { transform: translateX(0); }

.story-close {
    position: fixed;
    top: 28px;
    right: 40px;
    z-index: 1101;
    background: none;
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s, opacity .3s, visibility .3s;
    opacity: 0;
    visibility: hidden;
}
.story-panel.is-open .story-close { opacity: 1; visibility: visible; }
.story-close:hover { border-color: var(--red); background: rgba(227,30,36,.15); }

.story-panel__body { padding: 80px 40px 120px; }

.story-panel__intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 80px;
}
.story-panel__title {
    font-size: clamp(40px, 7vw, 88px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    line-height: .9;
    color: var(--white);
    display: block;
    margin-bottom: 28px;
}
.story-panel__subtitle {
    font-size: 16px;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .story-preview { grid-template-columns: 1fr; gap: 48px; }
    .story-preview__img { height: auto; }
    .story-panel__body { padding: 72px 20px 100px; }
    .story-panel__intro { margin-bottom: 56px; }
}

/* ========== HİZMETLERİMİZ — GENİŞLEYEN PANELLER ========== */
.svc-section {
    background: var(--red);
    padding: 48px;
}

.svc-expand {
    display: flex;
    max-width: 1360px;
    margin: 0 auto;
    height: 60vh;
    min-height: 380px;
    overflow: hidden;
    gap: 10px;
}

.svc-panel {
    flex: 1 1 0;
    min-width: 52px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 14px;
    transition: flex .65s cubic-bezier(.4,0,.2,1);
}
.svc-panel.is-active { flex: 6 0 0; }

/* Karanlık overlay */
.svc-panel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.93) 0%,
        rgba(0,0,0,.52) 42%,
        rgba(0,0,0,.22) 100%
    );
    z-index: 0;
}

/* ── DAR HAL: dikey başlık ortada ── */
.svc-panel__narrow {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    opacity: 1;
    transition: opacity .22s;
}
.svc-panel.is-active .svc-panel__narrow { opacity: 0; pointer-events: none; }

.svc-panel__num-v { display: none; }
.svc-panel__title-v {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    white-space: nowrap;
}

/* ── GENİŞ HAL: yatay içerik ── */
.svc-panel__wide {
    position: absolute;
    bottom: 56px;
    left: 44px;
    right: 32px;
    z-index: 1;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .38s .16s, transform .38s .16s;
    pointer-events: none;
}
.svc-panel.is-active .svc-panel__wide {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.svc-panel__num-h { display: none; }
.svc-panel__title-h {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    white-space: nowrap;
}
.svc-panel__line {
    width: 0;
    height: 3px;
    background: var(--red);
    margin-top: 18px;
    transition: width .42s .34s ease;
}
.svc-panel.is-active .svc-panel__line { width: 52px; }

.svc-panel__desc {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    line-height: 1.75;
    margin-top: 18px;
    max-width: 300px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .38s .44s, transform .38s .44s;
}
.svc-panel.is-active .svc-panel__desc { opacity: 1; transform: translateY(0); }

/* Mobil */
@media (max-width: 768px) {
    .svc-section { padding: 20px 16px; }
    .svc-expand {
        flex-direction: column;
        height: auto;
        min-height: 0;
        gap: 10px;
        max-width: 100%;
    }

    /* Her panel accordion gibi: kapalı = sadece başlık */
    .svc-panel {
        flex: none !important;
        height: 68px;
        border-radius: 12px;
        border: 1px solid #000;
        transition: height .9s cubic-bezier(.4,0,.2,1);
    }
    .svc-panel.is-active { height: 230px; }

    /* Dikey layout gizle */
    .svc-panel__narrow { display: none !important; }

    /* Yatay layout: her zaman görünür, üstten başlar */
    .svc-panel__wide {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        top: 0;
        bottom: auto;
        left: 0;
        right: 0;
        padding: 18px 22px;
    }
    .svc-panel__title-h { font-size: 20px; white-space: normal; }

    /* Çizgi ve açıklama sadece açıkken görünür */
    .svc-panel__line { margin-top: 12px; }
    .svc-panel__desc {
        max-width: 100%;
        font-size: 14px;
        opacity: 0;
        transform: translateY(6px);
        transition: opacity .55s .35s, transform .55s .35s;
    }
    .svc-panel.is-active .svc-panel__desc { opacity: 1; transform: translateY(0); }
}

/* ========== SSS ========== */
.sss-header {
    margin-bottom: 56px;
}

.sss-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 16px;
}

.sss-title span { color: var(--red); }

.sss-subtitle {
    font-size: 15px;
    color: #6b6b6b;
    line-height: 1.8;
}

.sss-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
}

.sss-img {
    position: sticky;
    top: 100px;
}

.sss-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.sss-list {
    border-top: 2px solid #0a0a0a;
}

.sss-item {
    border-bottom: 1px solid #e0e0e0;
}

.sss-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.sss-num {
    font-size: 12px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 1px;
    flex-shrink: 0;
    width: 28px;
}

.sss-text {
    flex: 1;
    font-size: 17px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.4;
}

.sss-icon {
    flex-shrink: 0;
    color: #0a0a0a;
    transition: transform .35s ease;
}

.sss-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease, padding .4s ease;
    padding: 0 0 0 48px;
}

.sss-a p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.85;
    padding-bottom: 28px;
}

.sss-item.is-open .sss-icon { transform: rotate(180deg); }
.sss-item.is-open .sss-a   { max-height: 1200px; }

@media (max-width: 900px) {
    .sss-layout { grid-template-columns: 1fr; gap: 48px; }
    .sss-img { position: static; }
    .sss-img img { height: 280px; }
    .sss-item.is-open .sss-a { max-height: 2000px; }
}

/* ========== NERELERDEYİZ ========== */
.where-section {
    position: relative;
    overflow: hidden;
}

.where-left {
    position: relative;
    z-index: 1;
}

.where-title {
    font-size: clamp(40px, 7vw, 96px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    line-height: .9;
    color: var(--white);
    margin: 20px 0 48px;
}

.where-city { margin-bottom: 48px; }
.where-city:last-child { margin-bottom: 0; }

.where-city__head {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.where-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,.1);
    position: relative;
}

.where-item {
    padding: 28px 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: background .2s;
    cursor: default;
    position: relative;
    z-index: 1;
}
.where-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.1); }
.where-item:nth-child(even) { padding-left: 28px; }
.where-item:hover { background: rgba(255,255,255,.04); }

.where-item__name {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin: 0;
    transition: color .2s;
}
.where-item:hover .where-item__name { color: var(--red); }

/* ── Canvas Earth ── */
.where-globe {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.bg-layer {
    width: 620px;
    height: 620px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(255,255,255,.08), 0 0 160px rgba(255,255,255,.03);
}

.earth-container {
    width: 620px;
    height: 620px;
}

.earth-container canvas {
    display: block;
    border-radius: 50%;
    filter: grayscale(1) contrast(1.2) brightness(0.95);
}

@media (max-width: 1024px) {
    .where-globe { right: -160px; }
}
@media (max-width: 768px) {
    .where-title { letter-spacing: -2px; margin-bottom: 32px; }
    .where-grid { grid-template-columns: 1fr 1fr; }
    .where-item { padding: 14px 12px !important; }
    .where-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1) !important; }
    .where-item:nth-child(even) { padding-left: 24px !important; }
    .where-globe { display: none; }
}

/* ========== 404 ========== */
.not-found {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: var(--white);
}

.not-found__inner {
    text-align: center;
    max-width: 560px;
}

.not-found__code {
    font-size: clamp(100px, 18vw, 180px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -6px;
    color: transparent;
    -webkit-text-stroke: 3px #e0e0e0;
    user-select: none;
}

.not-found__divider {
    width: 48px;
    height: 4px;
    background: var(--red);
    margin: 24px auto;
}

.not-found__title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--black);
    margin-bottom: 16px;
}

.not-found__desc {
    font-size: 16px;
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 40px;
}

.not-found__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== TEKLİF MODALİ ========== */
.teklif-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    backdrop-filter: blur(4px);
}

.teklif-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.teklif-modal {
    background: var(--white);
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(24px);
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
}

.teklif-backdrop.is-open .teklif-modal {
    transform: translateY(0);
}

.teklif-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 40px 40px 0;
    flex-shrink: 0;
}

.teklif-body {
    overflow-y: auto;
    padding: 24px 40px 40px;
    flex: 1;
}

.teklif-close {
    flex-shrink: 0;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
    padding: 2px 6px;
    margin-top: 2px;
    transition: color .2s;
    border-radius: 4px;
}
.teklif-close:hover { color: var(--black); }

.teklif-modal__head { margin-bottom: 0; }

.teklif-modal__title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 10px 0 8px;
}

.teklif-modal__sub {
    font-size: 14px;
    color: #6b6b6b;
    line-height: 1.7;
}

.teklif-form { display: flex; flex-direction: column; gap: 18px; }

.teklif-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.teklif-field { display: flex; flex-direction: column; gap: 7px; }

.teklif-field label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.teklif-field label span { color: var(--red); }

.teklif-field input,
.teklif-field select,
.teklif-field textarea {
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    color: var(--black);
    outline: none;
    transition: border-color .2s;
    width: 100%;
    background: #fafafa;
}

.teklif-field input:focus,
.teklif-field select:focus,
.teklif-field textarea:focus { border-color: var(--black); background: #fff; }

.teklif-field textarea { resize: none; }

.teklif-msg {
    padding: 13px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}
.teklif-msg--ok  { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.teklif-msg--err { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }

@media (max-width: 600px) {
    .teklif-backdrop { padding: 12px; }
    .teklif-modal { max-height: calc(100dvh - 24px); }
    .teklif-topbar { padding: 24px 20px 0; }
    .teklif-body { padding: 20px 20px 28px; }
    .teklif-modal__title { font-size: 22px; }
    .teklif-form { gap: 13px; }
    .teklif-row { grid-template-columns: 1fr; gap: 13px; }
    .teklif-field input,
    .teklif-field select,
    .teklif-field textarea { padding: 11px 13px; font-size: 16px; }
}

/* ========== MOBILE NAV ========== */
.mobile-nav { position: fixed; inset: 0; background: var(--black); z-index: 1001; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 32px; opacity: 0; visibility: hidden; transition: all .3s; }
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a { font-size: 24px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--white); transition: color .2s; }
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-close { position: absolute; top: 28px; right: 40px; background: none; border: none; color: var(--white); font-size: 32px; cursor: pointer; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .hub__stats { grid-template-columns: 1fr; gap: 32px; }
    .timeline::before { left: 24px; }
    .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; padding-left: 70px; }
    .timeline-content, .timeline-item:nth-child(odd) .timeline-content, .timeline-item:nth-child(even) .timeline-content { width: 100%; text-align: left; margin: 0; }
    .timeline-year { left: 24px; top: 0; transform: translateX(-50%); width: 48px; height: 48px; font-size: 11px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }
    .navbar { padding: 0 20px; }
    .navbar__menu, .navbar__lang { display: none; }
    .navbar__hamburger { display: flex; }
    .stats-bar__inner { gap: 16px; }
    .stat-divider { display: none; }
    .news-grid, .channels-grid, .productions-grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 40px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .hero__title { letter-spacing: -2px; }

    /* CTA / Hub bölümü */
    .hub { padding: 64px 0; }
    .hub .container { grid-template-columns: 1fr !important; gap: 32px !important; }
    .hub .container > div:last-child { flex-direction: row !important; min-width: 0 !important; flex-wrap: wrap; gap: 12px; }
    .hub .container > div:last-child .btn { flex: 1 1 auto; min-width: 140px; justify-content: center; }

    /* Neden Biz — küçük ekranda min genişliği düşür */
    .section--light [style*="minmax(300px"] { grid-template-columns: 1fr !important; }

    /* Referanslar */
    .section [style*="minmax(180px"] { grid-template-columns: repeat(2, 1fr) !important; }

    /* Hikayemiz preview */
    .story-preview { grid-template-columns: 1fr; gap: 40px; }
    .story-preview__img { height: auto; order: -1; }
    .story-heading { font-size: clamp(36px, 10vw, 56px); }
}
