@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
:root {
  --wb-font-text-regular: "Corporate A", Arial, Helvetica, sans-serif;
  --wb-font-text-bold: "Corporate A Bold", Arial, Helvetica, sans-serif;
  --wb-font-text-light: "Corporate A Light", Arial, Helvetica, sans-serif;
  --wb-font-title-serif: "MBCorpo Title Serif", "arial", serif;
  --wb-font-text: "MBCorpo Text", "arial", sans-serif;

  --wb-color-gray-dark: #373737;
  --wb-font-title: "MBCorpo Title", "arial", sans-serif;
  --wb-color-gray-dark: #373737;
  --wb-font-title: "MBCorpo Title", "arial", sans-serif;
  --wb-color-neutral: #f5f5f5;
  --neutral-neutral-600: #666;
  --wb-color-theme-text: var(--wb-color-gray-dark);
  --navigation-color: #666;
  --wb-color-theme-highlight: #0078d6;
  --wb-spacing-s: 1.5rem;
  --primary-color: #000;
  --secondary-color: #333;
  --accent-color: #007bff;
  --text-light: #fff;
  --text-dark: #333;
  --bg-light: #f5f5f5;
  --border-color: #ccc;
  --container-width: 1400px;
  --header-height: 80px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  --font-primary: "Roboto", Arial, Helvetica, sans-serif;
  --container-padding: 8rem;
  --container-padding-mobile: 1rem;
  --section-padding: 6rem;
  --section-padding-mobile: 2rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  width: 100%;
}

body {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
  padding-top: calc(var(--header-height) + 70px);
}

.page-container {
  flex: 1;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Common Container Styles */
.content-container,
.about-section,
.sectors-section,
.production-section,
.values-section,
.quality-container,
.quality-management-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 6rem var(--container-padding);
}

@media (max-width: 768px) {
  .content-container,
  .about-section,
  .sectors-section,
  .production-section,
  .values-section,
  .quality-container,
  .quality-management-container {
    padding: 4rem var(--container-padding-mobile);
  }
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  transform: translateY(0);
  will-change: transform;
  backface-visibility: hidden;
}

/* Top Bar */
.top-bar {
  color: var(--text-light);
  padding: 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/bauma-img.avif");
  background-size: cover;
  background-position: center;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  height: 40px;
}

.top-bar a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  font-family: var(--wb-font-text-bold);
}

/* Sub Bar */
.sub-bar {
  display: flex;
  gap: 20px;
  background-color: var(--bg-light);
  padding: 8px 0;
  justify-content: flex-end;
  align-items: center;
  font-weight: 500;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  height: 30px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sub-bar::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
  background: transparent;
}

.sub-bar::-webkit-scrollbar-track {
  display: none;
}

.sub-bar::-webkit-scrollbar-thumb {
  display: none;
}

.sub-bar a {
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  padding: 0 15px;
  font-size: 12px;
  font-family: var(--wb-font-text);
  white-space: nowrap;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.sub-bar a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #666;
}

.sub-bar a:hover {
  opacity: 1;
  color: var(--accent-color);
}

/* Header */
.site-header {
  background-color: var(--primary-color);
  color: var(--text-light);
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  height: var(--header-height);
}

.header-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 100%;
  width: 100%;
}

/* Main Menu */
.main-menu ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.main-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  font-family: var(--wb-font-text-bold);
  transition: color 0.3s;
  padding: 10px 0;
  display: block;
  white-space: nowrap;
  text-transform: uppercase;
}

.main-menu a:hover {
  color: var(--accent-color);
}

/* Header hide class */
.header-hidden {
  transform: translateY(-100%);
}

@media (max-width: 768px) {
  .header-wrapper {
    transform: none !important;
  }

  .sub-bar {
    display: none;
  }

  .site-header {
    top: 40px;
  }

  .header-container {
    padding: 0 1rem;
  }

  body {
    padding-top: calc(var(--header-height) + 40px) !important;
  }

  .main-menu a {
    font-size: 13px;
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.hamburger-menu.open span:first-child {
    right: 0;
    top: 10px;
    transform: rotate(45deg);
}

/* Submenu */
.has-submenu {
  position: static;
}

.submenu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  padding: var(--spacing-sm) 0;
  z-index: 1000;
}

.submenu.active {
  display: block !important;
}
.has-submenu.active > .submenu {
  display: block !important;
}

.submenu-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  width: 100%;
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
  white-space: nowrap;
  transition: color 0.3s;
  padding: var(--spacing-xs) 0;
}

.submenu a:hover {
  color: var(--accent-color);
}

/* Language Selector */
.language-selector {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 16px;
  background: none;
  border: none;
  color: #007bff;
}

