/* hizmet-alanlari-style.css - Müteahhitler sayfası için stil */

:root {
  --theme-color: #017E90;
  --text-color: #333;
  --light-bg: #f9f9f9;
  --section-padding: 4rem 1rem;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  background-color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-header.muteahhitler {
  background: var(--light-bg);
  padding: var(--section-padding);
  text-align: center;
}

.page-header .intro-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--theme-color);
  margin-bottom: 0.5rem;
}

.page-header .intro-title span {
  color: var(--theme-color);
}

.intro-divider {
  width: 60px;
  height: 4px;
  background: var(--theme-color);
  margin: 0.75rem auto;
  border-radius: 4px;
}

.page-header .intro-text {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto;
  color: #555;
}

.header-image {
  margin-top: 2rem;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.muteahhitler-content {
  padding: var(--section-padding);
  background-color: #fff;
}

.muteahhitler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.muteahhit-card {
  position: relative;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.muteahhit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #017E90, #00acc1);
  transition: all 0.4s ease;
}

.muteahhit-card:hover {
  transform: translateY(-5px);
}

.muteahhit-card:hover::after {
  width: 80%;
  left: 10%;
}


.muteahhit-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.muteahhit-card h2 {
  color: var(--theme-color);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.referans-alani, .süreç {
  margin-bottom: 4rem;
}

.referans-alani h2, .süreç h2 {
  font-size: 1.8rem;
  color: var(--theme-color);
  text-align: center;
  margin-bottom: 1rem;
}

.referans-alani p {
  max-width: 850px;
  margin: 0 auto 2rem auto;
  text-align: center;
  color: #444;
}

.referans-alani img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 10px;
}

.süreç ul {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 1rem;
  color: #444;
}

.süreç li {
  margin-bottom: 0.5rem;
  list-style-type: decimal;
}

.cta-box {
  background-color: var(--theme-color);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cta-box p {
  margin-bottom: 1rem;
}

.cta-button {
  background-color: #fff;
  color: var(--theme-color);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #f0f0f0;
}








.toplukonut .intro-title {
      font-size: 2.5rem;
      text-align: center;
      font-weight: 800;
      color: #111;
    }
    .toplukonut .intro-divider {
      width: 60px;
      height: 4px;
      background: #017E90;
      margin: 0.6rem auto 1.5rem auto;
      border-radius: 2px;
    }
    .toplukonut .intro-text {
      font-size: 1.15rem;
      color: #444;
      line-height: 1.8;
      max-width: 900px;
      margin: 0 auto 2rem auto;
      text-align: center;
    }
    .toplukonut-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .toplukonut-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: 0.3s;
  overflow: hidden;
}

.toplukonut-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #017E90, #00acc1);
  transition: all 0.4s ease;
}

.toplukonut-card:hover::after {
  width: 80%;
  left: 10%;
}

    .toplukonut-card img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 1rem;
    }
    .toplukonut-card h2 {
      font-size: 1.3rem;
      color: #017E90;
      margin-bottom: 0.75rem;
    }
    .toplukonut-card p {
      color: #555;
      font-size: 1rem;
      line-height: 1.6;
    }
    .referans-alani, .süreç, .cta-box {
      margin-top: 3rem;
      text-align: center;
    }
    .referans-alani h2, .süreç h2, .cta-box h3 {
      font-size: 1.8rem;
      color: #111;
      margin-bottom: 1rem;
    }
    .referans-alani p, .süreç p, .cta-box p {
      font-size: 1.05rem;
      color: #555;
      max-width: 800px;
      margin: 0 auto;
    }
    .süreç ul {
      list-style: decimal inside;
      max-width: 600px;
      margin: 1.5rem auto;
      text-align: left;
      color: #444;
    }
    .cta-button {
      background: #017E90;
      color: #fff;
      padding: 0.8rem 1.6rem;
      border-radius: 6px;
      display: inline-block;
      margin-top: 1.5rem;
      font-weight: 600;
      transition: 0.3s;
    }
    .cta-button:hover {
      background: #005f70;
    }
    @media (max-width: 768px) {
      .toplukonut .intro-title {
        font-size: 2rem;
      }
      .toplukonut-card {
        padding: 1rem;
      }
    }







    /* Oteller Sayfası - Stil Tanımları */

