﻿/* --- RENK PALETİ VE GENEL AYARLAR --- */
:root {
  --primary-red: #e30a17; /* Güçlü, canlı kırmızı */
  --dark-red: #b30812; /* Hover ve vurgu kırmızısı */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --text-dark: #333333;
  --text-gray: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* --- HEADER & BEYAZ NAVİGASYON --- */
header {
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Altına hafif gölge */
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Kırmızı/Siyah uyumu */
.logo {
  color: var(--text-dark);
  font-weight: 800;
  font-size: 1.8rem;
}
.logo-img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.logo span {
  color: var(--primary-red);
}

.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  padding: 0 15px;
  position: relative;
}

/* Linkler siyah, üstüne gelince kırmızı olacak */
.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links .dropdown:hover > a {
  color: var(--primary-red);
}

/* --- MEGA MENÜ (Kırmızı Vurgulu) --- */
.nav-links li.dropdown {
  position: static;
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 4px solid var(--primary-red); /* Üst çizgi kırmızı */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.dropdown:hover .mega-menu,
.dropdown.aktif .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-content {
  display: flex;
  padding: 30px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-column {
  flex: 1;
  padding: 0 25px;
  border-right: 1px solid #eee;
}
.menu-column:last-child {
  border-right: none;
}

.menu-column h3 {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 15px;
}
.menu-column h3 i {
  color: var(--primary-red);
  margin-right: 8px;
}

.menu-column ul {
  list-style: none;
}
.menu-column ul li {
  padding: 5px 0;
}
.menu-column ul li a {
  color: var(--text-gray);
  font-weight: 400;
  font-size: 13px;
}
.menu-column ul li a:hover {
  color: var(--primary-red);
  padding-left: 5px;
}

/* --- HERO SECTION (Ana Banner) --- */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/1.jpeg");
  height: 70vh;
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
  text-align: center;
}
.hero h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* --- BUTONLAR (Tamamen Kırmızı) --- */
.btn {
  background: var(--primary-red);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: 0.3s;
}
.btn:hover {
  background: var(--dark-red);
  color: var(--white);
}
.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}

/* --- HİZMET KARTLARI ÖZETİ --- */
.quick-services {
  padding: 80px 0;
  background: var(--light-gray);
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
  font-size: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid var(--primary-red);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-10px);
}
.service-card i {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 20px;
}
.service-card h3 {
  margin-bottom: 15px;
  color: var(--text-dark);
}
.service-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* --- ALT SAYFA STANDARTLARI --- */
.page-header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/2.jpeg");
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.page-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.service-detail,
.contact {
  padding: 60px 0;
}
.service-content-wrapper,
.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.service-text,
.contact-info,
.contact-form {
  flex: 2;
  min-width: 300px;
}
.service-sidebar {
  flex: 1;
  min-width: 300px;
}

.service-text h3,
.contact-info h3 {
  color: var(--primary-red);
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.service-text ul li i {
  color: var(--primary-red);
  margin-right: 10px;
}

.sidebar-box {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid var(--primary-red);
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-red);
}

/* --- FOOTER --- */
footer {
  background: var(--text-dark);
  color: var(--white);
  text-align: center;
  padding: 25px 0;
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  } /* Hamburger menü için gizlendi */
  .mega-menu-content {
    flex-direction: column;
  }
  .menu-column {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 15px;
  }
  .hero h2 {
    font-size: 2rem;
  }
}
/* --- GALERİ STİLLERİ (Kırmızı-Beyaz Tema) --- */

.gallery-section {
  padding: 60px 0;
  background-color: var(--white);
}

.gallery-category {
  margin-bottom: 50px;
}

.gallery-category h3 {
  color: var(--text-dark);
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Başlık yanındaki ikon kırmızı */
.gallery-category h3 i {
  color: var(--primary-red);
}

.gallery-category p {
  color: var(--text-gray);
  margin-bottom: 25px;
}

/* Fotoğraf ve Videoların Izgara Düzeni */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Altında kırmızı ince bir çizgi olan şık kutular */
.media-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  border-bottom: 3px solid var(--primary-red);
}

