/* =============================================
   CAPACITY YAPI - MAIN STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary-dark: #000b41;
  --primary-red: #cc0000;
  --accent-blue: #1a2b8a;
  --light-bg: #f0f4f8;
  --white: #ffffff;
  --gray-light: #f5f7fa;
  --gray-mid: #e8ecf0;
  --gray-text: #555555;
  --gray-dark: #333333;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0,11,65,0.12);
  --shadow-hover: 0 8px 30px rgba(0,11,65,0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10050;
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 40px;
  height: 70px;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}

/* Mobil dil paneli (menüden bağımsız, JS ile doldurulur) */
.mobile-lang-panel {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 10048;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid var(--gray-mid);
}

.mobile-lang-panel.open {
  display: block;
}

.mobile-lang-panel-inner {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 20px 16px;
}

.mobile-lang-panel-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
  border-radius: 8px;
  border-bottom: 1px solid var(--gray-light);
  transition: background 0.2s ease;
}

.mobile-lang-panel-link:last-child {
  border-bottom: none;
}

.mobile-lang-panel-link:active,
.mobile-lang-panel-link:hover {
  background: var(--gray-light);
  color: var(--primary-red);
}

@media (min-width: 901px) {
  .mobile-lang-panel {
    display: none !important;
  }
}


.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 901px) {
  .navbar-menu {
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
  }
}

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

.navbar-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary-dark);
  border-radius: 4px;
  transition: var(--transition);
}

.navbar-menu > li > a:hover,
.navbar-menu > li > a.active {
  color: var(--primary-red);
}

.navbar-menu > li > a.active {
  border-bottom: 2px solid var(--primary-red);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: '▾';
  font-size: 10px;
  margin-left: 3px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  border-top: 3px solid var(--primary-red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 100;
}

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

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-dark);
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  color: var(--primary-red);
  background: var(--gray-light);
  padding-left: 26px;
}

/* Language selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--gray-mid);
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-left: 8px;
  transition: var(--transition);
}

.lang-selector:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.flag-icon {
  font-size: 16px;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobil: dil — menüden ayrı panel açar */
.mobile-site-lang {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  border-radius: 8px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.mobile-site-lang.active {
  border-color: var(--primary-red);
  background: rgba(204, 0, 0, 0.06);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  margin-top: 70px;
}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,11,65,0.6) 30%, rgba(0,11,65,0.2));
}

/* Thumbnail sidebar */
.slider-thumbs {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.slider-thumb {
  width: 100px;
  height: 70px;
  border-radius: 6px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.6;
}

.slider-thumb.active,
.slider-thumb:hover {
  border-color: var(--white);
  opacity: 1;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.35);
  border-color: var(--white);
}

.slider-arrow.prev { left: 130px; }
.slider-arrow.next { right: 20px; }

/* =============================================
   HERO CAPTION
   ============================================= */
.hero-caption {
  background: var(--primary-dark);
  padding: 40px 60px;
}

.hero-caption-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-caption h2 {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  max-width: 700px;
}

.hero-caption-links {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.btn-outline-white {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

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

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 80px 40px;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 600px;
}

/* =============================================
   SERVICES / FAALIYETLER SECTION
   ============================================= */
.services-section {
  background: var(--primary-dark);
  padding: 80px 40px;
}

.services-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 50px;
}

.services-header .section-label {
  color: rgba(255,255,255,0.6);
}

.services-header .section-title {
  color: var(--white);
}

.services-header .section-subtitle {
  color: rgba(255,255,255,0.7);
}

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

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 35px 30px;
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.25);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

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

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  background: var(--light-bg);
  padding: 60px 40px;
}

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

.stat-item h3 {
  font-size: 52px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-text);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =============================================
   PROJECTS SECTION
   ============================================= */
.projects-section {
  padding: 80px 40px;
}

.projects-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

a.project-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.project-card-info {
  padding: 20px 24px;
  background: var(--white);
  border-top: 3px solid transparent;
  transition: var(--transition);
}

.project-card:hover .project-card-info {
  border-top-color: var(--primary-red);
}

.project-card-info h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.project-card-info p {
  font-size: 14px;
  color: var(--gray-text);
}

.project-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  opacity: 0;
}

.project-card:hover .project-arrow {
  opacity: 1;
  right: 24px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-blue) 100%);
  padding: 70px 40px;
  text-align: center;
}

