/* ===========================
   MT İNŞAAT — Ana CSS
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #0D2040;
  --navy-light: #112244;
  --blue: #3B7EC8;
  --blue-dark: #2d63a0;
  --white: #ffffff;
  --light: #f5f6f8;
  --light-2: #eef0f4;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e2e6ea;
  --gold: #c9a84c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  display: block;
}

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

/* ===========================
   NAVİGASYON
   =========================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo-text span + span {
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

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

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-menu > li > a.active {
  color: var(--blue);
}

.nav-arrow {
  font-size: 10px;
  transition: transform 0.2s;
}

.nav-menu > li:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  border: 1px solid var(--border);
  overflow: hidden;
}

.nav-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 12px 18px;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.15s;
  border-bottom: 1px solid var(--border);
}

.dropdown a:last-child {
  border-bottom: none;
}

.dropdown a:hover {
  background: var(--light);
  color: var(--blue);
  padding-left: 22px;
}

.nav-contact-btn {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-contact-btn:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO
   =========================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--blue);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 700px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--blue);
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===========================
   STATS BAR
   =========================== */

.stats-bar {
  background: var(--blue);
  padding: 32px 24px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.25);
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===========================
   SECTIONS
   =========================== */

section {
  padding: 96px 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ===========================
   ABOUT (ANA SAYFA)
   =========================== */

.about-home {
  background: var(--white);
}

.about-home-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-home-img {
  position: relative;
}

.about-home-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
}

.about-home-img-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  text-align: center;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(59,126,200,0.4);
}

.about-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1;
}

.about-badge span {
  font-size: 11px;
  text-align: center;
  line-height: 1.3;
  opacity: 0.85;
}

.about-home-text .section-subtitle {
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 16px;
  flex-shrink: 0;
}

.about-feature-text strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}

.about-feature-text p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===========================
   HİZMETLER
   =========================== */

.services-home {
  background: var(--light);
}

.services-home-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: transparent;
}

.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  position: relative;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.2s;
}

.service-card-link:hover {
  gap: 10px;
}

/* ===========================
   PROJELER (ANA SAYFA)
   =========================== */

.projects-home {
  background: var(--white);
}

.projects-home-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.projects-home-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.project-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.project-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.project-card-img {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.project-status {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-status.completed {
  background: #22c55e;
}

.project-card-body {
  padding: 24px;
}

.project-card-body h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}

.project-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.project-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.project-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.project-detail {
  font-size: 13px;
}

.project-detail span {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.project-detail strong {
  color: var(--text);
  font-weight: 500;
}

/* ===========================
   CTA BÖLÜMÜ
   =========================== */

.cta-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(59,126,200,0.15) 0%, transparent 70%);
}

.cta-section .container {
  position: relative;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 40px;
  font-weight: 300;
}

/* ===========================
   FOOTER
   =========================== */

footer {
  background: #070f1e;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-brand .nav-logo {
  margin-bottom: 8px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item span:first-child {
  color: var(--blue);
  font-size: 16px;
  margin-top: 1px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ===========================
   PAGE HEADER
   =========================== */

.page-header {
  background: var(--navy);
  padding: 140px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover;
  opacity: 0.1;
}

.page-header .container {
  position: relative;
}

.page-header h1 {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255,255,255,0.25);
}

.breadcrumb .current {
  color: var(--blue);
}

/* ===========================
   PROJE SAYFASI
   =========================== */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

/* ===========================
   HİZMET DETAY SAYFASI
   =========================== */

.service-detail {
  padding: 80px 0;
}

.service-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.service-detail-content h2 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 20px;
}

.service-detail-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.service-features-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.service-sidebar-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 32px;
  color: var(--white);
  margin-bottom: 20px;
}

.service-sidebar-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.service-sidebar-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===========================
   KARİYER
   =========================== */

.career-empty {
  text-align: center;
  padding: 80px 24px;
  background: var(--light);
  border-radius: 16px;
  margin-top: 48px;
}

.career-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.career-empty h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}

.career-empty p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 32px;
}

/* ===========================
   İLETİŞİM
   =========================== */

.contact-section {
  background: var(--white);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 4px;
}

.contact-item-text p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.contact-form-card {
  background: var(--light);
  border-radius: 16px;
  padding: 40px;
}

.contact-form-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

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

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: var(--blue-dark);
}

.map-container {
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
  height: 360px;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===========================
   KURUMSAL SAYFA
   =========================== */

.kurumsal-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.kurumsal-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 14px;
}

/* ===========================
   KARİYER SAYFA
   =========================== */

.kariyer-culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.kariyer-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kariyer-story {
  padding: 80px 0;
}

.proje-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.kurumsal-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nesiller {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.nesil-card {
  background: var(--light);
  border-radius: 14px;
  padding: 32px 28px;
  border-top: 3px solid var(--blue);
  transition: all 0.3s;
}

.nesil-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.nesil-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--blue);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.nesil-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}

.nesil-card .nesil-role {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.nesil-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.kurumsal-values {
  background: var(--navy);
  padding: 80px 0;
}

.kurumsal-values-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-item {
  text-align: center;
  padding: 24px 16px;
}

.value-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.value-item h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}

.value-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .about-home-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-inner {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nesiller {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 6px;
    margin-top: 4px;
    display: none;
  }

  .dropdown.open {
    display: block;
  }

  .dropdown a {
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding-bottom: 24px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-badge {
    width: 90px;
    height: 90px;
    bottom: -16px;
    right: -8px;
  }

  .about-badge strong {
    font-size: 24px;
  }

  /* Kurumsal mobile */
  .kurumsal-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .kurumsal-photo {
    height: 280px;
  }

  .nesiller {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Kariyer mobile */
  .kariyer-culture-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  /* Genel padding azalt */
  section {
    padding: 56px 0;
  }

  .page-header {
    padding: 110px 24px 48px;
  }

  .contact-form-card {
    padding: 24px 20px;
  }

  /* Okunabilirlik */
  .section-title {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.25;
  }

  .section-subtitle {
    max-width: 100%;
    font-size: 15px;
  }

  body {
    font-size: 15px;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 52px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* Proje meta 4-col → 2-col */
  .proje-meta-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  /* Stat sayıları mobilde daha küçük */
  .stat-number {
    font-size: 32px;
  }

  /* Kariyer feature kartları mobilde 1 col */
  .kariyer-features-grid {
    grid-template-columns: 1fr;
  }

  /* About badge taşmasın */
  .about-home-img {
    padding-bottom: 24px;
  }
}
