html,
body {

  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

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

/* header bölümü başlangıç*/
.header-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 8%;
  /* Eskiden 10% idi, sola yaklaştırmak için azaltıldı */
  padding-right: 10%;
  /* border: 1px solid black; */
  width: 100%;
  height: 72px;
  /* Tüm cihazlarda başlangıçta transparan */
  background-color: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.header-container.scrolled {
  background-color: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* 768px ve üstü için scroll ile beyaz */
@media (min-width: 768px) {
  .header-container.scrolled {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  }
}

/* Mobilde (767px ve altı) her zaman beyaz */

.logo {
  width: 90px;
  height: 36px;
  transition: transform 0.3s ease;
  margin-left: 0;
  /* Emin olmak için ekleniyor */
}

.logo:hover {
  transform: scale(1.3);
}

.nav-ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-ul li a {
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  padding-bottom: 5px;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-ul li a:hover {
  color: #ff6600;
  transform: scale(1.6);
}

.nav-ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff6600;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  font-style: bold;
}

.nav-ul li a:hover::after {
  width: 100%;
}

.iconContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.iconContainer a {
  color: #333;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.iconContainer a:hover {
  color: #ff6600;
  transform: scale(1.2);
}

/* header bölümü bitiş*/
/* hero-Section bölümü başlangıç*/
.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45vh;
  padding-top: 72px;
  background-color: rgba(253, 253, 253, 1);
  background-image: linear-gradient(180deg, rgba(253, 253, 253, 1) 0%, rgba(237, 227, 215, 1) 37%, rgba(255, 255, 255, 1) 100%);
  font-family: "Raleway", sans-serif;
  margin-bottom: 0;
}

.hero-section h1 {
  font-size: 2.1rem;
  margin-bottom: 40px;
  text-align: center;
  color: rgb(43, 41, 41);
}

.hero-section p {
  font-size: 1.5rem;
  margin-bottom: 50px;
  margin-left: 15%;
  margin-right: 15%;
  text-align: center;
  color: rgb(66, 64, 64);
}

#private-offer {
  height: 40px;
  width: 300px;
  background-color: #ff6600;
  color: aliceblue;
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  margin: 0 10px;
  font-size: 18px;
}

#how-work-button {
  align-items: center;
  height: 40px;
  width: 300px;
  background-color: transparent;
  color: #000;
  border: 1px solid black;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  margin: 0 10px;
  font-size: 18px;
}

#how-work-button div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-section button:hover {
  border: 1px solid white;
  color: white;
  background-color: #e55a00;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* hero-Section bölümü bitiş*/
/*section-one başlangıç*/
.section-one {
  width: 100%;
  height: 60vh;
  font-family: "Raleway", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  gap: 15px;
  margin-top: 0;
}

.section-one h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: rgb(43, 41, 41);
  text-align: center;
}

.section-one>p {
  margin-bottom: 40px;
  font-size: 1.2rem;
  max-width: 800px;
}

.section-one-features {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.section-one-features-container {
  width: 350px;
  height: 200px;
  border: 1px solid rgb(247, 214, 30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-family: "Raleway", sans-serif;
  background: linear-gradient(to bottom, white, rgb(219, 184, 119));
  transition: box-shadow 0.3s ease;
  border-radius: 20px;
}

.section-one-features-container:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgb(241, 240, 231);
}

.section-one-features-container h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.section-one-features-container p {
  margin: 0;
  font-size: 0.9rem;
}

.section-one-features-icon {
  font-size: 3rem;
  color: black;
  margin-bottom: 15px;
}

/*section-one bitiş*/

/*section-two başlangıç*/
.section-two {
  background-color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-two-image-container {
  width: 400px;
  height: 300px;
  min-width: 400px;
  min-height: 300px;
  /* border: 1px solid black; */
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); */
  border-radius: 10px;
  overflow: hidden;
  /* background-color: #ddd; */
}

.section-two-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-two h2 {
  margin-bottom: 100px;
  font-size: 2.5rem;
  color: rgb(43, 41, 41);
  text-align: center;
  font-family: "Raleway", sans-serif;
}

.section-two-info-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  font-family: "Raleway", sans-serif;
}

.section-two h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: rgb(43, 41, 41);
}

.section-two-info-container p {
  color: #888;
  font-family: "Raleway", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: left;
  font-weight: 400;
  margin: 0 0 10px 0;
}

.section-two-inline-info-container h3 {
  position: relative;
  margin-bottom: 24px;
}

.section-two-inline-info-container h3::after {
  content: "";
  display: block;
  width: 50%;
  height: 5px;
  background: #ff6600;
  border-radius: 3px;
  margin: 12px 0 0 0;
}

.section-two-inline-info-container p span {
  margin-left: 8px;
}

.section-two-inline-info-container a p {
  text-decoration: none;
  color: black;
}

.section-two-inline-info-container a p span {
  text-decoration: none;
  color: #ff6600;
}

.section-two-inline-info-container a {
  text-decoration: none;
}

.section-two-inline-info-container p span i {
  transition: transform 0.2s;
}

.section-two-inline-info-container p:hover span i {
  transform: translateX(3px);
}

/*section-two bitiş */

.ozel-vurgulu {
  position: relative;
  display: inline-block;
}