.cta-section h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* =============================================
   PARTNERS / ÇÖZÜM ORTAKLIĞI SECTION
   ============================================= */
.partners-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a1a4a 100%);
  padding: 80px 40px;
  text-align: center;
}

.partners-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.partners-img-wrap {
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}

.partners-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.partners-img:hover {
  transform: scale(1.01);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--primary-dark);
  padding: 60px 40px 30px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 50px;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.12);
}

.footer-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-info p .info-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-info a {
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

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

.footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-menu ul li a::before {
  content: '→';
  font-size: 12px;
  opacity: 0;
  transition: var(--transition);
  transform: translateX(-5px);
}

.footer-menu ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-menu ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-map iframe {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  border: none;
  filter: grayscale(30%) brightness(0.9);
}

.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.45);
  z-index: 998;
  transition: var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.6);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 25px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* =============================================
   PAGE HERO (subpages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-blue) 100%);
  padding: 120px 40px 60px;
  margin-top: 70px;
}

.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 550px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

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

.breadcrumb span {
  font-size: 10px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary-red);
  color: var(--white);
  padding: 20px 25px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
}

/* Mission/Vision/Quality */
.mvq-section {
  background: var(--gray-light);
  padding: 80px 40px;
}

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

.mvq-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-red);
  transition: var(--transition);
}

.mvq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.mvq-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mvq-card h3 .mvq-icon {
  font-size: 22px;
}

.mvq-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.75;
}

/* Team section */
.team-section {
  padding: 80px 40px;
}

.team-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.team-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--primary-red);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  font-weight: 700;
}

.team-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.team-card .team-role {
  font-size: 13px;
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 6px;
}

.team-card .team-edu {
  font-size: 12px;
  color: var(--gray-text);
}

/* =============================================
   SERVICES (Faaliyetler) PAGE
   ============================================= */
.service-detail-section {
  padding: 80px 40px;
}

.service-detail-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--gray-mid);
}

.service-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-block-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
}

.service-block-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.service-block-content .service-subtitle {
  font-size: 14px;
  color: var(--primary-red);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  padding: 18px 20px;
  background: var(--gray-light);
  border-radius: 8px;
  border-left: 3px solid var(--primary-red);
  transition: var(--transition);
}

.service-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.service-item p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.65;
}

/* Contact form on faaliyetler */
.contact-form-section {
  background: var(--light-bg);
  padding: 60px 40px;
}

.contact-form-inner {
  max-width: 700px;
  margin: 0 auto;
}

/* =============================================
   PROJECTS PAGE
   ============================================= */
.projects-page-section {
  padding: 60px 40px 80px;
}

.projects-page-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.projects-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.projects-section-subtitle {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 35px;
}

.ongoing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.ongoing-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.ongoing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.ongoing-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.ongoing-card-body {
  padding: 22px 24px;
  background: var(--white);
}

.project-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(204,0,0,0.1);
  color: var(--primary-red);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ongoing-card-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.ongoing-card-body p {
  font-size: 13px;
  color: var(--gray-text);
}

.divider {
  border: none;
  border-top: 2px solid var(--gray-mid);
  margin-bottom: 50px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page-section {
  padding: 60px 40px 80px;
}

.contact-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.contact-info > p {
  font-size: 15px;
  color: var(--gray-text);
  margin-bottom: 35px;
  line-height: 1.7;
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 8px;
}

.contact-item p, .contact-item a {
  font-size: 15px;
  color: var(--gray-dark);
  display: block;
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--primary-red);
}

.contact-reps-section {
  padding: 0 40px 40px;
  background: var(--white);
}

.contact-reps-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-reps-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 28px;
  text-align: center;
  letter-spacing: 0.02em;
}

.contact-reps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.contact-rep-card {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 24px 22px;
  border-top: 3px solid var(--primary-red);
  box-shadow: var(--shadow);
}

.contact-rep-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 14px;
  letter-spacing: 0.03em;
}

.contact-rep-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-text);
  margin: 0 0 10px;
}

.contact-rep-card p:last-child {
  margin-bottom: 0;
}

.contact-rep-phone {
  font-weight: 600;
}

.contact-rep-phone a {
  color: var(--primary-dark);
  text-decoration: none;
  display: inline;
}

.contact-rep-phone a:hover {
  color: var(--primary-red);
}

.contact-map-wrap {
  margin: 0;
  line-height: 0;
}

