/* =========================
   GENEL
========================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #1c1c1c;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  min-height: 78px;
  padding-left: 5%;
  padding-right: 5%;
  border-bottom: 1px solid #eeeeee;
}

.navbar-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #a71920 !important;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 8px;
  color: #1a1a1a !important;
}

.navbar-nav .nav-link:hover {
  color: #b51d23 !important;
}

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

.hero {
  min-height: 650px;

  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.52) 42%,
      rgba(0, 0, 0, 0.16) 75%,
      rgba(0, 0, 0, 0.05) 100%
    ),
    url("images/hero.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 60px;
  color: #ffffff;
}

.hero-small {
  margin: 0 0 18px 0;

  font-size: 0.82rem;
  font-weight: 700;

  letter-spacing: 5px;
  color: #eeeeee;
}

.hero h1 {
  margin: 0;

  max-width: 650px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.95;
  font-weight: 700;

  color: #ffffff;
}

.hero-text {
  max-width: 560px;

  margin-top: 28px;
  margin-bottom: 32px;

  font-size: 1.15rem;
  line-height: 1.65;

  color: #f2f2f2;
}

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

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

  margin-bottom: 40px;
}

.hero-buttons a {
  display: inline-block;

  padding: 15px 25px;

  border-radius: 5px;

  text-decoration: none;
  font-weight: 700;

  transition: all 0.25s ease;
}

.btn-primary {
  background: #b71920;
  color: #ffffff !important;
  border: 2px solid #b71920;
}

.btn-primary:hover {
  background: #95161b;
  border-color: #95161b;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #171717 !important;
  transform: translateY(-2px);
}

/* =========================
   HERO ALT ÖZELLİKLER
========================= */

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;

  font-size: 0.92rem;
  font-weight: 600;
}

.hero-features span {
  display: inline-block;
  color: #ffffff;
}

/* =========================
   QUARTO TEMİZLİĞİ
========================= */

#quarto-content {
  padding: 0 !important;
}

.page-columns {
  display: block !important;
}

main.content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

/* =========================
   MOBİL
========================= */

@media (max-width: 768px) {

  .hero {
    min-height: 620px;
    background-position: 62% center;
  }

  .hero-content {
    padding: 70px 25px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================
   AKIN ÇATI LOGO
========================= */

.custom-brand {
  position: absolute;
  top: 18px;
  left: 45px;
  z-index: 9999;
}

.custom-brand img {
  height: 52px;
  width: auto;
  display: block;
}
/* =========================
   HİZMETLERİMİZ
========================= */

.services-section {
  background: #ffffff;
  padding: 80px 6%;
}

.section-header {
  max-width: 1250px;
  margin: 0 auto 35px auto;
}

.section-kicker {
  margin: 0 0 7px 0;
  color: #b71920;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
}

.section-header h2 {
  margin: 0 0 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  color: #171717;
}

.section-description {
  margin: 0;
  color: #666666;
  font-size: 1rem;
}

/* KARTLAR */

.services-grid {
  max-width: 1250px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 7px;

  padding: 30px 25px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #b71920;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.11);
}

.service-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  background: #fff1f1;
  color: #b71920;

  border-radius: 6px;

  font-size: 1.6rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 0 0 10px 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;

  color: #171717;
}

.service-card p {
  margin: 0;

  color: #686868;
  line-height: 1.65;
  font-size: 0.95rem;
}


/* =========================
   HİZMETLER MOBİL
========================= */

@media (max-width: 900px) {

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

}

@media (max-width: 600px) {

  .services-section {
    padding: 60px 22px;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

}
/* =========================
   NEDEN AKIN ÇATI
========================= */

.why-section {
  background:
    linear-gradient(
      rgba(8, 20, 28, 0.95),
      rgba(8, 20, 28, 0.95)
    );
  color: #ffffff;
  padding: 85px 6%;
}

.why-inner {
  max-width: 1250px;
  margin: 0 auto;
}

.light-kicker {
  color: #ef4b4f;
}

.why-text h2 {
  margin: 0 0 15px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  color: #ffffff;
}

.why-description {
  max-width: 700px;
  margin: 0 0 35px 0;
  color: #d7d7d7;
  line-height: 1.7;
  font-size: 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.25s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: #b71920;
}

.why-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: #ef4b4f;
}

.why-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.15rem;
  color: #ffffff;
}

