

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');


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

:root {
  --green:      rgba(57, 61, 50, 1);
  --green-2a:   rgba(43, 46, 38, 1);
  --gold:       rgba(124, 143, 68, 1);
  --gold-muted: rgba(124, 143, 68, 0.52);
  --white:      #FFFFFF;
  --black:      #000000;
  --grey-1:     #E9ECEB;
  --grey-2:     #E5E9E7;
  --grey-3:     #F0F3F3;
  --text:       #000000;
  --text-body:  #555;
  --white-muted: rgba(248,248,248,.68);
  --max-w:      1200px;
  --tr:         all 400ms;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}


.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }


.stag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.stitle {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.stitle--white { color: #fff; }
.sdesc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 32px;
}
.sdesc--white { color: var(--white-muted); }
.text-center { text-align: center; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
  border: none;
  white-space: nowrap;
}
.btn svg { width: 14px; flex-shrink: 0; fill: currentColor; }

/* Gold solid button: beyaz bg üzerindeki gold renk */
.btn-gold {
  background: var(--white);
  color: var(--gold);
  border: none;
}
.btn-gold:hover {
  background: var(--gold);
  color: #fff;
}

/* Gold filled button */
.btn-gold-solid {
  background: var(--gold);
  color: #fff;
  border: none;
}
.btn-gold-solid:hover {
  background: var(--green);
  color: var(--white);
}

/* Outline ghost button */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); }


.topbar {
  background: #000;
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.8);
  transition: color .3s;
}
.topbar a:hover { color: var(--gold); }
.topbar svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }


.site-header {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav__logo img { height: 54px; width: auto; transform: scale(1.8); transform-origin: left center; }


.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}
.nav__menu > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav__menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 500;
  transition: var(--tr);
  white-space: nowrap;
}
.nav__menu > li > a:hover,
.nav__menu > li.active > a {
  color: var(--gold);
}


.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: transform 0.3s;
}
.nav__menu li:hover .caret {
  transform: rotate(180deg);
}


.nav__dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 280px;
  padding: 12px 0;
  z-index: 999;
  border-top: 3px solid var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,.15);
  transform: translateY(15px);
  transition: all 0.3s ease;
  pointer-events: none;
}


.nav__menu li.has-dropdown::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  display: none;
}
.nav__menu li.has-dropdown:hover::after {
  display: block;
}

