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

:root {
  --black: #111110;
  --black-soft: #1c1c1a;
  --gray-dark: #3a3a38;
  --gray-mid: #6b6b68;
  --gray-light: #9a9a97;
  --border: #e2e0db;
  --bg-light: #f7f6f3;
  --white: #ffffff;
  --font-h: 'Barlow Condensed', sans-serif;
  --font-b: 'Barlow', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6
}

img,
video {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* TOPBAR */
.topbar {
  background: var(--black);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px
}

.tb-l,
.tb-r {
  display: flex;
  align-items: center;
  gap: 20px
}

.tb-l a,
.tb-r a,
.tb-r span {
  font-size: 11px;
  letter-spacing: .06em;
  color: #aaa;
  text-decoration: none;
  transition: color .15s;
  cursor: pointer
}

.tb-l a:hover,
.tb-r a:hover,
.tb-r span:hover {
  color: #fff
}

.tb-sep {
  color: #444;
  font-size: 11px
}

.tb-r .lang {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  letter-spacing: .06em;
  color: #aaa;
  cursor: pointer
}

/* HEADER */
header {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .2s
}

header.shad {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3)
}

.hinner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative
}

.logo img,
.flogo img,
img[alt*="Atak Form"] {
  height: 72px !important;
  width: auto !important;
  display: block !important;
  filter: brightness(0) invert(1) !important;
  border: none !important;
  outline: none !important;
  -webkit-filter: brightness(0) invert(1) !important;
}

.logo {
  text-decoration: none;
  margin-right: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  height: 100%
}

nav>a,
.nav-item>a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 2px;
  transition: all .15s;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap
}

nav>a:hover,
.nav-item>a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .05)
}

nav a svg {
  width: 9px;
  height: 9px;
  opacity: .6
}

.h-right {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto
}

.h-ico {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  cursor: pointer;
  transition: background .15s;
  color: rgba(255, 255, 255, .7)
}

.h-ico:hover {
  background: rgba(255, 255, 255, .05);
  color: #fff
}

.lang-sel {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .06em;
  cursor: pointer;
  padding: 0 8px;
  transition: color .15s
}

.lang-sel:hover {
  color: #fff
}

.btn-wa-header {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  padding: 9px 18px;
  border: none;
  border-radius: 2px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s;
  margin-left: 8px
}

.btn-wa-header:hover {
  background: #1db954
}

.mob-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: 12px
}

.mob-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff
}

/* MEGA MENU */
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center
}

.nav-item.has-mega {
  position: static !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
  padding: 36px 48px;
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
  pointer-events: none;
  z-index: 200;
  max-width: calc(100vw - 40px);
  width: max-content;
}

.nav-item.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 54px
}

.mg-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px
}

.mg-ti {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding-bottom: 10px;
  margin-bottom: 8px
}

.mega-menu a {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color .15s;
  padding: 0;
  background: none;
  border-radius: 0;
  font-weight: 400
}

.mega-menu a:hover {
  color: #fff;
  background: none
}

/* HERO */
#hero {
  position: relative;
  overflow: hidden;
  background: var(--black)
}

@keyframes slideFade {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hslide {
  display: none;
  position: relative
}

.hslide.active {
  display: block;
  animation: slideFade .75s cubic-bezier(0.2, 0.8, 0.2, 1) forwards
}

.hslide.active .h-content {
  opacity: 0;
  animation: slideUp .8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: .1s
}

.hslide.active .h-deco {
  opacity: 0;
  animation: slideFade 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: .15s
}

.hslide-bg {
  width: 100%;
  height: 88vh;
  min-height: 480px;
  max-height: 760px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

.h-tex {
  position: absolute;
  inset: 0;
  opacity: .02;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E")
}

.h-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .2) 55%, transparent 100%)
}

.h-deco {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-h);
  font-weight: 700;
  color: rgba(255, 255, 255, .05);
  user-select: none;
  line-height: 1;
  letter-spacing: -.01em;
  pointer-events: none
}

.h-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 640px
}

.h-eyebrow {
  font-size: clamp(10px, 1vw, 11px);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 16px
}

