/* STYLE.CSS - Modern & Bulletproof Flex/Grid approach for Hega Sigorta */

:root {
  --primary-color: #00133F;
  /* Dark Blue from Figma */
  --secondary-color: #2F3268;
  /* Light Blue Card / Shapes */
  --accent-color: #FFFFFF;
  /* Very Light Background */
  --text-primary: #1F2937;
  --text-secondary: #4B5563;
  --white: #FFFFFF;
  --font-family: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--accent-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.mt-4 {
  margin-top: 1rem;
}

.mt-l {
  margin-top: 3rem;
}

.text-center {
  text-align: center;
}

/* TYPOGRAPHY */
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--primary-color);
  font-weight: 300;
}

h1 b {
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
}

.btn-dark {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 12px;
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-white:hover {
  background-color: #f1f1f1;
}

.btn-outline {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 8px;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn.with-icon svg {
  margin-right: 8px;
}

/* HEADER */
.header {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
}

/* MOBILE OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: var(--primary-color);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  font-size: 1.5rem;
  font-weight: 600;
}

/* HERO SECTION */
.hero {
  background: #ffffff;
  padding: 80px 24px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.hero-content {
  flex: 1;
  max-width: 580px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 100px;
  padding-left: 80px;
  padding-bottom: 50px;
}

.hero-content h1 {
  text-align: center;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 50px;
}

.hero-image img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  margin-right: 20px;
}

/* FEATURES SECTION */
.features {
  padding: 0 24px 80px 24px;
  margin-top: -260px;
  background-color: transparent;
  position: relative;
  z-index: 10;
}

.features-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(240, 238, 238, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.features-carousel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}





.feature-card p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.feature-card:hover .icon-wrap {
  transform: translateY(-5px) scale(1.12);
  box-shadow: 0 10px 28px rgba(24, 23, 64, 0.3);
}

.icon-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .icon-wrap img {
  transform: rotate(10deg) scale(1.1);
}

/* Pagination dots — hidden on desktop, shown on mobile */
.features-dots {
  display: none;
}

/* ABOUT SECTION */
.about-section {
  padding: 80px 24px 60px 24px;
  background-color: var(--white);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.img-front {
  position: absolute;
  bottom: -60px;
  right: -180px;
  width: 60%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.badge {
  position: absolute;
  bottom: -50px;
  left: -50px;
  background: var(--primary-color);
  color: var(--white);
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: var(--shadow-sm);
}

/* badge-1 = sol alt (default .badge), badge-2 = sol üst, badge-3 = sağ üst */
.badge-2 {
  bottom: auto;
  top: -50px;
  left: -50px;
}

.badge-3 {
  bottom: auto;
  left: auto;
  top: -50px;
  right: -50px;
}

.about-content h2 {
  margin-bottom: 1px;
}

.about-content>p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-top: 80px;
  margin-left: 150px;
  align-items: center;
}

.stat-box {
  background: var(--primary-color);
  color: var(--white);
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.stat-num small {
  font-size: 0.8rem;
  font-weight: 500;
}

.stat-text {
  font-size: 1.1rem;
}

/* PRODUCTS */
.products-section {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.container-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Collapse wrapper — same pattern as partners */
.products-carousel-wrap {
  overflow: hidden;
  max-height: 380px;
  transition: max-height 0.5s ease;
  /* fade bottom edge so 2nd-row peekthrough is invisible */
  -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 95%);
  mask-image: linear-gradient(to bottom, black 90%, transparent 95%);
}

.products-carousel-wrap.expanded {
  max-height: 1400px;
  -webkit-mask-image: none;
  mask-image: none;
}

.products-carousel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* Mobile: show only on mobile, links to urunler.html */
.products-toggle-mobile {
  display: none;
}

.product-card {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
  /* Hover efektinde daha belirgin olması için eklenebilir */
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 26, 75, 0.9), transparent);
  pointer-events: none;
  /* Katmanın tıklamayı engellemesini önler */
}

.product-title {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  width: 100%;
  text-align: center;
  display: block;
  /* Linkin düzgün esnemesi için */
}

/* Kartın tamamını tıklanabilir yapan kısım */
.product-title::before {
  content: "";
  position: absolute;
  top: -1000px;
  /* Üst kısımları da kapsaması için geriye doğru esnetiyoruz */
  left: -20px;
  /* Paddingleri hesaba katarak esnetiyoruz */
  right: -20px;
  bottom: -20px;
  z-index: 10;
}

/* CTA BANNER */
.cta-banner {
  background-color: var(--primary-color);
  /* ASİMETRİK PADDING: Üstten 60px, alttan 140px. 
     Bu sayede bannerın boyu uzar (telefon ve şapka tam görünür) 
     ve içerik yukarı doğru (lacivert alana) itilmiş olur. */
  padding: 60px 24px 140px 24px;
  color: var(--white);
  position: relative;
  z-index: 5;
  /* overflow: hidden; yerine visible kullanıyoruz ki dışarı taşan görsel kısımları kırpılmasın */
  overflow: visible;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  /* Alt alta dizilim yerine yan yana (row) dizilim kullanıyoruz */
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.cta-content {
  max-width: 650px;
  /* Metin alanını biraz genişlettik */
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  /* Elemanlar arası nefes alma boşluğunu biraz artırdık */
  margin: 0 auto;
  /* Metni kendi alanında ortalar */
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.cta-content .btn {
  padding: 7px 36px;
  font-size: 1rem;
}

.cta-image {
  /* GÖRÜNMEZ YER TUTUCU: Bu div'e genişlik vererek arka plandaki ayının 
     olduğu bölümü rezerve ediyoruz. Böylece metin ayının üstüne taşmaz. */
  width: 350px;
  flex-shrink: 0;
}

/* FAQ & BLOG */
.faq-blog-section {
  padding: 80px 24px;
  background: var(--white);
}

.fb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.accordion-item {
  border-bottom: 1px solid #E5E7EB;
  padding: 16px 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1rem;
}

.accordion-header .icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: transform 0.3s;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
  margin-top: 12px;
}

/* Blog Card */
.blog-card {
  background: var(--accent-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
}

.blog-content {
  padding: 24px;
}

.tag {
  background: var(--primary-color);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content h3 {
  margin-top: 12px;
  font-size: 1.3rem;
}

/* PARTNERS */
.partners-section {
  background: var(--primary-color);
  padding: 60px 24px;
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
}

.partners-container h2 {
  color: var(--white);
}

/* PAGE BANNER (hakkımızda, iletişim, legal pages) */
.page-banner {
  margin-top: 40px;
  padding: 80px 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-banner-inner h1 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
}

/* PAGE TITLE BANNER (Products page etc.) */
.page-title-banner {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 60px 24px 30px 24px;
  text-align: center;
}

.page-title-banner h1 {
  color: var(--primary-color);
  font-size: clamp(2rem, 5vw, 3rem);
}

.page-title-banner p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-top: 16px;
  color: var(--primary-color);
}

@media (max-width: 1024px) {
  .page-title-banner {
    padding: 50px 20px 25px 20px;
  }
}

@media (max-width: 768px) {
  .page-title-banner {
    padding: 40px 16px 20px 16px;
  }

  .page-title-banner p {
    margin-top: 12px;
  }
}

.hero {
  min-height: auto;
  max-height: 800px;
  height: calc(100vh - 80px);
}

.hero-image img {
  max-height: 650px;
}

/* ── Geniş masaüstü (1301px+) ── */
@media (min-width: 1301px) {
  .hero {
    min-height: auto;
    max-height: 800px;
    height: calc(100vh - 80px);
  }

  .hero-image img {
    max-height: 650px;
  }

  /* Daha basik ekranli genis laptoplar icin yukari cekme miktarini kisiyoruz */
  @media (max-height: 850px) {
    .features {
      margin-top: -140px;
    }
  }

  .cta-banner {
    background-position: right center !important;
    padding-bottom: 240px !important;
    /* Görselin alt kısımdan kırpılmasını önlemek için alanı büyütüyoruz */
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }

  .cta-content {
    margin-top: 80px;
  }
}

/* ── Laptop / orta ekran (769px – 1300px) */
@media (min-width: 769px) and (max-width: 1300px) {
  .features {
    margin-top: -140px;
  }

  .cta-banner {
    background-position: right top !important;
    padding-bottom: 60px !important;
  }

  .cta-image {
    width: 200px;
  }

  .cta-content {
    max-width: 520px;
  }

  .cta-content h2 {
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  }

  .cta-content p {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    line-height: 1.6;
  }

  .cta-content .btn {
    padding: 8px 28px;
    font-size: 0.92rem;
  }
}

@media (max-width: 768px) {
  .page-banner {
    margin-top: 0;
    padding: 40px 20px;
    width: 100vw;
    margin-left: 0;
    background-size: cover;
    background-position: right center;
  }

  .page-banner-inner h1 {
    font-size: 1.3rem;
  }
}

/* Clone grid: only visible inside mobile marquee, always hidden on desktop */
.partners-grid-clone {
  display: none !important;
}

/* Collapse wrapper — controls expand/collapse animation */
.partners-grid-wrap {
  overflow: hidden;
  max-height: 92px;
  /* ~1 row of logos */
  transition: max-height 0.5s ease;
  margin-bottom: 32px;
}

.partners-grid-wrap.expanded {
  max-height: 700px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 48px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.partners-grid img {

  width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.partners-grid img:hover {
  opacity: 1;
}

/* Toggle button */
.partners-toggle {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-family: var(--font-family);
  letter-spacing: 0.01em;
}

.partners-toggle:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.partners-toggle svg {
  transition: transform 0.3s ease;
}

.partners-toggle.expanded svg {
  transform: rotate(90deg);
}

/* FOOTER */
.footer-main {
  background: var(--primary-color);
  color: var(--white);
  padding: 40px 24px 20px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr 1.5fr;
  gap: 40px;
}

.footer-links-group {
  display: flex;
  gap: 40px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col a {
  display: block;
  color: #9CA3AF;
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact .phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 12px;
}

.footer-contact .phone img {
  width: 24px;
  height: 24px;
}

.mob-br {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0 auto;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9CA3AF;
  font-size: 0.9rem;
}

/* === RESPONSIVE BREAKPOINTS === */

/* Tablets (769px – 1024px): column hero, grid features intact */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 60px 24px 60px 24px;
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-content {
    text-align: center;
    align-items: center;
    padding-top: 0;
    max-width: 100%;
  }

  .hero-content h1 {
    text-align: center;
  }

  .hero-image {
    justify-content: center;
    align-items: flex-end;
  }

  .hero-image img {
    margin-right: 0;
    max-height: 60vh;
  }

  .about-container,
  .fb-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .features-carousel {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .about-images {
    margin-bottom: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {

  /* --- Hero: title+button LEFT, mascot RIGHT --- */
  .hero {
    padding: 28px 0 80px 16px;
    min-height: auto;
    overflow: visible;
    align-items: flex-start;
  }

  .hero-container {
    flex-direction: row;
    /* side-by-side – overrides 1024px column */
    align-items: flex-end;
    /* mascot anchored to bottom edge */
    gap: 0;
  }

  .hero-content {
    flex: 0 0 56%;
    max-width: 56%;
    align-items: flex-start;
    text-align: left;
    justify-content: flex-end;
    padding-top: 0;
    padding-bottom: 80px;
  }

  .hero-content h1 {
    text-align: left;
    font-size: clamp(1.4rem, 5.5vw, 1.6rem);
    line-height: 1.2;
  }

  .hero-content .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .hero-image {
    flex: 0 0 44%;
    position: static;
    /* reset any inherited absolute */
    justify-content: flex-end;
    align-items: flex-end;
    overflow: visible;
  }

  .hero-image img {
    width: 100%;
    max-height: 52vh;
    margin-right: 15px;
    /* bleed slightly past edge */
    object-fit: contain;
    object-position: right bottom;
  }

  /* Features overlap: much smaller on mobile */
  .features {
    margin-top: -400px;
  }

  .stats-grid {
    margin-left: 10px;
    display: none;
  }

  /* --- Nav --- */
  .nav-links,
  .btn-teklif {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* --- Features carousel: 2 cards visible at once --- */
  .features-wrapper {
    padding: 16px;
  }

  .features-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    /* hide scrollbar visually while keeping scroll */
    scrollbar-width: none;
  }

  .features-carousel::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    flex: 0 0 80vw;
    scroll-snap-align: center;
    min-width: 0;
  }

  /* Pagination dots */
  .features-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding-bottom: 4px;
  }

  .features-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8cdd6;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
  }

  .features-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-color);
  }

  /* Products: remove collapse on mobile, full horizontal slider */
  .products-carousel-wrap {
    max-height: none;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .products-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: none;
    padding-bottom: 20px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: none;
  }

  .products-carousel::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 70vw;
    scroll-snap-align: center;
  }

  /* Show mobile link button, hide desktop toggle */
  .products-toggle-desktop {
    display: none;
  }

  .products-toggle-mobile {
    display: inline-flex;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-brands {
    text-align: left;
  }

  .footer-brands img {
    height: 48px;
    width: auto;
  }

  .mob-br {
    display: inline;
  }

  .footer-links-group {
    flex-direction: column;
    gap: 0;
  }

  .mt-mob {
    margin-top: 0 !important;
  }

  .cta-banner {
    /* Görselin path'i CSS'in bulunduğu css/ klasörüne göre ../assets/ olmalı */
    background-image: url('../assets/call_butonu_banner_mobil.jpg') !important;
    background-position: bottom right !important;
    background-size: cover !important;
    /* Üstte metin için alan, altta maskot/telefon için alan */
    padding: 36px 20px 300px 20px !important;
  }

  .cta-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cta-image {
    display: none;
  }

  .cta-content {
    max-width: 100%;
    margin: 0;
    text-align: left;
    align-items: flex-start;
  }

  .cta-content h2 {
    font-size: 1.4rem;
    text-align: left;
  }

  .cta-content p br {
    display: none;
    /* Mobilde `<br>` etiketlerini gizleriz ki metin ekran genişliğine göre doğal olarak alt satıra insin */
  }



  /* btn-outline: prevent text wrapping on mobile */
  .btn-outline {
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  /* Partners: auto-scroll marquee on mobile */
  .partners-grid-wrap {
    max-height: none;
    overflow: hidden;
    margin-bottom: 0;
    /* soft fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .partners-toggle {
    display: none;
  }

  /* Track: holds original + cloned grid side by side */
  .partners-track {
    display: flex;
    width: max-content;
    animation: partners-marquee 22s linear infinite;
  }

  .partners-track:hover {
    animation-play-state: paused;
  }

  @keyframes partners-marquee {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  .partners-grid {
    grid-template-columns: none;
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
    gap: 40px;
    max-width: none;
    margin: 0;
    padding: 8px 20px 8px 0;
    overflow: visible;
  }

  .partners-grid img {
    flex: 0 0 auto;
    width: auto;
    height: 64px;
  }



  .img-front {
    display: none;
  }

  .about-images {
    padding-bottom: 40px;
    /* room for badge below img */
  }

  .img-main {
    width: 85%;
    display: block;
    margin: 0 auto;
  }

  .badge {
    width: 72px;
    height: 72px;
    font-size: 0.7rem;
    padding: 12px;
    bottom: 4px;
    left: calc(7.5% - 36px);
  }

  .badge-2 {
    bottom: auto;
    top: -36px;
    left: calc(7.5% - 36px);
  }

  .badge-3 {
    bottom: auto;
    left: auto;
    top: -36px;
    right: calc(7.5% - 36px);
  }

  .partners-grid-clone {
    display: flex !important;
  }
}

/* =========================================================================
   WhatsApp Floating Icon
========================================================================= */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.whatsapp-icon-bg {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.whatsapp-icon-svg {
  width: 40px;
  height: 40px;
}

.wa-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background-color: #25D366;
  border: 2px solid white;
  border-radius: 50%;
  z-index: 3;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #25D366;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
}

.floating-whatsapp:hover::before {
  animation: wa-pulse 1.5s infinite;
}

@keyframes wa-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

/* =========================================================================
   Product Page Two Column Layout & WhatsApp Quote Button
========================================================================= */
/* ── Product Content Split ── */
.product-content-split {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.product-text-col {
  flex: 0 0 58%;
}

.product-mascot-col {
  flex: 1;
  position: relative;
  min-height: 460px;
}

/* Mascot image: anchored to right/bottom of column */
.mascot-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 66%;
  object-fit: contain;
  object-position: right bottom;
  border-radius: 0;
  z-index: 1;
}

/* Buttons: each absolutely positioned at mascot's hand levels */
.quote-btn-group {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.btn-mascot-call,
.btn-mascot-wa {
  position: absolute;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  width: max-content;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  border: none;
  pointer-events: auto;
}

/* upper hand ≈ 22% from top */
.btn-mascot-call {
  top: 22%;
}

/* lower hand ≈ 54% from top */
.btn-mascot-wa {
  top: 50%;
}

.btn-mascot-call {
  background-color: #181740;
  color: white;
}

.btn-mascot-call:hover {
  background-color: #2a286b;
  color: white;
}

.btn-mascot-wa {
  background-color: #25D366;
  color: white;
}

.btn-mascot-wa:hover {
  background-color: #1da850;
  color: white;
}

.btn-mascot-wa svg {
  fill: currentColor;
}

/* ── Responsive: tablet & mobile ── */
@media (max-width: 992px) {
  .product-content-split {
    flex-direction: column;
    gap: 32px;
  }

  .product-text-col {
    flex: none;
    width: 100%;
  }

  .product-mascot-col {
    position: static;
    min-height: unset;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .mascot-image {
    position: static;
    width: 180px;
    height: auto;
    max-width: 100%;
    border-radius: 16px;
    object-position: center;
  }

  .quote-btn-group {
    position: static;
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: auto;
  }

  .btn-mascot-call,
  .btn-mascot-wa {
    position: static;
    width: 100%;
    font-size: 1rem;
    padding: 16px 20px;
    top: auto;
  }
}