.lang-btn i {
  font-size: 24px;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  background: #333;

  box-shadow: 0 3px 6px rgb(0 0 0 / 0.1);
  border-radius: 2px;
  display: none;
  min-width: 80px;
  z-index: 1000;
}

.lang-dropdown.active {
  display: block;
}

.lang-dropdown button {
  display: block;
  width: 100%;
  padding: 6px 10px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
}

.lang-dropdown button:hover {
  background-color: #f0f0f0;
  color: #333;
}

/* Common Image Styles */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-container {
  position: relative;
  overflow: hidden;
}

/* Common Content Styles */
.content-overlay {
  position: absolute;
  z-index: 2;
  color: white;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: 0;
}

.hero-section:hover .hero-bg {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 10%;
  left: 60px;
  z-index: 2;
  color: white;
  max-width: 600px;
  text-align: left;
}

.second-content {
  position: absolute;
  top: 10%;
  left: 60px;
  z-index: 2;
  color: white;
  max-width: 600px;
  text-align: left;
}

.baslik-1 {
  font-size: 1.75rem;
  font-weight: 400;
  font-family: var(--wb-font-title-serif);
  margin-bottom: var(--spacing-xs);
  line-height: 2.125rem;
}

.baslik-2 {
  -webkit-font-smoothing: antialiased;
  font: inherit;
  font-family: var(--wb-font-title);
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4rem;
  text-transform: uppercase;
}

.blue-letter {
  color: var(--wb-color-theme-highlight);
  text-transform: lowercase; /* veya istediğin renk kodu: #007BFF gibi */
}

.anasayfa-btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
}

.anasayfa-btn:hover {
  background-color: #0056b3;
}

/* Responsive  */
@media (max-width: 1200px) {
  :root {
    --header-height: 70px;
    --container-padding: 4rem;
  }

  .main-menu ul {
    gap: var(--spacing-xs);
  }

  .main-menu a {
    font-size: clamp(0.7rem, 0.9vw, 0.9rem);
    padding: var(--spacing-xs) 0;
  }

  .sub-bar {
    gap: var(--spacing-xs);
  }

  .sub-bar a {
    font-size: clamp(0.6rem, 0.7vw, 0.8rem);
    padding: 0 var(--spacing-xs);
  }
  
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .logo img {
    height: 30px;
    width: auto;
    display: block;
  }

  .hamburger-menu {
    display: block;
  }

  .main-menu,
  .language-selector {
    display: none;
  }

  .hero-section {
    aspect-ratio: 1/1;
  }

  .hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-content {
    position: absolute;
    top: 10%;
    left: 20px;
    right: auto;
    transform: none;
    z-index: 2;
    color: white;
    max-width: 90%;
    text-align: left;
  }

  .second-content {
    position: absolute;
    top: 10%;
    left: 20px;
    right: auto;
    transform: none;
    z-index: 2;
    color: white;
    max-width: 90%;
    text-align: left;
  }

  .baslik-1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }

  .baslik-2 {
    font-size: 3rem;
    line-height: 3rem;
  }

  .anasayfa-btn {
    padding: var(--spacing-xs) var(--spacing-md);
  }

  .ikili-alan {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .image-box {
    width: 100%;
    height: 40vh;
    min-height: 250px;
  }

  .image-box img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
  }

  .grid-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .buyuk,
  .kucuk,
  .kucuk-alt {
    width: 100%;
    height: 50vh;
    min-height: 300px;
  }

  .resim {
    height: 100%;
  }

  .resim img {
    height: 100%;
    object-fit: cover;
  }

  .page-container {
    overflow-x: hidden;
    width: 100%;
  }

  .header-wrapper {
    transform: none !important;
  }

  .site-header {
    top: 30px; /* top-bar'ın tam yüksekliği */
  }

  body {
    padding-top: calc(
      var(--header-height) + 30px
    ); /* header + top-bar height */
  }
}

.ikili-alan {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
  height: auto; /* Sabit yükseklik kaldırıldı */
  box-sizing: border-box;
}

/* Image Box */
.image-box {
  flex: 1;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  min-width: 0;
}

.image-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
}

.image-box:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

/* yazi-video- alanı */
.yazi-video-wrapper {
  max-width: 1200px;
  margin: 10rem auto;
  display: flex;
  color: #373737;
  align-items: center;
  justify-content: space-between;
}

.yazi-alani {
  flex: 0 1 40%;
  min-width: 280px;
  padding-left: 2rem;
}

.yazi-description {
  font-size: 1.125rem;
  line-height: 2rem;
  font-family: var(--wb-font-text);
  margin-top: 1rem;
}

.baslik-1.title {
  font-size: 2rem;
  font-weight: 400;
  font-family: var(--wb-font-title-serif);
  margin-bottom: var(--spacing-xs);
  line-height: 3.125rem;
}

