/* =====================
   GENEL FONT & TEMEL AYARLAR
   ===================== */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f9fb;
}

/* =====================
   NAVBAR
   ===================== */
.navbar-brand img {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.active:focus {
  color: #8ee000;
  font-weight: 700;
}

/* =====================
   WHATSAPP BUTONU
   ===================== */
.whatsapp-btn, .whatsapp-sticky {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.whatsapp-btn {
  width: 38px; height: 38px; font-size: 1.3rem; margin-left: 8px;
}
.whatsapp-btn:hover {
  background: #1ebe57;
}
.whatsapp-sticky {
  position: fixed; bottom: 32px; right: 32px; z-index: 1050;
  width: 60px; height: 60px; font-size: 2rem; box-shadow: 0 4px 16px #0002; padding: 0;
}
.whatsapp-sticky i { font-size: 2rem; }

/* =====================
   HERO SECTION
   ===================== */
.hero-section {
  position: relative;
  min-height: 700px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5); z-index: 1;
}
.hero-section .container {
  max-width: none; margin: 0; padding: 40px 0 40px 48px;
}
.hero-section h1 {
  font-family: 'Poppins', sans-serif; font-size: 60px; font-weight: 700; line-height: 1.1; margin-bottom: 0.5rem;
}
.hero-section p, .hero-section .btn, .hero-section .mb-2 {
  font-family: 'Poppins', sans-serif;
}
.hero-section .mb-2 {
  font-size: 20px; font-weight: 600; color: #8ee000; letter-spacing: 1px;
}
.hero-section p { font-size: 20px; font-weight: 400; }
.hero-section .btn { font-size: 20px; font-weight: 600; }

/* =====================
   KARTLAR (PROJE, ÜRÜN, CIRCLE)
   ===================== */
.card, .product-card, .project-card {
  border: none;
  border-radius: 1.1rem;
  box-shadow: 0 2px 12px 0 rgba(30,40,90,0.08);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card-hover:hover, .project-card-hover:hover, .product-card:hover, .project-card:hover {
  box-shadow: 0 8px 32px 0 rgba(30,40,90,0.14), 0 0 0 4px #8ee00033;
  transform: translateY(-4px) scale(1.02);
}
.card-img-top, .product-card img, .project-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #fff;
  border-top-left-radius: 1.1rem;
  border-top-right-radius: 1.1rem;
  margin-bottom: 0;
}
.card-body, .product-card .card-body {
  padding: 0.7rem 0.5rem 0.5rem 0.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex: 1 1 auto;
}
.card-title, .product-title, .project-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #15304b;
  font-size: 1.1rem;
  text-align: center;
  margin: 0.5rem 0 0.15rem 0;
}

/* =====================
   FOOTER
   ===================== */