.ozel-vurgulu::after {
  content: "";
  display: block;
  width: 70%;
  height: 5px;
  background: #ff6600;
  border-radius: 3px;
  margin-top: 6px;
}

/*section-info başlangıç */
.section-info {
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 100px 10%;
  font-family: "Raleway", sans-serif;
}

.section-info-image {
  width: 400px;
  height: 300px;
  min-width: 400px;
  min-height: 300px;
  /* border: 1px solid black; */
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); */
  border-radius: 10px;
  overflow: hidden;
}

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

.section-info-content {
  max-width: 300px;
  color: #444;
}

.section-info-features h3 {
  font-size: 1.6rem;
  color: rgb(43, 41, 41);
  margin-bottom: 20px;
  text-align: left;
}

.section-info-features p {
  color: #888;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: left;
  font-weight: 400;
  margin: 0 0 10px 0;
}

.section-info-features h3::after {
  content: "";
  display: block;
  width: 50%;
  height: 5px;
  background: #ff6600;
  border-radius: 3px;
  margin: 12px 0 0 0;
}

.section-info-features p span {
  margin-left: 8px;
}

.section-info-features a p {
  text-decoration: none;
  color: black;
}

.section-info-features a p span {
  text-decoration: none;
  color: #ff6600;
}

.section-info-features a {
  text-decoration: none;
}

.section-info-features p span i {
  transition: transform 0.2s;
}

.section-info-features p:hover span i {
  transform: translateX(3px);
}

/*section-info bitiş */
/*according section başlangıç*/
.accordion-content {
  font-size: 1rem;
  color: #666;
  padding: 12px 0 16px 0;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(.4, 0, .2, 1), padding 0.3s;
}

.accordion-item.active .accordion-content {
  display: block;
  max-height: 500px;
  padding: 12px 0 16px 0;
}

.custom-accordion-section,
.custom-accordion-section * {
  font-family: "Raleway", sans-serif;
}

.custom-accordion-section {
  min-height: 400px;
  /* Gerekirse değiştirilebilir */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  background: linear-gradient(0deg, rgba(255, 250, 250, 1) 0%, rgba(254, 204, 100, 0.86) 56%, rgba(255, 255, 255, 1) 100%);
}

.custom-accordion-section>h2 {
  text-align: center;
  width: 100%;
  margin-bottom: 32px;
}

.custom-accordion-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 32px 24px;
  max-width: 420px;
  width: 100%;
}

.custom-accordion-item+.custom-accordion-item {
  margin-top: 8px;
}

.custom-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 16px 0;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: color 0.2s;
}

.custom-accordion-item.active .custom-accordion-header span:first-child {
  color: #222;
}

.custom-accordion-icon {
  color: #222;
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
  transition: color 0.2s;
}

.custom-accordion-item.active .custom-accordion-icon {
  color: #222;
}

.custom-accordion-content {
  font-size: 1rem;
  color: #666;
  padding: 0 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.3s cubic-bezier(.4, 0, .2, 1), opacity 0.3s, transform 0.3s, padding 0.3s;
}

.custom-accordion-item.active .custom-accordion-content {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding: 16px 0;
}

.custom-accordion-header:hover span:first-child {
  color: #ff6600;
}

.custom-accordion-header:hover .custom-accordion-icon {
  color: #ff6600;
}

/*according section bitiş*/

/* Kullanıcı dropdown menüsü için stil */
.user-dropdown-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.user-dropdown-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 46px;
  transform: translateX(-50%);
  background: #fff;
  min-width: 140px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 8px 8px;
  z-index: 100;
  padding: 8px 0;
}

.user-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #222;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
  font-family: "Raleway", sans-serif;
}

.user-dropdown-menu a:hover {
  background: none;
  color: #ff6600;
}

.user-dropdown-container:hover .user-dropdown-menu {
  display: block;
}

.user-icon {
  color: #222;
  font-size: 20px;
  padding: 0 8px;
  transition: color 0.2s;
}

.user-icon:hover {
  color: #007bff;
}

.modal-form-group-custom textarea {
  resize: none;
  overflow-y: auto;
  min-height: 32px;
  max-height: 104px;
  /* 4 satır civarı */
  line-height: 1.3;
  padding-bottom: 2px;
  box-sizing: border-box;
}

#offerProductTableBody {
  display: grid;
  grid-auto-rows: minmax(56px, auto);
  max-height: calc(56px * 5);
  /* 5 satır yüksekliği kadar */
  overflow-y: auto;
  /* Scrollbar tasarımı */
  scrollbar-width: thin;
  scrollbar-color: #000000 #f3f3f3;
}

#offerProductTableBody::-webkit-scrollbar {
  width: 3px;
  background: #f3f3f3;
  border-radius: 6px;
}

#offerProductTableBody::-webkit-scrollbar-thumb {
  background: #ff8800;
  border-radius: 6px;
}

#offerProductTableBody::-webkit-scrollbar-thumb:hover {
  background: #e06d00;
}

.product-list-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.5fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid #f0e6d2;
  padding: 0 0 0 0;
  background: #fff;
}

.product-list-row span.desc {
  max-height: 60px;
  overflow: auto;
  display: block;
  white-space: pre-line;
  word-break: break-word;
  background: #ffffff;
  border-radius: 6px;
  padding: 4px 8px;
  /* Scrollbar tasarımı */
  scrollbar-width: thin;
  scrollbar-color: #000000 #f3f3f3;
}