.baslik-2.subtitle {
  font-size: 3rem;
}

.video-alani {
  flex: 0 1 58%;
  min-width: 280px;
}

.video-alani video {
  width: 100%;
  height: auto;
}

.cta-button.yazi-alani {
  background-color: #373737;
  color: #fff;
  width: auto;
  display: inline-flex;
}

@media (max-width: 768px) {
  .yazi-video-wrapper {
    flex-direction: column;
    align-items: stretch;
    margin: 0 auto;
    padding: 0.5rem;
	
  }

  .yazi-alani,
  .video-alani {
    flex: 1 1 100%;
    margin-top: 0.5rem;

    padding-left: 0;
  }

  .cta-button.yazi-alani {
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }
}

/* grid container */
.grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 85vh 100vh;
  gap: 1rem;
}

.grid-container > .birinci:nth-child(1) {
  grid-column: span 4;
  grid-row: 1 / 2;
  background: #8ac6d1;
  position: relative;
}

.grid-container > .ikinci:nth-child(2) {
  grid-column: 5 / 7;
  grid-row: 1 / 2;
  background: var(--accent-color);
  position: relative;
}

.grid-container > .ucuncu:nth-child(3) {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  background: #fae3d9;
  position: relative;
}

.grid-container > .dorduncu:nth-child(4) {
  grid-column: 3 / 5;
  grid-row: 2 / 3;
  background: var(--accent-color);
  position: relative;
}

.grid-container > .besinci:nth-child(5) {
  grid-column: 5 / 7;
  grid-row: 2 / 3;
  background: var(--accent-color);
  position: relative;
}

.resim {
  position: relative;
  overflow: hidden;
}

.resim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.grid-overlay-one {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: white;
  z-index: 1;
  max-width: 90%;
}

.grid-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 1;
  width: 98%;
  max-width: 98%;
  text-align: left;
  padding: 1.2rem;
  box-sizing: border-box;
}

