/* ========================================
   AnahtarÇilingir - Ana Stil Dosyası
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #0a1628;
  --navy-light: #132038;
  --navy-mid: #1a2d4a;
  --orange: #f59e0b;
  --orange-hover: #d97706;
  --orange-light: #fbbf24;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

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

/* ---- Animasyonlar ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.anim-up {
  animation: fadeInUp .7s ease-out both
}

.anim-fade {
  animation: fadeIn .8s ease-out both
}

.anim-left {
  animation: slideInLeft .7s ease-out both
}

.anim-right {
  animation: slideInRight .7s ease-out both
}

.d1 {
  animation-delay: .1s
}

.d2 {
  animation-delay: .2s
}

.d3 {
  animation-delay: .3s
}

.d4 {
  animation-delay: .4s
}

.d5 {
  animation-delay: .5s
}

.d6 {
  animation-delay: .6s
}

/* ---- Top Bar ---- */
.top-bar {
  background: #060d18;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: .8rem;
  color: var(--gray-300);
  position: relative;
  z-index: 1001;
  display: block
}

.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 36px
}

.tb-left,
.tb-right {
  display: flex;
  align-items: center;
  gap: 16px
}

.tb-left a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color .3s
}

.tb-left a:hover {
  color: var(--white)
}

.tb-left i {
  color: var(--orange);
  margin-right: 6px
}

.tb-divider {
  color: var(--gray-700)
}

.tb-social {
  display: flex;
  gap: 12px
}

.tb-social a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color .3s
}

.tb-social a:hover {
  color: var(--orange)
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: all .3s
}

.site-header.scrolled {
  top: 0;
  background: rgba(10, 22, 40, .98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3)
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy)
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.5px
}

.logo-text span {
  color: var(--orange)
}

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

.nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color .3s;
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .3s
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white)
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: all .3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(245, 158, 11, .3)
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 158, 11, .45)
}

.cta-btn i {
  font-size: 1rem
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer
}

/* ---- Page Banner ---- */
.page-banner {
  position: relative;
  padding: 140px 24px 80px;
  background: linear-gradient(135deg, rgba(10, 22, 40, .92), rgba(10, 22, 40, .8)), url('assets/hero-bg.png') center/cover no-repeat;
  text-align: center
}

.page-banner h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px
}

.page-banner .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: .9rem
}

.page-banner .breadcrumb a {
  color: var(--orange);
  text-decoration: none;
  transition: color .3s
}

.page-banner .breadcrumb a:hover {
  color: var(--orange-light)
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(10, 22, 40, .85), rgba(10, 22, 40, .7)), url('assets/hero-bg.png') center/cover no-repeat;
  padding: 120px 24px 80px
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent)
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, .15);
  border: 1px solid rgba(245, 158, 11, .3);
  padding: 6px 16px;
  border-radius: 50px;
  color: var(--orange-light);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 24px
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 20px
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px
}

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

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, .25);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: all .3s
}

.hero-btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange)
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange)
}

.hero-stat p {
  font-size: .85rem;
  color: var(--gray-400);
  margin-top: 4px
}

/* ---- Section Ortak ---- */
.section {
  padding: 96px 24px
}

.section-gray {
  background: var(--gray-50)
}

.section-dark {
  background: var(--navy);
  color: var(--white)
}

.container {
  max-width: 1280px;
  margin: 0 auto
}

.section-header {
  text-align: center;
  margin-bottom: 64px
}

.section-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, .1);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px
}

.section-dark .section-header .badge {
  background: rgba(245, 158, 11, .15)
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px
}

.section-dark .section-header h2 {
  color: var(--white)
}

.section-header p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7
}

.section-dark .section-header p {
  color: var(--gray-400)
}

/* ---- Hakkımızda ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .15)
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block
}

.about-image .exp-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  color: var(--navy);
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  font-weight: 800
}

.about-image .exp-badge span {
  display: block;
  font-size: 2rem;
  line-height: 1
}

.about-image .exp-badge small {
  font-size: .75rem;
  font-weight: 600
}

.about-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px
}

.about-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px
}

/* Neden Biz / Vizyon Misyon Kartları */
.why-cards,
.vm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px
}

