:root {
  --black-color: black;
  --border: 0.1rem solid rgb(255, 255, 255, 0.4);
  --arckytec-font: "Inter", sans-serif;
  --arckytec-font-two: "Syne", sans-serif;
  --arckytec-white: #ffffff;
  --arckytec-base: #b98e75;
  --arckytec-black: #212429;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s ease;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}

/*! header start */
.header {
  background-color: #212429;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1%;
  z-index: 100;
  position: sticky;
  top: 0;
}

.header .logo {
  margin-right: 1rem;
  margin-left: 3rem;
}

.header .logo img {
  height: 5rem;
  margin-right: 9rem;
}

.header .navbar {
  display: flex;
  justify-content: flex-start;
  flex: 1;
}

.header .navbar > a {
  margin: 2rem;
  font-size: 2rem;
  color: #ffffff;
  position: relative;
  text-decoration: none;
}

.header .navbar .active,
.header .navbar > a:hover {
  color: #b98e75;
}

.header .navbar .active::after,
.header .navbar > a:hover::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #b98e75;
  border-radius: 5px;
}

.desktop-share,
.mobile-share {
  align-items: center;
  gap: 1rem;
  color: #ffffff;
}

.mobile-share a.bi {
  font-size: 2.5rem;
  color: #25d366;
}

.desktop-share {
  display: flex;
  margin-left: auto;
  margin-right: 5rem;
}

.desktop-share .text-box p {
  height: 2rem;
  font-size: 1.9rem;
  margin-left: 0.5rem;
  text-transform: capitalize;
}

.desktop-share .text-box a {
  height: 4rem;
  font-size: 2rem;
  color: #ffffff;
  margin-left: 0.1rem;
  text-transform: capitalize;
  text-decoration: none;
}

.desktop-share a.bi {
  font-size: 5rem;
  color: #25d366;
}

.mobile-share {
  display: none;
}

#menu-btn {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

#menu-btn i {
  color: #fff;
  font-size: 30px;
}

@media (max-width: 767px) {
  #menu-btn {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #222;
    flex-direction: column;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 1000;
    display: flex;
    overflow-y: auto;
  }

  .navbar.active {
    left: 0;
  }

  .navbar > a {
    display: block;
    padding: 15px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #333;
  }

  .navbar > a:hover {
    background-color: #444;
  }

  .desktop-share {
    display: none;
  }

  .mobile-share {
    display: flex;
    flex-direction: column;
    padding: 15px;
    margin-top: 2rem;
    border-top: 1px solid #333;
    align-items: flex-start;
  }

  .mobile-share .whatsapp {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .mobile-share .whatsapp a.bi-whatsapp {
    font-size: 3.5rem;
    color: #25d366;
  }

  .mobile-share .whatsapp .number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
  }

  .mobile-share .instagram {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .mobile-share .instagram a.bi-instagram {
    font-size: 3rem;
    color: #e1306c;
  }

  .mobile-share .instagram a.bi-facebook {
    font-size: 3rem;
    color: #1877f2;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  #menu-btn {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #222;
    flex-direction: column;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 1000;
    display: flex;
  }

  .navbar.active {
    left: 0;
  }

  .navbar > a {
    display: block;
    padding: 15px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #333;
  }

  .navbar > a:hover {
    background-color: #444;
  }

  .desktop-share {
    display: none;
  }

  .mobile-share {
    display: flex;
    flex-direction: column;
    padding: 15px;
    margin-top: 2rem;
    border-top: 1px solid #333;
    align-items: flex-start;
  }

  .mobile-share .whatsapp {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .mobile-share .whatsapp a.bi-whatsapp {
    font-size: 3.5rem;
    color: #25d366;
  }

  .mobile-share .whatsapp .number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
  }

  .mobile-share .instagram {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .mobile-share .instagram a.bi-instagram {
    font-size: 3rem;
    color: #e1306c;
  }

  .mobile-share .instagram a.bi-facebook {
    font-size: 3rem;
    color: #1877f2;
  }
}

@media (max-width: 1200px) and (orientation: landscape) {
  #menu-btn {
    display: block;
    font-size: 20px;
    padding: 6px;
    margin-right: 1rem;
  }

  #menu-btn i {
    font-size: 24px;
  }

  .header .menu {
    margin-left: auto;
    margin-right: 1rem;
  }

  .navbar {
    padding-top: 1px;
    height: 100%;
    overflow-y: auto;
    align-items: flex-start;
  }

  .navbar > a {
    padding: 1px 15px;
    font-size: 1.5rem;
    width: 100%;
  }

  .mobile-share {
    display: flex;
    flex-direction: column;
    padding: 8px 15px;
    margin-top: 1rem;
    border-top: 1px solid #333;
    align-items: flex-start;
    width: 100%;
  }

  .mobile-share .whatsapp {
    margin-bottom: 0.5rem;
    gap: 0.5rem;
  }

  .mobile-share .whatsapp a.bi-whatsapp {
    font-size: 2.5rem;
  }

  .mobile-share .whatsapp .number {
    font-size: 1.4rem;
  }

  .mobile-share .instagram {
    gap: 1.5rem;
  }

  .mobile-share .instagram a.bi-instagram,
  .mobile-share .instagram a.bi-facebook {
    font-size: 2.2rem;
  }
}
/*! header end */