/* Resim Ayarları */
.media-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.media-item:hover img {
  transform: scale(1.08); /* Fare gelince büyüme */
}

/* Video Ayarları (Videoların boyutunun bozulmaması için 16:9 oranı) */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background-color: #000; /* Video yüklenmeden önce siyah arkaplan */
}

/* Kategorileri ayıran ince gri çizgi */
.gallery-divider {
  border: 0;
  height: 1px;
  background: #eee;
  margin: 40px 0;
}
.enes {
  color: #333333;
  text-decoration-color: #333333;
  text-shadow: none;
}
/* =========================================
   GALERİ SAYFASI ÖZEL (YAN YANA DİZİLİM)
========================================= */
.page-header {
  background: var(--primary-red);
  color: var(--white);
  padding: 50px 0;
}

.gallery-section {
  padding: 80px 0;
  background: #fff;
}
.gallery-category {
  margin-bottom: 50px;
}
.gallery-category h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
}
.gallery-category h3 i {
  color: var(--primary-red);
  margin-right: 10px;
}

/* 1. YAN YANA RESİM IZGARASI (GRID) */
.image-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* 300px'den küçük olmamak şartıyla yan yana dizer */
  gap: 25px;
  margin-top: 30px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid var(--primary-red);
  transition: 0.3s;
  background: #000;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

/* Üstüne gelince hafif büyüme ve kararma efekti */
.gallery-item img:hover {
  transform: scale(1.08);
  filter: brightness(0.7);
}

/* 2. VİDEO IZGARASI (DİKİNE KUTULAR) */
.video-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}
.video-container {
  width: 320px;
  height: 560px;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  border: 4px solid #eee;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.video-container:hover {
  transform: translateY(-10px);
  border-color: var(--primary-red);
}
.video-container iframe {
  width: 100%;
  height: 100%;
}

/* 3. LIGHTBOX (RESMİ EKRANDA BÜYÜTME) */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 900px;
  max-height: 80vh;
  border-radius: 8px;
  border: 3px solid var(--white);
  margin-top: 50px;
  animation: zoomIn 0.4s;
}
@keyframes zoomIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
}

/* Telefon Ekranı İçin Ufak Düzeltmeler */
@media (max-width: 768px) {
  .video-container {
    width: 90%;
    height: 500px;
  }
  .lightbox-content {
    width: 95%;
    margin-top: 80px;
  }
}
/* ================= İLETİŞİM SAYFASI ÖZEL ================= */
.contact-page {
  padding: 80px 0;
  background-color: var(--white);
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}
.contact-info h3 {
  color: var(--primary-red);
  font-size: 2rem;
  margin-bottom: 15px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.info-item i {
  background-color: var(--white);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.3rem;
  margin-right: 20px;
  flex-shrink: 0;
}
.info-item strong {
  color: var(--text-dark);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}
.info-item p {
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

.map-box {
  margin-top: 40px;
  border: 4px solid var(--primary-red);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-box {
  flex: 1;
  min-width: 300px;
  background: var(--bg-light);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--primary-red);
}
#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  background: var(--white);
  transition: 0.3s;
}
#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 8px rgba(227, 10, 23, 0.2);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
  .contact-form-box {
    padding: 30px 20px;
  }
}
/* ================= KURUMSAL SAYFA STİLLERİ ================= */
.page-header {
  background: #222;
  color: var(--white);
  padding: 60px 0;
  border-bottom: 4px solid var(--primary-red);
}