.footer-dark {
  background: #181F2B;
  color: #fff;
  padding: 3rem 0 1.5rem 0;
  margin-top: 0;
}
.footer-dark a { color: #8ee000; text-decoration: none; }
.footer-dark a:hover { text-decoration: underline; }
.footer-dark .footer-logo { font-weight: 700; font-size: 1.3rem; letter-spacing: 1px; }
.footer-dark .footer-section-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem; }
.footer-dark .footer-link { color: #fff; opacity: 0.8; }
.footer-dark .footer-link:hover { color: #8ee000; opacity: 1; }
.footer-dark .footer-bottom { border-top: 1px solid #222; margin-top: 2rem; padding-top: 1rem; font-size: 0.95rem; color: #bbb; }
.footer-dark .btn-success { background: #8ee000; border: none; color: #181F2B; font-weight: 600; }
.footer-dark .btn-success:hover { background: #7ad000; color: #181F2B; }

/* =====================
   RESPONSIVE TASARIM
   ===================== */
@media (max-width: 991px) {
  .timeline-horizontal { flex-direction: column; align-items: center; min-height: unset; }
  .timeline-horizontal::before { top: unset; left: 50%; right: unset; width: 4px; height: 80%; background: #e0e8ef; transform: translateX(-50%); }
  .timeline-item { margin: 2.5rem 0; min-width: 220px; max-width: 98vw; }
  .timeline-icon { left: 50%; top: -38px; }
  .banner-bg .main-title { font-size: 1.4rem; }
  .banner-bg .subtitle { font-size: 1rem; }
  .card-img-top, .product-card img, .project-img { height: 120px; }
  .card, .product-card, .project-card { min-height: 260px; }
}
@media (max-width: 767px) {
  .hero-section { min-height: 250px; padding: 2rem 0; }
  .hero-section h1 { font-size: 1.5rem; }
  .card-img-top, .product-card img, .project-img { height: 100px; }
}
@media (max-width: 576px) {
  /* Navbar */
  .navbar-brand img { height: 44px; }
  .navbar { padding-top: 0.3rem; padding-bottom: 0.3rem; }
  .navbar-toggler { font-size: 1.1rem; padding: 0.25rem 0.7rem; }
  .navbar-nav .nav-link { font-size: 1rem; padding: 0.6rem 0.5rem; }
  .btn-primary, .btn-light, .btn-success { font-size: 1rem; padding: 0.6rem 1.2rem; }
  /* Hero */
  .hero-section {
    min-height: 100vh !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start;
    padding: 0;
  }
  .hero-section .container {
    padding: 2.2rem 0.7rem 1.2rem 0.7rem !important;
    width: 100%;
  }
  .hero-section h1, .hero-section p, .hero-section .mb-2 { text-align: left; }
  .hero-section .btn { width: 100%; margin-top: 0.7rem; }
  /* Kartlar */
  .card-img-top, .product-card img, .project-img { height: 160px; }
  .card-body, .product-card .card-body { padding: 0.3rem 0.5rem 0.2rem 0.5rem; }
  .card-title, .product-title, .project-title { font-size: 1rem; margin-bottom: 0.12rem; }
  .section-title { font-size: 1.3rem; }
  .row.g-4 > [class^='col-'] { flex: 0 0 100%; max-width: 100%; }
  .card.h-100 { margin-bottom: 1.2rem; }
  .btn.btn-primary.btn-lg { width: 100%; font-size: 1.1rem; padding: 0.8rem 0; }
  /* Footer */
  .footer-dark { font-size: 0.95rem; }
  .footer-dark .footer-section-title { font-size: 1.05rem; }
  .footer-dark .footer-logo img { height: 44px; }
  .footer-dark .btn-success { width: 100%; font-size: 1rem; padding: 0.7rem 0; }
  .footer-dark .footer-bottom { font-size: 0.9rem; }
  .footer-dark address { font-size: 0.95rem; }
  /* Genel padding/margin azaltma */
  .container, .container-fluid { padding-left: 8px; padding-right: 8px; }
  section, .py-5 { padding-top: 1.2rem; padding-bottom: 1.2rem; }
}

/* =====================
   EKSTRA BÖLÜMLER (Banner, Timeline, Mission-Vision, InfoBox)
   ===================== */
/* ... (bu bölümler sadeleştirildi, ana yapıyı bozmadan bırakıldı) ... */

/* Genel Font ve Temel Ayarlar */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f9fb;
}

/* Navbar */
.navbar-brand img {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.active:focus {
  color: #8ee000 !important;
  font-weight: 700;
}

/* WhatsApp Butonu */
.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-left: 8px;
  transition: background 0.2s;
}
.whatsapp-btn:hover {
  background: #1ebe57;
  color: #fff;
}

/* WhatsApp sticky button */
.whatsapp-sticky {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1050;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px #0002;
  padding: 0;
}
.whatsapp-sticky i {
  font-size: 2rem;
}
@media (max-width: 600px) {
  .whatsapp-sticky {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .whatsapp-sticky i {
    font-size: 1.5rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 700px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.hero-section .container {
  max-width: none;
  margin: 0;
  padding-left: 48px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-section h1,
.hero-section p,
.hero-section .mb-2 {
  text-align: left;
}
.hero-section h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.hero-section p,
.hero-section .btn,
.hero-section .mb-2 {
  font-family: 'Poppins', sans-serif;
}
.hero-section .mb-2 {
  font-size: 20px;
  font-weight: 600;
  color: #8ee000;
  letter-spacing: 1px;
}
.hero-section p {
  font-size: 20px;
  font-weight: 400;
}
.hero-section .btn {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 36px;
  }
  .hero-section p, .hero-section .btn, .hero-section .mb-2 {
    font-size: 16px;
  }
  .hero-section .container {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* Section Başlıkları */
.section-title {
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

/* Circle Card */
.circle-card {
  border: none;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px 0 rgba(30,40,90,0.10);
  margin: 0 auto;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.circle-card.active, .circle-card:hover {
  box-shadow: 0 4px 24px 0 rgba(30,40,90,0.18);
  transform: scale(1.05);
  background: #e8f5e9;
}
.circle-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Product Card */
.product-card {
  border: none;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px 0 rgba(30,40,90,0.10);
  background: #fff;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(30,40,90,0.18);
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #fff;
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
  margin-bottom: 0;
}
.product-card[style*="background:#eaf6fb"] {
  background: #eaf6fb !important;
}
.product-card .card-body {
  padding: 1.2rem 0.5rem 0.5rem 0.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex: 1 1 auto;
}
.product-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #15304b;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Info Box */
.info-box {
  border-radius: 1rem;
  box-shadow: 0 2px 12px 0 rgba(30,40,90,0.10);
  padding: 2rem 1rem;
  background: #fff;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: box-shadow 0.2s;
}
.info-box:hover {
  box-shadow: 0 4px 24px 0 rgba(30,40,90,0.18);
}

/* Footer (Açık ve Koyu) */
.footer-link {
  color: #bbb;
  text-decoration: none;
}
.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-bg {
  background: linear-gradient(120deg, #1a2a6c 0%, #1e3c72 50%, #2a5298 100%);
  color: #fff;
}
.footer-dark {
  background: #181F2B;
  color: #fff;
  padding: 3rem 0 1.5rem 0;
  margin-top: 0;
}
.footer-dark a {
  color: #8ee000;
  text-decoration: none;
}
.footer-dark a:hover {
  text-decoration: underline;
}
.footer-dark .footer-logo {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 1px;
}
.footer-dark .footer-section-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer-dark .footer-link {
  color: #fff;
  opacity: 0.8;
}
.footer-dark .footer-link:hover {
  color: #8ee000;
  opacity: 1;
}
.footer-dark .footer-bottom {
  border-top: 1px solid #222;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.95rem;
  color: #bbb;
}
.footer-dark .btn-success {
  background: #8ee000;
  border: none;
  color: #181F2B;
  font-weight: 600;
}
.footer-dark .btn-success:hover {
  background: #7ad000;
  color: #181F2B;
}

/* Banner ve Timeline (about, projects) */
.banner-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 2.5rem;
}
.banner-bg {
  min-height: 180px;
  width: 100%;
  background: linear-gradient(120deg, #f0f4fa 0%, #e6f0ff 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 16px 0 rgba(30,40,90,0.06);
}
.banner-bg .main-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.banner-bg .subtitle {
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Timeline */
.timeline-section {
  margin-bottom: 4rem;
}
.timeline-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}
.timeline-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-bottom: 2rem;
  min-height: 180px;
}
.timeline-horizontal::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 4px;
  background: #e0e8ef;
  z-index: 0;
  transform: translateY(-50%);
}
.timeline-item {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px 0 rgba(30,40,90,0.08);
  padding: 1.5rem 1.2rem;
  min-width: 260px;
  max-width: 320px;
  position: relative;
  z-index: 1;
  margin: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.timeline-icon {
  width: 44px;
  height: 44px;
  background: #8ee000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: absolute;
  left: 50%;
  top: -38px;
  transform: translateX(-50%);
  box-shadow: 0 2px 8px 0 rgba(30,40,90,0.10);
  border: 4px solid #f7f9fb;
  z-index: 2;
}
.timeline-item .year {
  color: #8ee000;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.timeline-item .title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.timeline-item .desc {
  color: #555;
  font-size: 0.98rem;
}

/* Mission & Vision */
.mission-vision-section {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.mv-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px 0 rgba(30,40,90,0.08);
  padding: 2rem 1.5rem;
  min-width: 280px;
  max-width: 420px;
  flex: 1 1 320px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.mv-card .mv-icon {
  color: #8ee000;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.mv-card .mv-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.mv-card .mv-desc {
  color: #555;
  font-size: 1.05rem;
}

/* Proje Kartları */
.projects-section {
  margin-bottom: 3rem;
}
.project-card {
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 2px 12px 0 rgba(30,40,90,0.08);
  padding: 0;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.project-card:hover {
  box-shadow: 0 8px 32px 0 rgba(30,40,90,0.14);
  transform: translateY(-4px) scale(1.02);
}
.project-img {
  width: 100%;
  height: 110px;
  background: #e5e8ec;
  object-fit: cover;
  display: block;
}
.project-category {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0.7rem;
  padding: 0.2rem 0.9rem;
  margin-bottom: 0.7rem;
  margin-left: 0.2rem;
}
.cat-ticari {
  background: #eafbe7;
  color: #4bb543;
}
.cat-konut {
  background: #f0f8ff;
  color: #3a8dde;
}
.cat-endustriyel {
  background: #f7fbe7;
  color: #8ee000;
}
.project-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

/* Contact Sayfası */
.contact-info i {
  color: #0d6efd;
  margin-right: 8px;
}
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* Responsive */
@media (max-width: 991px) {
  .timeline-horizontal {
    flex-direction: column;
    align-items: center;
    min-height: unset;
  }
  .timeline-horizontal::before {
    top: unset;
    left: 50%;
    right: unset;
    width: 4px;
    height: 80%;
    background: #e0e8ef;
    transform: translateX(-50%);
  }
  .timeline-item {
    margin: 2.5rem 0;
    min-width: 220px;
    max-width: 98vw;
  }
  .timeline-icon {
    left: 50%;
    top: -38px;
  }
  .banner-bg .main-title {
    font-size: 1.4rem;
  }
  .banner-bg .subtitle {
    font-size: 1rem;
  }
  .product-card img {
    height: 120px;
  }
  .product-card {
    min-height: 260px;
  }
}
@media (max-width: 767px) {
  .hero-section {
    min-height: 250px;
    padding: 2rem 0;
  }
  .hero-section h1 {
    font-size: 1.5rem;
  }
  .circle-card {
    width: 110px;
    height: 110px;
  }
  .circle-card img {
    width: 40px;
    height: 40px;
  }
  .product-card img {
    height: 60px;
  }
  .banner-bg {
    min-height: 120px;
    padding: 1.5rem 0.5rem;
  }
  .banner-bg .main-title {
    font-size: 1.4rem;
  }
  .banner-bg .subtitle {
    font-size: 1rem;
  }
}

.card-hover {
  transition: box-shadow 0.3s, transform 0.3s;
}
.card-hover:hover {
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 1.5rem 3rem rgba(0,0,0,0.12);
  transform: translateY(-6px) scale(1.03);
  z-index: 2;
}
.card-img-top.rounded-top {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
  color: #222;
}
.card-body {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* Mobil Navbar */
@media (max-width: 576px) {
  .navbar-brand img { height: 44px !important; }
  .navbar { padding-top: 0.3rem; padding-bottom: 0.3rem; }
  .navbar-toggler { font-size: 1.1rem; padding: 0.25rem 0.7rem; }
  .navbar-nav .nav-link { font-size: 1rem; padding: 0.6rem 0.5rem; }
  .btn-primary, .btn-light, .btn-success { font-size: 1rem !important; padding: 0.6rem 1.2rem !important; }
  /* Hero alanı: içerik tam ortalı ve görsel taşmıyor */
  .hero-section {
    min-height: 600px !important;
    height: 600px !important;
   
    padding: 0 !important;
  }
  .hero-section .container {
    padding: 2rem 0.7rem 1.2rem 0.7rem !important;
    position: relative;
    top: 0;

    height: auto;
  }
  .hero-section h1,
  .hero-section p,
  .hero-section .mb-2 {
    text-align: left !important;
  }
  .hero-section .btn {
    width: 100%;
    margin-top: 0.7rem;
  }
  /* Projelerimiz kartlarında resim yüksekliği biraz daha artırıldı */
  .card-img-top {
    height: 180px !important;
    object-fit: cover !important;
  }
  .card-body {
    padding: 0.3rem 0.5rem 0.2rem 0.5rem !important;
  }
  .card-title {
    font-size: 1.3rem !important;
    margin-bottom: 0.15rem !important;
  }
}
/* Hero başlık ve butonlar */
@media (max-width: 576px) {
  .hero-section h1 { font-size: 2rem !important; line-height: 1.2 !important; }
  .hero-section p { font-size: 1rem !important; }
  .hero-section .btn { font-size: 1rem !important; padding: 0.7rem 1.2rem !important; width: 100%; }
  .hero-section .mb-2 { font-size: 1rem !important; }
  .hero-section { min-height: 320px !important; padding: 0 !important; }
  .hero-section .container { padding: 1.2rem 0.7rem !important; }
}
/* Projelerimiz kartları */
@media (max-width: 576px) {
  .section-title { font-size: 1.3rem; }
  .row.g-4 > [class^='col-'] { flex: 0 0 100%; max-width: 100%; }
  .card.h-100 { margin-bottom: 1.2rem; }
  .card-img-top { height: 180px !important; }
  .card-title { font-size: 1.1rem; }
  .btn.btn-primary.btn-lg { width: 100%; font-size: 1.1rem; padding: 0.8rem 0; }
}
/* Projelendirme bölümü */
@media (max-width: 576px) {
  .dark-section h2 { font-size: 1.2rem; }
  .dark-section p { font-size: 1rem; }
  .dark-section .btn { width: 100%; font-size: 1rem; padding: 0.7rem 0; }
}
/* Footer */
@media (max-width: 576px) {
  .footer-dark { font-size: 0.95rem; }
  .footer-dark .footer-section-title { font-size: 1.05rem; }
  .footer-dark .footer-logo img { height: 44px !important; }
  .footer-dark .btn-success { width: 100%; font-size: 1rem; padding: 0.7rem 0; }
  .footer-dark .footer-bottom { font-size: 0.9rem; }
  .footer-dark address { font-size: 0.95rem; }
}
/* Genel padding/margin azaltma */
@media (max-width: 576px) {
  .container, .container-fluid { padding-left: 8px !important; padding-right: 8px !important; }
  section, .py-5 { padding-top: 1.2rem !important; padding-bottom: 1.2rem !important; }
}

/* Kart hover efekti (tüm ekranlar için) */
.project-card-hover:hover {
  box-shadow: 0 0 0 4px #8ee00033, 0 2px 16px #0002;
  transition: box-shadow 0.2s;
} 