.product-list-row span.desc::-webkit-scrollbar {
  width: 6px;
  background: #f3f3f3;
  border-radius: 6px;
}

.product-list-row span.desc::-webkit-scrollbar-thumb {
  background: #ff8800;
  border-radius: 6px;
}

.product-list-row span.desc::-webkit-scrollbar-thumb:hover {
  background: #e06d00;
}

.product-list-row span:first-child {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  padding-left: 12px;
}

.product-list-row .product-name-text {
  margin-right: 12px;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.product-list-row .edit-product {
  margin-right: 6px;
}

.product-list-row span:nth-child(3) {
  text-align: center;
  justify-self: center;
  min-width: 50px;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-list-row span:nth-child(4) {
  text-align: center;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
}

.product-list-row span:nth-child(4) img {
  display: inline-block;
  margin: 0 2px;
}

#pendingOffersArea {
  width: 100%;
  max-width: 100%;
  box-shadow: 0 4px 24px 0 #0002, 0 1.5px 6px 0 #0001;
  border-radius: 14px;
  background: #fff;
  padding: 32px 24px;
  margin-top: 32px;
  box-sizing: border-box;
}

.custom-accordion-section-container {
  position: relative;
  top: 0;
  display: flex;
  flex-direction: row;
  /* Yanyana */
  align-items: flex-start;
  /* Dikeyde en üstte */
  justify-content: center;
  /* Yatayda ortala */
  padding-top: 0;
  margin-top: 0;
  gap: 90px;
  padding: 50px 10%;
  font-family: "Raleway", sans-serif;
  width: 100%;

  /* border: 1px solid black; */
}

.foto-container {
  width: 500px;
  height: 300px;
  min-width: 400px;
  min-height: 300px;
  /* border: 1px solid black; */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  background-color: #ddd;
  margin-top: 10px;
}

.rakam-content {
  background-color: #f1e9d7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 5px;
  gap: 10px;
}

.rakam-container {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
}

.rakamlarla-container h2 {
  text-align: center;
  font-size: 30px;
}

/* .rakam-content{
  padding: 15px;
  padding-left: 60px;
  padding-right: 60px;
} */
.yazi {
  text-align: center;
  width: 230px;
  font-size: 18px;
}

.rakam-icerik {
  font-size: 40px;
  font-weight: bold;
}

.yazi-content i {
  margin-right: 8px;
  color: #ff8800;
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 40px 0 20px 0;
  font-family: "Raleway", sans-serif;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 20px auto;
  padding: 0 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: bold;
}

.footer-links a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ff8800;
}

.footer-social a {
  color: #fff;
  margin: 0 8px;
  font-size: 22px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #ff8800;
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: #bbb;
  padding-top: 10px;
  border-top: 1px solid #333;
}

.whatsapp-drag-btn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  transition: box-shadow 0.2s;
}

.whatsapp-drag-btn:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.whatsapp-drag-btn i {
  color: #fff;
  font-size: 32px;
}

.whatsapp-fixed-btn {
  position: fixed;
  right: clamp(8px, 1vw, 30px);
  bottom: clamp(8px, 2vw, 32px);
  z-index: 9999;
  width: clamp(40px, 5vw, 56px);
  height: clamp(40px, 5vw, 56px);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  transition: box-shadow 0.2s, transform 0.2s;
  border: none;
  outline: none;
  text-decoration: none;
  user-select: none;
}

.whatsapp-fixed-btn:active {
  cursor: grabbing;
}

.whatsapp-fixed-btn i {
  font-size: clamp(20px, 2vw, 32px);
}