.nav__dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  color: #333;
  transition: all 0.3s;
  font-weight: 500;
}
.nav__dropdown a:hover {
  background: #f8f9fa;
  color: var(--gold);
  padding-left: 30px;
}
.nav__menu li:hover > .nav__dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.nav__call-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--tr);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(124, 143, 68, 0.3);
}
.nav__call-icon:hover {
  background: #fff;
  transform: scale(1.1);
}
.nav__call-icon:hover svg { fill: var(--gold); }
.nav__call-icon svg { width: 18px; fill: #fff; transition: fill 0.3s; }


.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 4px;
  transition: var(--tr);
}
.nav__hamburger:hover { background: rgba(255,255,255,0.2); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--tr);
  margin: 2px 0;
}
.nav__mobile {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  background: var(--green-2a);
  padding: 10px 0 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.nav__mobile.open { display: block; animation: slideDown 0.3s ease-out; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav__mobile ul { padding: 0 20px; }
.nav__mobile ul li a {
  display: block;
  padding: 14px 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav__mobile ul li a:hover { color: var(--gold); background: rgba(255,255,255,0.05); }

@media(max-width:992px) {
  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }
}


.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  background-image: url('https://www.epoksizeminpro.com/wp-content/uploads/2024/12/ankara-epoksi-zemin-kaplama.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(57, 61, 50, 0.9) 0%, rgba(57, 61, 50, 0.4) 100%);
  z-index: 0;
}
.hero__top {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
  position: relative;
  z-index: 1;
}
.hero__title-wrap { max-width: 720px; }

.hero__tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  column-gap: 8px;
}

.hero__h1 {
  font-size: clamp(40px, 5.5vw, 65px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 40px;
}
.hero__h1 span { color: var(--gold); }

/* "Hizmet Alın" button — orijinal: bg=white, color=gold, border-radius:0 */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 0;
  background: var(--white);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
  border: none;
}
.hero-btn svg { width: 14px; fill: var(--gold); transition: var(--tr); }
.hero-btn:hover {
  background: var(--gold);
  color: var(--white);
}
.hero-btn:hover svg { fill: var(--white); }


.hero__bottom {
  position: relative;
  z-index: 1;
  background: var(--green-2a);
  padding: 40px 0;
}
.hero__bottom-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.hero__bottom p {
  color: var(--white-muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 560px;
}

.hero-ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.hero-ghost-btn svg { width: 14px; fill: var(--white); transition: var(--tr); }
.hero-ghost-btn:hover { color: var(--gold); }
.hero-ghost-btn:hover svg { fill: var(--gold); }


.s-why {
  background: var(--green);
  padding: 100px 0;
}
.s-why__top {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.s-why__top .stag { color: var(--gold); }
.s-why__top .stitle--white {
  font-size: clamp(32px, 4vw, 50px);
  color: #fff;
  margin-bottom: 20px;
}
.s-why__top .sdesc--white {
  color: var(--white-muted);
  margin-bottom: 40px;
}

/* "Bize Ulaşın!" button in why section — outline gold on green bg */
.why-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 0;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: var(--tr);
}
.why-btn svg { width: 14px; fill: var(--white); }
.why-btn:hover {
  background: var(--white);
  color: var(--green);
}
.why-btn:hover svg { fill: var(--green); }

/* Separator line */
.s-why__sep {
  border: none;
  border-top: 1px solid rgba(255,255,255,.15);
  margin: 56px 0 0;
}

/* Counters row — orijinal: 3 items side by side */
.s-why__counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 56px;
}
.why-counter {
  text-align: left;
  padding: 0 70px 0 0;
}
.why-counter:not(:last-child) {
  border-right: none;
}
.why-counter__num {
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.why-counter__label {
  font-size: 16px;
  color: var(--white-muted);
  font-weight: 400;
}


.s-services {
  background: #fff;
  padding: 10px 0 100px;
}
.s-services__header {
  padding: 100px 0 0;
  text-align: center;
}
.s-services__header .stag { color: var(--gold); }
.s-services__header .stitle {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--text);
}
.s-services__header .sdesc {
  max-width: 760px;
  margin: 0 auto 20px;
  color: var(--text-body);
}

.s-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  transition: all 0.4s ease;
}