.why-card p {
  margin: 0;
  color: #c9c9c9;
  line-height: 1.6;
  font-size: 0.93rem;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-section {
    padding: 60px 22px;
  }

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

  .why-text h2 {
    font-size: 2rem;
  }
}
/* ========================================
   PROJELER SAYFASI
======================================== */

.projects-hero {
  min-height: 440px;

  background:
    linear-gradient(
      90deg,
      rgba(7, 15, 21, 0.90) 0%,
      rgba(7, 15, 21, 0.72) 50%,
      rgba(7, 15, 21, 0.45) 100%
    ),
    url("images/hero.png");

  background-size: cover;
  background-position: center 45%;

  display: flex;
  align-items: center;

  color: white;
}

.projects-hero-inner {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto;
  padding: 80px 60px;
}

.projects-kicker {
  margin: 0 0 15px 0;

  color: #ef4146;

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 5px;
}

.projects-hero h1 {
  margin: 0;

  max-width: 650px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;

  color: #ffffff;
}

.projects-hero-text {
  max-width: 600px;

  margin: 25px 0 32px;

  line-height: 1.7;
  font-size: 1.08rem;

  color: #e5e5e5;
}

.projects-cta {
  display: inline-block;

  padding: 15px 25px;

  background: #b71920;

  border-radius: 5px;

  color: #ffffff !important;
  text-decoration: none !important;

  font-weight: 700;

  transition: 0.25s ease;
}

.projects-cta:hover {
  background: #94151a;
  transform: translateY(-2px);
}


/* ========================================
   PROJE BAŞLIK
======================================== */

.projects-section {
  padding: 85px 6% 100px;

  background: #f7f7f7;
}

.projects-heading {
  max-width: 1250px;

  margin: 0 auto 40px;
}

.projects-heading h2 {
  margin: 0 0 10px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 2.7rem;

  color: #151515;
}

.projects-heading > p:last-child {
  max-width: 650px;

  color: #686868;

  line-height: 1.7;
}


/* ========================================
   PROJE GALERİ
======================================== */

