/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background: #fff;
    color: #333;
  }
  
  img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Navbar */
  .navbar {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .navbar .logo img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
    object-fit: contain;
    display: block;
  }
  
  .navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .navbar.scrolled .logo img {
    height: 40px;
  }
  
  .navbar .logo {
    font-weight: bold;
    font-size: 1.8rem;
  }
  
  .navbar nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
  }
  
  .navbar nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .navbar nav ul li a:hover {
    color: #000;
  }
  
/* Mobil Görünüm */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 20px;
    z-index: 1002;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 30px;
    height: 24px;
    z-index: 1003;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  
  /* X animasyonu */
  .hamburger div {
    background-color: #333;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: 0.3s ease;
  }
  
  .hamburger.active .bar1 {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active .bar2 {
    opacity: 0;
  }
  
  .hamburger.active .bar3 {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  #closeIcon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    z-index: 1004;
    display: none;
  }

  .navbar nav ul {
    flex-direction: column;
    gap: 20px;
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: white;
    padding-top: 100px;
    transition: right 0.35s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }

  .navbar nav ul.active {
    right: 0;
  }

  .navbar nav ul li {
    list-style: none;
  }

  .navbar nav ul li a {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    padding: 10px;
    display: block;
    transition: 0.2s;
  }

  .navbar nav ul li a:hover {
    background-color: #f2f2f2;
  }

  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    transition: opacity 0.3s ease;
  }

  #overlay.active {
    display: block;
  }

 

    .navbar nav ul li:last-child {
      margin-left: 0 !important;
      padding-left: 0; /* ortalama için boşluk kaldırıldı */
      border-top: 1px solid #ddd;
      margin-top: 20px;
      justify-content: center; /* ortala */
      display: flex !important;
      gap: 10px;
      font-weight: bold;
      font-size: 1.1rem;
    }
  
    .navbar nav ul li:last-child a {
      text-align: center; /* ortalamaya uygun */
      padding: 0;
    }
  
    .navbar nav ul li:last-child i {
      font-size: 1.3rem;
      color: #333;
    }
  }
  

  
  /* Hero (Video Alanı) */
  .hero {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  
  
  /* Arama Kutusu */
  .hero-search-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    z-index: 2;
  }
  
  .hero-search {
    display: flex;
    background: rgba(255, 237, 173, 0.9);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  }
  
  .hero-search input {
    flex: 1;
    border: none;
    padding: 18px 30px;
    font-size: 1.1rem;
    border-radius: 50px 0 0 50px;
    outline: none;
    background: transparent;
    color: #444;
  }
  
  .hero-search input::placeholder {
    color: #666;
    opacity: 0.8;
  }
  
  .hero-search button {
    background: #000;
    border: 5px solid #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }
  
  .hero-search button svg {
    width: 24px;
    height: 24px;
  }
  
  /* Trending Section */
  .trending-section {
    padding: 60px 16px;
    background: #fff;
    text-align: center;
  }
  
  .trending-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(332px, 1fr));
    gap: 8px;
  }
  
  .trending-card {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 400px;
    text-align: left; /* metinleri sola hizala */
  }
  
  .trending-card::before {
    content: "";
    position: absolute;
    inset: 0;
   
    z-index: 0;
  }
  
  .trending-card * {
    position: relative;
    z-index: 1;
  }
  
  .trending-card .category {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    z-index: 2;
  }
  
  .trending-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
  }
  
  .btn-more {
    background-color: #ffd500;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 4px;
    align-self: flex-start;
    transition: background 0.3s;
  }
  
  .btn-more:hover {
    background-color: #ffbb00;
  }
  
  .trend-highlight {
    font-weight: 800;
    color: #111;
    letter-spacing: 0.5px;
  }
  
  .urunler-light {
    font-weight: 400;
    color: #1e1e1e;
  }
  
  /* Ürünler */
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
  }
  
  .product-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #f4f4f4;
    text-decoration: none;
    color: #000;
    margin-bottom: 30px;
    overflow: hidden;
    transition: background 0.3s;
  }
  
  .product-row:hover {
    background-color: #eaeaea;
  }
  
  .product-row.reverse {
    flex-direction: row-reverse;
  }
  
  .product-info,
  .product-image {
    width: 50%;
    min-height: 280px;
    box-sizing: border-box;
  }
  
  .product-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .product-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .product-info p {
    color: #666;
    font-size: 1rem;
  }
  
  .product-image {
    background-size: cover;
    background-position: center;
  }
  
  /* MOBİL TASARIM */
  @media (max-width: 768px) {
    .product-row,
    .product-row.reverse {
      flex-direction: column-reverse !important;
    }
  
    .product-info,
    .product-image {
      width: 100%;
    }
  
    .product-image {
      min-height: 220px;
    }
  
    .product-info {
      padding: 15px 20px;
      text-align: center;
      align-items: center;
      min-height: auto;
    }
  
    .product-info h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
  
    .product-info p {
      font-size: 0.95rem;
      color: #666;
    }
  }
 
  
  /* Hakkımızda */
  .about {
    padding: 60px 40px;
    background: #fff;
  }
  
  .about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .about p {
    font-size: 1rem;
    color: #444;
    max-width: 800px;
    margin: auto;
  }
  .about-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .stat-box {
    flex: 1 1 280px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  
  .stat-box img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .stat-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
  }
  
  .stat-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    max-width: 240px;
  }
  
  /* Footer */
  .footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    margin-top: 60px;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
  
  .footer-logo img {
    height: 40px;
    width: auto;
  }
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Sertifikalar */
  .certification-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
  }
  
  .certification-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
  }
  
  .certification-section .subtitle {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 40px;
  }
  
  .certification-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* Sabit boşluk */
    flex-wrap: wrap;
  }
  
  .certification-logos img {
    width: 190px;       /* Sabit genişlik */
    height: 190px;      /* Sabit yükseklik */
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .certification-logos img:hover {
    transform: scale(1.05);
  }
  @media (max-width: 768px) {
    .certification-logos {
      gap: 20px;
      justify-content: center;
      padding: 0 10px;
    }
  
    .certification-logos img {
      width: 90px;
      height: 90px;
    }
  }
 /* Kurumsal Başlık Bölümü */
.kurumsal-header {
    position: relative;
    height: 60vh;
    width: 100%;
    background-image: url("images/kurumsal-banner.jpg"); /* Kendi görselinle değiştir */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
  }
  
  .kurumsal-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* Görsel üzerine yarı saydam katman */
    z-index: 0;
  }
  
  .kurumsal-header .kurumsal-overlay {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .kurumsal-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
    animation: slideInLeft 1.2s ease-out forwards;
    opacity: 0;
  }
  
  .kurumsal-header p {
    font-size: 1.2rem;
    color: #f0f0f0;
    animation: fadeIn 1.6s ease-out forwards;
    opacity: 0;
  }
  
  @keyframes slideInLeft {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Kurumsal İçerik */
  .kurumsal-content {
    background-color: #fff;
    padding: 60px 20px;
  }
  
  .kurumsal-content .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .kurumsal-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #000;
  }
  
  .kurumsal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
  }
  
  /* Kurumsal İstatistikler */
  .kurumsal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    background-color: #fafafa;
    padding: 60px 40px;
    text-align: center;
    justify-items: center;
  }
  
  .kurumsal-stats .stat-box {
    max-width: 260px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .kurumsal-stats .stat-box img {
    max-width: 80px;
    height: auto;
    margin-bottom: 15px;
  }
  
  .kurumsal-stats .stat-box h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111;
  }
  
  .kurumsal-stats .stat-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
  }
  
  @media (max-width: 992px) {
    .kurumsal-stats {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .kurumsal-stats {
      grid-template-columns: 1fr;
    }
  }

/* iletişim */
.contact-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Georama', sans-serif;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #000;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-map-container {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 350px;
}