/* Services Filter */
.services-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px auto;
  max-width: 900px;
}
.filter-btn {
  padding: 10px 24px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  color: var(--text-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 15px rgba(124, 143, 68, 0.25);
}

.filter-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-item.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

/* Category / Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: var(--gold);
}

.product-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: #f8f8f8;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img img {
  transform: scale(1.05);
}

.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: var(--text);
  flex-grow: 1;
  transition: color 0.3s ease;
}

.product-card:hover .product-card__title {
  color: var(--gold);
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__link svg {
  width: 14px;
  height: 14px;
  fill: var(--green);
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__link svg {
  transform: translateX(4px);
  fill: var(--gold);
}
.product-card:hover .product-card__link {
  color: var(--gold);
}

/* Category Catalog Layout */
.catalog-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.catalog-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.catalog-sidebar h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.catalog-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.catalog-sidebar ul li {
  margin-bottom: 15px;
}
.catalog-sidebar ul li:last-child {
  margin-bottom: 0;
}

.catalog-sidebar ul li a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.catalog-sidebar ul li a::before {
  content: "→";
  margin-right: 8px;
  font-size: 14px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}

.catalog-sidebar ul li a:hover,
.catalog-sidebar ul li.active a {
  color: var(--green);
  font-weight: 700;
  padding-left: 5px;
}
.catalog-sidebar ul li a:hover::before,
.catalog-sidebar ul li.active a::before {
  opacity: 1;
  transform: translateX(0);
}

.catalog-content {
  flex-grow: 1;
}

.catalog-content .s-services__grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Catalog Layout Responsive */
@media (max-width: 992px) {
  .catalog-layout {
    flex-direction: column;
  }
  .catalog-sidebar {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .catalog-content .s-services__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ABOUT / HAKKIMIZDA
   Orijinal: bg=#305348, padding: 100px 0 0 0
   Sol kolon: bg=epoksi-kaplama-boya-ankara.jpg, sağ alta badge overlay
   Sağ kolon: padding 50px 0 100px 50px
   ============================================================ */
.s-about {
  background: var(--green);
  padding: 100px 0 0;
}
.s-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.s-about__img-col {
  position: relative;
  background-image: url('assets/img/1.jpeg');
  background-position: left center;
  background-size: cover;
  min-height: 550px;
}

.about-badge {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: #fff;
  padding: 25px 35px;
  box-shadow: -10px -10px 30px rgba(0,0,0,0.1);
}
.about-badge__num {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.about-badge__num span { color: var(--gold); }
.about-badge__label {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}

.s-about__text-col {
  padding: 50px 0 100px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.s-about__text-col .stag { color: var(--gold); }
.s-about__text-col .stitle {
  font-size: clamp(28px, 3.5vw, 46px);
  color: #fff;
  margin-bottom: 0;
}
.s-about__text-col .sdesc {
  color: var(--white-muted);
  margin-top: 0;
  font-size: 15px;
}


.tabs-nav {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.25);
  margin-bottom: 30px;
}
.tab-btn {
  padding: 12px 0;
  margin-right: 24px;
  font-size: 15px;
  font-weight: 500;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  transition: var(--tr);
  margin-bottom: -1px;
  font-family: 'DM Sans', sans-serif;
}
.tab-btn.active {
  color: #fff;
  border-bottom-color: var(--gold);
}
.tab-panel {
  display: none;
  font-size: 15px;
  color: var(--white-muted);
  line-height: 1.8;
  border: 1px solid rgba(255,255,255,.25);
  border-top: none;
  padding: 20px 24px;
}
.tab-panel.active { display: block; }


.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 0;
  border: none;
  background: var(--white);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: var(--tr);
  margin-top: 30px;
  align-self: flex-start;
}
.about-btn svg { width: 14px; fill: var(--gold); }
.about-btn:hover { background: var(--gold); color: var(--white); }
.about-btn:hover svg { fill: var(--white); }


.s-gallery { background: #fff; padding: 100px 0; }
.s-gallery__header { text-align: center; margin-bottom: 70px; }
.s-gallery__header .stag { color: var(--gold); }
.s-gallery__header .stitle {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
}

.s-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery-item:first-child img { height: 470px; }
.gallery-item:hover img { transform: scale(1.05); }


.gallery-btn-wrap { text-align: center; margin-top: 40px; }
.gallery-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--gold);
  color: var(--white);
  border-radius: 0;
  border: none;
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: var(--tr);
}
.gallery-cta-btn svg { width: 14px; fill: #fff; }
.gallery-cta-btn:hover { background: var(--green); }


.s-how {
  background: var(--green);
  padding: 0 0 100px;
}
.s-how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.s-how__content {
  padding: 100px 70px 50px 0;
}
.s-how__content .stag { color: var(--gold); }
.s-how__content .stitle--white {
  font-size: clamp(28px, 3.5vw, 46px);
  color: #fff;
}
.s-how__content .sdesc--white { color: var(--white-muted); }


.how-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.how-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.how-item__icon {
  width: 46px;
  height: 46px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-item__icon svg { width: 20px; fill: var(--gold); padding: 0; }
.how-item__text h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.how-item__text p { color: var(--white-muted); font-size: 14px; line-height: 1.7; }

.s-how__img-col {
  background-image: url('assets/img/2.jpeg');
  background-position: left center;
  background-size: cover;
  min-height: 500px;
}


.s-faq { background: #fff; padding: 100px 0; }
.s-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.s-faq__lead .stag { color: var(--gold); }
.s-faq__lead .stitle {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--text);
}
.s-faq__lead .sdesc { font-size: 15px; color: var(--text-body); margin-bottom: 32px; }


.faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--gold);
  color: var(--white);
  border-radius: 0;
  border: none;
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: var(--tr);
}
.faq-btn svg { width: 14px; fill: var(--white); }
.faq-btn:hover { background: var(--green); }


.accordion-list { display: flex; flex-direction: column; }
.accordion-item { border-bottom: 1px solid rgba(0,0,0,.1); }
.accordion-item:first-child { border-top: 1px solid rgba(0,0,0,.1); }

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 50px 16px 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  gap: 16px;
  user-select: none;
  color: var(--text);
  background: #ffffff;
  transition: var(--tr);
  border-radius: 0;
}
.accordion-chevron { color: var(--gold); flex-shrink: 0; }
.accordion-chevron svg { width: 20px; height: 20px; fill: var(--gold); transition: transform 400ms; }


.accordion-item.open > .accordion-header {
  background: var(--green);
  color: var(--white);
}
.accordion-item.open .accordion-chevron { color: var(--gold); }
.accordion-item.open .accordion-chevron svg { transform: rotate(180deg); }

.accordion-body {
  display: none;
  padding: 30px 50px 20px 30px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  background: #fff;
}
.accordion-item.open > .accordion-body { display: block; }

.rich-text { line-height: 1.8; color: var(--text-body); font-size: 16px; }
.rich-text p { margin-bottom: 20px; }
.rich-text h2, .rich-text h3, .rich-text h4 { color: var(--text); margin: 30px 0 15px 0; font-weight: 700; }
.rich-text ul, .rich-text ol { margin-bottom: 20px; padding-left: 25px; }
.rich-text li { margin-bottom: 8px; }
.rich-text img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; }
.rich-text table { width: 100%; border-collapse: collapse; margin-bottom: 25px; }
.rich-text table td, .rich-text table th { border: 1px solid #e2e8f0; padding: 12px; }
.rich-text blockquote { border-left: 4px solid var(--gold); padding: 15px 25px; background: #f8fafc; font-style: italic; margin: 25px 0; border-radius: 0 8px 8px 0; }


.s-blog { background: #fff; padding: 100px 0; }
.s-blog__header { text-align: center; margin-bottom: 50px; }
.s-blog__header .stag { color: var(--gold); }
.s-blog__header .stitle {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
}
.s-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 70px;
}
.blog-card {
  background: #fff;
  transition: var(--tr);
  overflow: hidden;
}
.blog-card:hover { background: var(--green); }
.blog-card__img { overflow: hidden; }
.blog-card__img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .5s;
  display: block;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 10px 30px 30px; }
.blog-card__date { font-size: 13px; color: var(--gold); font-weight: 500; display: block; margin: 5px 0 0; }
.blog-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 20px;
  line-height: 1.4;
  color: var(--text);
  text-align: left;
  transition: var(--tr);
}
.blog-card:hover .blog-card__title { color: var(--white); }
.blog-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-align: left;
}
.blog-card__link svg { width: 12px; fill: var(--gold); }


