:root {
  --main: #f64e04;
  --main-dark:  #f64e04;
  --gray-bg: #ffffff;
  --card-radius: 18px;
  --shadow: 0 8px 32px 0 rgba(60, 60, 80, 0.07);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--gray-bg);
  color: #232323;
  min-height: 100vh;
  scroll-behavior: smooth;
}
a { color: inherit; text-decoration: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  background: #0000008b;
  backdrop-filter: blur(8.1px);
  -webkit-backdrop-filter: blur(8.1px);
  border-bottom: 1.5px solid #313131ca;
  width: 100%;
  position: fixed;
  
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 10px #0001;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: auto;
  padding: 10px 5vw;
}
.logo {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--main);
  letter-spacing: 2px;
  user-select: none;
  text-shadow: 0 2px 4px #0002;
}
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}
.nav a::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--main);
  width: 0;
  border-radius: 2px;
  transition: width 0.2s;
  position: absolute;
  left: 0; bottom: -6px;
}
.nav a:hover, .nav a.active { color: var(--main-dark);}
.nav a:hover::after, .nav a.active::after { width: 100%; }
/* HERO FULLSCREEN */
.hero {
  width: 100%;
  height: 100vh;
  background-image: url('/assets/images/main-page-header.png'); /* arka plan görselin buraya */
  background-size: cover;
  background-position: center 0px;
  position: relative;
}


/* HERO FULLSCREEN */
.hero2 {
  width: 100%;
  height: 620px;
  background-image: url('/assets/images/product-page-header.png'); /* arka plan görselin buraya */
  background-size: cover;

  position: relative;
}

.hero3 {
  width: 100%;
  height:460px;
  background-image: url('/assets/images/main-page-bottom2.png'); /* arka plan görselin buraya */
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 40px;
}


.hero4 {
  width: 100%;
  height: 660px;
  background-image: url('/assets/images/product-page-bottom.png'); /* arka plan görselin buraya */
  background-size: cover;
  background-position: center;
  position: relative;
      margin-bottom: -40px;
      margin-top: 40px;
}

.hero5 {
  width: 100%;
  height: 620px;
  background-image: url('/assets/images/about-page-header.png'); /* arka plan görselin buraya */
  background-size: cover;
  background-position: center;
  position: relative;
      margin-bottom: -40px;
}


.hero-contact {
  width: 100%;
  height: 620px;
  background-image: url('/assets/images/contact-page-header.png'); /* arka plan görselin buraya */
  background-size: cover;
  background-position: center;
  position: relative;
      margin-bottom: -40px;
}


.hero6 {
  width: 100%;
  height: 660px;
  background-image: url('/assets/images/about-page-bottom.png'); /* arka plan görselin buraya */
  background-size: cover;
  background-position: center;
  position: relative;
      margin-bottom: -40px;
}


.hero-product-header {
  width: 100%;
  height: 420px;
  background-image: url('/assets/images/single-product-header.png'); /* arka plan görselin buraya */
  background-size: cover;
  background-position: center;
  position: relative;
      margin-bottom: -40px;
}

.hero-product-bottom {
  width: 100%;
  height: 380px;
  background-image: url('/assets/images/single-product-page-bottom.png'); /* arka plan görselin buraya */
  background-size: cover;
  background-position: center;
  position: relative;
      margin-bottom: -40px;
      margin-top: 40px;
}


.hero-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.325); /* istersen karartma azalt */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;

}

.hero-content {
  max-width: 800px;
  color: #fff;

}

.hero-content h1 {
  font-size: 3.4rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0px;

}


.hero-content h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0px;
  margin-top: 100px;

}


.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #eee;
}

.hero-content .btn {
  background: black;
  color: #fff;
  padding: 16px;
  font-size: 16px;
  width: 200px;
  font-weight: 600;
  display: block;
  margin: auto;
  border-radius: 28px;
  border: solid 1px rgb(60, 60, 60);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  cursor: pointer;
  text-decoration: none;

}



.hero-content .btn:hover {
opacity: 0.6;
  color: #fff;
}

/* FİYAT, AVANTAJ, ÖZELLİK KARTLARI */
.features {
  background: #fff;
  padding: 50px 0;
}
.feature-grid {
  display: flex;
  gap: 38px;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 20px 18px 20px;
  box-shadow: none;
  min-width: 190px;
  flex:1;
  text-align: center;
  transition: box-shadow .18s, transform .11s;
}