.about-page {
  padding: 80px 0;
  background: var(--white);
}
.about-row {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.about-img-box {
  flex: 1;
  min-width: 300px;
  position: relative;
}
.about-img-box img {
  width: 100%;
  border-radius: 10px;
  border-bottom: 5px solid var(--primary-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-red);
  color: var(--white);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 5px solid var(--white);
  box-shadow: 0 5px 15px rgba(227, 10, 23, 0.3);
}

.about-text-box {
  flex: 1.2;
  min-width: 300px;
}
.sub-title {
  font-size: 2.2rem;
  color: var(--primary-red);
  margin-bottom: 20px;
}
.about-text-box p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.mv-card {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-red);
}
.mv-card i {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 10px;
}
.mv-card h4 {
  margin-bottom: 10px;
  color: var(--text-dark);
}
.mv-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Mobilde Kurumsal Düzeltmesi */
@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .about-row {
    flex-direction: column;
  }
  .about-img-box {
    order: 2;
    margin-top: 40px;
  }
  .experience-tag {
    width: 100px;
    height: 100px;
    right: 0;
  }
}
/* ================= İLETİŞİM SAYFASI ÖZEL ================= */
.contact-page {
  padding: 80px 0;
  background-color: var(--white);
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}
.contact-info h3 {
  color: var(--primary-red);
  font-size: 2rem;
  margin-bottom: 15px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.info-item i {
  color: var(--white);
  background-color: var(--white);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.3rem;
  margin-right: 20px;
  flex-shrink: 0;
}
.info-item strong {
  color: var(--text-dark);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}
.info-item p {
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.map-box {
  margin-top: 40px;
  border: 4px solid var(--primary-red);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-box {
  flex: 1;
  min-width: 300px;
  background: var(--bg-light);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--primary-red);
}
#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  background: var(--white);
  transition: 0.3s;
}
#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 8px rgba(227, 10, 23, 0.2);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
  .contact-form-box {
    padding: 30px 20px;
  }
}
/* ================= GENEL ================= */
:root {
  --primary-red: #e30a17;
  --white: #fff;
  --text-dark: #222;
  --bg-light: #f8f9fa;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}
body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.text-center {
  text-align: center;
}

/* ================= HEADER & MASAÜSTÜ MENÜ ================= */
header {
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

.logo {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}
.logo-img {
  height: 40px;
  margin-right: 8px;
}
.logo span {
  color: var(--primary-red);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}
.nav-links li {
  position: relative;
  padding: 0 20px;
}
.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
}
.nav-links a:hover {
  color: var(--primary-red);
}

/* Masaüstü Mega Menü (Gizli, Tıklayınca Açılır) */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -100px;
  min-width: 800px;
  background: var(--white);
  border-top: 4px solid var(--primary-red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
  display: none;
  margin-top: 15px;
}
.dropdown.aktif .mega-menu {
  display: block;
}
.mega-menu-content {
  display: flex;
  padding: 30px;
  gap: 20px;
}
.menu-column {
  flex: 1;
  border-right: 1px solid #eee;
  padding-right: 20px;
}
.menu-column:last-child {
  border-right: none;
}
.menu-column h3 {
  font-size: 14px;
  color: var(--primary-red);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-column ul {
  list-style: none;
}
.menu-column ul li {
  padding: 6px 0;
  border: none;
}
.menu-column ul li a {
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #555;
}
.menu-column ul li a:hover {
  color: var(--primary-red);
  padding-left: 5px;
}

/* Butonlar ve Bileşenler */
.btn {
  background: var(--primary-red);
  color: var(--white);
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}
.btn:hover {
  background: #b30812;
  transform: translateY(-3px);
}
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #555;
  cursor: pointer;
}

/* ================= ANA SAYFA (VİTRİN) ================= */
.hero {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333;
  color: #fff;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/1.png");
  background-size: cover;
  background-position: center;
}
.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.stats-section {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 3px solid #eee;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
}
.stat-box i {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 15px;
}
.stat-box h3 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 5px;
  color: var(--text-dark);
}
.stat-box p {
  font-size: 1.1rem;
  color: #666;
  font-weight: 600;
}

/* ================= SABİT SOSYAL BUTONLAR (SAĞ ALT) ================= */
.fixed-socials {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px; /* Butonların arasındaki mesafe */
  z-index: 9999;
}