.blog-btn-wrap { text-align: center; }
.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--gold);
  color: var(--white);
  border-radius: 0;
  border: none;
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: var(--tr);
}
.blog-cta-btn svg { width: 14px; fill: #fff; }
.blog-cta-btn:hover { background: var(--green); }


.s-contact { background: #fff; padding: 100px 0; }
.s-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-map { overflow: hidden; height: 400px; background: #eee; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-info .stag { color: var(--gold); }
.contact-info .stitle {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
}
.contact-info .sdesc {
  color: var(--text-body);
  font-size: 15px;
  margin-bottom: 24px;
}
.contact-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-box { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.contact-box__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-box__icon svg { width: 22px; fill: var(--gold); }
.contact-box h4 { font-size: 16px; font-weight: 700; color: var(--text); }
.contact-box p { font-size: 15px; color: var(--text-body); }


.site-footer {
  background: rgba(30, 32, 26, 1);
  padding: 80px 0 60px;
  color: #fff;
  border-top: 5px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
.footer-socials a svg {
  width: 16px;
  fill: #fff;
}
.footer-socials a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links li a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: all 0.3s ease;
}
.footer-links li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact-list-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact-list-new li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.footer-contact-list-new .f-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(124, 143, 68, 0.1);
  border-radius: 4px;
}
.footer-contact-list-new .f-icon svg {
  width: 14px;
  fill: var(--gold);
}
.footer-contact-list-new a {
  color: rgba(255,255,255,0.7);
}
.footer-contact-list-new a:hover {
  color: var(--gold);
}


.footer-bottom {
  background: #000;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.45); transition: color .3s; }
.footer-bottom-links a:hover { color: #fff; }


#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,178,54,.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  z-index: 999;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { transform: translateY(-4px); }
#scroll-top svg { width: 18px; fill: #fff; }


@media (max-width: 1024px) {
  .s-services__grid { grid-template-columns: repeat(2, 1fr); }
  .s-blog__grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .s-how__content { padding: 70px 50px 50px 0; }
  .s-faq__grid { gap: 40px; }
  .s-about__grid { grid-template-columns: 1fr; }
  .s-about__img-col { min-height: 420px; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav__hamburger { display: flex; }
  .nav__menu { display: none; }
  .hero { background-position: center center; }
  .hero__top { padding: 150px 0 70px; }
  .hero__h1 { font-size: 36px; }
  .hero__bottom-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .s-why__counters { grid-template-columns: 1fr; gap: 32px; }
  .why-counter { border-right: none; padding-right: 0; text-align: center; }
  .s-services__grid { grid-template-columns: 1fr; }

  .s-about__grid { grid-template-columns: 1fr; }
  .s-how__grid { grid-template-columns: 1fr; }
  .s-how__content { padding: 60px 0; }
  .s-how__img-col { min-height: 300px; background-position: center; }
  .s-faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .s-contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .s-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child img { height: 230px; }
  .s-blog__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .contact-items { grid-template-columns: 1fr; }
}


.page-hero {
  position: relative;
  padding: 120px 0 80px;
  background-image: url('https://www.epoksizeminpro.com/wp-content/uploads/2024/12/ankara-epoksi-zemin-kaplama.jpg');
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(57, 61, 50, 0.7);
  z-index: 0;
}
.page-hero__content {
  position: relative;
  z-index: 1;
}
.page-hero__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 15px;
}
.breadcrumbs {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
}
.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}
.breadcrumbs span {
  color: var(--gold);
}

.s-regions {
  padding: 80px 0;
  background: #fdfdfd;
}
.regions-intro {
  text-align: center;
  margin-bottom: 50px;
}
.regions-intro__sub {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.regions-intro__title {
  font-size: 36px;
  color: var(--green);
  font-weight: 800;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.city-card {
  background: #fff;
  text-align: center;
  padding: 25px 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.city-card__map {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.city-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 4px;
  display: block;
}
.city-card__label {
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.city-card a {
  color: inherit;
  text-decoration: none;
}
.city-card a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .city-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .city-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .city-grid { grid-template-columns: 1fr; }
}


.s-contact-cards {
  padding: 80px 0 0;
  background: #ffffff;
}
.contact-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.contact-box {
  background: #f9f9f9;
  padding: 50px 30px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s;
}
.contact-box:hover {
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}
.c-box-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(225, 174, 60, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s;
}
.contact-box:hover .c-box-icon {
  background: var(--gold);
}
.c-box-icon svg { width: 32px; fill: var(--gold); transition: all 0.3s; }
.contact-box:hover .c-box-icon svg { fill: #fff; transform: scale(1.1); }
.contact-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-box p {
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

/* Contact Content Section */
.s-contact-content {
  padding: 80px 0 100px;
  background: #fafafa;
}
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.live-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-form-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-form-item label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}
.c-form-item input,
.c-form-item textarea {
  width: 100%;
  padding: 16px;
  background: #fff;
  border: none;
  border-radius: 0;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: box-shadow 0.3s;
}
.c-form-item input:focus,
.c-form-item textarea:focus {
  box-shadow: 0 0 0 2px rgba(225, 174, 60, 0.2);
}
.c-submit {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
  margin-top: 10px;
}
.c-submit:hover {
  background: var(--green);
}


.c-split-right {
  padding-left: 40px;
}
.c-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 15px;
}
.c-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.2;
}
.c-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .contact-cards-wrap { grid-template-columns: repeat(2, 1fr); }
  .contact-split-grid { grid-template-columns: 1fr; gap: 40px; }
  .c-split-right { padding-left: 0; }
  .c-title { font-size: 32px; }
}
@media (max-width: 768px) {
  .contact-cards-wrap { grid-template-columns: 1fr; }
  .s-contact-cards, .s-contact-content { padding: 50px 0; }
}


.s-blog-page {
  padding: 80px 0;
  background: #fdfdfd;
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
}
.blog-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.blog-item-card {
  background: #fff;
  transition: var(--tr);
  border: 1px solid #f1f1f1;
}
.blog-item-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.blog-item-card__img { overflow: hidden; height: 210px; }
.blog-item-card__img img { width: 100%; height: 100%; object-fit: cover; transition: var(--tr); }
.blog-item-card:hover .blog-item-card__img img { transform: scale(1.05); }
.blog-item-card__body { padding: 25px; }
.blog-item-card__date { font-size: 13px; color: var(--gold); display: block; margin-bottom: 8px; font-weight: 500; }
.blog-item-card__title { font-size: 19px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 15px; }
.blog-item-card__link { font-size: 14px; font-weight: 700; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }


.blog-sidebar { display: flex; flex-direction: column; gap: 40px; }
.sidebar-widget { background: #f8f8f8; padding: 30px; border-radius: 4px; }
.sidebar-widget__title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); width: fit-content; }
.sidebar-about p { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.sidebar-contact-list { display: flex; flex-direction: column; gap: 12px; }
.sidebar-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #555; }
.sidebar-contact-item svg { width: 16px; fill: var(--gold); }

.sidebar-recent-list { display: flex; flex-direction: column; gap: 12px; }
.recent-post-item {
  position: relative;
  height: 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
.recent-post-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: var(--tr); }
.recent-post-item::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5); z-index: 1; transition: var(--tr); }
.recent-post-item:hover::before { background: rgba(48, 83, 72, 0.8); }
.recent-post-item h5 { position: relative; z-index: 2; font-size: 13px; font-weight: 700; line-height: 1.3; }

@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { order: 2; }
}
@media (max-width: 768px) {
  .blog-list-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE DETAIL PAGE — ANADOLUSTONE STYLE
   ============================================================ */

/* HERO */
.sd-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 60px 0 50px;
}
.sd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%);
}
.sd-hero__content {
  position: relative;
  z-index: 2;
}
.sd-hero__breadcrumbs {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.sd-hero__breadcrumbs a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.sd-hero__breadcrumbs a:hover {
  color: var(--gold);
}
.sd-hero__breadcrumbs span {
  margin: 0 6px;
  opacity: 0.5;
}
.sd-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  max-width: 700px;
}