#contactMultiMap {
  width: 100%;
  height: 390px;
  border: 0;
}

/* Contact form */
.contact-form-box {
  background: var(--gray-light);
  border-radius: 16px;
  padding: 40px;
}

.contact-form-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.contact-form-box > p {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 28px;
}

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

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

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--gray-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(26,43,138,0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent-blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: var(--transition);
  width: 100%;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0,11,65,0.25);
}

/* =============================================
   CAREER PAGE
   ============================================= */
.career-section {
  padding: 60px 40px 80px;
}

.career-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.career-intro {
  max-width: 760px;
  margin-bottom: 50px;
}

.career-intro h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.career-intro p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.8;
}

.career-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.career-benefit-card {
  background: #f0f4f8;
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid var(--primary-red);
  transition: var(--transition);
}

.career-benefit-card:hover {
  box-shadow: var(--shadow);
}

.career-benefit-card .career-benefit-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}

.career-benefit-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.career-benefit-card p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

.career-position-row {
  border: 1px solid #e8ecf0;
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  transition: 0.3s ease;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

.career-position-row:hover {
  border-color: var(--primary-red);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.career-position-row .career-apply-pill {
  flex-shrink: 0;
  background: rgba(0, 11, 65, 0.08);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.career-position-row h4 {
  margin: 0 0 4px 0;
}

.cv-form-box {
  background: var(--gray-light);
  border-radius: 16px;
  padding: 40px;
  max-width: 760px;
}

.cv-form-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.cv-form-box > p {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 28px;
}

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

.file-upload {
  border: 2px dashed var(--gray-mid);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.file-upload:hover {
  border-color: var(--accent-blue);
  background: rgba(26,43,138,0.03);
}

.file-upload p {
  font-size: 14px;
  color: var(--gray-text);
  margin-top: 8px;
}

.file-upload .file-icon {
  font-size: 32px;
}

.file-upload input[type="file"] {
  display: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .navbar-container {
    padding: 0 20px;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
  }

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

  .navbar-menu > li {
    width: 100%;
    border-bottom: 1px solid var(--gray-mid);
  }

  .navbar-menu > li > a {
    padding: 16px 10px;
    font-size: 15px;
  }

  .navbar-menu > li.lang-dropdown {
    display: none !important;
  }

  .navbar-tools {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  .mobile-site-lang {
    display: inline-flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    border-left: 3px solid var(--primary-red);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: var(--gray-light);
    margin-left: 10px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .hamburger {
    display: flex;
  }

  /* Dil: dokunmatikte tıklama ile aç (nav-shared.js .open); hover kapalı */
  .lang-dropdown:hover .dropdown-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .lang-dropdown.open .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

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

  .hero-caption {
    padding: 30px 25px;
  }

  .hero-caption h2 {
    font-size: 18px;
  }

  .services-grid,
  .stats-inner,
  .mvq-grid,
  .career-benefits-grid,
  .projects-grid,
  .ongoing-grid {
    grid-template-columns: 1fr;
  }

  .career-position-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-content,
  .service-block,
  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-reps-section {
    padding: 0 20px 32px;
  }

  .contact-reps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-reps-title {
    font-size: 19px;
    margin-bottom: 20px;
  }

  .service-block.reverse {
    direction: ltr;
  }

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

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .slider-thumbs {
    display: none;
  }

  .slider-arrow.prev { left: 15px; }

  .section-title {
    font-size: 26px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .page-hero h1 {
    font-size: 30px;
  }

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

@media (max-width: 600px) {
  .section {
    padding: 50px 20px;
  }

  .hero-slider {
    height: 60vh;
  }
}

/* =============================================
   GTRANSLATE CUSTOM STYLES
   ============================================= */
.gt_float_setter, 
#gt_float_wrapper, 
.gtranslate_wrapper script, 
.gtranslate_wrapper + div {
  display: none !important;
}

/* Ensure the navbar lang dropdown is visible and styled */
.lang-dropdown .dropdown-menu {
  min-width: 120px !important;
  left: auto !important;
  right: 0 !important;
  padding: 10px 0 !important;
}

.lang-dropdown .dropdown-menu li a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 15px !important;
  cursor: pointer !important;
}

.lang-dropdown .dropdown-menu li a:hover {
  background: var(--gray-light) !important;
  color: var(--primary-red) !important;
  padding-left: 15px !important; /* Overriding the general chevron effect if needed */
}