.why-card,
.vm-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all .3s
}

.why-card:hover,
.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  border-color: var(--orange)
}

.why-card .icon,
.vm-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 158, 11, .1), rgba(245, 158, 11, .05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--orange)
}

.why-card h4,
.vm-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.why-card p,
.vm-card p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.6
}

.vm-cards {
  grid-template-columns: repeat(2, 1fr)
}

/* Sayılarla Biz */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
  background: var(--navy-light);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .06)
}

.stat-item h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 8px
}

.stat-item p {
  color: var(--gray-400);
  font-size: .9rem
}

/* Ekip Kartları */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  transition: all .3s;
  text-align: center
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08)
}

.team-card .avatar {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--orange)
}

.team-card .info {
  padding: 24px
}

.team-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy)
}

.team-card p {
  color: var(--gray-600);
  font-size: .85rem;
  margin-top: 4px
}

/* Sertifika */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px
}

.cert-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: all .3s
}

.cert-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06)
}

.cert-card i {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 12px
}

.cert-card h5 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px
}

.cert-card p {
  font-size: .78rem;
  color: var(--gray-600)
}

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

.service-card {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all .4s;
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: transform .4s;
  transform-origin: left
}

.service-card:hover::before {
  transform: scaleX(1)
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  border-color: rgba(245, 158, 11, .2)
}

.service-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245, 158, 11, .15), rgba(245, 158, 11, .05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 20px
}

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

.service-card p {
  font-size: .88rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 20px
}

.service-card .card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s
}

.service-card .card-btn:hover {
  gap: 10px;
  color: var(--orange-light)
}

/* Hizmet Detay Kartları (Beyaz) */
.service-detail {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all .3s
}

.service-detail:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
  border-color: var(--orange)
}

.service-detail .icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 20px
}

.service-detail h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.service-detail p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px
}

.service-detail ul {
  list-style: none;
  margin-bottom: 24px
}

.service-detail ul li {
  padding: 6px 0;
  color: var(--gray-600);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 8px
}

.service-detail ul li i {
  color: var(--orange);
  font-size: .75rem
}

.service-detail .btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

/* ---- Servis Bölgeleri ---- */
.regions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center
}

.region-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--navy);
  font-size: .95rem;
  transition: all .3s
}

.region-badge i {
  color: var(--orange)
}

.region-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  border-color: var(--orange)
}

.region-cat {
  margin-bottom: 48px
}

.region-cat h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 10px
}

.region-cat h3 i {
  color: var(--orange)
}

/* ---- İletişim ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: 14px;
  transition: all .3s
}

.contact-info-item:hover {
  background: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06)
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem
}

.contact-info-item h4 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: .95rem
}

.contact-info-item p {
  color: var(--gray-600);
  font-size: .9rem
}

.contact-info-item a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color .3s
}

.contact-info-item a:hover {
  color: var(--orange)
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .05)
}

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

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--gray-700);
  transition: border-color .3s;
  background: var(--gray-50)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white)
}

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

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

.map-section {
  margin-top: 64px
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08)
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px;
  transition: all .3s;
  position: relative
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08)
}

.testimonial-card .stars {
  color: var(--orange);
  font-size: .9rem;
  margin-bottom: 16px
}

.testimonial-card blockquote {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem
}

.testimonial-card .author-name {
  font-weight: 600;
  color: var(--navy);
  font-size: .9rem
}

.testimonial-card .author-loc {
  color: var(--gray-400);
  font-size: .8rem
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  padding: 64px 24px;
  text-align: center
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px
}

.cta-banner p {
  color: rgba(10, 22, 40, .7);
  max-width: 500px;
  margin: 0 auto 28px;
  font-size: 1rem
}

.cta-banner .btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all .3s
}

.cta-banner .btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3)
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 64px 24px 0
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-about p {
  font-size: .9rem;
  line-height: 1.7;
  margin-top: 16px
}

.footer-col h4 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange)
}

.footer-col ul {
  list-style: none
}

.footer-col ul li {
  margin-bottom: 10px
}

.footer-col ul li a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: .88rem;
  transition: color .3s
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all .3s;
  font-size: 1rem
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--navy);
  transform: translateY(-3px)
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 0;
  text-align: center;
  font-size: .82rem
}

/* ---- Galeri ---- */
.gallery-grid {
  display: grid;
  gap: 20px
}