.social-float {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* WhatsApp Yeşili */
.whatsapp {
  background-color: #25d366;
}

/* Instagram Degrade Rengi */
.instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

/* Üzerine gelince büyüme ve parlama efekti */
.social-float:hover {
  transform: scale(1.1) translateY(-5px);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Mobilde biraz küçültelim ki ekranı kaplamasın */
@media (max-width: 768px) {
  .fixed-socials {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .social-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
/* ================= FOOTER ================= */
footer {
  background: #111;
  color: #ddd;
  padding: 60px 0 20px 0;
  border-top: 4px solid var(--primary-red);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}
.footer-col p {
  line-height: 1.8;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.footer-col i {
  color: var(--primary-red);
  margin-right: 8px;
}
.social-links {
  margin-top: 15px;
}
.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.3s;
}
.social-icon:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 0.9rem;
}
.designer-text {
  color: #888;
  margin-top: 5px;
}

/* ================= MOBİL MENÜ (TELEFON MODU) ================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1001;
    padding: 0;
    margin: 0;
  }
  .nav-links.active {
    display: flex;
  }

  /* Ortalanmış, Gri Çizgili Yapı */
  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
    padding: 0;
  }
  .nav-links li:last-child {
    border-bottom: none;
  }

  /* Tok Gri Yazılar */
  .nav-links li a {
    display: block;
    padding: 18px 0;
    color: #555555;
    font-weight: 700;
    font-size: 16px;
  }

  /* Kırmızı Çerçeveli Çarpı */
  .menu-toggle i.fa-xmark {
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    padding: 4px 8px;
    border-radius: 4px;
  }

  /* Mobilde Açılır Menü Düzeni */
  .mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    display: none;
    background: #fafafa;
  }
  .dropdown.aktif .mega-menu {
    display: block;
  }
  .mega-menu-content {
    flex-direction: column;
    padding: 0;
  }
  .menu-column {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    text-align: center;
  }
  .menu-column h3 {
    justify-content: center;
    margin-bottom: 10px;
    display: flex;
    color: var(--primary-red);
  }
  .menu-column ul {
    padding: 0;
  }
  .menu-column ul li {
    border: none;
  }
  .menu-column ul li a {
    padding: 10px 0;
    font-size: 14px;
    font-weight: normal;
    justify-content: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}
/* ================= GALERİ YENİ TASARIM ================= */
.image-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-item,
.video-item {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid var(--primary-red);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
}

.video-item video {
  width: 100%;
  height: 200px;
  background: #000;
  display: block;
}

.video-item p {
  padding: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.separator {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 50px 0;
}

/* ================= KAYBETTİĞİN REFERANSLAR CSS'İ ================= */
.references-page {
  padding: 80px 0;
  background-color: #fff;
}
.ref-title {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
}
.ref-title i {
  color: var(--primary-red);
  margin-right: 10px;
}
.ref-desc {
  color: #666;
  border-left: 4px solid var(--primary-red);
  padding-left: 15px;
  margin-bottom: 40px;
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.ref-card {
  background: #f8f9fa;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: 0.3s;
  border-bottom: 4px solid var(--primary-red);
}

.ref-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ref-logo-placeholder {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  background: #fff;
  border: 2px dashed #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-weight: bold;
}
/* Havalimanı Referans Kartı Özel Efekt */
.special-project {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border: 2px solid #e30a17 !important;
  transform: scale(1.05);
}

.project-badge {
  background: #e30a17;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}
/* ================= HAVALİMANI ÖZEL PROJE KARTI ================= */
.airport-project-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 3px solid var(--primary-red);
  box-shadow: 0 10px 30px rgba(227, 10, 23, 0.15);
  transition: 0.3s;
}

.airport-project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(227, 10, 23, 0.25);
}

.airport-text {
  flex: 1.2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-badge {
  background-color: var(--primary-red);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
  width: fit-content;
}

.airport-text h4 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 15px;
}

.airport-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-status {
  font-size: 14px;
  color: #888;
  font-style: italic;
  font-weight: 600;
}

.airport-img {
  flex: 1;
  height: 100%;
  min-height: 350px;
}

.airport-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Resmi ezmeden kutuya sığdırır kanka */
}

/* Mobilde fotoğraf üste, yazı alta gelsin */
@media (max-width: 768px) {
  .airport-project-card {
    flex-direction: column-reverse;
  }
  .airport-img {
    min-height: 250px;
  }
  .airport-text {
    padding: 30px 20px;
  }
  .airport-text h4 {
    font-size: 1.8rem;
  }
}
/* Bootstrap Menü Üzerine Yazma */
.navbar-brand.logo {
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1a1a1a;
}

.nav-link {
  font-size: 15px;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav-link:hover {
  color: #e30a17 !important;
}

/* Mobilde menü açıldığında linklerin ortalanması */
@media (max-width: 1199px) {
  .navbar-nav {
    text-align: center;
    padding: 20px 0;
  }
  .nav-item {
    border-bottom: 1px solid #eee;
  }
}
.accordion-button:not(.collapsed) {
  background-color: rgba(227, 10, 23, 0.1);
  color: var(--primary-red);
}
.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-red);
}
/* --- UZMAN KADRO KARTLARI --- */
.member-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(227, 10, 23, 0.1) !important;
  border-color: var(--primary-red);
}