/* Genel Stil */
body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f9f9f9;
      color: #333;
    }

    .page-header.oteller {
      background: linear-gradient(to right, #015a9c, #017E90);
      color: white;
      padding: 4rem 1rem 3rem 1rem;
      text-align: center;
      position: relative;
    }

    .page-header.oteller .container {
      max-width: 1200px;
      margin: auto;
    }

    .intro-title {
      font-size: 2.6rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }

    .intro-title span {
      background: linear-gradient(90deg, #fff 0%, #e0f7fa 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .intro-divider {
      width: 80px;
      height: 4px;
      background: white;
      margin: 1rem auto;
      border-radius: 2px;
    }

    .intro-text {
      font-size: 1.1rem;
      max-width: 800px;
      margin: auto;
      line-height: 1.6;
    }

    .header-image {
      margin-top: 2rem;
      border-radius: 10px;
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .oteller-content {
      padding: 3rem 1rem;
    }

    .oteller-content .container {
      max-width: 1200px;
      margin: auto;
    }

    .info-block {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin: 3rem 0;
      flex-wrap: wrap;
    }

    .info-block.left-img {
      flex-direction: row;
    }

    .info-block.right-img {
      flex-direction: row-reverse;
    }

    .info-block.full-width {
      flex-direction: column;
      text-align: center;
    }

    .info-text {
      flex: 1;
      min-width: 280px;
    }

    .info-text h2 {
      color: #017E90;
      font-size: 1.8rem;
      margin-bottom: 0.75rem;
    }

    .info-text p {
      font-size: 1rem;
      line-height: 1.7;
      color: #555;
    }

    .info-block img {
      flex: 1;
      min-width: 280px;
      max-width: 500px;
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    }

    .full-width img {
      margin-top: 1.5rem;
      max-width: 700px;
    }

    .cta-box {
      background-color: #017E90;
      color: white;
      padding: 2rem;
      border-radius: 12px;
      margin-top: 4rem;
      text-align: center;
    }

    .cta-box h3 {
      font-size: 1.6rem;
      margin-bottom: 1rem;
    }

    .cta-box p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }

    .cta-button {
      display: inline-block;
      background: white;
      color: #017E90;
      padding: 0.75rem 1.5rem;
      border-radius: 6px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
    }

    .cta-button:hover {
      background: #e0f7fa;
    }

    @media (max-width: 768px) {
      .info-block {
        flex-direction: column !important;
        text-align: center;
      }
    }








    /* GENEL YAPI */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9fb;
  color: #222;
  line-height: 1.7;
}

/* KAPSAYICI ALAN */
.container {
  max-width: 1250px;
  margin: auto;
  padding: 40px 20px;
}

/* BAŞLIK ALANI */
.vizyonmisyon-header {
  text-align: center;
  margin-bottom: 60px;
}
.intro-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
  text-align: center;
}


.intro-title span {
  background: linear-gradient(120deg, #006290 0%, #00acc1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.intro-divider {
  width: 60px;
  height: 4px;
  background: #00acc1;
  border-radius: 4px;
  margin: 0.6rem auto 1rem auto;
}


.intro-text {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  font-weight: 400;
  margin: 0 auto;
  max-width: 850px;
  text-align: center;
}


.hakkimizda-section {
    margin-top: 50px;
}

/* HİKAYE BÖLÜMÜ */
.kurumsal-story {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 60px;
}

.kurumsal-story h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #2d2d2d;
}

.kurumsal-story p {
  font-size: 1.1rem;
  color: #555;
}

/* KARTLAR GRİDİ */
.hakkimizda-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 60px;
}

/* KART YAPISI */
.card {
  display: flex;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 50%;
  object-fit: cover;
  height: 100%;
}

.card-content {
  padding: 40px;
  width: 50%;
}

.card-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #1e1e1e;
}

.card-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* SOL - SAĞ YÖNLENDİRMELER */
.card-left {
  flex-direction: row;
}

.card-right {
  flex-direction: row-reverse;
}