.feature-card i {
font-size: 35px;
opacity: 0.9;
margin-bottom: 10px;
}
.feature-card img { width: 50px; margin-bottom: 10px; opacity: 0.7;}
.feature-card h3 { color: #f64e04; margin: 10px 0 7px 0; font-size: 18px; }
.feature-card p { color: #333a; font-size: 0.99rem; }
@media (max-width:900px) {.feature-grid{gap:22px;}}
@media (max-width:650px) {.feature-grid{flex-direction:column;gap:18px;}}

/* ANA SAYFA KURUMSAL BLOK */
.home-about { background: white; padding: 0px 0; border-top: gray 1px solid;   padding-top: 100px;   padding-bottom: 40px;}
.home-about-content {
  display: flex;
  gap: 4px;
  width: 70%;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center; /* --- bunu ekle --- */
  text-align: center;      /* mobil için metin de ortalansın */
}
.home-about-content img {

  max-width: 160px;
  border-radius: 15px;

  margin-bottom: 20px !important;
  margin: 0 auto; /* --- bu satır mutlaka olmalı --- */
  display: block;
}
.home-about h2 { color: var(--main-dark); margin-bottom: 18px;}
.btn-outline {
  border: 2px solid var(--main-dark);
  background: #fff;
  color: var(--main-dark);
  padding: 12px 30px;
  border-radius: 22px;
  font-size: 1.07rem;
  font-weight: 600;
  margin-top: 22px;
  cursor: pointer;
  transition: all .18s;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--main-dark);
  color: #fff;
  border-color: var(--main-dark);
}

/* ANA SAYFA ÜRÜN SLİDERİ */
.home-products { background: #fff; padding: 58px 0 42px 0;}
.home-products h2 { text-align: center; color: var(--main-dark); margin-bottom: 30px;}
.product-slider {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.product-slider .product-card { min-width: 220px; max-width: 270px; }

/* ÜRÜNLER - ÜRÜN DETAY */
.products-page, .product-detail, .about-page, .contact-page {
  padding: 58px 0 48px 0;
  min-height: 60vh;
}
.products-page h2,
.about-page h2,
.contact-page h2 {  margin-bottom: 32px;}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 32px;
}
.product-card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 0 0 20px;
  transition: box-shadow .18s, transform .12s;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 13px 13px 0 0;
}
.product-card h4 {
  margin: 16px 0 5px 0;
  font-size: 1.16rem;
  color: #272727;
  font-weight: 600;
}
.product-card p {
  color: var(--main-dark);
  font-size: 1.08rem;
  font-weight: 500;
}
.product-card .desc {
  color: #666;
  font-size: 1rem;
  font-weight: 400;
  margin: 8px 0 0 0;
}
.product-card:hover {
  box-shadow: 0 10px 40px #f64e0421;
  transform: translateY(-2px) scale(1.025);
}
.product-detail-flex {
  display: flex;
  gap: 42px;
  align-items: center;
  flex-wrap: wrap;
}
.product-detail img {
  width: 340px;
  max-width: 94vw;
  border-radius: 18px;
  box-shadow: 0 2px 16px #ffa6001e;
}
.product-detail h2 { margin-bottom: 8px;}
.product-detail p { font-size: 1.18rem; color: var(--main-dark); }
.product-detail .btn { margin-top: 30px; }
@media (max-width:900px) {.product-detail-flex{flex-direction:column; gap:22px;}}

/* KATEGORİLER */
.categories {
  padding: 70px 5vw 28px;
  max-width: 1280px; margin: auto;
}
.categories h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--main-dark);
  margin-bottom: 38px;
  text-align: left;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
  gap: 28px;
}
.category-card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 10px 24px;
  transition: box-shadow .22s, transform .14s;
  cursor: pointer;
  position: relative;
}
.category-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}
.category-card h3 {
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--main-dark);
  margin-top: 4px;
}
.category-card:hover {
  box-shadow: 0 10px 40px #f64e0428;
  transform: translateY(-3px) scale(1.03);
}

