@charset "UTF-8";
/* ============================================================
   UCECONSULT.COM - Main Stylesheet
   Brand: #0093D3 | BG: #F9F9F9 | Dark: #222222
   Font: Inter (body) + Playfair Display (display)
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:    #0093D3;
  --brand-dk: #0077AA;
  --dark:     #222222;
  --mid:      #555555;
  --light:    #F9F9F9;
  --border:   #E5E5E5;
  --white:    #FFFFFF;
  --radius:   4px;
  --trans:    all 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--mid); line-height: 1.8; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
  display: block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dk);
  border-color: var(--brand-dk);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: #333; border-color: #333; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--trans);
}

#site-header.transparent { background: transparent; }
#site-header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo img { height: 36px; width: auto; }
.nav-logo .logo-dark { display: none; }
.nav-logo .logo-light { display: block; }

#site-header.scrolled .logo-light { display: none; }
#site-header.scrolled .logo-dark  { display: block; }

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  transition: var(--trans);
}

#site-header.scrolled .nav-menu > li > a { color: var(--dark); }

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--brand);
  background: rgba(0,147,211,0.08);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: var(--trans);
  border: 1px solid var(--border);
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--dark);
  transition: var(--trans);
}
.dropdown-menu li a:hover {
  color: var(--brand);
  background: var(--light);
  padding-left: 22px;
}

/* Nav CTA */
.nav-cta .btn { padding: 10px 22px; font-size: 0.83rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
#site-header.scrolled .nav-toggle span { background: var(--dark); }

/* Mobile nav */
@media (max-width: 991px) {
  .nav-toggle { display: flex; }
  .nav-menu-wrap {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 24px;
    overflow-y: auto;
    flex-direction: column;
  }
  .nav-menu-wrap.open { display: flex; }
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }
  .nav-menu > li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-menu > li > a { color: var(--dark); padding: 16px 0; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding: 0 0 8px 16px;
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .nav-cta { margin-top: 24px; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/sliders/slide-bg/1.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,60,100,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,147,211,0.15);
  border: 1px solid rgba(0,147,211,0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  display: block;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--brand);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero corridor strip */
.hero-corridor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,147,211,0.12);
  border-top: 1px solid rgba(0,147,211,0.3);
  padding: 18px 0;
  z-index: 3;
}
.corridor-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  overflow-x: auto;
  padding: 0 24px;
}
.corridor-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.corridor-item span:first-child {
  font-size: 1.1rem;
}
.corridor-item span:last-child {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}
.corridor-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS - SHARED
   ============================================================ */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--dark); }
.section-light { background: var(--light); }

.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; font-size: 1.05rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ============================================================
   WHAT WE DO
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transition: var(--trans);
  transform-origin: left;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px;
  background: rgba(0,147,211,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; }

@media (max-width: 991px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PORTFOLIO PREVIEW
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--trans);
  background: var(--white);
}
.portfolio-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: transparent;
}
.portfolio-thumb {
  height: 180px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.portfolio-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--trans);
}
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.05); }
.portfolio-body { padding: 24px; }
.portfolio-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(0,147,211,0.08);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.portfolio-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.portfolio-body p { font-size: 0.88rem; }

@media (max-width: 991px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ============================================================
   THE WORLD PREVIEW
   ============================================================ */
.world-section { background: var(--dark); }

.world-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.world-left h2 { color: var(--white); margin-bottom: 20px; }
.world-left p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }

.corridor-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--trans);
}
.corridor-card:hover {
  background: rgba(0,147,211,0.1);
  border-color: rgba(0,147,211,0.3);
}
.corridor-flag { font-size: 2rem; flex-shrink: 0; }
.corridor-card h4 { color: var(--white); margin-bottom: 4px; font-size: 1rem; }
.corridor-card p { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin: 0; }