.grid-overlay-text .title {
  font-family: var(--wb-font-title-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.75rem;
}

.grid-container .sub-title {
  color: var(--bg-light);
  font-family: var(--wb-font-title);
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  line-height: 1.2;
}

.grid-overlay-text .description {
  font-size: 1.125rem;
  line-height: 2rem;
  font-family: var(--wb-font-text);
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0.5rem;
  width: 100%;
}

.cta-button.grid-button {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: var(--bg-light);
}

/* Mobil görünüm gridin */
@media (max-width: 768px) {
  .grid-container {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
  }

  .grid-container > div {
    width: 100%;
    position: relative;
  }

  /* Dikey dikdörtgenler */
  .birinci:nth-child(1) {
    height: 60vh;
  }

  .ucuncu:nth-child(3) {
    height: 50vh;
  }

  .dorduncu:nth-child(4) {
    height: 60vh;
  }

  .besinci:nth-child(5) {
    height: 60vh;
  }

  .resim {
    height: 100%;
  }

  .resim img {
    height: 100%;
    object-fit: cover;
  }

  .grid-overlay-text {
    padding: 3rem 1rem;
    width: 100%;
    max-width: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .grid-overlay-text .title {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 0;
  }

  .grid-container .sub-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .grid-overlay-text .description {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
  }
}

/* Rakamlarla otofidan */

.stats-section {
  padding: 80px 0;
  background: #fff;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.stats-title {
  position: relative;
  font-family: var(--wb-font-text-bold);
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-style: italic;
}

.yellow-mark {
  width: 8px;
  height: 40px;
  background: #00acd7;
  display: inline-block;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stats-item {
  margin-bottom: 20px;
}

.yellow-circle {
	width: 38px;
    height: 38px;
    background: #00acd7;
    border-radius: 50%;
    float: left;
    margin-bottom: 10px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
}

.stats-text h3 {
  font-family: var(--wb-font-text-bold);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #000;
  font-weight: bold;
  margin-left: 50px;
  padding-top: 8px;
  line-height: 1.2;
}

.stats-text p {
  font-family: var(--wb-font-text-regular);
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
  clear: left;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 30px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

/* Footer Stilleri */
.footer {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 4rem 0 0;
  width: 100%;
  margin-top: 50px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0rem;
  margin-bottom: 3rem;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 66px;
  width: auto;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--text-light);
  opacity: 0.8;
}

.footer-newsletter {
  flex: 0 1 40%;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.newsletter-input {
  flex: 2;
  padding: 1rem;
  border: none;
  min-width: 300px;
}

.newsletter-btn {
  padding: 1rem 0.5rem;
  color: var(--text-light);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  flex: 0 0 auto;
}

.newsletter-btn:hover {
  background: #0056b3;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 10rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: var(--wb-font-text);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  font-family: var(--wb-font-text);
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
  column-gap: 1rem;
}

.footer-link:hover {
  opacity: 1;
  color: var(--accent-color);
}

.footer-contact {
  margin-top: 1rem;
}

.contact-info {
  margin-bottom: 1rem;
}

.contact-table td {
  padding: 0.25rem 0;
}

.footer-bottom {
  background-color: #333;
  padding: 1rem 0;
  margin-top: 2rem;
  width: 100%;
}

.footer-bottom-text {
  color: var(--text-light);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-brand,
  .footer-newsletter {
    margin-top: 1rem;
    flex: 1 1 100%;
  }

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

  .footer-container {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-brand,
  .footer-newsletter {
    margin-top: 1rem;
    flex: 1 1 100%;
    width: 100%;
  }

  .footer-copyright {
    font-size: 0.65rem;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-input {
    width: 100%;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-col:not(:last-child) {
    display: none;
  }

  .newsletter-btn {
    display: none;
  }

  .footer-bottom {
    margin-top: 1rem;
  } 
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--primary-color);
  padding: 2rem;
  transition: right 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu .main-menu {
  display: block;
  margin-top: 2rem;
}

.mobile-menu .main-menu ul {
  flex-direction: column;
  gap: 0;
}

.mobile-menu .has-submenu {
  position: relative;
}

.mobile-menu .menu-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .menu-trigger::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-light);
  border-bottom: 2px solid var(--text-light);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.mobile-menu .has-submenu.active .menu-trigger::after {
  transform: rotate(-135deg);
}

.mobile-menu .submenu {
  position: static;
  display: none;
  background: none;
  padding: 0;
}

.mobile-menu .submenu-content {
  flex-direction: column;
  padding: 0;
  gap: 0;
}

.mobile-menu .submenu a {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  background: #fff;
  color: #373737;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1.5rem;
  font-family: var(--wb-font-text-bold);
  transition: all 0.3s;
  line-height: 1.25rem;
  letter-spacing: 0.0625rem;
}

.cta-button:hover {
  background: var(--wb-color-theme-highlight);
  color: #fff;
}
    .u-hiddendown {
        display: none;
    }
/* bütün sayfaların anasayfa hariç hero section */
.hero-section-common {
  position: relative;
  width: 100%;
  height: 35vh;
  min-height: 300px;
  overflow: hidden;
}

.hero-section-common .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(0.7);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content-common {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 1200px;
  color: #fff;
}

.hero-content-title {
  font-size: 4rem;
 /* text-shadow: 5px 2px 5px #ede4e4;*/
  text-shadow: 4px 0px #ede4e4;
  color: #00acd7;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-family: var(--wb-font-title);
  line-height: 1.2;
}

/* Tablet için responsive tasarım */
@media screen and (max-width: 1024px) {
  .hero-section-common {
    height: 30vh;
    min-height: 250px;
  }

  .hero-content-title {
    font-size: 3.5rem;
  }
}

/* Mobil için hero-section */
@media screen and (max-width: 768px) {
  .hero-section-common {
    height: 25vh;
    min-height: 200px;
  }

  .hero-content-common {
    width: 95%;
  }

  .hero-content-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .sub-bar {
    display: none;
  }

  .site-header {
    top: 30px;
  }

  body {
    padding-top: calc(var(--header-height) + 30px);
  }

}

.c-button--primary {
    background-color: #00acd7;
    border-color: #00acd7;
    border-radius: .125rem;
    color: #000;
}
.c-button, .c-button:focus, .c-button:hover {
    text-decoration: none;
}
.c-button {
    transition-duration: .4s;
    transition-property: background-color, color, border-color;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: .75rem 1.5rem;
    border: .0625rem solid transparent;
    cursor: pointer;
    font-size: .75rem;
    line-height: 2;
    font-weight: 700;
    letter-spacing: .0625rem;
    text-transform: uppercase;
}

.u-pad-2xsmall {
    padding: .5rem;
}

#model-section {
  max-height: 250px; /* ihtiyaca göre yükseklik ayarla */
  overflow-y: auto;
  padding-right: 10px; /* scrollbar için boşluk bırak */
}

/* Kaydırma çubuğunu daha şık göstermek istersen */
#model-section::-webkit-scrollbar {
  width: 6px;
}

#model-section::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}
.pdf-counter {
  background: #dc3545;
  color: white;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 0.9rem;
  vertical-align: middle;
}


.modal-dialog {
      max-width: 800px;
      margin: 30px auto;
  }



.modal-body {
  position:relative;
  padding:0px;
}
.close {
  position:absolute;
  right:-30px;
  top:0;
  z-index:999;
  font-size:2rem;
  font-weight: normal;
  color:#fff;
  opacity:1;
}