/* HAKKIMIZDA, İLETİŞİM */
.about, .about-page, .contact, .contact-page {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  margin: 48px auto 0 auto;
  padding: 40px 6vw 40px;
  max-width: 920px;
}
.about h2, .about-page h2, .contact h2, .contact-page h2 {
  color: var(--main-dark);
  margin-bottom: 18px;
  font-size: 1.6rem;
}
.about p, .about-page p {
  color: #313131;
  font-size: 1.13rem;
  line-height: 1.65;
}
.about-img {
  width: 100%;
  max-width: 320px;
  margin-top: 18px;
  border-radius: 13px;
  box-shadow: 0 2px 12px #ffa60022;
}
.contact ul {
  margin-top: 18px;
  padding-left: 12px;
  color: #2e2e2e;
}
.contact li, .contact-page li {
  margin-bottom: 7px;
  font-size: 1.09rem;
  list-style: disc inside;
}

/* İLETİŞİM FORMU */
.contact-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 380px;
}
.contact-form input, .contact-form textarea {
  border: 1.5px solid #eee;
  border-radius: 9px;
  padding: 12px 13px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  background: #faf9f7;
  transition: border .18s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--main-dark);
  outline: none;
}
.contact-form button {
  background: var(--main);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 0;
  cursor: pointer;
  transition: background .18s;
}
.contact-form button:hover { background: var(--main-dark); }

.footer {
  background: #000000;
  color: #eee;
  text-align: center;
  padding: 28px 0 16px 0;
  margin-top: 60px;
  font-size: 15px;
  letter-spacing: .6px;
  border-radius: 24px 24px 0 0;
}

.main-footer {
  background: #000000;
  color: #f1f1f1;
  padding: 60px 5vw 20px 5vw;
  font-size: 15px;
}

.footer-container {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  color: #f64e04;
  margin-bottom: 18px;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #ccc;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-col.brand img {
  max-width: 140px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: transparent;
}

.footer-col.brand p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

.footer-bottom a {

  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col.brand img {
    margin: 0 auto 12px auto;
  }
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .header-wrap { flex-direction: column; gap: 14px; }
  .features { padding: 40px 0;}
}
@media (max-width: 900px) {
  .hero { flex-direction: column; padding:0px; text-align: center; }
  .hero-img { margin: 0 auto 24px auto; height: 210px; }
  .about, .contact, .about-page, .contact-page { padding: 28px 4vw 32px; }
  .home-about-content { flex-direction: column; text-align: center;}
}
@media (max-width: 650px) {
  .header-wrap { padding: 16px 3vw; }
  .container { width: 98%; }
  .categories, .products-page, .products, .home-products { padding: 28px 3vw 10px; }
  .about, .contact, .about-page, .contact-page { padding: 12px 3vw 16px;}
  .footer { padding: 17px 0 8px 0; }
}

.logo img {
  height: 48px;
  max-width: 170px;
  width: auto;
  display: block;
}


.featured-products-section {
  background: #ffffff;
  padding: 56px 0 60px 0;
}
.featured-products-section h2 {
  color: #181818;
  font-size: 2.2rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.tab-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 30px;
  align-items: center;
  font-size: 1.18rem;
  font-weight: 600;
}
.tab-btn {
  background: none;
  border: none;
  color: #888;
  padding: 0 8px 7px 8px;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  transition: all .18s;
  font-size: inherit;
  font-weight: 600;
}
.tab-btn.active {
  color: #f64e04;
  border-bottom: 2.5px solid #f64e04;
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 28px;
}
.prd-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px #00000016;
  padding: 20px 20px 8px 20px;
  width: 280px;
  display: block;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow .18s, transform .11s;
}
.prd-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: 10px;
  background: #fffdfa;
}

    .prd-card { cursor: pointer; transition: box-shadow 0.17s, transform 0.13s;}
    .prd-card:hover { box-shadow: 0 8px 32px 0 rgba(60,60,80,0.11); transform: translateY(-2px) scale(1.018);}

.prd-info h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #202020;
}
.prd-desc {
  color: #666;
  font-size: 1.01rem;
  margin-bottom: 10px;

}
.prd-desc2 {
  color: #666;
  font-size: 1.01rem;
  margin-bottom: 17px;
  min-height: 36px;
}
.prd-btn {
  background: #ffffff;
  color: #666666;
  border-radius: 22px;
  padding: 15px;

  font-size: 14px;
  border: solid 1px gray;
  font-weight: 600;

  cursor: pointer;

  text-align: center;
  text-decoration: none;
  width: 100%;
  margin-left: 0%;           /* --- Burası önemli --- */
  display: block;        /* --- Taşma olmasın, block olsun --- */
  margin-top: 32px;
  box-sizing: border-box;
}
.prd-btn:hover {
opacity: 0.6;

}