.projects-gallery {
  max-width: 1250px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.project-card {
  overflow: hidden;

  background: #ffffff;

  border-radius: 10px;

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.project-card p {
  margin: 0;
}

.project-image {
  display: block;

  width: 100%;
  height: 270px;

  object-fit: cover;

  transition: transform 0.45s ease;
}

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

.project-card-body {
  padding: 23px 22px 26px;
}

.project-card-body h3 {
  margin: 0 0 8px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 1.25rem;

  color: #171717;
}

.project-card-body p {
  color: #6a6a6a;

  line-height: 1.55;

  font-size: 0.93rem;
}


/* ========================================
   PROJE ALT CTA
======================================== */

.projects-bottom-cta {
  padding: 75px 25px;

  text-align: center;

  background: #0b1820;

  color: #ffffff;
}

.projects-bottom-cta h3 {
  margin: 0 0 12px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 2.2rem;

  color: #ffffff;
}

.projects-bottom-cta > p {
  max-width: 650px;

  margin: 0 auto 28px;

  color: #d0d5d8;

  line-height: 1.6;
}

.projects-bottom-buttons {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 15px;
}

.projects-bottom-buttons a {
  display: inline-block;

  padding: 15px 25px;

  border-radius: 5px;

  text-decoration: none !important;

  font-weight: 700;
}

.bottom-call {
  background: #b71920;

  color: white !important;
}

.bottom-whatsapp {
  background: transparent;

  border: 2px solid white;

  color: white !important;
}


/* ========================================
   PROJELER TABLET
======================================== */

@media (max-width: 950px) {

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

}


/* ========================================
   PROJELER TELEFON
======================================== */

@media (max-width: 600px) {

  .projects-hero {
    min-height: 410px;
  }

  .projects-hero-inner {
    padding: 65px 24px;
  }

  .projects-hero h1 {
    font-size: 3rem;
  }

  .projects-section {
    padding: 60px 22px;
  }

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

  .project-image {
    height: 240px;
  }

  .projects-heading h2 {
    font-size: 2.1rem;
  }

  .projects-bottom-cta h3 {
    font-size: 1.8rem;
  }

}
/* =========================
   AKIN ÇATI ÖZEL NAVBAR
========================= */

.site-header {
  width: 100%;
  height: 88px;
  background: #ffffff;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid #eeeeee;
}

.nav-container {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 45px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  width: auto;
  height: 62px;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.main-nav a {
  position: relative;

  color: #171717;
  text-decoration: none !important;

  font-size: 0.95rem;
  font-weight: 700;

  padding: 33px 0 30px;

  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #b71920;
}

.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 22px;

  width: 0;
  height: 2px;

  background: #b71920;

  transition: width 0.25s ease;
}

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

.main-nav a.active {
  color: #b71920;
}

.nav-phone {
  display: inline-flex;
  align-items: center;

  padding: 13px 21px;

  background: #b71920;

  border-radius: 5px;

  color: #ffffff !important;
  text-decoration: none !important;

  font-weight: 700;

  transition: 0.25s ease;
}

.nav-phone:hover {
  background: #94151a;
  transform: translateY(-2px);
}


/* ESKİ ELLE EKLENEN LOGOYU DEVRE DIŞI BIRAK */
.custom-brand {
  display: none !important;
}


/* =========================
   NAVBAR MOBİL
========================= */

@media (max-width: 850px) {

  .site-header {
    height: auto;
  }

  .nav-container {
    padding: 15px 22px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .nav-logo img {
    height: 48px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 25px;
  }

  .main-nav a {
    padding: 10px 0;
  }

  .main-nav a::after {
    bottom: 3px;
  }

  .nav-phone {
    font-size: 0.85rem;
    padding: 11px 14px;
  }
}
/* =========================
   PROJELER NAVBAR
========================= */

.project-nav {
  width: 100%;
  min-height: 88px;
  padding: 12px 5%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.project-nav p {
  margin: 0;
}

.project-nav-logo {
  height: 58px;
  width: auto;
}

.project-nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.project-nav-links p {
  margin: 0;
}

.project-nav-links a {
  color: #171717;
  text-decoration: none;
  font-weight: 700;
}

.project-nav-links a:hover,
.project-nav-links .active-link {
  color: #b71920;
}

.project-nav-phone {
  display: inline-block;
  padding: 13px 20px;

  background: #b71920;
  color: #ffffff !important;

  text-decoration: none !important;
  border-radius: 5px;
  font-weight: 700;
}

@media (max-width: 850px) {

  .project-nav {
    flex-direction: column;
    gap: 15px;
    padding: 18px 20px;
  }

  .project-nav-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

}
/* Quarto'nun otomatik site başlığını gizle */
.navbar-title,
.quarto-title,
#title-block-header {
  display: none !important;
}
/* =========================================================
   AKIN ÇATI - YENİ PREMIUM NAVBAR
========================================================= */

/* Quarto'nun kendi başlık / navbar kalıntılarını tamamen kaldır */
#quarto-header,
#title-block-header,
.quarto-title-block,
.quarto-title,
.navbar-title {
  display: none !important;
}


/* ANA NAVBAR */
.project-nav {
  width: 100%;
  min-height: 105px;

  padding: 0 7%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(12, 17, 20, 0.92);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  box-sizing: border-box;

  position: relative;
  z-index: 999;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.14);
}


/* Quarto'nun paragraflar yüzünden oluşturduğu boşlukları kaldır */
.project-nav p,
.project-nav-links p {
  margin: 0 !important;
  padding: 0 !important;
}


/* LOGO */
.project-nav > p:first-child,
.project-nav > p:first-of-type {
  margin: 0 !important;
}

.project-nav a:has(.project-nav-logo) {
  display: flex;
  align-items: center;
}

.project-nav-logo {
  display: block;

  width: auto;
  height: 72px;

  object-fit: contain;

  margin: 0 !important;
}


/* MENÜ ORTASI */
.project-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 55px;

  flex: 1;

  margin: 0 50px;
}


/* MENÜ LINKLERİ */
.project-nav-links a {
  position: relative;

  display: inline-block;

  color: #f4f4f4 !important;

  text-decoration: none !important;

  font-size: 1rem;
  font-weight: 600;

  letter-spacing: 0.2px;

  padding: 39px 0 35px;

  transition: color 0.25s ease;
}


/* HOVER */
.project-nav-links a:hover {
  color: #ef3438 !important;
}


/* ALT KIRMIZI ÇİZGİ */
.project-nav-links a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 25px;

  width: 0;
  height: 2px;

  background: #d91f26;

  transform: translateX(-50%);

  transition: width 0.25s ease;
}


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