/* GALERİ BAŞLIĞI */
.kurumsal-galeri {
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.kurumsal-galeri h2 {
  font-size: 1.8rem;
  color: #2a2a2a;
  text-align: center;
}

/* PROJE KARTLARI */
.news-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.news-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  max-width: 340px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.news-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.news-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE YAPI */
@media screen and (max-width: 991px) {
  .card,
  .card-left,
  .card-right {
    flex-direction: column;
  }

  .card img,
  .card-content {
    width: 100%;
  }

  .card-content {
    padding: 25px;
  }

  .intro-title {
    font-size: 1.8rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .kurumsal-story h2,
  .kurumsal-galeri h2 {
    font-size: 1.5rem;
  }

  .news-card {
    max-width: 100%;
  }
}


.sticky-menu {
  position: fixed;
  top: 120px;
  right: 30px;
  background: #ffffff;
  border-left: 4px solid #00acc1;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  z-index: 999;
  width: 220px;
  font-family: 'Inter', sans-serif;
}

.sticky-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 8px;
}

.sticky-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sticky-menu li {
  margin-bottom: 14px;
}

.sticky-menu a {
  font-size: 0.95rem;
  color: #334155;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  padding: 6px 8px;
  border-radius: 8px;
}

.sticky-menu a:hover {
  background: #f0fdfd;
  color: #00acc1;
  transform: translateX(4px);
}

.sticky-menu i {
  font-size: 1rem;
  color: #00acc1;
  min-width: 20px;
}

@media screen and (max-width: 991px) {
  .sticky-menu {
    display: none;
  }
}




.ozellik-listesi {
  margin-top: 20px;
  padding-left: 20px;
  list-style: disc;
  color: #444;
}

.ozellik-listesi li {
  margin-bottom: 12px;
  font-size: 1rem;
}


.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #006290, #00acc1);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #00475f, #008ca1);
}


.card, .news-card {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, .news-card:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}


.otel-section {
  background: linear-gradient(to bottom, #f9f9fb 0%, #ffffff 100%);
}


.referanslar {
  background-color: #f9f9fb;
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.referanslar .intro-title {
  font-size: 1.8rem;
  color: #111827;
  margin-bottom: 30px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.logo-row img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-row img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .logo-row {
    gap: 30px;
  }

  .logo-row img {
    max-height: 50px;
  }
}








/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background: linear-gradient(to bottom,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,1) 20%,
        rgba(255,255,255,0) 100%
    );
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    overflow: visible;
}

/* Scroll sonrası header */
.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Header iç container */
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    overflow: visible;
}

/* Logo */
.logo img {
    height: 70px;
    transition: height 0.3s ease;
}
.site-header.scrolled .logo img {
    height: 60px;
}

/* Navigation */
.main-nav {
    position: relative;
    overflow: visible;
}

/* Navigation listesi */
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

/* Her bir menü öğesi */
.nav-list li {
    position: relative;
    height: 100%;
}

/* Menü linkleri */
.nav-list a {
    text-decoration: none;
    color: #1c2230;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #2e7d68;
}

/* Dropdown ok simgesi */
.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.has-dropdown > a {
    display: inline-block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-weight: 500;
    color: #1c2230;
    line-height: 1.2;
    transition: color 0.3s ease;
    height: 100%;
    position: relative;
}

.has-dropdown > a::after {
    content: ' ▼';
    font-size: 0.6rem;
    margin-left: 4px;
    vertical-align: middle;
}

.has-dropdown > a:hover {
    color: #2e7d68;
}

/* Dropdown menü */
.dropdown {
    position: absolute; /* FIXED değil */
    top: 100vh;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    border-radius: 4px;
    display: none;
    min-width: 220px;
    z-index: 999;
    list-style: none;
    margin: 0;
}

/* Dropdown iç linkler */
.dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown li a {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #1c2230;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.dropdown li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #2e7d68;
    transition: width 0.3s ease;
}

.dropdown li a:hover {
    color: #2e7d68;
}
.dropdown li a:hover::after {
    width: 100%;
}

/* Dropdown hover ile gösterilir */
.has-dropdown:hover .dropdown {
    display: block;
}



.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(0); /* yukarı kaymasını engeller */
  z-index: 9999; /* sayfa üzerindeki her şeyin üstünde */
}