/*! home start */
.home-slider {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  width: 100%;
  position: relative;
  height: 500px;
}

.slides {
  display: flex;
  width: 300%;
  transition: transform 0.5s ease;
}

.slides img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

#prev-btn,
#next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 2rem;
  z-index: 10;
}

#prev-btn {
  left: 10px;
}
#next-btn {
  right: 10px;
}

@media (max-width: 767px) {
  .home-slider {
    width: 100%;
  }

  .slider-wrapper {
    height: 200px;
  }

  .slides {
    width: 300%;
    height: 100%;
  }

  .slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  #prev-btn,
  #next-btn {
    font-size: 1.5rem;
    padding: 0.5rem;
  }

  #prev-btn {
    left: 5px;
  }

  #next-btn {
    right: 5px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .home-slider {
    width: 100%;
  }

  .slider-wrapper {
    height: 450px;
  }

  .slides {
    width: 350%;
    height: 100%;
  }

  .slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  #prev-btn,
  #next-btn {
    font-size: 1.5rem;
    padding: 0.5rem;
  }

  #prev-btn {
    left: 5px;
  }

  #next-btn {
    right: 5px;
  }
}

@media (max-width: 1200px) and (orientation: landscape) {
  .slider-wrapper {
    height: 350px;
  }
}
/*! home end */

/*! about start */
.about {
  background-color: #2a2c2e;
  margin-top: 5.7rem;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.about .desktop-halter {
  font-size: 3rem;
  color: #b98e75;
  text-align: center;
  margin-bottom: 1rem;
  display: block;
}

.about .row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
}

.about .row .image {
  flex: 1 1 45rem;
  margin-top: 5rem;
}

.about .row img {
  width: 100%;
}

.about .row .content {
  flex: 1 1 45rem;
  margin-top: 2rem;
}

.about .row .content h3 {
  font-size: 5rem;
  color: #ffffff;
  text-align: center;
}

.about .row .content h4 {
  font-size: 1.5rem;
  color: #babbbd;
  margin-left: 9rem;
  margin-top: 1.3rem;
}

.about .row .content .icon-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 9rem;
  margin-bottom: 1rem;
  margin-top: 1.7rem;
}

.about .row .content .icon-text i {
  font-size: 1.7rem;
  color: #b98e75;
}

.about .row .content .icon-text p {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0;
}

.mobile-halter {
  display: none;
}