.h-title {
  font-family: var(--font-h);
  font-size: clamp(32px, 8vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 20px;
  word-break: break-word
}

.h-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 420px
}

.h-btns {
  display: flex;
  gap: 10px
}

.btn-hp {
  background: #fff;
  color: var(--black);
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 700;
  padding: 13px 28px;
  border: none;
  border-radius: 2px;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s
}

.btn-hp:hover {
  background: #e8e6e0
}

.btn-ho {
  background: transparent;
  color: #fff;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  padding: 12px 28px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: 2px;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .15s
}

.btn-ho:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08)
}

/* controls */
.h-ctrl {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5
}

.hca {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: none;
  color: rgba(255, 255, 255, .6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .15s
}

.hca:hover {
  border-color: #fff;
  color: #fff
}

.hcdots {
  display: flex;
  gap: 8px;
  align-items: center
}

.hcd {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .2s
}

.hcd.active {
  background: #fff;
  width: 22px;
  border-radius: 4px
}

.hcpause {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: none;
  color: rgba(255, 255, 255, .6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .15s
}

.hcpause:hover {
  border-color: #fff;
  color: #fff
}

/* STATS */
#stats {
  border-bottom: 1px solid var(--border)
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.sc {
  padding: 28px 20px;
  border-right: 1px solid var(--border);
  text-align: center
}

.sc:last-child {
  border-right: none
}

.sn {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  letter-spacing: .02em
}

.sl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 5px
}

/* SHARED */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px
}

section {
  padding: clamp(40px, 6vw, 80px) 0
}

.bg-dark {
  background: #111 !important;
  color: #fff !important
}

.sec-ey {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 10px
}

.sec-ti {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px
}

.sec-su {
  font-size: clamp(14px, 1.2vw, 15px);
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.75
}

.link-a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 2px;
  background: none;
  border-left: none;
  border-top: none;
  border-right: none;
  cursor: pointer;
  font-family: var(--font-b);
  transition: opacity .15s
}

.link-a:hover {
  opacity: .55
}

/* CATEGORIES */
#kategoriler {
  padding: 0
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border)
}

.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  border-right: 1px solid var(--border);
  background: #f2f0eb
}

.cat-card:last-child {
  border-right: none
}

.cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .55s cubic-bezier(0.2, 0.8, 0.2, 1)
}

.cat-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  transition: transform .55s cubic-bezier(0.2, 0.8, 0.2, 1)
}

.cbg1 {
  background: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?w=600&q=80') center/cover
}

.cbg2 {
  background: url('https://images.unsplash.com/photo-1527814050087-379381547969?w=600&q=80') center/cover
}

.cbg3 {
  background: url('https://images.unsplash.com/photo-1571019614242-c5c5adee9f50?w=600&q=80') center/cover
}

.cbg4 {
  background: url('https://images.unsplash.com/photo-1595341888016-a392ef81b7de?w=600&q=80') center/cover
}

.cat-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 16, .9) 0%, rgba(17, 17, 16, .4) 50%, rgba(17, 17, 16, .1) 100%);
  transition: background .3s
}

.cat-card:hover .cat-ov {
  background: linear-gradient(to top, rgba(17, 17, 16, .95) 0%, rgba(17, 17, 16, .5) 50%, rgba(17, 17, 16, .2) 100%)
}

.cat-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.cat-ico {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .5));
  transition: transform .35s ease
}

.cat-card:hover .cat-ico {
  transform: translateY(-5px)
}

.cat-name {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 6px;
  line-height: 1.1
}

.cat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.5;
  margin-bottom: 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .3s ease, margin .3s ease
}

.cat-card:hover .cat-desc {
  max-height: 60px;
  opacity: 1;
  margin-bottom: 20px
}

.cat-lnk {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: #fff;
  color: var(--black);
  padding: 8px 18px;
  border-radius: 2px;
  text-decoration: none;
  transition: all .2s;
  opacity: 0;
  transform: translateY(10px)
}

.cat-card:hover .cat-lnk {
  opacity: 1;
  transform: translateY(0)
}

/* PRODUCTS */
#urunler {
  background: var(--bg-light)
}

.ph {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 26px
}

.pfilters {
  display: flex;
  gap: 6px;
  margin-bottom: 30px
}

