/* ===== KARTAL MİMARİ - SITE 2: SİNEMATİK KARANLIK ===== */
/* 2026 Design Standards: Dark Cinema Aesthetic */

@import url('../01_kurumsal_klasik/style.css');

/* Override for dark theme */
.dark-theme {
  --navy: #050A14;
  --blue: #4a90e2;
  --gold: #c9a84c;
  --gold-light: #e8c570;
  --text: #e2e8f0;
  --text-light: #94a3b8;
}

body.dark-theme {
  background: #050a14;
  color: #e2e8f0;
}

body.dark-theme .nav {
  background: rgba(5,10,20,0.7);
  border-bottom-color: rgba(255,255,255,0.06);
}
body.dark-theme .nav.scrolled {
  background: rgba(5,10,20,0.95);
}
body.dark-theme .nav-logo { color: #e2e8f0; }
body.dark-theme .nav-menu a { color: rgba(226,232,240,0.7); }
body.dark-theme .nav-menu a:hover, body.dark-theme .nav-menu a.active {
  color: #fff; background: rgba(255,255,255,0.08);
}
body.dark-theme .nav-menu .nav-cta { background: var(--blue); }
body.dark-theme .mobile-menu { background: #0a1020; border-color: rgba(255,255,255,0.08); }
body.dark-theme .mobile-menu a { color: #e2e8f0; }
body.dark-theme .burger span { background: #e2e8f0; }
body.dark-theme .page-hero { background: linear-gradient(135deg, #020811, #0a1628); }
body.dark-theme .page-content { background: #050a14; }
body.dark-theme .page-content h2 { color: #e2e8f0; }
body.dark-theme .page-content h3 { color: #e2e8f0; }
body.dark-theme .content-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
body.dark-theme .content-card:hover { border-color: var(--blue); background: rgba(74,144,226,0.06); }
body.dark-theme .content-card h3 { color: #e2e8f0; }
body.dark-theme .contact-form-wrap { background: rgba(255,255,255,0.04); }
body.dark-theme .contact-form-wrap h3 { color: #e2e8f0; }
body.dark-theme label { color: #e2e8f0; }
body.dark-theme input, body.dark-theme textarea, body.dark-theme select {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: #e2e8f0;
}
body.dark-theme .contact-info h2 { color: #e2e8f0; }
body.dark-theme .contact-detail .detail-text h4 { color: #e2e8f0; }
body.dark-theme .btn-outline { color: #e2e8f0; border-color: rgba(255,255,255,0.3); }
body.dark-theme .btn-outline:hover { background: rgba(255,255,255,0.1); }
body.dark-theme .section-title { color: #e2e8f0; }

/* === Cinema Hero === */
.hero-cinema {
  position: relative;
  height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.cinema-bg { position: absolute; inset: 0; }
.cinema-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: kenBurns 15s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1.1) translateX(0); }
  to { transform: scale(1.2) translateX(-30px); }
}
.cinema-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,10,20,0.92) 0%,
    rgba(5,10,20,0.65) 50%,
    rgba(5,10,20,0.2) 100%
  );
}
.cinema-content {
  position: relative; z-index: 5;
  padding: 0 6%;
  padding-top: 76px;
  max-width: 900px;
}
.cinema-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: fadeUp 0.8s ease 0.3s both;
}
.cinema-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -4px;
  color: #fff;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.5s both;
}
.cinema-title span { display: block; }
.cinema-title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.cinema-divider {
  width: 60px; height: 2px;
  background: var(--gold-light);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease 0.7s both;
}
.cinema-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.9s both;
}
.cinema-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 1.1s both;
}
.btn-cinema {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}
.btn-cinema:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}
.btn-cinema-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light);
  color: #050a14;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.4s ease;
}
.btn-cinema-ghost:hover { background: #fff; transform: translateY(-2px); }
.btn-large-cinema { padding: 18px 44px; font-size: 1.05rem; }
.cinema-scroll {
  position: absolute;
  bottom: 50px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem; letter-spacing: 3px;
}
.scroll-line {
  width: 1px; height: 80px;
  background: linear-gradient(transparent, var(--gold-light));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* === Statement === */
.statement-section {
  padding: 120px 0;
  background: #050a14;
}
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.statement-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -3px;
  color: #e2e8f0;
  line-height: 1;
}
.statement-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.statement-right p {
  color: rgba(226,232,240,0.65);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.statement-stats {
  display: flex; gap: 3rem;
}
.statement-stats div { text-align: center; }
.s-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  display: block;
  line-height: 1;
}
.s-num sup { font-size: 1.5rem; color: var(--gold-light); }
.statement-stats p {
  color: rgba(226,232,240,0.5);
  font-size: 0.85rem;
  margin-top: 6px;
}

/* === Horizontal Scroll === */
.horiz-section { padding: 80px 0; background: #050a14; overflow: hidden; }
.horiz-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2.5rem;
}
.horiz-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem; font-weight: 700;
  color: #e2e8f0; letter-spacing: -1px;
}
.see-all {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600; font-size: 0.9rem;
}
.horiz-track {
  display: flex; gap: 20px;
  padding: 0 5%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.horiz-track:active { cursor: grabbing; }
.horiz-track::-webkit-scrollbar { display: none; }
.horiz-card {
  flex-shrink: 0;
  width: 420px; height: 540px;
  border-radius: 20px;
  overflow: hidden; position: relative;
  scroll-snap-align: start;
}
.horiz-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.horiz-card:hover img { transform: scale(1.06); }
.hcard-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 28px 28px;
  background: linear-gradient(transparent, rgba(5,10,20,0.9));
  color: #fff;
}
.hcard-info span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  display: block; margin-bottom: 8px;
}
.hcard-info h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 4px;
}
.hcard-info p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* === Dark Services === */
.section-dark {
  padding: 120px 0;
  background: linear-gradient(135deg, #08111e 0%, #050a14 100%);
}
.sd-head { margin-bottom: 4rem; }
.section-label-dark {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.sd-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: -2px;
}
.sd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
}
.sd-item {
  padding: 48px 36px;
  background: rgba(5,10,20,0.8);
  transition: all 0.4s ease;
  position: relative;
}
.sd-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--gold-light);
  transition: width 0.4s ease;
}
.sd-item:hover::after { width: 100%; }
.sd-item:hover { background: rgba(74,144,226,0.05); }
.sd-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  margin-bottom: 1rem;
  display: block;
}
.sd-item h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: #e2e8f0; margin-bottom: 0.75rem;
}
.sd-item p { color: rgba(226,232,240,0.5); font-size: 0.9rem; line-height: 1.6; }