/* AKTİF SAYFA */
.project-nav-links .active-link {
  color: #ef3438 !important;
}


/* TELEFON BUTONU */
.project-nav-phone {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 16px 23px;

  background: #c51b22;

  color: #ffffff !important;

  text-decoration: none !important;

  font-size: 0.98rem;
  font-weight: 700;

  border-radius: 7px;

  box-shadow: 0 8px 22px rgba(197, 27, 34, 0.27);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}


.project-nav-phone:hover {
  background: #e0262e;

  transform: translateY(-2px);

  box-shadow: 0 12px 28px rgba(197, 27, 34, 0.38);
}


/* =========================================================
   HERO İLE NAVBAR ARASINDA BOŞLUK OLMASIN
========================================================= */

.hero,
.projects-hero {
  margin-top: 0 !important;
}


/* =========================================================
   PROJELER GALERİSİ - SADECE FOTOĞRAF
========================================================= */

.projects-section {
  padding: 75px 5% 95px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fafafa 100%
    );
}


/* PROJELER BAŞLIĞI */
.projects-section > h2 {
  text-align: center;

  margin: 5px 0 8px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(2.5rem, 4vw, 4rem);

  color: #202020;
}


/* BAŞLIĞIN ALTINDAKİ AÇIKLAMA */
.projects-section > p {
  max-width: 760px;

  margin: 0 auto 42px !important;

  text-align: center;

  color: #666666;

  line-height: 1.7;

  font-size: 1rem;
}


/* GALERİ */
.projects-gallery {
  width: 100%;
  max-width: 1420px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}


/* FOTOĞRAF KARTI */
.project-card {
  position: relative;

  overflow: hidden;

  background: transparent !important;

  border: none !important;

  border-radius: 12px;

  box-shadow: none !important;

  margin: 0 !important;
  padding: 0 !important;

  aspect-ratio: 4 / 3;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


/* FOTOĞRAFIN ALTINDAKİ TÜM YAZILARI KALDIR */
.project-card h1,
.project-card h2,
.project-card h3,
.project-card h4,
.project-card p {
  display: none !important;
}


/* FOTOĞRAF */
.project-image {
  width: 100% !important;
  height: 100% !important;

  display: block;

  object-fit: cover;

  border-radius: 12px;

  margin: 0 !important;

  transition: transform 0.45s ease;
}


/* HOVER */
.project-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16) !important;
}


.project-card:hover .project-image {
  transform: scale(1.045);
}


/* Markdown img wrapper */
.project-card p:has(img) {
  display: block !important;

  width: 100%;
  height: 100%;

  margin: 0 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .project-nav {
    padding: 0 4%;
  }

  .project-nav-links {
    gap: 30px;
    margin: 0 25px;
  }

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

}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 760px) {

  .project-nav {
    min-height: auto;

    padding: 16px 22px;

    flex-wrap: wrap;

    gap: 15px;
  }

  .project-nav-logo {
    height: 55px;
  }

  .project-nav-phone {
    padding: 12px 15px;

    font-size: 0.84rem;
  }

  .project-nav-links {
    order: 3;

    width: 100%;

    margin: 0;

    gap: 25px;

    justify-content: center;
  }

  .project-nav-links a {
    padding: 12px 0;

    font-size: 0.9rem;
  }

  .project-nav-links a::after {
    bottom: 4px;
  }

  .projects-gallery {
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
  }

}