.world-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.world-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.world-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 4px;
}
.world-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .world-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   INSIGHTS PREVIEW
   ============================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--trans);
  background: var(--white);
}
.insight-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  border-color: transparent;
}
.insight-thumb {
  height: 200px;
  overflow: hidden;
}
.insight-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--trans);
}
.insight-card:hover .insight-thumb img { transform: scale(1.04); }
.insight-body { padding: 24px; }
.insight-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: #999;
}
.insight-meta .cat {
  color: var(--brand);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.insight-body h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.insight-body p { font-size: 0.88rem; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--brand);
  transition: var(--trans);
}
.read-more:hover { gap: 10px; }

@media (max-width: 991px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .insights-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INTELLIGENCE STRIP
   ============================================================ */
.intelligence-strip {
  background: linear-gradient(135deg, #003C64 0%, #005A96 50%, #0077AA 100%);
  padding: 72px 0;
}
.intel-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.intel-inner h2 { color: var(--white); margin-bottom: 12px; }
.intel-inner p { color: rgba(255,255,255,0.7); max-width: 520px; }

@media (max-width: 767px) {
  .intel-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--brand);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 32px; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--trans);
}
.footer-social a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

/* Newsletter */
.footer-newsletter p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: var(--trans);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--brand); }
.newsletter-form button {
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 18px;
  color: var(--white);
  cursor: pointer;
  font-size: 0.88rem;
  transition: var(--trans);
}
.newsletter-form button:hover { background: var(--brand-dk); }

.footer-bar {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-bar a { color: rgba(255,255,255,0.4); transition: var(--trans); }
.footer-bar a:hover { color: var(--white); }

@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 599px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
  z-index: 999;
  border: none;
}
#back-top.visible { opacity: 1; pointer-events: auto; }
#back-top:hover { background: var(--brand-dk); transform: translateY(-3px); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-brand { color: var(--brand); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
#preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.preloader-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.preloader-inner span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
}

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   LOGO TEXT FALLBACK
   ============================================================ */
.logo-text-light,
.logo-text-dark {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-text-light { color: var(--white); display: block; }
.logo-text-dark  { color: var(--dark);  display: none;  }

#site-header.scrolled .logo-text-light { display: none; }
#site-header.scrolled .logo-text-dark  { display: block; }

/* ============================================================
   ROTATING TICKER
   ============================================================ */
.ticker-rotating {
  display: inline-block;
  min-width: 160px;
  position: relative;
  overflow: hidden;
  height: 1.2em;
  vertical-align: middle;
}
.ticker-rotating span {
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
}
.ticker-rotating span.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hero corridor updated */
.corridor-item .ticker-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   NAV FIX - Consult! butonu inline kalacak
   ============================================================ */
.nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
}

.nav-menu-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
}