.member-img {
  height: 300px; /* Fotoğrafların boyunu sabitledim kanka */
  overflow: hidden;
  background-color: #ddd; /* Fotoğraf yoksa boş kalmasın */
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fotoğrafı kutuya tam oturtur, ezmez */
  transition: 0.5s;
}

.member-card:hover .member-img img {
  transform: scale(1.1); /* Üstüne gelince hafif zoom */
}

.member-info {
  border-top: 3px solid var(--primary-red);
}
/* --- SSS BÖLÜMÜ ÖZEL CSS --- */
.faq-section .accordion-button {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px !important;
  transition: all 0.3s ease;
}

/* Soru tıklandığında (açıldığında) rengini kurumsal kırmızı yap */
.faq-section .accordion-button:not(.collapsed) {
  background-color: rgba(227, 10, 23, 0.05) !important;
  color: #e30a17 !important;
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(227, 10, 23, 0.2);
}

.faq-section .accordion-item {
  border: 1px solid #eef0f2 !important;
  overflow: hidden;
}

/* =====================================================
   ORTAK SAYFA CSS (Tüm sayfalar - page-hero, fade-up, cta-band vb.)
   ===================================================== */
:root {
  --red: #e30a17;
  --red-dark: #b50812;
  --red-light: #ff2d3a;
  --dark: #111318;
  --gray: #f4f5f7;
  --text: #2c2f36;
  --muted: #6b7280;
}

.page-hero {
  background: var(--red);
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(0, 0, 0, 0.06) 18px,
    rgba(0, 0, 0, 0.06) 20px
  );
}
.page-hero .bg-text {
  position: absolute;
  bottom: -24px;
  right: -10px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 130px;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -4px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-title span {
  color: var(--red);
}
.title-line {
  width: 48px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 18px;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(1) {
  transition-delay: 0.05s;
}
.fade-up:nth-child(2) {
  transition-delay: 0.15s;
}
.fade-up:nth-child(3) {
  transition-delay: 0.25s;
}
.fade-up:nth-child(4) {
  transition-delay: 0.35s;
}
.fade-up:nth-child(5) {
  transition-delay: 0.45s;
}
.fade-up:nth-child(6) {
  transition-delay: 0.55s;
}

.cta-band {
  background: var(--red);
  padding: 55px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(0, 0, 0, 0.05) 18px,
    rgba(0, 0, 0, 0.05) 20px
  );
}
.cta-band .container {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: #fff;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}
.btn-cta-white {
  background: #fff;
  color: var(--red);
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 10px;
  border: none;
  font-size: 0.92rem;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: inline-block;
}
.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--red);
}
.btn-cta-outline {
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
  display: inline-block;
}
.btn-cta-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* =====================================================
   HİZMETLER SAYFASI ÖZEL CSS
   ===================================================== */