/* === About Cinema === */
.about-cinema {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: #050a14;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-cinema-text {
  padding: 80px;
  display: flex; flex-direction: column; justify-content: center;
  background: #08111e;
}
.about-cinema-text h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: -2px;
  line-height: 1.05;
  margin: 1rem 0;
}
.about-cinema-text p {
  color: rgba(226,232,240,0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1rem;
}

/* === Dark CTA === */
.cta-dark {
  padding: 120px 5%;
  text-align: center;
  background: linear-gradient(135deg, #0a1628, #050a14);
  position: relative;
}
.cta-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 60%);
}
.cta-dark h2 {
  position: relative;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -3px;
  color: #fff; margin-bottom: 3rem;
}

/* === Dark Footer === */
.footer-dark { background: #030710; padding: 80px 0 0; }
.footer-dark-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; max-width: 1280px;
  margin: 0 auto; padding: 0 5% 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo-dark {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: #fff; letter-spacing: -1px; margin-bottom: 1rem;
}
.footer-logo-dark span { color: var(--blue); font-weight: 300; }
.footer-dark-grid div > p { color: rgba(255,255,255,0.35); font-size: 0.9rem; line-height: 1.7; }
.footer-dark-grid h4 { color: rgba(255,255,255,0.6); font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-dark-grid ul { list-style: none; }
.footer-dark-grid li { margin-bottom: 10px; }
.footer-dark-grid a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-dark-grid a:hover { color: #fff; }
.footer-dark-bottom { max-width: 1280px; margin: 0 auto; padding: 24px 5%; text-align: center; color: rgba(255,255,255,0.2); font-size: 0.85rem; }

@media (max-width: 1024px) {
  .statement-grid { grid-template-columns: 1fr; gap: 40px; }
  .sd-grid { grid-template-columns: 1fr 1fr; }
  .about-cinema { grid-template-columns: 1fr; }
  .about-img-wrap { height: 400px; }
  .footer-dark-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .cinema-title { font-size: 3.5rem; letter-spacing: -2px; }
  .sd-grid { grid-template-columns: 1fr; }
  .footer-dark-grid { grid-template-columns: 1fr; }
}


/* =======================================================================
   2026 ULTRA-PREMIUM 10/10 AESTHETICS OVERRIDE
   ======================================================================= */
:root {
  --font-head: 'Outfit', sans-serif !important;
  --font-body: 'Plus Jakarta Sans', sans-serif !important;
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.15);
  --shadow-xl: 0 40px 80px -20px rgb(0 0 0 / 0.2);
  --shadow-glow: 0 0 40px rgba(26, 86, 219, 0.3);
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.5);
  --radius-xl: 32px;
}

/* Base Font Override */
body, p, li, a, span, div, input, button {
    font-family: var(--font-body);
}
h1, h2, h3, h4, h5, h6, .hero-title, .nav-logo {
    font-family: var(--font-head);
    letter-spacing: -0.02em;
}

/* Nav Improvements */
.nav {
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255,255,255,0.4);
    box-shadow: var(--shadow-sm);
    padding: 0px 4%;
    height: 84px;
}
.nav-menu a {
    font-weight: 600;
    padding: 10px 20px;
    letter-spacing: 0.2px;
}
.nav-menu .nav-cta {
    background: linear-gradient(135deg, var(--blue, #1a56db), var(--navy, #0f172a)) !important;
    box-shadow: 0 10px 20px rgba(26, 86, 219, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transform: translateY(0);
}
.nav-menu .nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 86, 219, 0.4);
}

/* Hero Section Enhancement */
.hero-content {
    animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes heroEntrance {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); filter: blur(10px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.hero-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    letter-spacing: 1px;
}

/* Fluid Typography */
.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem) !important;
    line-height: 1.05 !important;
    text-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.hero-title em {
    background: linear-gradient(to right, #60a5fa, #c084fc, #f472b6);
    -webkit-background-clip: text;
    color: transparent;
    font-style: normal;
}

/* Modern Bento Grid Updates */
.bento-grid {
    gap: 24px;
}
.bento-card {
    border-radius: var(--radius-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    overflow: hidden;
}
.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255,255,255,0.8);
}
.bento-bg-img {
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card:hover .bento-bg-img {
    transform: scale(1.08);
}

/* Section Titles */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 800 !important;
    margin-bottom: 4rem;
}

/* Preloader Ultra-Smooth */
.preloader {
    backdrop-filter: blur(40px);
}
.pl-fill {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent, #1a56db), var(--navy, #0f172a));
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    border: none;
    letter-spacing: 0.5px;
}
.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(26, 86, 219, 0.4);
}

/* Card Improvements */
.content-card {
    border-radius: var(--radius-xl) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: var(--shadow-md) !important;
    transition: var(--transition-smooth) !important;
}
.content-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: var(--shadow-xl) !important;
    border-color: rgba(26, 86, 219, 0.15) !important;
}

/* Timeline updates */
.timeline-item::before {
    box-shadow: 0 0 0 6px rgba(26, 86, 219, 0.1) !important;
    transition: all 0.4s ease;
}
.timeline-item:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 0 10px rgba(26, 86, 219, 0.2) !important;
}
