/* Genel header ve logo stili */
.site-header {
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    position: relative;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6); /* Şeffaflık */
    backdrop-filter: blur(10px); /* Hafif arkaplan bulanıklığı */
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* Ana menü stilleri */
.main-nav > ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    display: block;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #e65c00;
}

/* Dropdown menü */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    display: none;
    flex-direction: column;
    min-width: 230px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f2f2f2;
    color: #e65c00;
}

.menu-toggle {
  display: none;
}


/* Mobil Menü (768px altı) */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 26px;
    color: #333;
    cursor: pointer;
    z-index: 1100;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .main-nav ul li {
    width: 100%;
  }

  .main-nav ul li a {
    width: 100%;
    padding: 10px 0;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background-color: transparent;
    border: none;
    box-shadow: none;
  }

  .dropdown.open .dropdown-menu {
    display: flex;
  }

  .dropdown-menu li a {
    padding-left: 20px;
  }

  .container {
    flex-wrap: wrap;
  }
}



/* ANA SAYFA GİRİŞ ALANI */
.giris-alani.anasayfa-hero {
  position: relative;
  padding-top: 80px; /* header yüksekliği kadar boşluk */
  margin-bottom: 0;
  overflow: hidden;
}

.giris-arkaplan.anasayfa-arkaplan {
  background-image: url('AGM ilk.jpg');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 570px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Koyu katman (gölge efekti) */
.giris-arkaplan.anasayfa-arkaplan::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.giris-yazi {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 30px;
  text-align: center;
  max-width: 700px;
  z-index: 2;
  position: relative;
}

.giris-yazi h1 {
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

.giris-yazi p {
  font-size: 1.2rem;
  font-family: 'Open Sans', sans-serif;
}

.hizmetler-alani {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.hizmetler-baslik {
  font-size: 36px;
  margin-bottom: 50px;
  color: #222;
  font-weight: 700;
}

.hizmet-kartlar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hizmet-kart {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.hizmet-kart:hover {
  transform: scale(1.03);
}

.hizmet-kart img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.hizmet-baslik {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
  padding: 10px;
}

.neden-agm {
  background-color: #ffffff;
  padding: 80px 20px;
}

.neden-agm-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.neden-gorsel img {
  width: 600px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.neden-icerik h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 20px;
}

.neden-icerik ul {
  list-style: none;
  padding: 0;
  font-size: 18px;
  color: #333;
  line-height: 2;
}

.neden-icerik li::before {
  content: "✅ ";
  color: green;
}

.info-button {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 24px;
  background-color: #e7601b;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
}


/* Dış arka plan */
.calisma-sureci {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

/* Başlık */
.calisma-sureci .baslik {
    font-size: 36px;
    margin-bottom: 40px;
    color: #222;
}

/* Beyaz kapsayıcı kutu (kartların çevresi) */
.surec-kapsayici {
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover efekti kapsayıcı kutuya */
.surec-kapsayici:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Kart konteyneri */
.surec-kutulari {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Her bir kart */
.surec-karti {
    background-color: #f1f3f4;
    border-radius: 20px;
    padding: 25px;
    flex: 1 1 300px;
    max-width: 350px;
   
}

/* Kart başlığı */
.surec-baslik {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

/* Açıklama */
.surec-aciklama {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .surec-kutulari {
        flex-direction: column;
        align-items: center;
    }

    .surec-karti {
        width: 100%;
        max-width: none;
    }
}

.neden-biz {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.neden-biz h2 {
    font-size: 34px;
    margin-bottom: 50px;
    color: #222;
}

.neden-kutular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.neden-kart {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 30px;
    max-width: 300px;
    flex: 1 1 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.neden-kart i {
    font-size: 40px;
    color: #00aaff;
    margin-bottom: 20px;
}

.neden-kart h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.neden-kart p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.neden-kart:hover {
    transform: translateY(-5px);
}


/* Footer */
.site-footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background-color: #111;
    color: #eee;
    padding: 60px 20px 20px;
    font-size: 15px;
}

.footer-icerik {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-kutu {
    flex: 1 1 250px;
}

.footer-kutu h3,
.footer-kutu h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-kutu p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-kutu ul {
    list-style: none;
    padding: 0;
}

.footer-kutu ul li {
    margin-bottom: 8px;
}

.footer-kutu ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-kutu ul li a:hover {
    color: #fff;
}

.footer-alt {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #777;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-icerik {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-kutu {
        flex: 1 1 100%;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-btn img {
    width: 32px;
    height: 32px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* HAKKIMIZDA */
.giris-hakkimizda {
  padding-top: 80px;
  height: 500px;
  overflow: hidden;
}

.arkaplan-hakkimizda {
  background-image: url('hakkimizdahero.jpg');
  background-size: cover;
  background-position: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yazi-hakkimizda {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 30px;
}

/* TANITIM ALANI */
.tanitim-hakkimizda {
  padding: 60px 20px;
  background-color: #fff;
}

.tanitim-icerik-hakkimizda {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.tanitim-gorsel-hakkimizda img {
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
}

.tanitim-yazi-hakkimizda {
  flex: 1;
  min-width: 300px;
}

/* DEĞERLER */
.degerler-hakkimizda {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.deger-kartlar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  margin-top: 30px;
}

.deger-kart {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.deger-kart:hover {
  transform: scale(1.03);
}


/* Kentsel dönüşüm */
.giris-alani {
  position: relative;
  padding-top: 80px; /* header yüksekliği kadar boşluk */
  margin-bottom: 0; /* alttaki boşluğu kaldır */
  overflow: hidden;
}

.giris-arkaplan {
  background-image: url('kentselgiris.png');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 570px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TAM GÖRSELE UYGULANAN KOYU KATMAN */
.giris-arkaplan::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* koyuluk */
  z-index: 1;
}

.giris-yazi {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 30px;
  text-align: center;
  max-width: 700px;
  z-index: 2; /* overlay üstünde dursun */
  position: relative;
}

.giris-yazi h1 {
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

.giris-yazi p {
  font-size: 1.2rem;
  font-family: 'Open Sans', sans-serif;
}

/* BİLGİLENDİRME ALANI */
.bilgilendirme-alani {
  background-color: #eef6fb;
  padding: 60px 20px;
}

.bilgi-icerik {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.bilgi-gorsel img {
  max-width: 80%;
  border-radius: 10px;
}

.bilgi-gorsel {
  flex: 1 1 40%;
  text-align: center;
}

.bilgi-metin {
  flex: 1 1 50%;
}

.bilgi-metin h2 {
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.bilgi-metin p,
.bilgi-metin li {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.bilgi-metin ul {
  padding-left: 20px;
}

/* HİZMETLER ALANI */
.hizmetler-alani {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.hizmet-icerik {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.hizmet-gorsel {
  flex: 1 1 40%;
  text-align: center;
}

.hizmet-gorsel img {
  max-width: 100%;
  border-radius: 10px;
}

.hizmet-kutulari {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hizmet-kutu {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hizmet-kutu:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hizmet-kutu h3 {
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

.hizmet-kutu p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .giris-yazi h1 {
    font-size: 2rem;
  }

  .giris-yazi p {
    font-size: 1rem;
  }

  .bilgi-icerik,
  .hizmet-icerik {
    flex-direction: column;
  }

  .bilgi-gorsel,
  .bilgi-metin,
  .hizmet-gorsel,
  .hizmet-kutulari {
    flex: 1 1 100%;
  }

  .bilgi-metin h2 {
    font-size: 1.5rem;
  }

  .hizmet-kutulari {
    grid-template-columns: 1fr;
  }

  .hizmet-kutu {
    padding: 20px;
  }
}



/* tadilat */
.hizmet-aciklama-alani {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.aciklama-icerik {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.aciklama-gorsel img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}

.aciklama-yazi {
  flex: 1;
  min-width: 300px;
}

.aciklama-yazi h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.aciklama-yazi p {
  font-size: 1.1rem;
  line-height: 1.6;
}


.avantajlar-alani {
  background-color: #fff;
  padding: 60px 20px;
}

.avantajlar-alani h2 {
  text-align: center;
  margin-bottom: 40px;
}

.avantaj-kartlari {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.avantaj-karti {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.avantaj-karti h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.icerik-kapsayici {
  max-width: 1200px;
  margin: auto;
}



.hizmet-aciklama-alani {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.aciklama-icerik {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.aciklama-gorsel img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}

.aciklama-yazi {
  flex: 1;
  min-width: 300px;
}

.aciklama-yazi h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.aciklama-yazi p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.avantajlar-alani {
  background-color: #fff;
  padding: 60px 20px;
}

.avantajlar-alani h2 {
  text-align: center;
  margin-bottom: 40px;
}

.avantaj-kartlari {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.avantaj-karti {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.avantaj-karti h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.icerik-kapsayici {
  max-width: 1200px;
  margin: auto;
}

/* mimarlık */
.giris-mimarlik {
  padding-top: 80px;
  height: 570px;
  overflow: hidden;
}

.arkaplan-mimarlik {
  background-image: url('mimarlik.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hizmet-aciklama-alani {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.aciklama-icerik {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.aciklama-gorsel img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}

.aciklama-yazi {
  flex: 1;
  min-width: 300px;
}

.aciklama-yazi h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.aciklama-yazi p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.avantajlar-alani {
  background-color: #fff;
  padding: 60px 20px;
}

.avantajlar-alani h2 {
  text-align: center;
  margin-bottom: 40px;
}

.avantaj-kartlari {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.avantaj-karti {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.avantaj-karti h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.icerik-kapsayici {
  max-width: 1200px;
  margin: auto;
}

/* Anahtar teslim */
.giris-anahtar {
  padding-top: 80px;
  height: 570px;
  overflow: hidden;
}

.arkaplan-anahtar {
  background-image: url('anahtarteslim.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.yazi-anahtar {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 30px;
  max-width: 700px;
  z-index: 2;
}

.aciklama-anahtar {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.aciklama-icerik {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.aciklama-gorsel img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}

.aciklama-yazi {
  flex: 1;
  min-width: 300px;
}

.aciklama-yazi h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.aciklama-yazi p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.avantajlar-anahtar {
  background-color: #fff;
  padding: 60px 20px;
}

.avantajlar-anahtar h2 {
  text-align: center;
  margin-bottom: 40px;
}

.avantaj-kartlari {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.avantaj-karti {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}


.avantaj-karti:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.avantaj-karti h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.icerik-kapsayici {
  max-width: 1200px;
  margin: auto;
}

/* Katkarşılığı */
.giris-kat {
  padding-top: 80px;
  height: 570px;
  overflow: hidden;
}

.arkaplan-kat {
  background-image: url('katkarsiligihero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yazi-kat {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 30px;
  max-width: 700px;
  z-index: 2;
}

/* AÇIKLAMA */
.aciklama-kat {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.aciklama-icerik-kat {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.aciklama-gorsel-kat img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}

.aciklama-yazi-kat {
  flex: 1;
  min-width: 300px;
}

.aciklama-yazi-kat h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.aciklama-yazi-kat p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* AVANTAJLAR */
.avantajlar-kat {
  background-color: #fff;
  padding: 60px 20px;
}

.avantajlar-kat h2 {
  text-align: center;
  margin-bottom: 40px;
}

.avantaj-kartlari {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.avantaj-karti {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avantaj-karti:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Dekorasyon */
.giris-dekorasyon {
  padding-top: 80px;
  height: 570px;
  overflow: hidden;
}

.arkaplan-dekorasyon {
  background-image: url('dekorasyonhero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yazi-dekorasyon {
   background-color: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 30px;
  max-width: 700px;
  z-index: 2;
}

/* AÇIKLAMA ALANI */
.aciklama-dekorasyon {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.aciklama-icerik-dekorasyon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.aciklama-gorsel-dekorasyon img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}

.aciklama-yazi-dekorasyon {
  flex: 1;
  min-width: 300px;
}

.aciklama-yazi-dekorasyon h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.aciklama-yazi-dekorasyon p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* AVANTAJLAR */
.avantajlar-dekorasyon {
  background-color: #fff;
  padding: 60px 20px;
}

.avantajlar-dekorasyon h2 {
  text-align: center;
  margin-bottom: 40px;
}

.avantaj-kartlari {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.avantaj-karti {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avantaj-karti:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}



.iletisim-hero {
  background: url('iletisimhero.png') center/cover no-repeat;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px; /* HEADER yüksekliği kadar boşluk */
  position: relative;
}

.iletisim-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.iletisim-baslik {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.iletisim-baslik h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.iletisim-baslik p {
  font-size: 1.1rem;
  font-family: 'Open Sans', sans-serif;
}

/* Kutu Alanı */
.iletisim-alani {
  padding: 100px 20px 60px;
  background-color: #fff;
}

.iletisim-kutulari {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.iletisim-kutu {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iletisim-kutu:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.iletisim-kutu h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.iletisim-kutu p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

.iletisim-btn {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 999px; /* Tam daire görünüm */
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.iletisim-btn:hover {
  background-color: #1ebd5d;
}


/* ALTTAKİ GÖRSEL */
.iletisim-gorsel {
  text-align: center;
  margin-top: 40px;
}

.iletisim-gorsel img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Sayfa içeriği header altında başlasın */
.kentsel-icerik {
    padding: 140px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.kentsel-icerik h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.kentsel-icerik p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}