.services-hero {
  background: var(--red);
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
}
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(0, 0, 0, 0.06) 18px,
    rgba(0, 0, 0, 0.06) 20px
  );
}
.services-hero::after {
  content: "HİZMETLER";
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 140px;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -4px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.services-hero .container {
  position: relative;
  z-index: 1;
}
.services-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.services-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
}
.intro-strip {
  background: var(--dark);
  padding: 22px 0;
}
.intro-strip p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.95rem;
}
.intro-strip strong {
  color: #fff;
}
.main-services {
  padding: 80px 0 60px;
}
.service-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(227, 10, 23, 0.12);
  border-color: var(--red);
}
.service-card-top {
  padding: 32px 28px 22px;
}
.service-icon-wrap {
  width: 58px;
  height: 58px;
  background: #fff0f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s ease;
}
.service-card:hover .service-icon-wrap {
  background: var(--red);
}
.service-icon-wrap i {
  font-size: 1.4rem;
  color: var(--red);
  transition: color 0.25s ease;
}
.service-card:hover .service-icon-wrap i {
  color: #fff;
}
.service-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.service-card-footer {
  border-top: 1px solid #f0f0f0;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card-footer .tag {
  display: inline-block;
  background: #f4f5f7;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 100px;
}
.service-card:hover .service-card-footer .tag {
  background: #fff0f0;
  color: var(--red);
}
.featured-service {
  background: linear-gradient(135deg, var(--dark) 0%, #1e2330 100%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 50px 50px 50px 50px;
  margin-bottom: 30px;
}
.featured-service::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(227, 10, 23, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.featured-service::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(227, 10, 23, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.featured-service .inner {
  position: relative;
  z-index: 1;
}
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.featured-service h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.featured-service p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 28px;
}
.featured-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.featured-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}
.featured-list li i {
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #fff;
  flex-shrink: 0;
}
.btn-featured {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  border: none;
}
.btn-featured:hover {
  background: var(--red-light);
  color: #fff;
  transform: translateX(4px);
}
.featured-numbers {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.featured-num-item span {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}
.featured-num-item p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 4px 0 0;
}
.egitim-section {
  background: var(--gray);
  padding: 70px 0;
}
.egitim-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border-left: 4px solid var(--red);
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.egitim-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.egitim-card .egitim-no {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #f0f0f0;
  line-height: 1;
  margin-bottom: 12px;
}
.egitim-card h5 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.egitim-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.egitim-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.egitim-meta span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: #fff0f0;
  color: var(--red);
}

/* =====================================================
   REFERANS SAYFASI - LOGO DAİRE SABİT BOYUT
   ===================================================== */
.ref-logo-placeholder {
  width: 110px !important;
  height: 110px !important;
  min-width: 110px;
  border-radius: 50% !important;
  overflow: hidden;
  border: 2px solid #eee;
  background: #fff;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ref-logo-placeholder img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block;
}

/* =====================================================
   KURUMSAL SAYFA - VİZUAL KARTLAR
   ===================================================== */
.kurumsal-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kv-main-card {
  background: linear-gradient(135deg, #111318 0%, #1e2330 100%);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 4px solid var(--primary-red);
}
.kv-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--primary-red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kv-icon-wrap i {
  font-size: 1.5rem;
  color: #fff;
}
.kv-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.kv-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.kv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.kv-stat-card {
  background: #f8f9fa;
  border-radius: 14px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 3px solid var(--primary-red);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.kv-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(227, 10, 23, 0.12);
}
.kv-stat-card i {
  font-size: 1.6rem;
  color: var(--primary-red);
  margin-bottom: 10px;
}
.kv-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #111318;
  line-height: 1;
  margin-bottom: 4px;
}
.kv-desc {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
}

.kv-bottom-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.kv-bottom-card > i {
  font-size: 1.4rem;
  color: var(--primary-red);
  flex-shrink: 0;
}
.kv-bottom-card .kv-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 2px;
}
.kv-bottom-card .kv-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111318;
}
.kv-badge {
  margin-left: auto;
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .kv-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .kv-num {
    font-size: 1.4rem;
  }
}