.contact-info {
  flex: 1;
  min-width: 260px;
  max-width: 500px;
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 0 auto;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-item i {
  font-size: 20px;
  color: #f57c00;
  margin-top: 4px;
}

.info-item a {
  color: #0077cc;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}
  /* Her şey sadece .contact-wrapper içinde geçerli */

.contact-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Georama', sans-serif;
  box-sizing: border-box;
}

.contact-wrapper .contact-title {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #000;
  letter-spacing: -1px;
  font-family: 'Arial Black', 'Georama', sans-serif;
}

.contact-wrapper .contact-subtitle {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #111;
}

.contact-wrapper .styled-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
}

.contact-wrapper .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  box-sizing: border-box;
}
.contact-wrapper {
  margin-bottom: 60px;
}

.contact-wrapper .form-row input,
.contact-wrapper .form-row select,
.contact-wrapper textarea {
  flex: 1;
  min-width: 200px;
  padding: 15px;
  font-size: 16px;
  background: #f5f5f5;
  border: none;
  border-radius: 3px;
  box-sizing: border-box;
}

.contact-wrapper textarea {
  width: 100%;
  min-height: 150px;
  resize: vertical;
}

.contact-wrapper .char-limit {
  text-align: right;
  font-size: 14px;
  color: #555;
  margin-top: -10px;
}

.contact-wrapper .privacy-check {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 8px;
  justify-content: flex-start;
}

.contact-wrapper .privacy-check a {
  color: #000;
  text-decoration: underline;
}

.contact-wrapper button[type="submit"] {
  background: black;
  color: white;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
  align-self: flex-start;
}

.contact-wrapper button[type="submit"]:hover {
  background: #333;
}

/* Modal arka plan */
#privacyModal {
  display: none; /* Sayfa açıldığında görünmesin */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

#privacyModal .modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Modal başlığı */
#privacyModal .modal-content h2 {
  margin-top: 0;
  font-size: 24px;
  font-weight: 700;
}

/* Modal yazısı */
#privacyModal .modal-content p {
  font-size: 15px;
  line-height: 1.6;
}

/* Kapatma (X) */
#privacyModal .modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

/* Alt buton */
#privacyModal .modal-content button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #1e3a8a;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

#privacyModal .modal-content button:hover {
  background: #111;
}

/* Fade animasyon */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Mobil görünüm */
@media (max-width: 600px) {
  .contact-wrapper .form-row {
    flex-direction: column;
  }

  .contact-wrapper .contact-title {
    font-size: 38px;
  }

  .contact-wrapper .contact-subtitle {
    font-size: 18px;
  }

  .contact-wrapper button[type="submit"] {
    width: 100%;
    align-self: stretch;
  }
}