/* PRODUCT SECTION */
.sd-product {
  padding: 60px 0;
  background: #f1f3f5;
}
.sd-product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.08);
}
.sd-product__image {
  overflow: hidden;
  min-height: 450px;
}
.sd-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sd-product__info {
  padding: 40px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sd-product__breadcrumb-inline {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

/* Specs */
.sd-product__specs {
  margin-bottom: 20px;
}
.sd-spec-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 15px;
}
.sd-spec-label {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 180px;
  flex-shrink: 0;
}
.sd-spec-value {
  color: var(--text);
  font-weight: 500;
}
.sd-product__tagline {
  font-size: 15px;
  color: var(--text-body);
  margin: 15px 0 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* CTA Buttons — Outline style like reference */
.sd-product__cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.sd-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid var(--gold);
  background: #fff;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  flex: 1;
}
.sd-btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124,143,68,0.3);
}

/* WhatsApp Button — Full width green like reference */
.sd-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 30px;
  transition: all 0.3s;
}
.sd-btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.sd-btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* Trust Badges — horizontal row like reference */
.sd-product__badges {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.sd-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  flex: 1;
}
.sd-trust-badge svg {
  width: 40px;
  height: 40px;
  color: #4a90d9;
  stroke: #4a90d9;
}
.sd-trust-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-transform: lowercase;
}

