/* Genel ayarlar */
* {
    margin: 0; padding: 0; box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
  }
  
  /* Header */
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 10px 0;
  }
  
  /* Navbar */
  .navbar {
    margin: auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  /* Sol taraf (logo + email) */
  .nav-left {
    display: flex;
    align-items: center;
    gap: 90px;
  }
  
  .logo {
    width: 240px;
    height: 60px;
    object-fit: contain;
  }
  
  .emaillink {
    font-size: 16px;
  }
  .email {
    text-decoration: none;
    color: #444;
  }
  .emaillink a:hover {
    color: #a10802;
    transition: 0.9s ease;
  }
  
  /* Menü */
  .nav-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    flex-wrap: wrap;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 17px;
    font-weight: 250;
    position: relative;
    transition: all 0.3s ease;
  }
  .nav-links li a:hover {
    color: #a33333;
    transition: 0.9s ease;
  }
  .nav-links li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #a33333;
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
  }
  .nav-links li a:hover::after {
    width: 100%;
  }
  
  /* Dil seçici */
  .custom-language-select {
    position: relative;
  }
  .custom-language-select button {
    background: white;
    border: 1px solid #ccc;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 15px;
  }
  .custom-language-select img {
    width: 22px;
    height: 22px;
  }
  .dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    list-style: none;
    padding: 0.5rem 0;
    display: none;
    z-index: 100;
    width: 140px;
  }
  .dropdown-menu li {
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .dropdown-menu li:hover {
    background-color: #f5f5f5;
  }
  .custom-language-select.open .dropdown-menu {
    display: block;
  }
  .dropdown-menu a{
    text-decoration: none;
    color: #111;
  }
  
  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .hamburger span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 2px;
  }
  .mobile-menu{
    display: none;
  }
  
  /* Mobile Menü */
  @media (max-width: 768px) {


    .nav-wrapper {
      display: none;
    }
  
    .nav-left{
      gap: 90px;
    }
    .hamburger {
      display: flex;
    }
    .mobile-menu {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      right: -100%;
      width: 260px;
      height: 100vh;
      background-color: white;
      box-shadow: -2px 0 10px rgba(0,0,0,0.1);
      transition: right 0.3s ease-in-out;
      padding: 3rem 2rem;
      z-index: 999;
    }
    .mobile-menu.open {
      right: 0;
    }
    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .mobile-menu ul li a {
      color: #333;
      font-weight: 350;
      text-decoration: none;
      font-size: 1.1rem;
    }
    .mobile-menu .custom-language-select {
      margin-top: 2rem;
    }
    .mobile-menu .dropdown-menu {
      position: static;
      display: none;
      width: 100%;
      border: 1px solid #ddd;
    }
  }
  
  
    @media (max-width: 768px) {
      /* Navbar'daki dil seçiciyi gizle (üstteki) */
      .navbar .custom-language-select {
        display: none !important;
      }
    
      /* mobile-menu açık kalmalı! */
      .mobile-menu {
        display: flex !important;
      }
    }
    

    
    main {
      padding-bottom: 4rem;
    }
    
    /* HERO BÖLÜMÜ */
    .about-hero {
      padding: 4rem 1rem;
      background-color: #ffffff;
      text-align: center;
      border-bottom: 1px solid #eee;
    }
    
    .about-hero img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      margin-bottom: 2rem;
    }
    
    .about-hero h1 {
      font-size: 2.8rem;
      color: #4e342e;
      margin-bottom: 0.5rem;
    }
    
    .about-hero p {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1rem;
      color: #666;
    }
    
    /* GENEL SECTION STİLİ */
    .about-section {
      padding: 4rem 1rem;
      background-color: #ffffff;
    }
    
    .about-section.alt {
      background-color: #f7f6f4;
    }
    
    .about-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
      max-width: 1200px;
      margin: auto;
      align-items: center;
      justify-content: space-between;
    }
    
    .about-grid.reverse {
      flex-direction: row-reverse;
    }
    
    .about-text {
      flex: 1;
      min-width: 300px;
    }
    
    .about-text.single {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    
    .about-text h2 {
      font-size: 2rem;
      color: #5d4037;
      margin-bottom: 1rem;
      border-bottom: 2px solid #d7ccc8;
      display: inline-block;
      padding-bottom: 0.3rem;
    }
    
    .about-text p {
      font-size: 1rem;
      color: #444;
      margin-bottom: 1rem;
    }
    
    .about-text ul {
      padding-left: 1.2rem;
      margin-top: 1rem;
    }
    
    .about-text ul li {
      margin-bottom: 0.7rem;
      color: #555;
      list-style-type: '✔ ';
      padding-left: 0.4rem;
    }
    
    .about-image {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
    }
    
    .about-image img {
      width: 100%;
      max-width: 520px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    }
    
    /* Responsive */
    @media screen and (max-width: 960px) {
      .about-grid {
        flex-direction: column;
      }
    
      .about-grid.reverse {
        flex-direction: column;
      }
    
      .about-text.single {
        padding: 0 1rem;
      }
    
      .about-hero h1 {
        font-size: 2rem;
      }
    
      .about-text h2 {
        font-size: 1.6rem;
      }
    }
    
  /* Mobile Menü */
  @media (max-width: 768px) {

    .nav-wrapper {
      display: none;
    }
  
    .nav-left{
      gap: 35px;
    }
    .hamburger {
      display: flex;
    }
    .mobile-menu {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      right: -100%;
      width: 260px;
      height: 100vh;
      background-color: white;
      box-shadow: -2px 0 10px rgba(0,0,0,0.1);
      transition: right 0.3s ease-in-out;
      padding: 3rem 2rem;
      z-index: 999;
    }
    .mobile-menu.open {
      right: 0;
    }
    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .mobile-menu ul li a {
      color: #333;
      font-weight: 350;
      text-decoration: none;
      font-size: 1.1rem;
    }
    .mobile-menu .custom-language-select {
      margin-top: 2rem;
    }
    .mobile-menu .dropdown-menu {
      position: static;
      display: none;
      width: 100%;
      border: 1px solid #ddd;
    }
  }
  
  
    @media (max-width: 768px) {
      /* Navbar'daki dil seçiciyi gizle (üstteki) */
      .navbar .custom-language-select {
        display: none !important;
      }
    
      /* mobile-menu açık kalmalı! */
      .mobile-menu {
        display: flex !important;
      }
    }

    @media screen and (min-width: 812px) and (max-width: 944px) {
      .navbar {
        padding: 0 20px;
      }
    
      .nav-left {
        gap: 1.9rem;
      }
    
      .logo {
        width: 160px;
        height: 30px;
      }
    
      .emaillink {
        font-size: 12px;
      }
    
      .nav-links {
        gap: 1.0rem;
      }
    
      .nav-links li a {
        font-size: 13px;
      }
    
      .custom-language-select button {
        padding: 0.4rem 0.8rem;
        font-size: 10px;
      }
    
      .custom-language-select img {
        width: 15px;
        height: 15px;
      }
    }

      @media screen and (min-width: 769px) and (max-width: 811px) {
        .navbar {
          padding: 0 20px;
        }
      
        .nav-left {
          gap: 1.9rem;
        }
      
        .logo {
          width: 150px;
          height: 30px;
        }
      
        .emaillink {
          font-size: 11px;
        }
      
        .nav-links {
          gap: 0.8rem;
        }
      
        .nav-links li a {
          font-size: 12.5px;
        }
      
        .custom-language-select button {
          padding: 0.4rem 0.8rem;
          font-size: 10px;
        }
      
        .custom-language-select img {
          width: 15px;
          height: 15px;
        }
      }
      
      @media screen and (min-width: 945px) and (max-width: 1130px) {

        .navbar {
          padding: 0 34px;
        }
      
        .nav-left {
          gap: 2.5rem;
        }
      
        .logo {
          width: 200px;
          height: 30px;
        }
      
        .emaillink {
          font-size: 12px;
        }
      
        .nav-links {
          gap: 0.8rem;
        }
      
        .nav-links li a {
          font-size: 14px;
        }
      
        .custom-language-select button {
          padding: 0.4rem 0.8rem;
          font-size: 10px;
        }
      
        .custom-language-select img {
          width: 15px;
          height: 15px;
        }
      }
      
      @media screen and (min-width: 1131px) and (max-width: 1400px) {

        .navbar {
          padding: 0 74px;
        }
      
        .nav-left {
          gap: 3.5rem;
        }
      
        .logo {
          width: 200px;
          height: 30px;
        }
      
        .emaillink {
          font-size: 12px;
        }
      
        .nav-links {
          gap: 1.4rem;
        }
      
        .nav-links li a {
          font-size: 15px;
        }
      
        .custom-language-select button {
          padding: 0.4rem 0.8rem;
          font-size: 10px;
        }
      
        .custom-language-select img {
          width: 18px;
          height: 18px;
        }
      }

      @media screen and (min-width: 505px) and (max-width: 635px) {
        .logo {
          width: 165px;
        }
        .emaillink {
          font-size: 10px;
        }
        .mobile-menu {
          width: 180px;
          padding: 2rem 1rem;
        }
        .nav-left{
            gap: 50px;
          }
      }


      
    
    @media (max-width: 504px) {
        .logo {
          width: 125px;
        }
        .emaillink {
          font-size: 10px;
        }
        .mobile-menu {
          width: 190px;
          padding: 2rem 1rem;
        }
        .nav-left{
            gap: 30px;
          }
    }
    .join-us-section {
      background: linear-gradient(135deg, #f2f2f2, #ffffff);
      padding: 80px 20px;
      text-align: center;
    }
    
    .join-us-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .join-us-title {
      font-size: 2.5rem;
      color: #1a1a1a;
      margin-bottom: 20px;
      font-weight: 700;
    }
    
    .join-us-text {
      font-size: 1.1rem;
      color: #444;
      margin-bottom: 35px;
      line-height: 1.6;
    }
    
    .join-us-button {
      padding: 14px 32px;
      background-color: #4e342e;
      color: white;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
    }
    
    .join-us-button:hover {
      background-color: #4e342e;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgb(61, 61, 61);
    }
    
    @media (max-width: 600px) {
      .join-us-title {
        font-size: 1.8rem;
      }
    
      .join-us-text {
        font-size: 1rem;
      }
    
      .join-us-button {
        width: 100%;
      }
    }
    .join-us-section {
      background-image: url('/assets/bg/teamwork.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: white;
    }
    .join-us-text, .join-us-title {
      color: #4e342e;
      text-shadow: 0 1px 4px white;
    }
    
    






/* footer */

/* Ana footer stili */
.site-footer {
    background: #111;
    color: #eee;
  
    padding: 5rem 2rem 2rem;
  }
  
  /* Üst kısım: 3 kolonlu içerik */
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 11rem; /* Tüm sütulara eşit boşluk */
  }
  
  /* Başlıklar – dekoratif alt çizgi */
  .footer-container h3,
  .footer-container h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
  }
  
  .footer-container h3::after,
  .footer-container h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #a10802;
  }
  
  /* Metin içerikler */
  .footer-about p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
  }
  
  /* Linkler bölümü */
  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.6rem;
  }
  
  .footer-links a {
    color: #ccc;
    text-decoration: none;
    position: relative;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  
  .footer-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -2px;
    background-color: #a10802;
    transition: 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #fff;
  }
  
  .footer-links a:hover::after {
    width: 100%;
  }
  
  /* İletişim kısmı */
  .footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: #ccc;
  }
  .footer-contact a {
    color: #eee;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  
  /* Sosyal medya ikonları */
  .footer-socials {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  
  .footer-socials a {
    color: #ccc;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }
  .footer-socials a:hover {
    color: #a10802;
  }
  
  /* Alt bar */
  .footer-bottom {
    margin-top: 3rem;
    border-top: 1px solid #222;
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #999;
  }
  
  .footer-bottom span {
    color: #fff;
    font-weight: 600;
  }
  
  /* Responsive padding */
  @media (max-width: 600px) {
    .site-footer {
      padding: 4rem 1.5rem 2rem;
    }
  }
  
  
  /* footer */


/* Responsive Ayarlar */
@media screen and (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    }

    .navbar-menu.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hamburger-menu {
        display: flex;
    }
        
    .belief-container {
        flex-direction: column;
        text-align: center;
        margin-left: 10%;
    }

    .belief-text {
        padding-right: 0;
        margin-bottom: 20px;
    }
    h3{
        margin-top: 25px;
    }

    .belief-image img {
        width: 90%;
        margin-right: 10%;
    }

    .services-container {
        flex-direction: column;
        text-align: center;
        margin-right: 10%;
    }

    .services-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .services-image img {
        width: 90%;
        margin-left: 10%;
    }


    .our_difference-container {
        flex-direction: column;
        text-align: center;
        margin-left: 10%;
    }

    .our_difference-text {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .our_difference-image img {
        width: 90%;
        margin-right: 10%;
    } 
    .why_us-container {
        flex-direction: column;
        text-align: center;
        margin-left: 10%;
    }

    .why_us-text {
        padding-right: 0;
        margin-bottom: 20px;
    }
}
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
  }
  
  .chat-toggle {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  
  .chat-toggle:hover {
    transform: scale(1.05);
  }
  
  .chat-toggle img {
    width: 28px;
    height: 28px;
  }
  
  .chat-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    width: 200px;
    display: none;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
  }
  
  .chat-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .chat-menu li {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
  }
  
  .chat-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
  }
  
  .chat-menu li:hover {
    background: #f1f1f1;
  }
  
  .chat-menu img {
    width: 24px;
    height: 24px;
  }
  
  .chat-close {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 1.3rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  
  .chat-close:hover {
    color: #222;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @media screen and (max-width: 600px) {
    .chat-menu {
      width: 90vw;
      right: 5vw;
    }
  }
  