@media (min-width: 1023px) {
  .header-container {
    background-color: transparent;
    box-shadow: none;
  }

  header .header-container.scrolled,
  .header-container.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .header-container {
    padding-left: clamp(16px, 8vw, 104px);
    padding-right: clamp(16px, 10vw, 130px);
    height: clamp(56px, 5vw, 80px);
  }

  .logo {
    width: clamp(40px, 9vw, 90px);
  }

  .logo img {
    max-width: 100%;
    max-height: clamp(16px, 5vw, 36px);
    height: auto;
    display: block;
  }

  .nav-ul {
    gap: clamp(16px, 3vw, 48px);
  }

  .nav-ul li a {
    font-size: clamp(1rem, 1.2vw, 1.3rem);
    padding-bottom: clamp(2px, 0.5vw, 8px);
  }

  .iconContainer {
    gap: clamp(12px, 2vw, 36px);
  }

  .iconContainer a {
    font-size: clamp(1rem, 1.2vw, 1.3rem);
  }

  .hero-section {
    /* height: clamp(400px, 55vw, 800px); */
    padding-top: clamp(56px, 15vw, 120px);
    padding-bottom: clamp(56px, 15vw, 120px);
    min-height: 600px;
  }

  .hero-section h1 {
    font-size: clamp(1.2rem, 3vw, 2.3rem);
  }

  .hero-section p {
    font-size: clamp(1.1rem, 1.8vw, 1.8rem);
  }

  .hero-section button {
    width: clamp(240px, 30vw, 320px);
    height: clamp(40px, 3vw, 56px);
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    padding: clamp(10px, 1vw, 16px) clamp(20px, 2vw, 36px);
    border-radius: clamp(16px, 2vw, 28px);
    white-space: nowrap;
  }

  .section-one {
    padding: clamp(24px, 4vw, 64px);
    gap: clamp(16px, 3vw, 48px);
  }

  .section-one h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin-bottom: clamp(16px, 2vw, 32px);
  }

  .section-one>p {
    font-size: clamp(1.2rem, 1.2vw, 1.5rem);
    margin-bottom: clamp(16px, 2vw, 32px);
    max-width: 60vw;
    margin-left: 5vw;
    margin-right: 5vw;
  }

  .section-one-features {
    gap: clamp(16px, 3vw, 48px);
  }

  .section-one-features-container {
    width: clamp(260px, 24vw, 400px);
    height: clamp(150px, 15vw, 240px);
    padding: clamp(16px, 2vw, 32px);
    border-radius: clamp(16px, 2vw, 28px);
  }

  .section-one-features-icon {
    font-size: clamp(1.5rem, 2.5vw, 3rem);
    margin-bottom: clamp(8px, 1vw, 15px);
  }

  .section-one-features-container h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    margin-bottom: clamp(6px, 0.8vw, 10px);
  }

  .section-one-features-container p {
    font-size: clamp(0.9rem, 1vw, 1rem);
  }

  .section-one {
    min-height: 600px;
  }

  .section-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(40px, 6vw, 100px);
    padding-left: clamp(24px, 6vw, 80px);
    padding-right: clamp(24px, 6vw, 80px);
    padding-top: clamp(40px, 4vw, 60px);
    padding-bottom: clamp(40px, 4vw, 60px);
  }

  .section-info-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(480px, 250vw, 800px);
    height: clamp(220px, 30vw, 320px);
    min-width: 450px;
    min-height: 160px;
    max-width: 800px;
    max-height: 320px;
    border-radius: 10px;
    overflow: hidden;
  }

  .section-info-features h3 {
    font-size: clamp(1.2rem, 2vw, 2rem);
    margin-bottom: clamp(12px, 1.5vw, 24px);
  }

  .section-info-features p {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    margin-bottom: clamp(8px, 1vw, 16px);
  }

  .rakam-content {
    min-width: clamp(160px, 20vw, 260px);
    max-width: clamp(220px, 26vw, 340px);
    padding: clamp(1px, 5vw, 16px);
  }

  .rakam-icerik {
    font-size: clamp(1.3rem, 2vw, 2rem);
  }

  .yazi {
    font-size: clamp(1rem, 1vw, 1.3rem);
    width: clamp(100px, 16vw, 180px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 1022px) and (min-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }

  .navMenuContainer,
  .iconContainer {
    display: none !important;
  }

  .hamburger-menu {
    display: flex !important;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2101;
    position: relative;
  }

  .hamburger-menu .bar {
    display: block;
    width: 32px;
    height: 4px;
    margin: 5px 0;
    background: #000000;
    border-radius: 2px;
    transition: 0.4s;
  }

  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: white;
    z-index: 2000;
    flex-direction: column;
    align-items: center !important;
    justify-content: flex-start;
    padding-top: 60px;
    gap: 12px;
    text-align: left !important;
  }

  .mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left !important;
    width: 250px;
  }

  .mobile-menu nav ul li {
    margin: 8px 0;
    text-align: left !important;
  }

  .mobile-menu nav ul li a,
  .mobile-user-menu a {
    display: block;
    font-size: 1rem;
    color: #222;
    text-decoration: none;
    padding: 8px 0;
    text-align: left !important;
    background: none;
    border: none;
  }

  .mobile-user-menu {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start !important;
    width: 250px;
  }

  .mobile-user-menu a {
    text-align: left !important;
    align-self: flex-start !important;
    width: 100%;
  }

  h1 {
    font-size: clamp(1.1rem, 2.5vw, 2rem);
  }

  h2 {
    font-size: clamp(1rem, 2vw, 1.5rem);
  }

  p {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    margin: clamp(8px, 2vw, 16px) 0 clamp(12px, 2vw, 24px);
  }

  button {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    padding: clamp(8px, 1vw, 14px) clamp(18px, 3vw, 32px);
    border-radius: clamp(10px, 2vw, 18px);
  }

  .hero-section,
  .section-one,
  .section-info,
  .section-two {
    padding-left: clamp(8px, 4vw, 32px);
    padding-right: clamp(8px, 4vw, 32px);
    padding-top: clamp(16px, 4vw, 40px);
    padding-bottom: clamp(16px, 4vw, 40px);
  }

  .hero-section {
    padding-top: clamp(24px, 6vw, 48px);
    padding-bottom: clamp(24px, 6vw, 48px);
    gap: clamp(12px, 3vw, 32px);
    min-height: 500px;
  }

  .hero-section h1 {
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    margin-bottom: clamp(12px, 3vw, 32px);
  }

  .hero-section p {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    margin-bottom: clamp(12px, 3vw, 32px);
    margin-left: clamp(2vw, 8vw, 12vw);
    margin-right: clamp(2vw, 8vw, 12vw);
  }

  .hero-section button {
    font-size: clamp(1rem, 2vw, 1.2rem);
    padding: clamp(10px, 1.5vw, 18px) clamp(24px, 4vw, 48px);
    border-radius: clamp(12px, 2vw, 24px);
    margin: 0 clamp(6px, 1vw, 16px);
    min-width: 120px;
    min-height: 36px;
    white-space: nowrap;
    width: auto;
    height: auto;
  }

  .section-info-image,
  .section-two-image-container {
    width: clamp(160px, 30vw, 320px);
    height: clamp(100px, 18vw, 200px);
    min-width: 120px;
    min-height: 80px;
    max-width: 320px;
    max-height: 200px;
  }

  .header-container {
    height: clamp(40px, 8vw, 56px);
    min-height: unset;
    max-height: 56px;
  }

  .hamburger-menu i {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .mobile-menu nav ul li a,
  .mobile-user-menu a {
    font-family: 'Montserrat', 'Poppins', 'Inter', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .mobile-menu-close {
    position: absolute;
    top: 8px;
    right: 24px;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    background: none;
    border: none;
    color: #020202;
    cursor: pointer;
    z-index: 2100;
  }

  .mobile-menu {
    background: linear-gradient(0deg, rgba(255, 250, 250, 1) 0%, rgba(254, 204, 100, 0.86) 55%, rgba(255, 255, 255, 1) 100%);
  }

  .section-one {
    padding: clamp(16px, 4vw, 40px);
    gap: clamp(10px, 2vw, 24px);
    min-height: 400px;
  }

  .section-one h2 {
    font-size: clamp(1.1rem, 3vw, 1.7rem);
    margin-bottom: clamp(10px, 2vw, 24px);
  }

  .section-one>p {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    margin-bottom: clamp(10px, 2vw, 24px);
    max-width: 80vw;
    margin-left: clamp(2vw, 6vw, 10vw);
    margin-right: clamp(2vw, 6vw, 10vw);
  }

  .section-one-features {
    gap: clamp(10px, 2vw, 24px);
  }

  .section-one-features-container {
    width: clamp(120px, 24vw, 220px);
    height: clamp(80px, 12vw, 140px);
    padding: clamp(8px, 1.5vw, 18px);
    border-radius: clamp(8px, 1vw, 16px);
  }

  .section-one-features-icon {
    font-size: clamp(1.2rem, 2vw, 2rem);
    margin-bottom: clamp(6px, 1vw, 12px);
  }

  .section-one-features-container h3 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: clamp(4px, 0.8vw, 8px);
  }

  .section-one-features-container p {
    font-size: clamp(0.85rem, 1vw, 1rem);
  }

  .section-one-features-container {
    width: clamp(180px, 32vw, 320px);
    height: clamp(140px, 18vw, 220px);
    padding: clamp(12px, 2vw, 28px);
    border-radius: clamp(10px, 1.5vw, 20px);
  }

  .section-one-features {
    gap: clamp(16px, 3vw, 32px);
  }

  .section-info {
    gap: clamp(16px, 4vw, 40px);
    padding: clamp(16px, 4vw, 40px) clamp(8px, 4vw, 32px);
    min-height: 320px;
  }

  .section-info-image {
    width: clamp(180px, 32vw, 340px);
    height: clamp(120px, 16vw, 200px);
    min-width: 120px;
    min-height: 80px;
    max-width: 340px;
    max-height: 200px;
    border-radius: clamp(10px, 1.5vw, 20px);
  }

  .section-info-features h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: clamp(8px, 1vw, 16px);
  }

  .section-info-features p {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    margin-bottom: clamp(6px, 1vw, 12px);
  }

  .rakam-content {
    padding: clamp(6px, 1vw, 16px);
    gap: clamp(3px, 0.5vw, 16px);
    border-radius: clamp(8px, 1.5vw, 16px);
    min-width: clamp(140px, 12vw, 160px);
    max-width: clamp(140px, 16vw, 220px);
  }

  .rakam-content i {
    font-size: clamp(0.9rem, 1vw, 1.1rem);
  }

  /* .rakam-content .rakam-icerik {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
  } */
  .rakam-content .yazi-content {
    font-size: clamp(0.65rem, 0.3vw, 1rem);

  }

  .rakam-content i {
    font-size: clamp(0.9rem, 1vw, 1.1rem);
  }

  .custom-accordion-section-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: clamp(16px, 4vw, 40px);
  }

  .custom-accordion-box {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .foto-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .whatsapp-fixed-btn {
    position: fixed;
    right: clamp(12px, 2vw, 20px);
    bottom: clamp(12px, 3vw, 32px);
    width: clamp(40px, 7vw, 56px);
    height: clamp(40px, 7vw, 56px);
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    border: none;
    outline: none;
    text-decoration: none;
    user-select: none;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .whatsapp-fixed-btn i {
    font-size: clamp(20px, 3vw, 32px);
    color: #fff;
    pointer-events: none;
  }

  .section-info-image {
    width: clamp(600px, 300vw, 2000px) !important;
    height: clamp(200px, 50vw, 1000px);
    min-width: 180px;
    min-height: 120px;
    max-width: 700px;
    max-height: 250px;
    border-radius: clamp(10px, 1.5vw, 20px);
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #888; */
  }

  .section-info-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    /* display: block; */
  }

  .section-two-image-container {
    width: clamp(320px, 40vw, 600px) !important;
    height: clamp(180px, 28vw, 320px) !important;
    min-width: 180px;
    min-height: 120px;
    max-width: 700px;
    max-height: 320px;
    border-radius: clamp(10px, 1.5vw, 20px);
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-two-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }

  .section-two-image-container {
    width: clamp(400px, 60vw, 900px) !important;
    height: clamp(220px, 38vw, 480px) !important;
    min-width: 220px;
    min-height: 160px;
    max-width: 900px;
    max-height: 480px;
    border-radius: clamp(10px, 1.5vw, 20px);
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-two-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }


}