@media (max-width: 767px) {
  .about {
    margin-top: 2.2rem;
    width: 100%;
  }

  .about .mobile-halter {
    display: block;
    margin: 2rem auto 2rem auto;
    margin-top: -25rem;
    font-size: 2rem;
    color: #b98e75;
    text-align: center;
  }

  .about .row {
    flex-direction: column;
    width: 100%;
  }

  .about .row .image {
    flex: 1 1 45rem;
    text-align: center;
    margin-top: 5rem;
  }

  .about .row img {
    width: 90%;
    height: auto;
  }

  .about .row .content {
    flex: 1 1 23rem;
    margin-top: 2rem;
  }

  .about .row .content h3 {
    font-size: 3rem;
    color: #ffffff;
    text-align: center;
  }

  .about .row .content h4 {
    font-size: 1rem;
    color: #babbbd;
    margin-left: 2rem;
    margin-top: 1.3rem;
  }

  .about .row .content .icon-text {
    gap: 1rem;
    margin-left: 2rem;
    margin-bottom: 1rem;
    margin-top: 2.3rem;
  }

  .about .row .content .icon-text i {
    font-size: 1.5rem;
  }

  .about .row .content .icon-text p {
    font-size: 1.1rem;
  }

  .about .desktop-halter {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .about {
    margin-top: 2.2rem;
    width: 100%;
  }

  .about .mobile-halter {
    display: block;
    margin: 2rem auto 2rem auto;
    margin-top: -7rem;
    font-size: 3.5rem;
    color: #b98e75;
    text-align: center;
  }

  .about .row {
    flex-direction: column;
    width: 100%;
  }

  .about .row .image {
    flex: 1 1 55rem;
    text-align: center;
    margin-top: 5rem;
  }

  .about .row img {
    width: 90%;
    height: auto;
  }

  .about .row .content {
    flex: 1 1 55rem;
    margin-top: 2rem;
  }

  .about .row .content h3 {
    font-size: 6rem;
    color: #ffffff;
    text-align: center;
  }

  .about .row .content h4 {
    font-size: 2rem;
    color: #babbbd;
    margin-left: 2rem;
    margin-top: 1.3rem;
  }

  .about .row .content .icon-text {
    gap: 1rem;
    margin-left: 2rem;
    margin-bottom: 1rem;
    margin-top: 2.3rem;
  }

  .about .row .content .icon-text i {
    font-size: 2rem;
  }

  .about .row .content .icon-text p {
    font-size: 2rem;
  }

  .about .desktop-halter {
    display: none;
  }
}

@media (max-width: 1200px) and (orientation: landscape) {
  .about {
    margin-top: 2.2rem;
    width: 100%;
  }

  .about .mobile-halter {
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 1.3rem;
    font-size: 3rem;
  }

  .about .row .image {
    flex: 1 1 350px;
    margin-top: 0;
    padding: 1rem;
  }

  .about .row .content {
    flex: 1 1 400px;
    margin-top: 0;
    padding: 1rem;
  }

  .about .row .content h3 {
    font-size: 5rem;
  }

  .about .row .content h4 {
    font-size: 1.5rem;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .about .row .content .icon-text {
    margin-left: 0;
    margin-right: 0;
    flex-wrap: wrap;
  }

  .about .row .content .icon-text i {
    font-size: 2rem;
  }

  .about .row .content .icon-text p {
    font-size: 1.3rem;
  }

  .about .desktop-halter {
    display: none;
  }
}
/*! about end */

/*! products start */
.products {
  position: relative;
  display: block;
  padding: 70px 0 50px;
  z-index: 1;
}

.products .halter h1 {
  font-size: 3.5rem;
  text-align: center;
  color: #b98e75;
}

.products .halter h2 {
  font-size: 10rem;
  text-align: center;
  color: #212429;
  margin-bottom: 4rem;
}

.product-item {
  flex: 1 1 250px;
  max-width: 300px;
  height: 100%;
  text-align: center;
}

.product-card {
  background: #d4d3d3;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card h3 {
  color: #25d366;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-card p {
  color: #555;
  font-size: 14px;
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.button-style-2 {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-align: center;
}

.button-style-2:hover {
  background-color: #1da851;
}

@media (max-width: 767px) {
  .products {
    padding: 50px 0 50px;
    overflow-x: hidden;
  }

  .products .halter h1 {
    font-size: 2rem;
  }

  .products .halter h2 {
    font-size: 4rem;
  }

  .product-card img {
    height: 200px;
  }

  .product-card p {
    color: #555;
    font-size: 11px;
  }
}

@media (max-width: 1200px) and (orientation: landscape) {
  .products {
    padding: 5rem 0 5rem;
  }

  .products .halter h1 {
    font-size: 2.5rem;
  }

  .products .halter h2 {
    font-size: 6rem;
    margin-bottom: 2rem;
  }

  .product-card img {
    height: 100%;
  }
}
/*! products end */

/*! services start */
.services {
  background-color: #2a2c2e;
  margin-top: 3rem;
}
.services .desktop-halter {
  font-size: 3rem;
  color: #b98e75;
  margin-left: 25rem;
  padding-top: 10rem;
  display: block;
}

.services .row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  flex-direction: row-reverse;
}

.services .row .image {
  flex: 1 1 45rem;
}

.services .row img {
  width: 100%;
}

.services .row .content {
  flex: 1 1 45rem;
  margin-top: 1rem;
}

.services .row .content .icon-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 9rem;
  margin-bottom: 1rem;
  margin-top: 1.7rem;
}

.services .row .content .icon-text i {
  font-size: 1.5rem;
  color: #b98e75;
}

.services .row .content .icon-text p {
  font-size: 1.7rem;
  color: #ffffff;
  margin: 0;
}

.mobile-halter {
  display: none;
}

@media (max-width: 767px) {
  .services {
    margin-top: 2.2rem;
    width: 100%;
  }

  .services .mobile-halter {
    display: block;
    margin: 2rem auto 3rem auto;
    margin-top: -25rem;
    font-size: 2.5rem;
    color: #b98e75;
    text-align: center;
  }

  .services .row {
    flex-direction: column;
    width: 100%;
  }

  .services .row .image {
    flex: 1 1 45rem;
    text-align: center;
    margin-top: 5rem;
  }

  .services .row img {
    width: 90%;
    height: auto;
  }

  .services .row .content {
    flex: 1 1 18rem;
    margin-top: 2rem;
  }

  .services .row .content .icon-text {
    margin-left: 1rem;
  }

  .services .row .content .icon-text i {
    font-size: 1.4rem;
  }

  .services .row .content .icon-text p {
    font-size: 1.4rem;
  }

  .services .desktop-halter {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .services {
    margin-top: 2.2rem;
    width: 100%;
  }

  .services .mobile-halter {
    display: block;
    margin: 2rem auto 4rem auto;
    margin-top: -1rem;
    font-size: 3.5rem;
    color: #b98e75;
    text-align: center;
  }

  .services .row {
    flex-direction: column;
    width: 100%;
  }

  .services .row .image {
    flex: 1 1 45rem;
    text-align: center;
    margin-top: 5rem;
  }

  .services .row img {
    width: 90%;
    height: auto;
  }

  .services .row .content .icon-text {
    margin-left: 1rem;
  }

  .services .row .content .icon-text i {
    font-size: 2rem;
  }

  .services .row .content .icon-text p {
    font-size: 2rem;
  }

  .services .desktop-halter {
    display: none;
  }
}

@media (max-width: 1200px) and (orientation: landscape) {
  .services {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: 2rem;
  }

  .services .mobile-halter {
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 1.3rem;
    font-size: 3rem;
  }

  .services .row .image {
    flex: 1 1 350px;
    margin-top: 0;
    padding: 1rem;
  }

  .services .row .content {
    flex: 1 1 400px;
    margin-top: 0;
    padding: 1rem;
  }

  .services .row .content .icon-text {
    margin-left: 0;
    margin-right: 0;
    flex-wrap: wrap;
  }

  .services .row .content .icon-text i {
    font-size: 2.5rem;
  }

  .services .row .content .icon-text p {
    font-size: 2rem;
  }

  .services .desktop-halter {
    display: none;
  }
}
/*! services end */

.maps {
  padding: 5rem 1rem;
  text-align: center;
}

.maps h2 {
  color: #b98e75;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: var(--arckytec-font-two, sans-serif);
}

.maps iframe {
  width: 100%;
  max-width: 1000px;
  height: 450px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .maps iframe {
    height: 350px;
  }
}

/*! footer start */
.footer {
  background-color: #1d1f21;
  color: #ccc;
  padding: 5rem 3rem;
  font-family: "Segoe UI", sans-serif;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  justify-content: space-between;
}

.footer-logo-social {
  flex: 1 1 200px;
}

.social-icons a {
  color: #ccc;
  font-size: 2.3rem;
  margin-right: 1.5rem;
  display: inline-block;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #b98e75;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-column h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.footer-column .underline {
  display: block;
  width: 45px;
  height: 3px;
  background-color: #b98e75;
  margin-bottom: 1rem;
}

.footer-column p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #ccc;
}

.footer-bar {
  width: 100%;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 10px;
  margin-top: 3rem;
  position: relative;
}

.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-bar-inner .line {
  flex: 1;
  height: 1px;
  background-color: #babbbd;
  max-width: 500px;
}

.footer-bar a {
  color: #babbbd;
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  padding: 20px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .footer {
    padding: 2rem 3rem;
  }

  .footer-content {
    gap: 4rem;
  }

  .social-icons a {
    font-size: 1.9rem;
  }

  .footer-column .underline {
    width: 60px;
  }

  .footer-bar {
    padding-top: 10px;
    padding-bottom: 1px;
    margin-top: 1rem;
  }

  .footer-bar-inner {
    gap: 1px;
  }

  .footer-bar a {
    font-size: 14px;
    padding: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  /* Tablet düzeni buraya */
}

@media (max-width: 1200px) and (orientation: landscape) {
  .footer {
    padding: 3rem 1rem;
  }

  .footer-content {
    gap: 3rem;
    flex-direction: row;
  }

  .footer-column {
    flex: 1 1 250px;
  }

  .footer-column h3 {
    font-size: 1.3rem;
  }

  .footer-column p {
    font-size: 1.3rem;
  }

  .footer-bar a {
    font-size: 1.2rem;
    padding: 10px;
  }

  .footer-bar-inner .line {
    max-width: 200px;
  }
}
/*! footer end */

#cookieConsent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #7a8b58; /* Zeytin yeşili tonu */
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#cookieConsent p {
  margin: 0;
  padding-right: 10px;
  font-size: 14px;
}

#cookieConsent a {
  color: #f0e6c8;
  text-decoration: underline;
}

#cookieConsent button {
  background-color: #557c3e;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

#cookieConsent button:hover {
  background-color: #405725;
}