.pf {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--gray-mid);
  border-radius: 2px;
  cursor: pointer;
  transition: all .15s
}

.pf.act {
  background: var(--black);
  color: #fff;
  border-color: var(--black)
}

.pf:hover:not(.act) {
  border-color: var(--black);
  color: var(--black)
}

.pslider {
  overflow: hidden
}

.ptrack {
  display: flex;
  gap: 16px;
  transition: transform .6s cubic-bezier(0.2, 0.8, 0.2, 1)
}

.pc,
.pcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column
}

.pc {
  flex: 0 0 calc(33.333% - 11px)
}

.pc:hover,
.pcard:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
  transform: translateY(-3px)
}

/* Unified Product Image Container */
.pc-img,
.pcard img {
  height: 200px;
  width: 100%;
  object-fit: scale-down;
  background: #fff;
  padding: 10px;
  display: block;
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
}

.pc-body,
.pcard-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pc-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 5px
}

.pc-name {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 5px
}

.pc-mat {
  font-size: 12px;
  color: var(--gray-mid);
  line-height: 1.5;
  margin-bottom: 14px
}

/* CATEGORY SECTIONS (Alternating Backgrounds) */
.cat-section {
  padding: 50px 0;
  background: var(--white);
}

.cat-section:nth-of-type(even) {
  background: #f8f9fa !important;
}

/* GLOBAL PRODUCT CARDS (used in subpages) */
.pcard-specs {
  border-top: 1px solid #f2f2f2;
  padding-top: 14px;
  margin-bottom: 18px;
}

.pcard-specs div {
  font-size: 11px;
  color: var(--gray-mid);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pcard-specs div span {
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 10px;
}

.pcard-footer {
  border-top: 1px solid #f1f1f1;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.pcard-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.pcard-btn {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #ffffff;
  background: #111110;
  border: 1.5px solid #111110;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 2px;
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pcard-btn:hover {
  background: #ffffff;
  color: #111110;
}

.pcard-btn-sample {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  color: #25D366;
  border: 1.5px solid #25D366;
  padding: 12px 18px;
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  min-height: 44px;
}

.pcard-btn-sample:hover {
  background: #25D366;
  color: #fff;
}

.pc-ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border)
}

.pc-moq {
  font-size: 11px;
  color: var(--gray-mid)
}

.pc-moq strong {
  color: var(--black);
  font-weight: 600
}

.pc-btn {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: var(--black);
  color: #fff;
  border: none;
  padding: 7px 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity .15s
}

.pc-btn:hover {
  opacity: .75
}

.slctrls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px
}

.sla {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  background: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-mid);
  transition: all .15s
}

.sla:hover {
  border-color: var(--black);
  color: var(--black)
}

.sldots {
  display: flex;
  gap: 8px
}

.sld {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .2s
}

.sld.act {
  background: var(--black);
  width: 20px;
  border-radius: 3px
}

/* MANUFACTURER */
#uretici {
  background: var(--white);
  border-top: 1px solid var(--border)
}

.mg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.msteps {
  margin-top: 32px
}

.mstep {
  display: flex;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start
}

.mstep:last-child {
  border-bottom: none
}

.msn {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gray-light);
  min-width: 22px;
  padding-top: 2px
}

.msti {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px
}

.msde {
  font-size: 12px;
  color: var(--gray-mid);
  line-height: 1.5
}

.certgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px
}

.cc {
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 2px;
  transition: all .15s;
  cursor: default
}

.cc:hover {
  border-color: var(--black);
  background: var(--bg-light)
}

.cico {
  font-size: 20px;
  flex-shrink: 0
}

.cn {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--black);
  margin-bottom: 1px
}

.cd {
  font-size: 11px;
  color: var(--gray-mid)
}

.msgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.ms {
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 2px
}

.msnum {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px
}

.mslbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-light)
}

/* REFERENCES */
#referanslar {
  background: var(--black);
  padding: 80px 0
}

.rh .sec-ey {
  color: rgba(255, 255, 255, .3)
}

.rh .sec-ti {
  color: #fff
}

.rh .sec-su {
  color: rgba(255, 255, 255, .4)
}