/* Hamburger Menü (Mobil) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1c2230;
    transition: all 0.3s ease;
}

/* Mobil Logo */
/* Desktop'ta gizle */
.mobile-logo {
  display: none;
}

/* Mobilde görünür yap */
@media (max-width: 992px) {
  .mobile-logo {
    display: flex; /* flex veya block olabilir */
    justify-content: center;
    padding: 1.5rem 0 1rem 0;
    border-top: 1px solid #ddd; /* İstersen altına ince çizgi */

    /* Görsel ayarları */
  }

  .mobile-logo img {
    width: 80px; /* İstediğin genişlik */
    height: 80px; /* Kare yapısı */
    object-fit: contain;
    border-radius: 50%; /* Yuvarlak logo için */
    opacity: 0.95;
  }
}






.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
footer{
    background-color: #111010;
    margin-top: 20px;
    
}
.f-item-con{
    padding: 1.5rem 4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 2rem;
}
footer .app-name{
    color: white;
    border-left: 4px solid var(--theme-col);
    padding-left: 1.5rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}
.app-name .app-initial{
    color: var(--theme-col);
}
footer .app-info p{
    color: white;
    padding-left: 1.65rem;
}

footer .footer-title{ 
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: white;
    border-left: 4px solid var(--theme-col);
    padding-left: 1.5rem;
    height: fit-content;
}
footer ul{ 
    padding-left: 1.75rem;
    color: white;
    font-size: 0.875rem/* 14px */;
    line-height: 1.25rem;
    margin-top: .5rem;
}
footer ul li{ 
    margin: .25rem 0;
    cursor: pointer;
    color: #d4d4d4;
    width: fit-content;
}
footer ul li:hover{
    color: white;
}
footer .help-sec{
    grid-column-start: 2;
}
footer .cr-con{
    background-color: #232127;
    color: white;
    padding: 1rem 4rem;
    text-align: center;
}
.g-i-t{
    display: grid;
    grid-column-start: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}
.g-i-t form{
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
form .g-inp{
    padding: .25rem .5rem;
    font-size: 16px;
}
.g-inp textarea{
    height: 150px;
}
.f-btn{
    padding: .25rem 1rem;
    background-color: var(--theme-col);
    border-radius: .25rem;
    font-size: 16px;
    color: white;
    font-weight: 500;
}
:root{
  --theme-col: #017E90; /* TekSöz rengi */
}

footer .app-name{
  color: white;
  border-left: 4px solid var(--theme-col);
  padding-left: 1.5rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.app-name .app-initial{
  color: var(--theme-col);
}






























/* GENEL YAPI */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9fb;
  color: #222;
  line-height: 1.7;
}

.container {
  max-width: 1250px;
  margin: auto;
  padding: 40px 20px;
}

/* BAŞLIK BÖLÜMÜ */
.fabrika-hero {
  background: linear-gradient(120deg, #f4f6f8, #ffffff);
  padding: 60px 0;
  text-align: center;
}

.intro-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
}

.intro-title span span {
  background: linear-gradient(120deg, #006290, #00acc1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-divider {
  width: 60px;
  height: 4px;
  background: #00acc1;
  margin: 1rem auto;
  border-radius: 4px;
}

.intro-text {
  font-size: 1.1rem;
  color: #4b5563;
  max-width: 850px;
  margin: auto;
}

/* KART YAPISI */
.fabrika-kartlar {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 60px;
}

.card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  width: 50%;
  padding: 40px;
}

.card-content h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #1e1e1e;
}

.card-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.card-left {
  flex-direction: row;
}

.card-right {
  flex-direction: row-reverse;
}

/* GALERİ */
.kurumsal-galeri {
  background-color: #f4f6f8;
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 60px;
  text-align: center;
}

.kurumsal-galeri h2 {
  font-size: 1.8rem;
  color: #2a2a2a;
  margin-bottom: 40px;
}

/* PROJE KARTLARI */
.news-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.news-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  max-width: 360px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.news-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.news-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE TASARIM */
@media screen and (max-width: 991px) {
  .card,
  .card-left,
  .card-right {
    flex-direction: column;
  }

  .card img,
  .card-content {
    width: 100%;
  }

  .card-content {
    padding: 25px;
  }

  .intro-title {
    font-size: 2rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .news-card {
    max-width: 100%;
  }
}










/* GENEL YAPI */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9fb;
  color: #222;
  line-height: 1.7;
}