.nav-menu {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

.nav-cta {
  flex-shrink: 0;
  margin-left: 8px;
}

/* Override mobile - yalnizca kucuk ekranda stack yap */
@media (max-width: 991px) {
  .nav-menu-wrap {
    display: none !important;
    position: fixed !important;
    top: 72px !important;
    left: 0 !important; right: 0 !important; bottom: 0 !important;
    background: var(--white) !important;
    padding: 24px !important;
    overflow-y: auto !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
  }
  .nav-menu-wrap.open { display: flex !important; }
  .nav-menu {
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    gap: 0 !important;
  }
  .nav-menu > li {
    width: 100% !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .nav-menu > li > a {
    color: var(--dark) !important;
    padding: 16px 0 !important;
  }
  .nav-cta { margin-top: 24px !important; margin-left: 0 !important; }
}

/* ============================================================
   MISSION SECTION - Mobile fix
   ============================================================ */
@media (max-width: 767px) {
  #mission .container > div {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  #mission .container > div > div:last-child {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 480px) {
  #mission .container > div > div:last-child {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   SERVICES GRID - Mobile fix
   ============================================================ */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .portfolio-grid { grid-template-columns: 1fr !important; }
  .insights-grid  { grid-template-columns: 1fr !important; }
}

/* ============================================================
   MOBILE - Hero corridor strip simplified
   Sadece "Turkiye | Rotating Country" gorunur, digerleri gizli
   ============================================================ */
@media (max-width: 599px) {
  .corridor-inner { justify-content: center !important; gap: 16px !important; }
  .corridor-item.hide-mobile { display: none !important; }
  .corridor-divider.hide-mobile { display: none !important; }
}

/* ============================================================
   FIXED-WIDTH ROTATING TICKER (no layout shift)
   Tum ulke isimleri gorunmez katmanda render edilip
   en uzununa gore sabit genislik hesaplanir.
   ============================================================ */
.ticker-fixed {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
}
.ticker-fixed .ticker-display {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.ticker-fixed .ticker-display.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ICON COLORS - Font Awesome replacements
   ============================================================ */
.service-icon i { color: var(--brand); }
.corridor-flag i { color: var(--brand); font-size: 1.6rem; }

/* ============================================================
   MOBILE FIX - inline-style grid'ler (about.php #story,
   portfolio.php #evaluation) kucuk ekranda tasiyordu.
   Attribute-substring selector ile inline style'i override ediyoruz.
   ============================================================ */
@media (max-width: 767px) {
  /* About - Our Story: 2 kolon -> 1 kolon */
  #story > .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  /* About - Vision & Model: 4 asama karti, 4 kolon -> 1 kolon */
  #model > .container > div[style*="repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  #model .fade-up[style*="border-right"] {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    padding: 0 0 28px 0 !important;
    margin-bottom: 28px !important;
  }

  /* About - Revenue/Partnership modeli: 3 kolon -> 1 kolon */
  #model > .container > div[style*="repeat(3,1fr);gap:32px"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* About - References/principles: 3 kolon -> 1 kolon */
  #references > .container > div[style*="repeat(3,1fr);gap:24px"] {
    grid-template-columns: 1fr !important;
  }

  /* Portfolio - How We Evaluate: 3 kolon -> 1 kolon */
  #evaluation > .container > div[style*="repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Genel guvenlik: sayfa icerigi viewport'u tasmasin */
  body { overflow-x: hidden; }
}

@media (max-width: 991px) {
  /* Tablet ara boyut: Our Story 2 kolonu biraz daraltilmis halde tutalim */
  #story > .container > div[style*="grid-template-columns:1fr 1fr"] {
    gap: 48px;
  }
}

/* ============================================================
   MOBILE FIX -- about.php #model ve #references
   Inline grid'ler kucuk ekranda tasiyordu, override ediyoruz.
   ============================================================ */
@media (max-width: 767px) {
  /* Vision & Business Model -- 4 asamali surec: 4 kolon -> 1 kolon */
  #model > .container > div[style*="repeat(4"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* 4'lu surecteki border-right ayraclari mobilde kaldir */
  #model > .container > div[style*="repeat(4"] > div {
    border-right: none !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 28px !important;
  }
  #model > .container > div[style*="repeat(4"] > div:last-child {
    border-bottom: none;
  }

  /* Revenue / Partnership model kutulari: 3 kolon -> 1 kolon */
  #model > .container > div[style*="repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 28px !important;
  }

  /* References: 3 kolon -> 1 kolon */
  #references > .container > div[style*="repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

@media (max-width: 991px) {
  /* Tablet: 4'lu sureci 2x2 yap */
  #model > .container > div[style*="repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 24px !important;
  }
  #model > .container > div[style*="repeat(4"] > div:nth-child(odd) {
    border-right: none !important;
  }
}

/* ============================================================
   SECTOR / CATEGORY FILTER -- portfolio.php ve insights.php
   tarafindan ortak kullanilir. Buradan tek yerden yonetilir.
   ============================================================ */
.sector-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 36px 0 48px;
}
.filter-btn {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 9px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition: var(--trans);
}
.filter-btn:hover { border-color: var(--brand); color: var(--brand); }
.filter-btn.active { background: var(--brand); border-color: var(--brand); color: var(--white); }