/* ÇOK KÜÇÜK TELEFON */
@media (max-width: 480px) {

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

}
/* =========================================================
   TRANSPARAN NAVBAR - AKIN ÇATI
========================================================= */

.project-nav {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;

  width: 100%;
  z-index: 9999;

  /* TRANSPARAN KOYU CAM */
  background: rgba(10, 14, 17, 0.48) !important;

  /* CAM / BLUR EFEKTİ */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* ALTTA ÇOK HAFİF ÇİZGİ */
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;

  /* ÖNCEKİ GÖLGEYİ YUMUŞAT */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
}


/* HERO NAVBARIN ARKASINDAN BAŞLASIN */
.hero,
.projects-hero {
  position: relative;
  margin-top: 0 !important;
}


/* HERO YAZISI NAVBARIN ALTINDA KALMASIN */
.hero-content,
.projects-hero-inner {
  padding-top: 150px !important;
}


/* LOGO DAHA TEMİZ GÖRÜNSÜN */
.project-nav-logo {
  position: relative;
  z-index: 2;
}


/* MENÜ YAZILARI */
.project-nav-links a {
  color: rgba(255, 255, 255, 0.94) !important;
}


/* AKTİF MENÜ */
.project-nav-links .active-link {
  color: #ef3438 !important;
}


/* TELEFON BUTONU */
.project-nav-phone {
  background: #c91d24 !important;
  color: #ffffff !important;

  box-shadow: 0 8px 24px rgba(201, 29, 36, 0.28) !important;
}
/* Logonun altında çıkan gereksiz Akın Çatı yazısını gizle */
.project-nav > p:first-of-type {
  font-size: 0 !important;
  line-height: 0 !important;
}

/* Ama içindeki logo kaybolmasın */
.project-nav > p:first-of-type a {
  font-size: initial !important;
  line-height: initial !important;
}
/* =========================================================
   İLETİŞİM + GOOGLE MAPS
========================================================= */

.contact-section {
  padding: 90px 7%;
  background: #f7f7f5;
}

.contact-heading {
  max-width: 1200px;
  margin: 0 auto 45px;
}

.contact-heading > p:first-child,
.contact-heading strong {
  color: #c91d24;
  font-size: 0.78rem;
  letter-spacing: 4px;
  font-weight: 800;
}

.contact-heading h2 {
  margin: 8px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  color: #171717;
}

.contact-heading p {
  max-width: 700px;
  color: #666;
  line-height: 1.7;
}


/* İKİ SÜTUN */
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.4fr;

  gap: 35px;
  align-items: stretch;
}


/* SOL İLETİŞİM KUTUSU */
.contact-info {
  padding: 42px;

  background: #11181d;
  color: #ffffff;

  border-radius: 14px;

  box-shadow: 0 20px 45px rgba(0,0,0,.10);
}

.contact-info h3 {
  margin: 0 0 15px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 2rem;
  color: #ffffff;
}

.contact-info > p {
  color: #cfd4d7;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-item {
  padding: 17px 0;

  border-bottom: 1px solid rgba(255,255,255,.10);
}

.contact-item p {
  margin: 3px 0;
}

.contact-item strong {
  color: #ef3438;
  font-size: .82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-item a {
  color: #ffffff !important;
  text-decoration: none !important;
}

.contact-item a:hover {
  color: #ef3438 !important;
}


/* BUTONLAR */
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 28px;
}

.contact-buttons a {
  display: inline-block;

  padding: 14px 20px;

  border-radius: 6px;

  text-decoration: none !important;
  font-weight: 700;

  transition: .25s ease;
}

.contact-call {
  background: #c91d24;
  color: white !important;
}

.contact-call:hover {
  background: #e12830;
  transform: translateY(-2px);
}

.contact-whatsapp {
  border: 1px solid rgba(255,255,255,.5);
  color: white !important;
}

.contact-whatsapp:hover {
  background: white;
  color: #11181d !important;
}


/* HARİTA */
.map-box {
  min-height: 470px;

  overflow: hidden;

  border-radius: 14px;

  background: #ddd;

  box-shadow: 0 20px 45px rgba(0,0,0,.10);
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 470px;
}


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