/* DESCRIPTION SECTION */
.sd-description {
  padding: 70px 0;
  background: #fff;
}
.sd-desc-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
.sd-desc-header h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}
.sd-desc-line {
  flex: 1;
  height: 2px;
  background: var(--gold);
  opacity: 0.4;
  max-width: 200px;
}

.sd-desc-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.sd-desc-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 30px;
}
.sd-desc-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 16px;
}

/* FAQ SECTION */
.sd-faq-section {
  padding: 70px 0;
  background: #f8f9fa;
}
.sd-faq-section .accordion-list {
  max-width: 900px;
  margin: 0 auto;
}

/* RELATED SECTION */
.sd-related-section {
  padding: 70px 0;
  background: #fff;
}
.sd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sd-related-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.sd-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.sd-related-card__img {
  overflow: hidden;
  height: 220px;
}
.sd-related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.sd-related-card:hover .sd-related-card__img img {
  transform: scale(1.05);
}
.sd-related-card__title {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  background: #f8f9fa;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sd-product__grid {
    grid-template-columns: 1fr;
  }
  .sd-product__image {
    min-height: 320px;
  }
  .sd-product__badges {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .sd-product__info {
    padding: 25px 20px;
  }
  .sd-product__cta-row {
    flex-direction: column;
  }
  .sd-spec-label {
    min-width: 130px;
    font-size: 13px;
  }
  .sd-related-grid {
    grid-template-columns: 1fr;
  }
  .sd-product__badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .sd-trust-badge {
    flex-direction: row;
  }
  .sd-trust-badge svg {
    width: 28px;
    height: 28px;
  }
}

/* SAFETY RULE FOR SVGS */
svg {
  max-width: 100%;
  height: auto;
}
.accordion-chevron svg {
  width: 20px !important;
  height: 20px !important;
}
.le-btn svg {
  width: 13px !important;
  height: 13px !important;
}