.container {
  max-width: 1250px;
  margin: auto;
  padding: 40px 20px;
}

/* HERO BÖLÜMÜ */
.hero-bireysel {
  background: linear-gradient(120deg, #ffffff, #f1f5f9);
  padding: 80px 20px 60px 20px;
  text-align: center;
}

.intro-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
}

.intro-title span span {
  background: linear-gradient(120deg, #006290, #00acc1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-divider {
  width: 60px;
  height: 4px;
  background: #00acc1;
  margin: 1rem auto;
  border-radius: 4px;
}

.intro-text {
  font-size: 1.1rem;
  color: #4b5563;
  max-width: 850px;
  margin: auto;
}

/* KART YAPISI */
.bireysel-kartlar {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 60px;
}

.card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  width: 50%;
  padding: 40px;
}

.card-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #1e1e1e;
}

.card-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.card-left {
  flex-direction: row;
}

.card-right {
  flex-direction: row-reverse;
}

/* DETAY LİSTESİ */
.bireysel-detay {
  background: #ffffff;
  border-left: 4px solid #00acc1;
  padding: 40px;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.bireysel-detay h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #2d2d2d;
}

.bireysel-detay ul {
  list-style: disc;
  padding-left: 20px;
}

.bireysel-detay li {
  margin-bottom: 10px;
  color: #444;
  font-size: 1rem;
}

/* GALERİ */
.bireysel-galeri {
  background-color: #f1f5f9;
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 60px;
  text-align: center;
}

.bireysel-galeri h2 {
  font-size: 1.8rem;
  color: #1f2937;
  margin-bottom: 40px;
}

/* PROJE KARTLARI */
.news-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.news-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  max-width: 360px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.news-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.news-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE TASARIM */
@media screen and (max-width: 991px) {
  .card,
  .card-left,
  .card-right {
    flex-direction: column;
  }

  .card img,
  .card-content {
    width: 100%;
    height: 250px;
  }

  .card-content {
    padding: 25px;
  }

  .intro-title {
    font-size: 2rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .news-card {
    max-width: 100%;
  }
}










.footer-left {
  position: relative;
  margin-top: 50px;
  padding: 30px 15px 20px;
  text-align: center;
  max-width: 100%;
  background: #1e1e1e; /* Gri arka plan */
  isolation: isolate;
  color: #bbb; /* Yazı rengi */
}

/* Modern çizgi efekti */
.footer-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0) 100%);
  opacity: 0.5;
  z-index: 1;
}

/* İç yazılar için */
.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  margin: 6px 0;
  z-index: 2;
  position: relative;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-left {
    padding: 25px 10px 15px;
  }

  .footer-left p {
    font-size: 13px;
  }
}

.kodem-link {
  color: #bbb;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  background: linear-gradient(90deg, #2ecc71, #a9f7cd);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: kodemParlama 12s ease-in-out infinite;
}

@keyframes kodemParlama {
  0%, 10% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.kodem-link:hover {
  opacity: 0.85;
}


.neas-text-wrapper {
  display: inline-block;
  font-weight: 600;
  color: #bbb;
  position: relative;
}

.neas-text-wrapper::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: #4a6580;
  animation: underlineSweep 10s ease-in-out infinite;
}

@keyframes underlineSweep {
  0%, 10%, 100% {
    width: 0;
    opacity: 0;
  }
  30%, 60% {
    width: 100%;
    opacity: 1;
  }
  80% {
    width: 0;
    opacity: 0;
  }
}

.neas-text-wrapper:hover {
  color: #4a6580;
}


.muteahhit-card .icon {
  font-size: 48px;
  color: var(--theme-col, #2d4bf0); /* veya uygun bir marka rengi */
  margin-bottom: 20px;
}

.toplukonut-card .icon {
  font-size: 48px;
  color: var(--theme-col, #2d4bf0); /* Tema rengine göre değiştirilebilir */
  margin-bottom: 20px;
  display: block;
  text-align: center;
}