.logos-strip {
  overflow: hidden;
  margin: 40px 0 48px;
  position: relative
}

.logos-strip::before,
.logos-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2
}

.logos-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent)
}

.logos-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent)
}

.lt {
  display: flex;
  animation: marquee 30s linear infinite
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.li {
  flex: 0 0 auto;
  padding: 10px 28px
}

.lpill {
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 9px 20px;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
  border-radius: 2px;
  transition: all .25s;
  cursor: default
}

.lpill:hover {
  color: rgba(255, 255, 255, .65);
  border-color: rgba(255, 255, 255, .28)
}

.qgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px
}

.qc {
  border: 1px solid rgba(255, 255, 255, .09);
  padding: 0;
  border-radius: 2px;
  transition: border-color .2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #111 !important
}

.qc:hover {
  border-color: rgba(255, 255, 255, .22)
}

/* Testimonial slider-specific */
#t-slider {
  height: 460px;
}

.t-slides {
  height: 100%;
  position: relative;
}

.t-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.t-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.t-map-area {
  height: 220px;
  position: relative;
  background: #111;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-map-area .t-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 30px 30px;
}

.t-map-area svg {
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 0 10px rgba(0, 229, 125, .35));
  z-index: 2;
  position: relative;
}

.t-map-area path {
  fill: rgba(0, 229, 125, .03);
  stroke: rgba(0, 229, 125, .2);
  stroke-width: 1.5;
  transition: all .8s ease;
}

.t-slide.active .t-map-area path {
  fill: rgba(0, 229, 125, .12);
  stroke: rgba(0, 229, 125, .7);
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

.t-pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #00e57d;
  border-radius: 50%;
  z-index: 3;
}

.t-pulse::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid #00e57d;
  border-radius: 50%;
  animation: tPulse 2s infinite;
}

@keyframes tPulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.t-content-area {
  flex: 1;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qm {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 700;
  color: rgba(255, 255, 255, .1);
  line-height: .85;
  margin-bottom: 8px
}

.qt {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .75);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic
}

.qa {
  display: flex;
  align-items: center;
  gap: 10px
}

.qav {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .4)
}

.qan {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85)
}

.qar {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .02em
}

.mapband {
  border: 1px solid rgba(255, 255, 255, .09);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 2px
}

.mapband .sec-ti {
  color: #fff;
  font-size: 26px;
  margin-bottom: 4px
}

.mapband .sec-su {
  color: rgba(255, 255, 255, .35);
  font-size: 13px
}

.mregs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.mreg {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 5px 12px;
  border-radius: 2px;
  transition: all .2s
}

.mreg:hover {
  color: rgba(255, 255, 255, .65);
  border-color: rgba(255, 255, 255, .28)
}

/* WA CTA */
#wa-cta {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0
}

.wawrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px
}

.wa-l .sec-ey {
  color: var(--gray-mid)
}

.wa-l .sec-ti {
  font-size: 46px;
  margin-bottom: 10px
}

.wa-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0
}

.btn-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 700;
  padding: 15px 32px;
  border: none;
  border-radius: 2px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap
}

.btn-wa:hover {
  background: #1db954
}

.wa-meta {
  font-size: 11px;
  color: var(--gray-light);
  text-align: right;
  line-height: 1.7
}

/* FOOTER */
footer {
  background: var(--black-soft, #1c1c1a);
  padding: 52px 0 0
}

.fgrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.flogo {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, .25);
  display: inline-block;
  padding: 3px 8px;
  margin-bottom: 14px
}

.fdesc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .35);
  line-height: 1.7;
  margin-bottom: 18px
}

.fsoc {
  display: flex;
  gap: 8px
}

.fsoc a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  transition: all .15s;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  border-radius: 2px
}

.fsoc a:hover {
  border-color: rgba(255, 255, 255, .45);
  color: rgba(255, 255, 255, .75)
}

.fch {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px
}

.fl {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color .15s
}

.fl:hover {
  color: rgba(255, 255, 255, .8)
}

.fl.hl {
  color: rgba(255, 255, 255, .65);
  font-weight: 500
}

.fl.hl:hover {
  color: #fff
}