.site-footer {
  background: #0b1115;
  color: #ffffff;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;

  padding: 60px 7% 45px;

  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr;

  gap: 60px;
}

.footer-logo {
  width: 180px;
  height: auto;

  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 300px;

  color: #aeb6bb;

  line-height: 1.7;
}

.footer-main h3 {
  margin: 0 0 20px;

  font-size: 1rem;

  color: #ffffff;

  letter-spacing: .5px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links p,
.footer-contact p {
  margin: 0;
}

.footer-links a,
.footer-contact a {
  color: #aeb6bb !important;

  text-decoration: none !important;

  transition: color .2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ef3438 !important;
}


/* EN ALT TELİF */
.footer-bottom {
  padding: 22px 7%;

  text-align: center;

  border-top: 1px solid rgba(255,255,255,.08);

  color: #7f898f;

  font-size: .86rem;
}

.footer-bottom p {
  margin: 0;
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 850px) {

  .contact-section {
    padding: 65px 22px;
  }

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

  .contact-info {
    padding: 30px 25px;
  }

  .map-box,
  .map-box iframe {
    min-height: 380px;
    height: 380px;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 35px;

    padding: 50px 25px 35px;
  }

  .footer-logo {
    width: 150px;
  }
}
/* =========================================================
   YENİ FOTOĞRAFLI HİZMETLER BÖLÜMÜ
========================================================= */

.services-section {
  padding: 85px 5% 100px;
  background: #f8f8f6;
}


/* BAŞLIK */
.services-section .section-header {
  max-width: 1400px;
  margin: 0 auto 42px;
}

.services-section .section-header > p:first-of-type,
.services-section .section-header > strong {
  color: #c91d24;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 4px;
}

.services-section .section-header h2 {
  margin: 8px 0 8px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.7rem);

  color: #181818;
}

.services-section .section-header p {
  max-width: 700px;

  color: #6b6b6b;
  line-height: 1.7;
}


/* 6 KART YAN YANA */
.services-grid {
  width: 100%;
  max-width: 1400px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(6, 1fr);

  gap: 18px;
}


/* KART */
.service-card {
  overflow: hidden;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 7px;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


/* HOVER */
.service-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}


/* FOTOĞRAF */
.service-card > p:first-child {
  margin: 0 !important;
}

.service-image {
  display: block;

  width: 100% !important;
  height: 180px !important;

  margin: 0 !important;

  object-fit: cover;

  transition: transform 0.45s ease;
}

.service-card:hover .service-image {
  transform: scale(1.045);
}


/* ALT BEYAZ ALAN */
.service-card-content {
  padding: 22px 20px 24px;
}


/* KIRMIZI İKON */
.service-icon {
  margin-bottom: 10px;

  color: #c91d24;

  font-size: 2rem;
  font-weight: 700;

  line-height: 1;
}

.service-icon p {
  margin: 0 !important;
}


/* BAŞLIK */
.service-card h3 {
  margin: 0 0 9px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 1.23rem;
  line-height: 1.15;

  color: #151515;
}


/* AÇIKLAMA */
.service-card-content > p {
  min-height: 68px;

  margin: 0 0 18px !important;

  color: #62666a;

  font-size: 0.9rem;
  line-height: 1.55;
}


/* DETAYLI BİLGİ */
.service-link {
  display: inline-block;

  color: #c91d24 !important;

  text-decoration: none !important;

  font-size: 0.88rem;
  font-weight: 800;

  transition: transform 0.2s ease;
}

.service-link:hover {
  color: #e1262d !important;
  transform: translateX(4px);
}


/* TABLET */
@media (max-width: 1200px) {

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

  .service-image {
    height: 210px !important;
  }

}


/* TELEFON */
@media (max-width: 700px) {

  .services-section {
    padding: 65px 22px;
  }

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

  .service-image {
    height: 240px !important;
  }

  .service-card-content > p {
    min-height: auto;
  }

}
/* =========================================================
   HİZMET KARTLARINI DAHA KARESEL YAP
========================================================= */

.services-grid {
  max-width: 1180px !important;
  margin: 0 auto !important;

  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;

  gap: 24px !important;
}


