/* WhatsApp sabit butonu */
.whatsapp-fab {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  font-size: 38px;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
}
.whatsapp-fab:hover {
  background: #1ebe57;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
.whatsapp-fab .wa-tooltip {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 80px;
  bottom: 50%;
  transform: translateY(50%);
  background: #222;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 16px;
  white-space: nowrap;
  transition: opacity 0.2s;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.whatsapp-fab:hover .wa-tooltip {
  opacity: 1;
}
/* Ürün kartı görsellerini kutuya tam sığdır */
.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  display: block;
}
:root {
  --primary: #0c3f78;
  --primary-dark: #082f5b;
  --accent: #f58220;
  --white: #ffffff;
  --light: #f4f6fa;
  --text: #1e2a38;
  --muted: #6b7685;
  --border: #dbe3ef;
  --shadow: 0 10px 30px rgba(12, 63, 120, 0.12);
  --radius: 16px;
  --container: 1200px;
  --container-mobile: 98vw;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    width: var(--container-mobile);
    padding-left: 1vw;
    padding-right: 1vw;
  }
}

.section {
  padding: 70px 0;
}

.section-title {
  font-size: 42px;
  text-align: center;
  color: var(--primary);
  margin-bottom: 14px;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 36px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: #df6e12;
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-dark);
}

.topbar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--white);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a,
.dropbtn {
  display: block;
  padding: 12px 14px;
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
}

.nav-menu > li > a:hover,
.dropbtn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
}

.dropdown-content a {
  display: block;
  padding: 12px;
  color: var(--text);
  border-radius: 8px;
  font-weight: 600;
}

.dropdown-content a:hover {
  background: var(--light);
  color: var(--primary);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone {
  font-weight: 700;
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 700px;
  background: url("images/luneraboya.jpeg") center center no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 76px;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 28px;
  color: #edf5ff;
  margin-bottom: 28px;
  max-width: 650px;
}

.hero-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.hero-category {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
}

.hero-category span {
  display: block;
  width: 120px;
  height: 120px;
  font-size: 48px;
    .whatsapp-fab {
      width: 120px;
      height: 120px;
      font-size: 42px;
    }
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 28px;
  line-height: 74px;
}

.hero-product {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 30px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-product-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 12px;
  align-items: end;
}

.paint-bucket {
  background: linear-gradient(180deg, #f9fbff, #dce9fa);
  border-radius: 18px;
  text-align: center;
  padding: 18px 10px 26px;
  position: relative;
  min-height: 230px;
  box-shadow: var(--shadow);
}

.paint-bucket.large {
  min-height: 290px;
  background: linear-gradient(180deg, #0e4584, #082f5a);
  color: var(--white);
}

.paint-bucket::before {
  content: "";
  width: 76%;
  height: 28px;
  background: #eef4fb;
  border-radius: 50px;
  position: absolute;
  top: -12px;
  left: 12%;
  border: 4px solid #cfdcf0;
}

.paint-bucket.large::before {
  background: #d7e2f3;
}

.paint-logo {
  font-size: 34px;
  font-weight: 900;
  margin-top: 20px;
  color: var(--primary);
}

.paint-bucket.large .paint-logo {
  color: #fff;
}

.paint-stripe {
  width: 100%;
  height: 18px;
  border-radius: 20px;
  margin-top: 18px;
  background: linear-gradient(90deg, #1d4e89, #18a0fb, #7ed957, #ffde59, #ff914d, #ff5757);
}

.features-grid,
.advantage-grid,
.footer-grid,
.card-grid,
.colors-grid,
.docs-grid,
.contact-grid,
.form-grid {
  display: grid;
  gap: 24px;
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
}

.advantage-grid {
  grid-template-columns: repeat(5, 1fr);
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.colors-grid {
  grid-template-columns: repeat(5, 1fr);
}

.docs-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-box,
.advantage-box,
.product-card,
.color-card,
.doc-box,
.info-box,
.contact-form,
.dealer-form,
.dealer-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-box,
.advantage-box,
.doc-box {
  text-align: center;
  padding: 28px 18px;
}

.feature-icon,
.advantage-icon,
.doc-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.feature-box h3,
.advantage-box h3,
.doc-box h3,
.product-card h3,
.info-box h3,
.dealer-info h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.product-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.product-card-content {
  padding: 22px;
}

.color-swatch {
  height: 140px;
  border-radius: 16px 16px 0 0;
}

.color-card h4 {
  padding: 18px;
  text-align: center;
  color: var(--primary);
}

.docs {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.docs .section-title,
.docs .section-subtitle,
.cta .section-title,
.cta .section-subtitle {
  color: var(--white);
}

.doc-box {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.doc-box h3 {
  color: var(--white);
}

.cta {
  background:
    linear-gradient(90deg, rgba(8,47,91,0.88), rgba(12,63,120,0.75)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  padding: 90px 0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.page-hero {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 80px 0;
}

.page-hero h1 {
  font-size: 54px;
  margin-bottom: 10px;
}

.page-hero p {
  max-width: 700px;
  color: #e5eefb;
}

.info-box {
  padding: 26px;
}

.contact-grid {
  grid-template-columns: 1fr 1.1fr;
}

.form-grid {
  grid-template-columns: repeat(2, 1fr);
}

.contact-form,
.dealer-form {
  padding: 26px;
}

.dealer-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
}

.dealer-info {
  padding: 28px;
}

.dealer-info ul {
  margin-top: 18px;
}

.dealer-info ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  font-size: 15px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.footer {
  background: #091d36;
  color: #dbe7f6;
  padding: 70px 0 20px;
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  margin-bottom: 40px;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-bottom: 18px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #9fb4cf;
}

.breadcrumb {
  color: #cfe0f9;
  margin-top: 8px;
}

.center-btn {
  text-align: center;
  margin-top: 30px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .dealer-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .colors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 58px;
  }

  .hero-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    top: 82px;
    width: 100%;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    display: none;
    margin-top: 10px;
    border-radius: 10px;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  .nav-right {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 90px 0;
  }

  .features-grid,
  .advantage-grid,
  .docs-grid,
  .card-grid,
  .colors-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .page-hero h1 {
    font-size: 38px;
  }
}









.product-image-box{
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.product-image-box img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}




.hero-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 3;
  color: #fff;
  max-width: 600px;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
  max-width: 900px;
  width: 80vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background: rgba(0,0,0,0.45);
  border-radius: 16px;
}
  /* ...existing code... */


.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 26px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s ease;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .slider {
    height: 100vh;
    min-height: 320px;
    max-height: 100vh;
    display: flex;
    align-items: stretch;
  }
  .slide img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .slide-content {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    max-width: 95vw;
    width: 90vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: rgba(0,0,0,0.45);
    border-radius: 12px;
  }

  .slide-content h1 {
    font-size: 22px;
    padding: 8px 0;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  }

  .slide-content p {
    font-size: 13px;
    padding: 4px 0;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
  }

  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
}

.slider {
  width: 100%;
  height: 90vh;
  min-height: 400px;
  max-height: 800px;
}


@media (max-width:768px){

.slider{
height:60vh;
}

.slide img{
height:100%;
width:100%;
object-fit:contain;
}

}


.hero-slider {
  background: #fff;
}

.slider {
  background: #fff;
  background: rgba(0,0,0,0.45);
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  border-radius: 16px;
  padding: 32px 24px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
  font-size: 20px;
}