.fbot {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.fcopy {
  font-size: 11px;
  color: rgba(255, 255, 255, .22);
  letter-spacing: .04em
}

.flangs {
  display: flex;
  gap: 14px
}

.flangs span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .22);
  cursor: pointer;
  transition: color .15s
}

.flangs span:hover,
.flangs span.act {
  color: rgba(255, 255, 255, .65)
}

/* WA FLOAT BUTTON */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row-reverse;
}

.wa-fab {
  order: 1;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-fab:hover {
  transform: scale(1.1) rotate(8deg);
  background: #20ba5a;
}

.wa-fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.wa-tip {
  order: 2;
  background: var(--black);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-15px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.wa-float:hover .wa-tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* SCROLL TO TOP BUTTON */
.st-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.st-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.st-btn:hover {
  background: #333;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.st-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.st-btn:active svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .st-btn {
    bottom: 80px;
    left: 20px;
    width: 40px;
    height: 40px;
  }
}

.wa-fab {
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .38);
  transition: transform .2s
}

.wa-fab:hover {
  transform: scale(1.08)
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease
}

.rv.vis {
  opacity: 1;
  transform: translateY(0)
}

.rvl {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .5s ease, transform .5s ease
}

.rvl.vis {
  opacity: 1;
  transform: translateX(0)
}

.rvr {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .5s ease, transform .5s ease
}

.rvr.vis {
  opacity: 1;
  transform: translateX(0)
}

/* MOBILE MENU REDESIGN */
.mob-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0;
}

.mob-menu.open {
  transform: translateX(0);
}

.mob-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mob-logo {
  height: 32px !important;
  filter: brightness(0) !important;
}

.mob-x {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--black);
  padding: 4px;
}

.mob-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mob-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.mob-link-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mob-menu a {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  padding: 16px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mob-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9;
  padding: 0 15px;
}

.mob-submenu.open {
  max-height: 500px;
  padding: 10px 15px 20px;
}

.mob-submenu a {
  font-size: 16px;
  padding: 8px 0;
  border: none;
  color: var(--gray-mid);
  text-transform: none;
  font-weight: 500;
}

.mob-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.mob-link-item.open .mob-arrow {
  transform: rotate(180deg);
}

.mob-langs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.mob-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-mid);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fdfdfd;
}

.mob-info {
  margin-top: auto;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.mob-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.5;
}

.mob-info-item span {
  color: var(--black);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 2px;
}