.gallery-grid-home {
  grid-template-columns: repeat(3, 1fr)
}

.gallery-grid-full {
  grid-template-columns: repeat(4, 1fr)
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--gray-100)
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .4s ease
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, .85) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  transition: opacity .35s ease
}

.gallery-overlay i {
  font-size: 1.8rem;
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.5);
  transition: transform .35s ease;
  opacity: 0
}

.gallery-overlay .gallery-category {
  color: var(--orange-light);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(245, 158, 11, .15);
  padding: 4px 12px;
  border-radius: 20px;
  transform: translateY(10px);
  transition: transform .35s ease
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(.85)
}

.gallery-item:hover .gallery-overlay {
  opacity: 1
}

.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1)
}

.gallery-item:hover .gallery-overlay .gallery-category {
  transform: translateY(0)
}

/* Galeri Filtreleri */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .3s
}

.filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange)
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  border-color: var(--orange);
  color: var(--navy)
}

.filter-btn .filter-count {
  background: rgba(0, 0, 0, .08);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: .75rem;
  font-weight: 700
}

.filter-btn.active .filter-count {
  background: rgba(10, 22, 40, .15)
}

.gallery-count {
  text-align: center;
  margin-top: 32px;
  color: var(--gray-400);
  font-size: .9rem
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 13, 24, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  backdrop-filter: blur(8px)
}

.lightbox.active {
  opacity: 1;
  visibility: visible
}

.lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center
}

.lb-content img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  animation: fadeInUp .3s ease-out
}

.lb-caption {
  color: var(--gray-300);
  font-size: .9rem;
  margin-top: 16px;
  text-align: center;
  font-weight: 500
}

.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray-400);
  font-size: .8rem;
  font-weight: 600;
  background: rgba(10, 22, 40, .6);
  padding: 6px 16px;
  border-radius: 20px
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all .3s;
  z-index: 10
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange)
}

.lb-close {
  top: 24px;
  right: 24px
}

.lb-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%)
}

.lb-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%)
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
  transition: all .3s;
  animation: float 3s ease-in-out infinite
}

.whatsapp-float:hover {
  transform: scale(1.1)
}

/* ---- Responsive ---- */
@media(max-width:1024px) {
  .hero h1 {
    font-size: 2.6rem
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .about-grid {
    gap: 40px
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr)
  }

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

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

  .gallery-grid-full {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:768px) {
  .top-bar {
    display: none
  }

  .site-header {
    top: 0
  }

  .header-inner .cta-btn {
    display: none
  }

  .nav-links {
    display: none
  }

  .menu-toggle {
    display: block
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, .98);
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    gap: 20px
  }

  .hero {
    min-height: auto;
    padding: 120px 24px 64px
  }

  .hero h1 {
    font-size: 2rem
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap
  }

  .about-grid {
    grid-template-columns: 1fr
  }

  .about-image {
    order: -1
  }

  .about-image img {
    height: 280px
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .why-cards,
  .vm-cards {
    grid-template-columns: 1fr
  }

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

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

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

  .section {
    padding: 64px 24px
  }

  .section-header h2 {
    font-size: 1.8rem
  }

  .page-banner h1 {
    font-size: 2rem
  }

  .page-banner {
    padding: 120px 24px 60px
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr
  }

  .cert-grid {
    grid-template-columns: 1fr 1fr
  }

  .team-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid-home,
  .gallery-grid-full {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .gallery-filters {
    gap: 8px
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: .78rem
  }

  .lb-prev {
    left: 12px
  }

  .lb-next {
    right: 12px
  }

  .lb-close {
    top: 12px;
    right: 12px
  }

  .lb-content img {
    max-width: 95vw;
    max-height: 70vh;
    border-radius: 8px
  }
}