@media (max-width: 767px) {
  .header-container {
    height: clamp(40px, 10vw, 56px);
    padding-left: clamp(8px, 4vw, 24px);
    padding-right: clamp(8px, 4vw, 24px);
    background: transparent;
  }

  header .header-container.scrolled,
  .header-container.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .logo {
    width: clamp(60px, 22vw, 90px);
    height: clamp(20px, 7vw, 36px);
    min-width: 40px;
    min-height: 20px;
    max-width: 100px;
    max-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo img {
    width: 100%;
    height: auto;
    max-height: clamp(20px, 7vw, 36px);
    object-fit: contain;
    display: block;
  }

  .navMenuContainer,
  .iconContainer {
    display: none !important;
  }

  .hamburger-menu {
    display: flex !important;
    width: clamp(32px, 10vw, 40px);
    height: clamp(32px, 10vw, 40px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2101;
    position: relative;
    margin-left: auto;
  }

  .hamburger-menu .bar {
    display: block;
    width: clamp(20px, 8vw, 32px);
    height: clamp(3px, 1vw, 4px);
    margin: clamp(3px, 1vw, 5px) 0;
    background: #000000;
    border-radius: 2px;
    transition: 0.4s;
  }

  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 120vh;
    background: #fff;
    z-index: 2000;
    flex-direction: column;
    align-items: center !important;
    justify-content: flex-start;    
    padding-top: clamp(40px, 10vw, 60px);
    gap: clamp(8px, 2vw, 16px);
    background: linear-gradient(0deg, rgba(255, 250, 250, 1) 0%, rgba(254, 204, 100, 0.86) 55%, rgba(255, 255, 255, 1) 100%);
    text-align: left !important;
  }

  .mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left !important;
    width: 250px;
  }

  .mobile-menu nav ul li {
    margin: clamp(6px, 2vw, 12px) 0;
    text-align: left !important;
  }

  .mobile-menu nav ul li a,
  .mobile-user-menu a {
    display: block;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: #222;
    text-decoration: none;
    padding: clamp(8px, 2vw, 14px) 0;
    text-align: left !important;
    background: none;
    border: none;
    font-family: 'Montserrat', 'Poppins', 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .mobile-user-menu {
    margin-top: clamp(8px, 2vw, 16px);
    display: flex;
    flex-direction: column;
    gap: clamp(4px, 1vw, 8px);
    align-items: center !important;
    width: 250px;
  }

  .mobile-user-menu a {
    text-align: left !important;
    align-self: flex-start !important;
    width: 100%;
  }

  .mobile-menu-close {
    position: absolute;
    top: clamp(8px, 2vw, 16px);
    right: clamp(16px, 4vw, 32px);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    background: none;
    border: none;
    color: #020202;
    cursor: pointer;
    z-index: 2100;
  }

  .hero-section {
    min-height: 500px;
    padding-top: clamp(32px, 12vw, 80px);
    padding-right: clamp(8px, 5vw, 20px);
    padding-bottom: clamp(12px, 6vw, 32px);
    padding-left: clamp(8px, 5vw, 20px);
  }

  .hero-section h1 {
    font-size: clamp(1.1rem, 6vw, 1.6rem);
    margin-bottom: clamp(14px, 5vw, 28px);
  }

  .hero-section p {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    margin-bottom: clamp(14px, 5vw, 28px);
    margin-left: clamp(2vw, 8vw, 12vw);
    margin-right: clamp(2vw, 8vw, 12vw);
  }

  .hero-section .hero-button-container {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 3vw, 18px);
    align-items: center;
    width: 100%;
  }

  .hero-section button {
    width: clamp(120px, 70vw, 220px);
    min-width: 100px;
    height: clamp(32px, 7vw, 40px);
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    border-radius: clamp(10px, 4vw, 18px);
    margin: 0 0 clamp(10px, 3vw, 18px) 0;
    display: block;
  }

  .section-one {
    padding: clamp(12px, 6vw, 32px) clamp(8px, 5vw, 20px);
    gap: clamp(10px, 3vw, 24px);
    min-height: 900px;
  }

  .section-one h2 {
    font-size: clamp(1.1rem, 6vw, 1.5rem);
    margin-bottom: clamp(10px, 4vw, 20px);
  }

  .section-one>p {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    margin-bottom: clamp(10px, 4vw, 20px);
    max-width: 90vw;
    margin-left: clamp(2vw, 6vw, 10vw);
    margin-right: clamp(2vw, 6vw, 10vw);
  }

  .section-one-features {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 3vw, 20px);
    align-items: center;
    width: 100%;
  }

  .section-one-features-container {
    width: clamp(260px, 99vw, 520px);
    min-width: 220px;
    max-width: 99vw;
    min-height: 190px;
    padding: clamp(18px, 7vw, 36px);
    border-radius: clamp(12px, 3vw, 24px);
    margin: 0 auto;
    word-break: break-word;
    box-sizing: border-box;
  }

  .section-one-features-icon {
    font-size: clamp(1.2rem, 6vw, 2rem);
    margin-bottom: clamp(6px, 2vw, 12px);
  }

  .section-one-features-container h3 {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: clamp(4px, 2vw, 8px);
  }

  .section-one-features-container p {
    font-size: clamp(0.85rem, 3vw, 1rem);
  }

  .section-one-features-container {
    width: clamp(180px, 32vw, 320px);
    height: clamp(140px, 18vw, 220px);
    padding: clamp(12px, 2vw, 28px);
    border-radius: clamp(10px, 1.5vw, 20px);
  }

  .section-one-features {
    gap: clamp(16px, 3vw, 32px);
  }

  .section-info {
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    gap: clamp(14px, 4vw, 32px);
    padding: clamp(12px, 5vw, 32px) clamp(8px, 4vw, 20px);
  }

  .section-info-features h3 {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    margin-bottom: clamp(8px, 2vw, 16px);
    text-align: center;
  }

  .section-info-features p {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    margin-bottom: clamp(8px, 2vw, 16px);
    text-align: center;
  }

  .section-info-image {
    width: clamp(220px, 98vw, 420px);
    max-width: 99vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-info-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 260px;
    display: block;
    border-radius: clamp(8px, 2vw, 16px);
  }

  .rakam-content {
    padding: clamp(6px, 1vw, 16px);
    gap: clamp(3px, 0.5vw, 16px);
    border-radius: clamp(8px, 1.5vw, 16px);
    min-width: clamp(140px, 12vw, 160px);
    max-width: clamp(140px, 16vw, 220px);
  }

  .rakam-content i {
    font-size: clamp(0.9rem, 1vw, 1.1rem);
  }

  /* .rakam-content .rakam-icerik {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
  } */
  .rakam-content .yazi-content {
    font-size: clamp(0.65rem, 0.3vw, 1rem);

  }

  .rakam-content i {
    font-size: clamp(0.9rem, 1vw, 1.1rem);
  }

  .custom-accordion-section-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: clamp(16px, 4vw, 40px);
  }

  .custom-accordion-box {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .foto-container {
    width: clamp(200px, 120vw, 320px);
    height: clamp(125px, 50vw, 180px);
    min-width: 120px;
    min-height: 80px;
    max-width: 96vw;
    max-height: 200px;
    padding: clamp(6px, 2vw, 14px);
    border-radius: clamp(8px, 2vw, 16px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: none;
  }

  .whatsapp-fixed-btn {
    position: fixed;
    right: clamp(12px, 2vw, 20px);
    bottom: clamp(12px, 3vw, 32px);
    width: clamp(40px, 7vw, 56px);
    height: clamp(40px, 7vw, 56px);
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    border: none;
    outline: none;
    text-decoration: none;
    user-select: none;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .whatsapp-fixed-btn i {
    font-size: clamp(20px, 3vw, 32px);
    color: #fff;
    pointer-events: none;
  }


  .section-two-image-container {
    width: clamp(320px, 40vw, 600px) !important;
    height: clamp(180px, 28vw, 320px) !important;
    min-width: 180px;
    min-height: 120px;
    max-width: 700px;
    max-height: 320px;
    border-radius: clamp(10px, 1.5vw, 20px);
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-two-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }

  .section-two-image-container {
    width: clamp(400px, 60vw, 900px) !important;
    height: clamp(220px, 38vw, 480px) !important;
    min-width: 220px;
    min-height: 160px;
    max-width: 900px;
    max-height: 480px;
    border-radius: clamp(10px, 1.5vw, 20px);
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-two-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }

  /* .header-container{
    background-color: white ;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  } */
  .section-two {
    padding: clamp(12px, 6vw, 32px) clamp(8px, 5vw, 20px);
    gap: clamp(10px, 3vw, 24px);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-two h2 {
    font-size: clamp(1.1rem, 6vw, 1.5rem);
    margin-bottom: clamp(10px, 4vw, 20px);
    text-align: center;
  }

  .section-two-info-container {
    flex-direction: column-reverse;
    gap: clamp(10px, 3vw, 20px);
    align-items: center;
    width: 100%;
    display: flex;
  }

  .section-two-image-container {
    width: clamp(160px, 90vw, 340px);
    height: clamp(100px, 40vw, 180px);
    min-width: 120px;
    min-height: 80px;
    max-width: 98vw;
    max-height: 220px;
    margin: 0 auto clamp(10px, 3vw, 20px) auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-two-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: clamp(8px, 2vw, 16px);
  }

  .section-two-inline-info-container h3 {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: clamp(4px, 2vw, 8px);
    text-align: center;
  }

  .section-two-inline-info-container p {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    margin-bottom: clamp(8px, 2vw, 16px);
    text-align: center;
  }

  .section-two-inline-info-container a p {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }

  .rakamlarla-container {
    padding: clamp(10px, 5vw, 32px) clamp(6px, 4vw, 18px);
    margin: clamp(10px, 4vw, 24px) 0;
  }

  .rakamlarla-container h2 {
    font-size: clamp(1.1rem, 6vw, 1.5rem);
    margin-bottom: clamp(10px, 4vw, 20px);
  }

  .rakam-container {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 4vw, 28px);
    align-items: center;
    width: 100%;
  }

  .rakam-content {
    width: 100%;
    max-width: 99vw;
    min-width: 180px;
    padding: clamp(8px, 3vw, 18px);
    border-radius: clamp(10px, 2vw, 20px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 2vw, 14px);
    box-sizing: border-box;
  }

  .rakam-icerik {
    font-size: clamp(1.1rem, 6vw, 2rem);
  }

  .yazi {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    width: 100%;
    text-align: center;
  }

  .whatsapp-fixed-btn {
    right: 12px !important;
    left: auto !important;
    bottom: 12px !important;
    max-width: 44px;
    max-height: 44px;
    min-width: 32px;
    min-height: 32px;
    width: 40px !important;
    height: 40px !important;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 9999;
    transform: none !important;
  }

  .whatsapp-fixed-btn i {
    font-size: 18px !important;
  }
}

@media (min-width: 1023px) {
  .whatsapp-fixed-btn {
    background: #25d366 !important;
    border: 2.5px solid #fff;
  }

  .whatsapp-fixed-btn i {
    color: #fff !important;
  }
}

@media (max-width: 767px) {
  .footer-container {
    flex-direction: column;
    gap: clamp(18px, 6vw, 36px);
    align-items: center;
    padding-top: clamp(18px, 6vw, 36px);
    padding-bottom: clamp(18px, 6vw, 36px);
  }

  .footer-logo {
    margin-bottom: clamp(10px, 4vw, 20px);
  }

  .footer-links {
    margin-bottom: clamp(10px, 4vw, 20px);
    gap: clamp(12px, 5vw, 32px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social {
    gap: clamp(12px, 5vw, 32px);
    display: flex;
    justify-content: center;
  }

}

@media (max-width: 767px) {
  .section-info.info-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (max-width: 767px) {

  .section-two h3,
  .section-info-features h3 {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    margin-bottom: clamp(8px, 2vw, 16px);
    text-align: center;
  }

  .section-two h3::after,
  .section-info-features h3::after {
    content: "";
    display: block;
    width: clamp(48px, 40%, 90px);
    height: clamp(4px, 1.2vw, 7px);
    background: #ff6600;
    border-radius: 3px;
    margin: 12px auto 0 auto;
  }

  .section-two p,
  .section-info-features p {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    margin-bottom: clamp(8px, 2vw, 16px);
    text-align: center;
  }
}

@media (max-width: 767px) {

  .section-info .section-info-image img,
  .section-info.info-reverse .section-info-image img {
    width: clamp(120px, 70vw, 200px);
    max-width: 85vw;
    height: auto;
    max-height: 400px;
    display: block;
    margin: 0 auto;
    border-radius: clamp(8px, 2vw, 16px);
  }
}

.button-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
}

/* Desktop Services Dropdown Menu */
.navMenuContainer .services-dropdown-container {
  position: relative;
  display: inline-block;
}

.navMenuContainer .services-dropdown-menu {
  display: none;
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  padding: 8px 0;
  margin-top: 0;
}

.navMenuContainer .services-dropdown-menu a {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px !important;
  transition: color 0.3s ease;
  transform: none !important;
  font-weight: normal !important;
}

.navMenuContainer .services-dropdown-menu a:hover {
  color: #ff6b35;
  transform: none !important;
  font-size: 14px !important;
  font-weight: normal !important;
  text-decoration: none !important;
  position: relative;
}

.navMenuContainer .services-dropdown-menu a::after {
  display: none !important;
}

.navMenuContainer .services-dropdown-menu a:first-child {
  border-radius: 8px 8px 0 0;
}

.navMenuContainer .services-dropdown-menu a:last-child {
  border-radius: 0 0 8px 8px;
}

/* Mobile responsive for services dropdown */
@media (max-width: 767px) {
  .navMenuContainer .services-dropdown-container {
    position: static;
  }
  
  .navMenuContainer .services-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    margin-top: 0;
  }
  
  .navMenuContainer .services-dropdown-container:hover .services-dropdown-menu {
    display: none;
  }
  
  .navMenuContainer .services-dropdown-menu a {
    padding: 8px 20px;
    color: #666;
    font-size: 14px;
  }
  
  .navMenuContainer .services-dropdown-menu a:hover {
    background-color: transparent;
    color: #ff6b35;
  }
}

/* Mobil dropdown menü stilleri - Sadece mobil menüde */
.mobile-menu .mobile-services-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-menu .mobile-services-toggle i {
  transition: transform 0.3s ease;
}

.mobile-menu .mobile-services-toggle.active i {
  transform: rotate(180deg);
}

.mobile-menu .mobile-services-dropdown {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border-radius: 8px;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  visibility: hidden;
}

.mobile-menu .mobile-services-dropdown.active {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu .mobile-services-dropdown li {
  margin: 0;
}

.mobile-menu .mobile-services-dropdown a {
  display: block;
  padding: 12px 20px 12px 40px;
  color: #666;
  text-decoration: none;
  font-size: 16px;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: left;
}

.mobile-menu .mobile-services-dropdown a:hover {
  color: #ff6b35;
  border-left-color: #ff6b35;
  background-color: transparent;
}