@media(max-width:960px) {
  .topbar {
    display: none !important;
  }

  .hinner {
    padding: 0 20px;
    height: 70px;
  }

  nav,
  .btn-wa-header,
  .h-right .lang-sel {
    display: none !important;
  }

  .h-ico {
    display: flex !important;
    margin-left: auto;
    margin-right: 12px;
    color: var(--white);
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .mob-btn {
    display: flex;
    margin-left: 5px;
  }

  .logo img {
    height: 50px !important;
  }

  .h-content {
    padding: 0 20px;
    max-width: 100%;
  }

  .h-title {
    font-size: 38px !important;
    line-height: 1.1;
  }

  .h-sub {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .h-btns {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .h-btns button {
    width: 100%;
    padding: 12px;
    font-size: 11px;
  }

  .hslide-bg {
    height: 75vh;
    min-height: 480px;
  }

  .h-deco {
    display: none !important;
  }

  .container {
    padding: 0 16px;
  }

  section {
    padding: 32px 0;
  }

  .sec-ti {
    font-size: 28px;
  }

  .sec-su {
    font-size: 14px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .sc {
    padding: 16px 8px;
    border-bottom: 1px solid var(--border);
  }

  .sc:nth-child(2n) {
    border-right: none;
  }

  .sn {
    font-size: 28px;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .cat-card {
    aspect-ratio: 1/1;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .pslider {
    margin: 0 -16px;
    padding: 0 16px;
  }

  .ptrack {
    gap: 12px;
  }

  .pc {
    flex: 0 0 calc(90% - 12px);
  }

  .pgrid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .pcard {
    height: auto !important;
  }

  .mg {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .wawrap {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .wa-r {
    align-items: center;
  }

  .btn-wa {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }

  .fgrid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .fdesc {
    max-width: 100%;
    margin: 0 auto 16px;
  }

  .fsoc {
    justify-content: center;
  }

  .fbot {
    flex-direction: column;
    gap: 15px;
    padding: 25px 0;
    font-size: 10px;
  }

  .flangs {
    justify-content: center;
  }

  /* Forms mobile */
  .qgrid {
    grid-template-columns: 1fr !important;
  }

  /* Table Responsiveness */
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
    margin-bottom: 20px;
  }

  .spec-table {
    min-width: 600px;
  }

  /* Inputs fix for iOS zoom */
  input,
  textarea,
  select {
    font-size: 16px !important;
  }

  /* Ensure no fixed widths on mobile */
  .container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* MARQUEE FOR BRANDS MOBILE */
.brand-marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 20px;
  padding: 20px 0;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 20px;
  animation: scroll-marquee 20s linear infinite;
}

@keyframes scroll-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media(max-width: 600px) {
  .brand-grid-to-marquee {
    display: none !important;
  }

  .brand-marquee {
    display: flex !important;
  }
}

/* SEARCH MODAL */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal.open {
  opacity: 1;
  visibility: visible;
}

.search-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  font-size: 20px;
  transition: transform 0.2s;
}

.search-close:hover {
  transform: rotate(90deg);
}

.search-container {
  max-width: 800px;
  width: 100%;
  margin: 60px auto 0;
}

.search-input-wrap {
  position: relative;
  margin-bottom: 40px;
}

.search-input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid var(--black);
  padding: 15px 0;
  font-family: var(--font-h);
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 700;
  color: var(--black);
  outline: none;
  text-transform: uppercase;
}

.search-input::placeholder {
  color: #ccc;
}

.search-results {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 15px;
}

.search-results::-webkit-scrollbar {
  width: 4px;
}

.search-results::-webkit-scrollbar-thumb {
  background: #eee;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  border-bottom: 1px solid #f2f2f2;
  text-decoration: none;
  color: var(--black);
  transition: background 0.15s;
}

.search-item:hover {
  background: #f9f9f9;
}

.search-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 2px;
  background: #eee;
}

.search-item-info h4 {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.search-item-info span {
  font-size: 12px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.no-results {
  padding: 40px 0;
  text-align: center;
  color: #999;
  font-size: 16px;
}

/* PHONE PICKER INTEGRATION */
.iti {
  width: 100%;
}

.iti__country-list {
  z-index: 1000;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.iti__input-box {
  font-family: var(--font-b) !important;
}

.iti__selected-flag {
  border-radius: 2px 0 0 2px;
  background-color: #f9f9f9;
}

.iti input {
  padding-left: 85px !important;
}

/* BLOG SECTION */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 80px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--black);
}

.blog-card-img {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.blog-card h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.blog-excerpt {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.blog-read-more {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.blog-read-more:hover {
  gap: 12px;
}

/* BLOG DETAIL PAGE */
.post-header {
  padding: 100px 0 60px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.post-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.post-header h1 {
  font-family: var(--font-h);
  font-size: 56px;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.1;
}

.post-content-wrap {
  padding: 80px 0;
  background: var(--white);
}

.post-container {
  max-width: 800px;
  margin: 0 auto;
}

.post-article {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.post-article h2 {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 60px 0 24px;
  color: var(--black);
}

.post-article h3 {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 40px 0 20px;
}

.post-article p {
  margin-bottom: 24px;
}

.post-article img {
  width: 100%;
  height: auto;
  margin: 40px 0;
  border-radius: 2px;
}

.post-article ul {
  margin: 0 0 30px 20px;
}

.post-article li {
  margin-bottom: 12px;
}

.post-article blockquote {
  padding-left: 30px;
  border-left: 4px solid var(--black);
  font-style: italic;
  font-size: 22px;
  color: var(--black);
  margin: 40px 0;
}

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

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .post-header h1 {
    font-size: 36px;
  }
}

/* PREMIUM CTA SECTION */
.premium-cta {
  padding: 100px 20px;
  text-align: center;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}

.premium-cta h2 {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--black);
}

.premium-cta p {
  font-size: 18px;
  color: var(--gray-mid);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-wa-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #20b958;
  color: #fff;
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 45px;
  border: 2px solid #20b958;
  /* Added border for alignment with secondary */
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(32, 185, 88, 0.2);
  text-decoration: none;
}

.btn-wa-cta:hover {
  background: #1a9e4a;
  border-color: #1a9e4a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 185, 88, 0.3);
}

.btn-wa-cta.secondary {
  background: transparent;
  color: var(--black);
  border: 2px solid #ddd;
  box-shadow: none;
}

.btn-wa-cta.secondary:hover {
  background: #f8f9fa;
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media(max-width:960px) {
  .premium-cta {
    padding: 60px 20px;
  }

  .premium-cta h2 {
    font-size: 32px;
  }

  .premium-cta p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-wa-cta {
    width: 100%;
    max-width: 400px;
    padding: 16px 24px;
    font-size: 14px;
  }
}

/* RTL SUPPORT FOR ARABIC */
[dir="rtl"] {
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .tb-l {
  gap: 20px;
  flex-direction: row-reverse;
}

[dir="rtl"] .hinner {
  flex-direction: row-reverse;
}

[dir="rtl"] .logo {
  margin-right: 0;
  margin-left: 40px;
}

[dir="rtl"] nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .h-right {
  margin-left: 0;
  margin-right: auto;
  flex-direction: row-reverse;
}

[dir="rtl"] .lang-drop {
  right: auto;
  left: -10px;
  align-items: flex-end;
}

[dir="rtl"] .lang-drop a {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .btn-wa-header {
  margin-left: 0;
  margin-right: 8px;
  flex-direction: row-reverse;
}

[dir="rtl"] .hslide-bg {
  justify-content: flex-end;
}

[dir="rtl"] .h-ov {
  background: linear-gradient(to left, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .2) 55%, transparent 100%);
}

[dir="rtl"] .h-content {
  padding: 0 80px 0 0;
  text-align: right;
}

[dir="rtl"] .h-btns {
  flex-direction: row-reverse;
}

[dir="rtl"] .h-deco {
  right: auto;
  left: 80px;
  text-align: left;
}

[dir="rtl"] .sc {
  border-right: none;
  border-left: 1px solid var(--border);
}

[dir="rtl"] .sc:last-child {
  border-left: none;
}

[dir="rtl"] .cat-card {
  border-right: none;
  border-left: 1px solid var(--border);
}

[dir="rtl"] .cat-card:last-child {
  border-left: none;
}

[dir="rtl"] .cat-body {
  align-items: flex-start;
  text-align: right;
}

[dir="rtl"] .cat-ico {
  transform: scaleX(-1);
}

[dir="rtl"] .pc-body {
  text-align: right;
}

[dir="rtl"] .pcard-specs div {
  flex-direction: row-reverse;
}

[dir="rtl"] .pcard-footer {
  flex-direction: row-reverse;
}

[dir="rtl"] .fgrid {
  text-align: right;
}

[dir="rtl"] .fsoc {
  justify-content: flex-start;
}

[dir="rtl"] .fbot {
  flex-direction: row-reverse;
}

[dir="rtl"] .wa-float {
  right: auto;
  left: 24px;
  flex-direction: row;
}

[dir="rtl"] .wa-tip {
  transform: translateX(10px);
}

[dir="rtl"] .st-btn {
  right: auto;
  left: 24px;
}

@media (max-width: 960px) {
  [dir="rtl"] .h-ico {
    margin-left: 12px;
    margin-right: auto;
  }

  [dir="rtl"] .mob-menu {
    transform: translateX(-100%);
  }

  [dir="rtl"] .mob-menu.open {
    transform: translateX(0);
  }

  [dir="rtl"] .mob-h {
    flex-direction: row-reverse;
  }

  [dir="rtl"] .mob-body {
    text-align: right;
  }

  [dir="rtl"] .mob-langs {
    flex-direction: row-reverse;
  }

  [dir="rtl"] .mob-link-item a {
    flex-direction: row-reverse;
  }

  [dir="rtl"] .mob-info-item {
    flex-direction: row-reverse;
    text-align: right;
  }
}