/* KARTLAR DAHA YATAY/KARESEL */
.service-card {
  border-radius: 10px !important;
}


/* FOTOĞRAF DAHA GENİŞ VE DENGELİ */
.service-image {
  width: 100% !important;
  height: 210px !important;

  object-fit: cover !important;
}


/* ALT ALAN BİRAZ DAHA KOMPAKT */
.service-card-content {
  padding: 20px 22px 22px !important;
}


/* AÇIKLAMA ÇOK UZUN YER KAPLAMASIN */
.service-card-content > p {
  min-height: 48px !important;
  margin-bottom: 14px !important;
}


/* TABLET */
@media (max-width: 900px) {

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

}


/* TELEFON */
@media (max-width: 600px) {

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

  .service-image {
    height: 220px !important;
  }

}
/* =========================================================
   TELEFON - NAVBAR HERO'YU KAPATMASIN
========================================================= */

@media (max-width: 700px) {

  /* Navbar telefonda hero'nun üstünde yüzmesin */
  .project-nav {
    position: relative !important;

    min-height: auto !important;
    padding: 12px 18px !important;

    background: #101518 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }


  /* LOGO */
  .project-nav-logo {
    height: 52px !important;
    width: auto !important;
  }


  /* Ortadaki menüleri telefonda gizliyoruz */
  .project-nav-links {
    display: none !important;
  }


  /* TELEFON BUTONU */
  .project-nav-phone {
    padding: 11px 14px !important;

    font-size: 0.78rem !important;

    border-radius: 6px !important;

    white-space: nowrap !important;
  }


  /* Navbar artık üstünde olmadığı için
     hero'nun gereksiz üst boşluğunu kaldır */
  .hero-content,
  .projects-hero-inner {
    padding-top: 75px !important;
  }


  /* HERO */
  .hero {
    min-height: 610px !important;
  }


  /* ANA BAŞLIK */
  .hero h1 {
    font-size: 2.6rem !important;
    line-height: 1.03 !important;
  }

}
/* =========================================================
   TELEFON NAVBAR - MENÜLERİ GERİ GETİR
========================================================= */

@media (max-width: 700px) {

  .project-nav {
    position: relative !important;

    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto auto !important;

    padding: 10px 16px 0 !important;

    background: #101518 !important;
  }


  /* LOGO */
  .project-nav > p:first-of-type {
    grid-column: 1 !important;
    grid-row: 1 !important;

    display: flex !important;
    align-items: center !important;
  }

  .project-nav-logo {
    height: 50px !important;
    width: auto !important;
  }


  /* TELEFON */
  .project-nav-phone {
    grid-column: 2 !important;
    grid-row: 1 !important;

    align-self: center !important;

    padding: 10px 13px !important;

    font-size: 0.75rem !important;

    white-space: nowrap !important;
  }


  /* ANA SAYFA - HİZMETLERİMİZ - PROJELERİMİZ */
  .project-nav-links {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;

    display: flex !important;

    width: 100% !important;
    margin: 4px 0 0 !important;

    justify-content: space-around !important;
    align-items: center !important;

    gap: 0 !important;

    border-top: 1px solid rgba(255,255,255,0.08);
  }


  .project-nav-links a {
    display: block !important;

    padding: 13px 5px 12px !important;

    font-size: 0.76rem !important;
    font-weight: 600 !important;

    color: #ffffff !important;

    white-space: nowrap !important;
  }


  /* Aktif sayfa kırmızı */
  .project-nav-links .active-link {
    color: #ef3438 !important;
  }


  /* Masaüstündeki alt çizgiyi mobilde düzenle */
  .project-nav-links a::after {
    bottom: 6px !important;
  }


  /* HERO ARTIK NAVBARIN ALTINDAN BAŞLASIN */
  .hero-content,
  .projects-hero-inner {
    padding-top: 65px !important;
  }

}
@media (max-width: 700px) {

  .project-nav > p:first-of-type {
    font-size: 0 !important;
    line-height: 0 !important;
  }

  .project-nav > p:first-of-type a {
    font-size: 0 !important;
    line-height: 0 !important;
  }

}