@media (max-width: 950px) {
  .product-list { gap: 14px;}
  .prd-card img { height: 100px;}
}
@media (max-width: 600px) {
  .tab-nav { gap: 10px; font-size: 1.01rem;}
  .product-list { grid-template-columns: 1fr 1fr;}
}

.webapp-soba {
  padding: 80px 0;
  background-color: #fff;
}

.webapp-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.webapp-text {
  flex: 1;
  min-width: 320px;
}

.webapp-text .section-label {
  color: #ff3c00;
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.webapp-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}

.webapp-text p {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.webapp-text .btn {
  margin-top: 20px;
  display: inline-block;
  background-color: #000;
  color: #fff;
  text-align: center;
  width:200px;
  padding: 16px;
  border-radius: 128px;
  text-decoration: none;
}

.webapp-phones {
  flex: 1;
  display: flex;
  justify-content: center;
}

.webapp-phones img {
  max-height: 500px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


  .about-section {
      background: #ffffff;
      padding: 60px 0 40px 0;
    }
    .about-container {
      max-width: 900px;
      margin: 0 auto;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.07);
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .about-title {
      font-size: 36px;
      font-weight: 700;
      color: #191919;
      margin-bottom: 14px;
    }
    .about-lead {
      font-size: 17px;
      font-weight: 500;
      color: #555;
      margin-bottom: 32px;
      max-width: 700px;
    }
    .about-content {
      font-size: 15.5px;
      color: #2a2a2a;
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .about-signature {
      margin-top: 34px;
      font-size: 17px;
      color: #888;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .about-signature span {
      font-weight: 600;
      color: #191919;
    }
    @media (max-width: 600px) {
      .about-container { padding: 20px 8px; }
      .about-title { font-size: 27px; }
      .about-lead { font-size: 15px; }
      .about-content { font-size: 14.5px; }
    }

    
    .product-landing-modern {
  background: #ffffff;
  border-radius: 20px;
  margin: 40px auto 0 auto;
  max-width: 1200px;
  margin-top: 100px;
  margin-bottom:40px;
  

  padding: 32px 0 24px 0;
}

.product-landing-row {
  display: flex;
  gap: 44px;
  align-items: flex-start;
  padding: 0 38px;
}
.product-landing-imgcol {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 300px;
}
.product-landing-imgcol img {
  width: 100%;
  max-width: 460px;
  border-radius: 14px;
  background: transparent;
  box-shadow:none;
  margin-bottom: 22px;
}


.pager-label { font-size:13px; color:#888; margin-left:6px;}
.product-landing-infocol {
  flex: 1.2 1 180px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-landing-infocol h1 {
  font-size: 2.15rem;
  font-weight: 800;
  margin: 0;
  color: #222;
  letter-spacing: -1.1px;
}
.product-landing-price {
  color: #C40B19;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.product-landing-btnbar {
  display: flex;
  gap: 16px;
  margin: 12px 0 9px 0;
}
.cart-btn {
  background: #222;
  color: #fff !important;
  border-radius: 25px;
  padding: 12px 36px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
  text-decoration: none;
  transition: background 0.16s;
  border: none;
  outline: none;
  display: inline-block;
}
.cart-btn:hover { background: #C40B19; }

.product-landing-featureicons {
  margin: 12px 0 8px 0;
  display: flex;
  gap: 13px;
  color: #A1A7B4;
  font-size: 21px;
}
.product-landing-desc {
  color: #1a1a1a;
  font-size: 15.3px;
  margin: 7px 0 17px 0;
  line-height: 1.7;
  font-weight: 500;
}
.product-landing-cards {
  display: flex;
  gap: 14px;
  margin: 8px 0 8px 0;
  flex-wrap: wrap;
}
.pl-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.101);
  padding: 12px 12px 20px 12px;
  border-radius: 14px;


  flex: 1 1 150px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 14.1px;
  color: #292929;
  transition: border 0.16s, box-shadow 0.16s;
}

.pl-card b {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  font-weight: 700;
  font-size: 15px;
}

.pl-card i {
  font-size: 18px;
  color: #f64e04;
  margin: 0;
  padding: 0;
  min-width: 18px;
}


.product-landing-tagline {
  margin: 36px auto 8px auto;
  max-width: 740px;
  text-align: center;
  color: #18181A;
  font-size: 1.38rem;
  font-weight: 600;
  letter-spacing: -0.2px;
}
@media (max-width: 900px) {
  .product-landing-row { flex-direction: column; gap: 30px; padding: 0 10px; }
  .product-landing-tagline { font-size: 1.08rem; margin-top:18px; }
}
@media (max-width: 600px) {
  .product-landing-modern { padding:12px 0 9px 0;}ü
    .product-landing-modern2 { padding:12px 0 9px 0;}
  .product-landing-imgcol img { max-width: 230px; }
  .product-landing-infocol h1 { font-size:1.08rem; }
  .pl-card { min-width:140px; padding:13px 7px 9px 9px; }
}

.contact-cta-section {
  background: #ffffff;
  padding: 30px 20px;
  text-align: center;
  margin-top: 80px;
}

.contact-cta-box {
  max-width: 720px;
  margin: auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.contact-cta-box h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 18px;
  font-weight: 700;
}

.contact-cta-box p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 46px;
  line-height: 1.6;
}

.contact-cta-btn {
  background: #000;

  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;

}
  .contact-cta-btn2 {
  background: #000;

  width: 150px;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;

}



.contact-cta-btn:hover {
opacity: 0.7;
}

.contact-cta-btn2:hover {
opacity: 0.7;
}



    .prd-features {
      list-style: none;
      padding: 0;
      margin: 12px 0;
    }
    .prd-features li {
      display: flex;
      align-items: center;
      font-size: 13px;
      margin-bottom: 5px;
      color: #666;
    }
    .prd-features li i {
      width: 16px;
      margin-right: 6px;
      text-align: center;
      color: #444;
    }

    .contact-section-v2 {
  padding: 80px 0;
  background-color: #ffffff;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.contact-card, .map-card {
  flex: 1 1 480px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #232323;
}


.contact-card h1 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #232323;
}


.contact-card p {
  font-size: 17px;
  margin-bottom: 25px;
  color: #555;
}

.contact-list {
  list-style: none;
  padding: 0;
  font-size: 17px;
  color: #333;
}

.contact-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list i {
  color: #C40B19;
  font-size: 18px;
  min-width: 22px;
}

.map-card {
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}



@media (max-width: 768px) {
  .featured-products-section {
    padding: 40px 16px 50px 16px;
  }

  .featured-products-section h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .tab-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .tab-btn {
    padding: 6px 6px;
    font-size: 1rem;
  }

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

  .prd-card {
    width: 100%;
    padding: 16px;
  }

  .prd-card img {
    height: 140px;
    margin-bottom: 10px;
  }

  .prd-info h4 {
    font-size: 1rem;
    text-align: center;
  }

  .prd-desc,
  .prd-desc2 {
    font-size: 0.96rem;
    text-align: center;
  }

 .webapp-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .webapp-phones {
    order: -1;
    width: 100%;
  }

  .webapp-phones img {
    width: 100%;
    max-width: 360px;
    height: auto;
    margin-bottom: 20px;
  }

  .webapp-text {
    width: 100%;
    padding: 0 12px;
  }

  .webapp-text h2 {
    font-size: 1.4rem;
  }

  .webapp-text p {
    font-size: 1rem;
  }

  .webapp-text .btn {
    width: 100%;
    max-width: 260px;
    margin: 20px auto 0 auto;
  }
  
.webapp-phones img {
  max-height: auto;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
}

@media (max-width: 768px) {
  .header-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
  }

  .logo img {
    height: 36px;
    max-width: 120px;
  }

  .nav {
    gap: 14px;
    flex-wrap: nowrap;
  }

  .nav a {
    font-size: 13px;
    padding: 3px 0;
  }
}

@media (max-width: 768px) {
  .prd-features {
    display: flex;
    flex-direction: column;
    align-items: center;       /* tüm liste ortalansın */
    padding-left: 0;
    margin: 12px auto;
  }

  .prd-features li {
    display: flex;
    align-items: center;
    justify-content: center;   /* ikon ve metin birlikte ortalansın */
    font-size: 13.3px;
    margin-bottom: 6px;
    color: #444;
    width: 100%;
    max-width: 280px;          /* içeriğin taşmaması için */
    text-align: left;
  }

  .prd-features li i {
    min-width: 20px;           /* sabit ikon hizası */
    margin-right: 8px;
    text-align: center;
    color: #444;
  }
}