@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary: #1e89c2;
  --header-height: 100px;
  --gap: 16px;
  --container-width: 1850px;
  --navbarMaskWidth: 120px;
  --navbarHeight: 54px;
  --akd-primary: #1e89c2;
  --akd-text: #111;
  --akd-muted: rgba(17, 17, 17, .55);
  --akd-line: #DDDDDD;
  --akd-shadow: 0 18px 50px rgba(0, 0, 0, .08);
  --akd-radius: 20px;
  --akd-autoplay: 5000ms;
  color: var(--akd-text);
  --bg-footer: #202e5f;
  --line-footer: rgba(255, 255, 255, 0.08);
  --muted-footer: rgba(255, 255, 255, 0.55);
  --muted-footer: rgba(255, 255, 255, 0.35);
  --menu-footer: rgba(255, 255, 255, 0.18);
  --yellow-footer: #1e89c2;
  --ak-vm-primary: #202e5f;
  --ak-vm-secondary: #202e5f;
  --ak-vm-muted: #787878;
  --ak-vm-border: rgba(15, 23, 42, 0.15);
  --main-500: #1888c2;
  --main-600: #1888c2;
  --bg: #f1f7fb;

  /* panelden değiştir (section dataset ile yönetiyoruz) */
  --bg-opacity: 0.92;
  /* 0..1 */
  --logo-opacity: 0.03;
  /* 0..1 */
}

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

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;

}

/* Readability baseline for body text */
p,
a,
li,
label,
input,
textarea,
button {
  font-size: clamp(14px, 0.95rem, 16px);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container-fluid {
  max-width: 100%;
  padding: 0 40px;
}

/* Main Container */
.hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* Grid Layout */
.hero-grid {
  display: flex;
  /* grid-template-columns: minmax(0, 1fr) minmax(0, 10fr); */
  height: 100%;
  width: 100%;
  position: relative;
}

/* Left Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-top: 200px;
  padding-bottom: 60px;
  position: absolute;
  left: 0;
  z-index: 3;
}

.sidebar::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: calc(100% - 98px);
  background: rgba(255, 255, 255, 0.2);
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #b0b0b0;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.5s ease;
}

.social-links a:hover {
  color: white;
}

/* Sidebar Bottom */
.sidebar-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

/* Pagination */
.pagination-wrapper {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 0 50px 30px;
}

.pagination {
  color: #fbf9f3;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Scroll Button */
.scroll-button {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.scroll-button:hover svg path:first-child {
  transform: translateY(10px);
}

.scroll-button svg path:first-child {
  transition: transform 0.5s ease;
}

/* Slider Container */
.slider-container {
  position: relative;
  overflow: hidden;
  flex: 1;
  height: 100%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(30, 137, 194, 0.85), rgb(15 90 140 / 65%));
}

/* Slide Content */
.slide-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding-left: 200px;
  padding-bottom: 0px;
  padding-top: 200px;
  gap: 37px;
  z-index: 2;
}

.slide-content.hidden {
  opacity: 0;
  transform: translateY(20px);
}

.slide-content.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

/* Title Container */
.title-container {
  position: relative;
}

.title-container::before {
  /* content: ""; */
  position: absolute;
  top: 0;
  left: -60px;
  width: 5px;
  height: 100%;
  background: #1888c2;
}

.slide-title {
  color: white;
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -1.9px;
  line-height: 1.1;
  margin: 0;
  max-width: min(15ch, calc(100vw - 220px));
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-wrap: balance;
}

/* CTA Container */
.cta-container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #1888c2;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: background 0.5s ease;
}

.btn-primary:hover {
  background: #00247d;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #00247d;
  border-radius: 50%;
  font-size: 16px;
  transition: background 0.5s ease;
}

.btn-primary:hover .btn-icon {
  background: #1888c2;
}

/* Description */
.slide-description {
  color: #ffffff;
  font-size: clamp(17px, 2vw, 20px);
  max-width: 465px;
  line-height: 1.6;
}

/* Navigation */
.navigation {
  position: absolute;
  bottom: 60px;
  right: 150px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 20;
  pointer-events: auto;
}

.nav-button {
  position: relative;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-button svg {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
  transition: transform 0.5s ease;
}

.nav-button:hover svg {
  transform: scale(1.05);
}

.nav-button svg .outer {
  stroke-dasharray: 251.3;
  stroke-dashoffset: 251.3;
  stroke-width: 3px;
  transition: stroke-dashoffset 0.5s ease;
}

.nav-button:hover svg .outer {
  stroke-dashoffset: 0;
}

.nav-button .arrow {
  position: absolute;
  color: white;
  font-size: 25px;
  font-weight: bold;
  z-index: 1;
}

.nav-prev .arrow {
  transform: rotate(180deg);
}

.nav-next .arrow {
  transform: rotate(0deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .sidebar {
    padding-top: 130px;
  }

  .pagination {
    font-size: 20px;
  }

  .pagination-wrapper {
    padding: 0 20px 30px;
  }

  .sidebar-bottom {
    gap: 30px;
  }

  .navigation {
    right: 100px;
    bottom: 40px;
  }
}

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

  .sidebar {
    display: none;
  }

  .slide-content {
    padding-left: 30px;
    justify-content: center;
  }

  .title-container::before {
    display: none;
  }

  .slide-title {
    letter-spacing: -1px;
    max-width: calc(100vw - 60px);
  }

  .cta-container {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .navigation {
    position: relative;
    bottom: 120px;
    right: auto;
    padding: 0 30px 80px;
  }

  .hero-container {
    position: relative;
    width: auto;
    height: 100vh;
    display: block;
  }

  .banner-container {
    flex-direction: column !important;
  }
  .header-field.scrolling-up .logo-white,
  .header-field.scrolling-down .logo-white {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .slide-title {
    letter-spacing: -0.5px;
    max-width: calc(100vw - 40px);
  }

  .btn-primary {
    font-size: 16px;
  }

  .slide-description {
    font-size: 17px;
  }

  .nav-button {
    width: 50px;
    height: 50px;
  }

  .nav-button svg {
    width: 50px;
    height: 50px;
  }
}



/* Header */


.header-field {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background: transparent;
  transition: background 0.5s;
}

.header-field.scrolling-up,
.header-field.scrolling-down {
  background: #1f2f5f;
}

.container.range-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gap);
  height: 100%;
}

.wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

/* LOGO + bottom hairline */
.brand {
  position: relative;
  display: block;
  height: 95px;
  width: 760px;
}

.brand::before {
  content: "";
  position: absolute;
  bottom: -0.1px;
  right: -2px;
  width: 100vw;
  height: 0.9px;
  background: rgba(255, 255, 255, 0.2);
  transition: opacity 0.5s, background 0.5s;
}

.header-field.sub-page .brand::before {
  background: rgba(0, 0, 0, 0.2);
}

.header-field.scrolling-up .brand::before,
.header-field.scrolling-down .brand::before {
  opacity: 0;
}

.logo {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: none;
}

.logo-dark {
  display: block;
}

.header-field.scrolling-up .logo-dark,
.header-field.scrolling-down .logo-dark {
  display: none;
}

.header-field.scrolling-up .logo-white,
.header-field.scrolling-down .logo-white {
  display: block;
}

/* optional sub-page mode */
.header-field.sub-page .logo-dark {
  display: none;
}

.header-field.sub-page .logo-page {
  display: block;
}

.header-field.sub-page .brand::before {
  background: rgba(0, 0, 0, 0.2);
}

/* Navbar masks - DÜZELTME */
.set-bg {
  position: relative;
  min-width: var(--navbarMaskWidth);
  height: calc(var(--navbarHeight));
  transition: opacity 0.5s;
}

.set-bg.left {
  transform: rotate(-1.5deg);
}

.set-bg.right {
  transform: rotate(1.5deg);
}

.header-field.scrolling-down .set-bg.left,
.header-field.scrolling-down .set-bg.right,
.header-field.scrolling-down .set-bg.center,
.header-field.scrolling-up .set-bg.left,
.header-field.scrolling-up .set-bg.right,
.header-field.scrolling-up .set-bg.center {
  opacity: 0;
}

.set-bg.left img,
.set-bg.right img {
  position: absolute;
  min-width: var(--navbarMaskWidth);
  bottom: -20px;
  height: 53.5px;
  object-fit: contain;
}

.set-bg.left img {
  left: 0;
}

.set-bg.right img {
  right: 0;
}

.header-field.sub-page .set-bg.left img,
.header-field.sub-page .set-bg.right img {
  filter: invert(1);
}

/* Center border */
.set-bg.center {
  width: 100%;
  height: calc(var(--navbarHeight) / 2);
  margin: 0 -0.5px 40px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: opacity 0.5s;
}

.header-field.sub-page .set-bg.center {
  border-bottom-color: rgba(0, 0, 0, 0.2);
}

/* NAV WRAPPER */
.nav-shell {
  position: relative;
}

.nav-shell::before {
  content: "";
  position: absolute;
  bottom: 41.8px;
  left: -2px;
  width: 100vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  transition: opacity 0.5s;
}

.header-field.sub-page .nav-shell::before {
  background: rgba(0, 0, 0, 0.2);
}

.header-field.scrolling-up .nav-shell::before,
.header-field.scrolling-down .nav-shell::before {
  opacity: 0;
}

.headerMenu {
  list-style: none;
  margin: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
}

.menu-item {
  position: relative;
  padding: 38px 0;
}

.menu-text {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.2px;
  transition: color 0.5s;
}

.header-field.sub-page .menu-text {
  color: #5d5d5d;
}

.header-field.scrolling-up .menu-text,
.header-field.scrolling-down .menu-text {
  color: #fff;
}

.menu-trigger {
  background: none;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  z-index: 20;
}

.chev {
  font-size: 8px;
  color: #fff;
  transition: transform 0.5s, color 0.5s;
}

.menu-item:hover .chev {
  transform: rotate(180deg);
}

.header-field.sub-page .chev {
  color: #5d5d5d;
}

.header-field.scrolling-up .chev,
.header-field.scrolling-down .chev {
  color: #fff;
}

/* Hover overlay (desktop) */
.menu-overlay {
  position: absolute;
  top: 0;
  left: -300vh;
  width: 300vw;
  height: 250vh;
  opacity: 0;
  pointer-events: none;
  z-index: -10;
  transition: opacity 0.5s;
}

.menu-item:hover .menu-overlay {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

/* Submenu (desktop hover) */
.sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 590px;
  width: 100%;
  background: #fff;
  border-radius: 21px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 200;
}

.sub-menu::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  height: 35px;
  background: transparent;
  pointer-events: none;
  transition: pointer-events 0.5s;
}

.menu-item:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
}

.menu-item:hover .sub-menu::before {
  pointer-events: auto;
}

.sub-menu.align-left {
  left: 0;
  transform: translateX(-70%);
}

/* SUB MENU-1 */
/* Submenu (desktop hover) */
.sub-menu-1 {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 231px;
  width: 100%;
  background: #fff;
  border-radius: 21px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 200;
}

.sub-menu-1::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  height: 35px;
  background: transparent;
  pointer-events: none;
  transition: pointer-events 0.5s;
}

.menu-item:hover .sub-menu-1 {
  opacity: 1;
  pointer-events: auto;
}

.menu-item:hover .sub-menu-1::before {
  pointer-events: auto;
}

.sub-menu-1.align-left {
  left: 0;
  transform: translateX(-70%);
}

.sub-col-1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px 0 15px 15px;
}

.sub-link-1 {
  padding: 0 0 0 0;
  color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.5s;
  position: relative;
}

.sub-link-1::before {
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 0;
  height: 0;
  opacity: 0;
  background: var(--primary);
  border-radius: 50%;
  color: #fff;
  transform: rotate(-45deg);
  transition: all 0.5s;
}

.sub-link-1:hover::before {
  width: 24px;
  height: 24px;
  opacity: 1;
}

.sub-link-1:hover {
  color: #000;
}

.sub-link-1.active {
  color: #000;
}



.sub-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px 0 15px 15px;
}

.sub-link {
  padding: 0 0 0 0;
  color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.5s;
  position: relative;
}

.sub-link::before {
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 0;
  height: 0;
  opacity: 0;
  background: var(--primary);
  border-radius: 50%;
  color: #fff;
  transform: rotate(-45deg);
  transition: all 0.5s;
}

.sub-link:hover::before {
  width: 24px;
  height: 24px;
  opacity: 1;
}

.sub-link:hover {
  color: #000;
}

.sub-link.active {
  color: #000;
}

.sub-media {
  padding: 10px;
}

.media-card {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}

.media-card img {
  width: 100%;
  height: 36vh;
  object-fit: cover;
  border-radius: 16px;
}

.menu-link {
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  color: #fff;
  display: block;
  padding: 38px 0;
}

.menu-link:hover {
  color: var(--ak-vm-secondary);
  transition: color 0.3s ease;
}
.header-field.scrolling-up, .header-field.scrolling-down .menu-link:hover {
  color: #1888c2;
  transition: color 0.3s ease;
}

/* MOBILE */
.mobile-menu-field {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 30;
}

.line-field {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: 20px;
}

.line {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: background 0.5s, transform 0.5s, opacity 0.5s;
}

.header-field.sub-page .line {
  background: #fff;
}

.mobile-menu-field.active .line.l1 {
  transform: rotate(45deg) translateY(9px);
  transition-delay: 0.25s;
}

.mobile-menu-field.active .line.l2 {
  opacity: 0;
  transform: translateX(24px);
}

.mobile-menu-field.active .line.l3 {
  transform: rotate(-45deg) translateY(-9px);
  transition-delay: 0.1s;
}

/* RESPONSIVE */
@media (min-width: 1536px) {
  .brand {
    max-width: 270px;
  }
}

@media (min-width: 1280px) and (max-width: 1535px) {
  .brand {
    max-width: 230px;
  }

  .headerMenu {
    gap: 20px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .brand {
    max-width: 200px;
    height: 107px;
    aspect-ratio: 18/6;
  }

  .menu-item {
    padding: 38px 0;
  }

  .menu-text {
    font-size: 16px;
  }

  .brand::before,
  .nav-shell::before {
    display: none;
  }
}

/* HEADER UTILITY (phone, global, language) */
.header-utility {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 10;
}

.header-utility .phone {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.header-utility .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.header-utility .icon-circle i {
  color: #1888c2;
  font-size: 24px;
  line-height: 1;
}

.header-utility .number {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.header-utility .lang {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 10px;
  color: #fff;
  font-weight: 700;
}

.header-utility .global {
  opacity: 0.95;
}

.header-utility .divider {
  width: 2px;
  height: 15px;
  background: #202e5f;
  display: inline-block;
}

.header-utility .lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.header-utility .lang-btn i {
  font-size: 10px;
}

/* Language dropdown */
.header-utility .lang {
  position: relative;
}

.header-utility .lang-menu {
  position: absolute;
  top: calc(100% + 0px);
  right: 0;
  background: #fff;
  color: #0b2b3a;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 140px;
  padding: 6px;
  margin: 0;
  list-style: none;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1000;
}

.header-utility .lang.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* open on hover as well */
.header-utility .lang:hover .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-utility .lang:hover .lang-btn i {
  transform: rotate(180deg);
  transition: transform 0.25s ease;
}

.header-utility .lang-option {
  display: flex;
  width: 100%;
  border: 0;
  background: transparent;
  color: #0b2b3a;
  font-weight: 700;
  padding: 13px 6px;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
}

.header-utility .lang-option .lang-flag {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
}

.header-utility .lang-option[aria-selected="true"] {
  color: #1888c2;
}

.header-utility .lang-option:hover {
  background: rgba(0, 0, 0, 0.05);
}

.header-utility .lang.open .lang-btn i {
  transform: rotate(180deg);
  transition: transform 0.25s ease;
}

.header-utility .lang-btn .lang-flag {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}

@media (max-width: 1023px) {
  .header-utility {
    display: none;
  }
}

@media (max-width: 1023px) {

  .set-bg.left,
  .set-bg.right,
  .set-bg.center {
    display: none;
  }

  .brand::before,
  .nav-shell::before {
    display: none;
  }
}

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  :root {
    --header-height: 80px;
  }

  .container.range-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .wrapper {
    justify-content: space-between;
  }

  .brand {
    height: 60px;
  }

  .logo-page {
    display: block;
    width: 60%;
  }

  .logo-dark {
    display: none;
  }

  .mobile-menu-field {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
  }

  .menu-overlay {
    display: none;
  }

  /* Ürünlerimiz alt menüsü (sub-menu) */
  .sub-menu {
    position: static;
    transform: none;
    width: 100%;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    display: none;
    grid-template-columns: 1fr;
    background: transparent;
    box-shadow: none;
  }

  .sub-menu::before {
    display: none;
  }

  .sub-col {
    padding: 0;
    gap: 0;
  }

  .sub-media {
    display: none;
  }

  /* Medya alt menüsü (sub-menu-1) */
  .sub-menu-1 {
    position: static;
    transform: none;
    width: 100%;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    display: none;
    background: transparent;
    box-shadow: none;
  }

  .sub-menu-1::before {
    display: none;
  }

  .sub-col-1 {
    padding: 0;
    gap: 0;
  }

  .headerMenu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
  }

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

  .menu-item {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .menu-trigger,
  .menu-link {
    width: 100%;
    padding: 15px 30px;
    justify-content: space-between;
  }

  .menu-text {
    font-size: 18px;
    padding: 15px 0;
  }

  .chev {
    font-size: 16px;
    transition: transform 0.3s ease;
  }

  .menu-item.open .chev {
    transform: rotate(180deg);
  }

  /* Ürünlerimiz açılır menü */
  .menu-item.open > .sub-menu {
    display: block;
  }

  /* Medya açılır menü */
  .menu-item.open > .sub-menu-1 {
    display: block;
  }

  .sub-link {
    padding: 15px 30px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 16px;
  }

  .sub-link::before {
    display: none;
  }

  .sub-link:hover {
    color: #fff;
  }

  .sub-link.active {
    color: #fff;
  }

  .sub-link-1 {
    padding: 15px 30px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 16px;
  }

  .sub-link-1::before {
    display: none;
  }

  .sub-link-1:hover {
    color: #fff;
  }

  .sub-link-1.active {
    color: #fff;
  }

  /* Mobile language selector inside menu */
  .mobile-lang-bar {
    width: 100%;
    padding: 20px 30px;
    display: flex !important;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .mobile-lang-bar .mobile-lang-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s ease;
  }

  .mobile-lang-bar .mobile-lang-item:hover,
  .mobile-lang-bar .mobile-lang-item.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
  }

  .mobile-lang-bar .mobile-lang-item img {
    width: 18px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
  }
}

@media (max-width: 639px) {
  .mobile-menu-field {
    gap: 8px;
  }

  .line {
    width: 20px;
  }
}

/* page content spacing (demo) */
main {
  padding-top: var(--header-height);
}

.demo {
  padding: 32px;
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
}

/* ==============================
       SCOPE: SADECE #akd-about
       ============================== */
#akd-about {
  --akd-primary: #00A7D0;
  --akd-text: #111;
  --akd-muted: rgba(17, 17, 17, .55);
  --akd-line: #DDDDDD;
  --akd-shadow: 0 18px 50px rgba(0, 0, 0, .08);
  --akd-radius: 20px;
  --akd-autoplay: 5000ms;
  color: var(--akd-text);
  overflow: hidden;
  /* yatay taşmayı engeller */
}

#akd-about * {
  box-sizing: border-box;
}

#akd-about .akd-about-section {
  padding: 80px 0;
}

/* ---- SLIDER ---- */
#akd-about .akd-slider {
  position: relative;
  height: 600px;
  width: 100%;
  isolation: isolate;
  /* z-index çakışmalarını azaltır */
}

#akd-about .akd-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

#akd-about .akd-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--akd-radius);
  transform: scale(.80);
  filter: blur(10px);
  transition: transform 600ms ease, filter 600ms ease, box-shadow 600ms ease;
  display: block;
}

/* active */
#akd-about .akd-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

#akd-about .akd-slide.is-active img {
  transform: scale(1);
  filter: blur(0);
  box-shadow: var(--akd-shadow);
}

/* next (ghost) */
#akd-about .akd-slide.is-next {
  opacity: .85;
  z-index: 2;
  transform: translateX(-15%);
}

#pk-about .pk-slide.is-next img {
  transform: scale(.90);
  filter: blur(6px);
}

/* ---- PAGINATION BARS ---- */
#akd-about .akd-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
  user-select: none;
}

#akd-about .akd-nav-btn {
  width: 60px;
  height: 6px;
  background: rgba(0, 167, 208, .15);
  border-radius: 10px;
  border: none;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  outline: none;
}

#akd-about .akd-nav-btn.is-active {
  background: rgba(32, 46, 95);
}

#akd-about .akd-nav-fill {
  height: 100%;
  width: 0%;
  background: var(--akd-primary);
}

#akd-about .akd-nav-btn.is-active .akd-nav-fill {
  animation: akdProgress var(--akd-autoplay) linear forwards;
}

@keyframes akdProgress {
  from {
    width: 0%
  }

  to {
    width: 100%
  }
}

/* ---- CONTENT ---- */
#akd-about .akd-title {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
}

#akd-about .akd-title .akd-primary {
  color: var(--akd-primary);
}

#akd-about .akd-desc {
  font-size: 18px;
  color: var(--akd-muted);
  line-height: 1.6;
  max-width: 580px;
  margin: 0;
}

#akd-about .akd-stat-num {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

#akd-about .akd-stat-label {
  font-size: 16px;
  color: var(--akd-muted);
  margin: 6px 0 0;
}

#akd-about .akd-divider {
  width: 1px;
  height: 60px;
  background: #ddd;
}

/* ---- BUTTON ---- */
.akd-btn {
  display: inline-flex;
  position: relative;
  background: #fff;
  border: 1px solid var(--akd-line);
  border-radius: 10px;
  padding: 14px 69px 15px 13px;
  text-decoration: none;
  color: var(--akd-text);
  font-weight: 600;
  align-items: center;
  gap: 40px;
  transition: color .3s ease, border-color .3s ease;
  overflow: hidden;
  box-shadow: var(--akd-shadow);
}

.akd-btn:hover {
  color: #fff;
  border-color: var(--akd-primary);
}

.akd-btn-bg {
  position: absolute;
  right: 10px;
  width: 44px;
  height: 44px;
  background: var(--akd-primary);
  border-radius: 6px;
  transition: all .4s ease-in-out;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.akd-btn-bg i {
  font-size: 18px;
  line-height: 1;
  transition: opacity .25s ease;
}

.akd-btn:hover .akd-btn-bg {
  width: 100%;
  height: 100%;
  right: 0;
  border-radius: 10px;
}

.akd-btn:hover .akd-btn-bg i {
  opacity: 1;
  position: relative;
  left: 64px;
}

.akd-btn-text {
  position: relative;
  z-index: 2;
  letter-spacing: .06em;
  font-size: 14px;
}

/* ---- Responsive ---- */
@media (max-width:991px) {
  #akd-about .akd-slider {
    height: 450px;
  }

  #akd-about .akd-title {
    text-align: center;
  }

  #akd-about .akd-desc {
    text-align: center;
    margin: 0 auto 30px;
  }

  #akd-about .akd-stats-row {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width:576px) {
  #akd-about .akd-slider {
    height: 320px;
  }
}


/* =======================
       SCOPE: #pk-products
       ======================= */
#pk-products {
  --blue: #202e5f;
  --green: #00a7d0;
  --shadow: 0 25px 75px rgba(3, 36, 107, 0.15);
  --r: 14px;

  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0 110px;
}

#pk-products * {
  box-sizing: border-box;
}

#pk-products .pk-left-shape {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 16%;
  background: var(--blue);
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  opacity: 0.92;
  pointer-events: none;
}

@media (max-width: 640px) {
  #pk-products .pk-left-shape {
    display: none;
  }
}

#pk-products .pk-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

#pk-products .pk-grid {
  display: grid;
  grid-template-columns: minmax(0, 5.2fr) minmax(0, 6.8fr);
  gap: 48px;
  align-items: start;
}

@media (max-width: 992px) {
  #pk-products .pk-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* LEFT HERO */
#pk-products .pk-hero {
  width: 100%;
  aspect-ratio: 52/47;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0c1b45;
  position: relative;
  isolation: isolate;
}

#pk-products .pk-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 450ms ease;
}

#pk-products .pk-hero-slide.is-active {
  opacity: 1;
}

#pk-products .pk-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* slideChangeOverlay */
#pk-products .pk-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 36, 107, 0.92);
  transform: translateY(100%);
  transition: transform 1000ms ease;
  z-index: 5;
  pointer-events: none;
}

#pk-products .pk-hero-overlay.is-active {
  transform: translateY(0%);
}

/* controller */
#pk-products .pk-controller {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

#pk-products .pk-nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

#pk-products .pk-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  transition: transform 0.15s ease;
  user-select: none;
}

#pk-products .pk-btn:active {
  transform: scale(0.96);
}

#pk-products .pk-fraction {
  margin-left: 12px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  font-size: 18px;
}

#pk-products .pk-fraction .cur {
  color: var(--green);
  font-size: 22px;
}

/* titles */
#pk-products .pk-title-field {
  /*margin-left: 120px; */
}

@media (max-width: 1200px) {
  #pk-products .pk-title-field {
    margin-left: 0;
  }
}

#pk-products .pk-mini-title {
  font-style: italic;
  color: rgba(82, 85, 92, 0.75);
  font-size: 22px;
  margin: 0 0 10px 0;
}

#pk-products .pk-title {
  margin: 0;
  color: var(--blue);
  font-weight: 900;
  font-size: 56px;
  line-height: 1.05;
  position: relative;
  padding-left: 50px;
}

#pk-products .pk-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  background: var(--green);
}

@media (max-width: 992px) {
  #pk-products .pk-title {
    font-size: 44px;
    padding-left: 0;
  }

  #pk-products .pk-title:before {
    display: none;
  }
}

/* RIGHT CAROUSEL */
#pk-products .pk-cards {
  margin-top: 45px;
  position: relative;
  overflow: visible;
 /* margin-left: -300px;
  padding-left: 150px; */
}

/* ✅ SOLDAN TAŞANI KAPATAN MASKE (önceki ürün asla görünmesin) */
#pk-products .pk-cards::before {
  /* content:""; */
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  /* padding-left ile aynı */
  background: #fff;
  z-index: 5;
  pointer-events: none;
}

@media (max-width: 1200px) {
  #pk-products .pk-cards {
    margin-left: 0;
    padding-left: 0;
  }

  #pk-products .pk-cards::before {
    display: none;
  }
}

@media (max-width: 480px) {
  #pk-products .pk-cards {
    overflow: hidden;
  }
}

#pk-products .pk-track {
  display: flex;
  gap: 80px;
  will-change: transform;
  transition: transform 700ms ease;
  touch-action: pan-y;
}

@media (max-width: 992px) {
  #pk-products .pk-track {
    gap: 30px;
  }
}

/* ✅ Default: görünmez (admin panelde kaç ürün gelirse gelsin çalışır) */
#pk-products .pk-card {
  flex: 0 0 auto;
  width: 440px;
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
  user-select: none;
  cursor: pointer;
}

@media (max-width: 992px) {
  #pk-products .pk-card {
    width: 360px;
  }
}

@media (max-width: 480px) {
  #pk-products .pk-card {
    width: 300px;
  }
}

/* ✅ Sadece aktif + sonraki 2 kart görünür */
#pk-products .pk-card.is-active,
#pk-products .pk-card.is-next,
#pk-products .pk-card.is-next2 {
  opacity: 1;
  pointer-events: auto;
}

#pk-products .pk-card .media {
  width: 100%;
  aspect-ratio: 23/18;
  background: #fff;
  display: grid;
  place-items: center;
}

#pk-products .pk-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #fff;
}

#pk-products .pk-card .body {
  padding: 18px 18px 24px;
  text-align: center;
}

#pk-products .pk-card .sub {
  opacity: 0.65;
}

#pk-products .pk-card .ttl {
  margin-top: 6px;
  font-weight: 900;
  color: var(--blue);
  font-size: 22px;
}

/* mobile extra nav */
#pk-products .pk-right-nav {
  display: none;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

/* all products link */
#pk-products .pk-all-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}

#pk-products .pk-all-link:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  #pk-products .pk-right-nav {
    display: flex;
  }
}



/* =======================
       SCOPE: #akdt-areas
       ======================= */

#akdt-areas {
  --primary: #C4161C;
  --ink: #102039;
  --muted: rgba(0, 0, 0, .5);
  --bg: #EEF0F2;
  --cardRadius: 14px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .08);

  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

#akdt-areas * {
  box-sizing: border-box;
}

#akdt-areas .akdt-container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
#akdt-areas .akdt-header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  #akdt-areas .akdt-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
  }
}

#akdt-areas .akdt-mini {
  display: inline-flex;
  gap: 20px;
  justify-content: flex-start;
}

#akdt-areas .akdt-mini .akdt-pill {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: #F7F7F7;
  padding: 12px 18px;
  border-radius: 999px;
  letter-spacing: -.42px;
}

#akdt-areas .akdt-title {
  margin: 16px 0 0;
  font-size: clamp(30px, 5vw, 96px);
  line-height: 1;
  letter-spacing: clamp(-1px, -0.25vw, -3.84px);
  color: #000;
  font-weight: 500;
}

#akdt-areas .akdt-title .dot {
  color: var(--primary);
}

#akdt-areas .akdt-desc {
  max-width: 340px;
  margin-top: auto;
  padding-top: 12px;
  color: rgba(0, 0, 0, .5);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -.42px;
}

@media (max-width:768px) {
  #akdt-areas .akdt-desc {
    max-width: 500px;
    padding-top: 0;
  }
}

/* CONTROLS */
#akdt-areas .akdt-controls {
  margin-top: 18px;
  display: flex;
  gap: 15px;
  align-items: center;
}

@media (max-width:768px) {
  #akdt-areas .akdt-controls {
    justify-content: center;
  }
}

#akdt-areas .akdt-arrow {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .6);
  background: transparent;
  cursor: pointer;
  position: relative;
  display: grid;
  place-items: center;
  transition: all .35s ease;
  user-select: none;
}

@media (max-width: 1024px) {
  #akdt-areas .akdt-arrow {
    width: 42px;
    height: 42px;
  }
}

#akdt-areas .akdt-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--primary);
  transform: scale(0);
  transition: transform .35s ease;
  z-index: -1;
}

#akdt-areas .akdt-arrow:hover {
  border-color: var(--primary);
}

#akdt-areas .akdt-arrow:hover::after {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(196, 22, 28, .25);
}

#akdt-areas .akdt-arrow span {
  font-size: 18px;
  color: #000;
  transition: color .35s ease;
  line-height: 1;
}

#akdt-areas .akdt-arrow:hover span {
  color: #fff;
}

#akdt-areas .akdt-arrow[disabled] {
  opacity: .5;
  pointer-events: none;
}

/* CAROUSEL */
#akdt-areas .akdt-carousel {
  position: relative;
  overflow: visible;
  padding-left: 2px;
  padding-top: 20px;
}

#akdt-areas .akdt-track {
  display: flex;
  gap: 35px;
  /* senin HTML’de margin-right:35px */
  will-change: transform;
  transition: transform 800ms ease;
  touch-action: pan-y;
}

/* Slide width (desktop 2 görünüm) */
#akdt-areas .akdt-slide {
  flex: 0 0 auto;
  width: calc((60% - 35px) / 2);
}

@media (max-width: 640px) {
  #akdt-areas .akdt-slide {
    width: 100%;
  }
}

/* Card */
#akdt-areas .akdt-card {
  height: 100%;
  border-radius: var(--cardRadius);
  overflow: hidden;
  background: var(--bg);
  transition: background .35s ease;
  position: relative;
  box-shadow: none;
}

#akdt-areas .akdt-card:hover {
  background: var(--primary);
}

/* Image bubble (sola/üste taşırma) */
#akdt-areas .akdt-imageField {
  position: relative;
  background: #fff;
  border-radius: 999px;
  padding: 42px;
  transform: translateX(-20%);
  margin-top: -25%;
  transition: background .35s ease;
}

@media (max-width: 1024px) {
  #akdt-areas .akdt-imageField {
    padding: 26px;
  }
}

#akdt-areas .akdt-card:hover .akdt-imageField {
  background: rgba(255, 255, 255, .05);
}

#akdt-areas .akdt-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 999px;
  overflow: hidden;
}

#akdt-areas .akdt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

#akdt-areas .akdt-card:hover .akdt-image img {
  transform: scale(1.1);
}

/* Text area */
#akdt-areas .akdt-text {
  padding: 44px 50px 50px;
  transition: color .35s ease;
}

@media (max-width: 1024px) {
  #akdt-areas .akdt-text {
    padding: 30px 25px 34px;
  }
}

#akdt-areas .akdt-no {
  font-weight: 700;
  color: #A9B4BC;
  letter-spacing: -.3px;
  font-size: 19px;
  transition: color .35s ease;
}

#akdt-areas .akdt-card:hover .akdt-no {
  color: rgba(255, 255, 255, .5);
}

#akdt-areas .akdt-name {
  margin-top: 18px;
  font-weight: 500;
  color: #000;
  letter-spacing: -1.52px;
  font-size: clamp(20px, 2.2vw, 38px);
  line-height: 1.1;
  transition: color .35s ease;
}

#akdt-areas .akdt-card:hover .akdt-name {
  color: #fff;
}

#akdt-areas .akdt-sub {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, .5);
  letter-spacing: -.42px;
  transition: color .35s ease;
}

#akdt-areas .akdt-card:hover .akdt-sub {
  color: rgba(255, 255, 255, .5);
}

/* Drag cursor */
#akdt-areas .akdt-carousel.is-dragging .akdt-track {
  transition: none;
  cursor: grabbing;
}

#akdt-areas .akdt-carousel .akdt-track {
  cursor: grab;
}



/* =========================
       TP scope (çakışma yok)
    ========================== */
.tp-section {
  --main-500: #202e5f;
  --main-600: #202e5f;
  --secondary-500: #2B2B2B;
  --text: #111;
  --muted: #626262;
  --border: #BBBBBB;
  --radius: 16px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: 1000ms;

  padding: clamp(15px, 4vw, 60px) 0;
  color: var(--text);
  background: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
}

.tp-section * {
  box-sizing: border-box;
}

.tp-section a {
  text-decoration: none;
  transition: color .3s ease;
}

.tp-section a:has(.tp-link-text) {
  animation: tp-link-text-animation 1s ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-direction: alternate;
  color: #00a7d0;
}

@keyframes tp-link-text-animation {
  from {
    color: #fff;
  }

  to {
    color: #1888c2;
  }
}

.tp-section img {
  max-width: 100%;
  display: block;
}

/* Bootstrap .card ile çakışmamak için: tp-box */
.tp-box {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  height: 100%;
}

/* ====== CAROUSEL CORE ====== */
.tp-v-carousel,
.tp-h-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  min-height: 420px;
  /* soldaki gibi */
}

/* blog kartı daha küçük kalsın */
.tp-blog-card .tp-v-carousel {
  min-height: 260px;
}

.tp-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform var(--dur) var(--ease);
}

.tp-h-carousel .tp-track {
  flex-direction: row;
}

.tp-v-carousel .tp-track {
  flex-direction: column;
}

.tp-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.tp-slide a.tp-image-link {
  position: absolute;
  inset: 0;
  display: block;
}

.tp-slide .tp-bg {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: .2;
  pointer-events: none;
  z-index: 2;
}

.tp-slide img.tp-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.15);
  transition: transform var(--dur) var(--ease);
  z-index: 1;
}

.tp-slide.tp-is-active img.tp-cover {
  transform: scale(1);
}

.tp-text-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(18px, 3vw, 48px) !important;
  z-index: 3;
  padding: 0 clamp(16px, 3vw, 40px);
  pointer-events: none;
}

.tp-text-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vw, 22px);
  max-width: 576px;
  pointer-events: none;
}

.tp-link-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  pointer-events: auto;
}

.tp-link-row .tp-link-text {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 600;
  color: #fff;
  transition: color .35s ease;
}

.tp-link-row .tp-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-right: 2px solid var(--main-500);
  border-top: 2px solid var(--main-500);
  transform: rotate(45deg);
  transition: transform .35s ease;
}

.tp-link-row:hover .tp-link-text {
  color: var(--main-500);
}

.tp-link-row:hover .tp-arrow {
  transform: rotate(45deg) translate(2px, -2px);
}

.tp-title {
  font-size: clamp(20px, 3vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  pointer-events: auto;
  transition: opacity .35s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tp-title:hover {
  opacity: .85;
}

/* desktop bars */
.tp-bars {
  position: relative;
  bottom: clamp(18px, 3vw, 12px);
  z-index: 4;
  justify-content: center;
  display: flex;
  gap: 20px;
}

.tp-bar {
  width: clamp(30px, 6vw, 54px);
  height: 3px;
  border-radius: 999px;
  background: var(--muted);
  cursor: pointer;
  transition: background .35s ease;
}

.tp-bar.tp-active {
  background: #1888c2;
}

/* mobile arrows */
.tp-nav-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 5;
  display: none;
  justify-content: center;
  gap: 14px;
  pointer-events: none;
}

.tp-nav-btn {
  pointer-events: auto;
  width: clamp(40px, 8vw, 60px);
  height: clamp(40px, 8vw, 60px);
  border-radius: 999px;
  border: 0.5px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform .25s ease, opacity .35s ease;
  user-select: none;
}

.tp-nav-btn:active {
  transform: scale(.98);
}

.tp-nav-btn[disabled] {
  opacity: .5;
  cursor: not-allowed;
}

.tp-chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--secondary-500);
  border-top: 2px solid var(--secondary-500);
  transform: rotate(45deg);
}

.tp-prev .tp-chev {
  transform: rotate(225deg);
}

.tp-ring {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  pointer-events: none;
}

.tp-ring path {
  fill: none;
  stroke: #1888c2;
  stroke-width: 3px;
  transition: stroke-dashoffset .1s linear;
}

/* blog vertical specifics */
.tp-blog-card {
  aspect-ratio: 1010/475;
}

@media (max-width: 992px) {
  .tp-blog-card {
    aspect-ratio: auto;
  }
}
@media (max-width: 768px) {
  .tp-blog-card {
    aspect-ratio: 960 / 840;
  }
}

.tp-blog-card .tp-title {
  font-size: clamp(18px, 2.4vw, 32px);
  -webkit-line-clamp: 2;
  max-width: 575px;
}

.tp-category-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  pointer-events: auto;
}

.tp-pill {
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 800;
  letter-spacing: .18em;
  background: var(--main-500);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  line-height: 1;
  transition: background .35s ease;
  display: inline-block;
}

.tp-pill:hover {
  background: var(--main-600);
}

.tp-excerpt {
  color: #E8E8E8;
  font-size: 14px;
  line-height: 1.25;
  max-width: 400px;
  pointer-events: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tp-blog-controller {
  position: absolute;
  right: clamp(16px, 2.8vw, 40px);
  bottom: clamp(16px, 2.8vw, 30px);
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: none;
}

.tp-blog-controller .tp-nav-btn {
  border-color: rgba(255, 255, 255, .12);
}

.tp-blog-controller .tp-chev {
  border-color: #fff;
  transform: rotate(315deg);
}

.tp-blog-controller .tp-prev .tp-chev {
  transform: rotate(135deg);
}

/* squares */
.tp-square {
  aspect-ratio: 1/1;
  min-height: 220px;
}

.tp-catalog {
  background: var(--main-500);
  color: #fff;
}

.tp-product {
  background: #fff;
  border: 1px solid #E4E4E4;
  color: var(--secondary-500);
}

.tp-square .tp-inner {
  position: absolute;
  inset: 0;
  padding: clamp(16px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vw, 24px);
  z-index: 2;
}

.tp-square .tp-big {
  font-weight: 800;
  font-size: clamp(24px, 3vw, 48px);
  line-height: 1.1;
  margin: 0;
}

.tp-sub-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.tp-sub-link span {
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 18px);
  transition: color .35s ease;
}

.tp-sub-link .tp-arrow {
  border-color: currentColor;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
}

.tp-product:hover .tp-sub-link span {
  color: var(--main-500);
}

.tp-product:hover .tp-sub-link {
  color: var(--main-500);
}

.tp-decor {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  opacity: .25;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(closest-side, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0));
  transform: translate(28%, 18%) scale(1.25);
}

/* responsive controls */
@media (max-width: 992px) {
  .tp-bars {
    display: none;
  }

  .tp-nav-row {
    display: flex;
  }

  .tp-text-container {
    bottom: 0;
    padding: 0;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
  }

  .tp-text-inner {
    padding: clamp(16px, 4vw, 30px);
    max-width: calc(100% - 80px);
  }

  .tp-title {
    font-size: clamp(20px, 4.5vw, 32px);
    -webkit-line-clamp: 4;
  }

  .tp-blog-controller {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    flex-direction: row;
    justify-content: center;
  }

  .tp-blog-controller .tp-nav-btn {
    border-color: var(--border);
  }

  .tp-blog-controller .tp-chev {
    border-color: var(--secondary-500);
    transform: rotate(225deg);
  }

  .tp-blog-controller .tp-prev .tp-chev {
    transform: rotate(45deg);
  }
}


.akd-v-field {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 80px 0;
  overflow: hidden;
}

@media (max-width:1200px) {
  .akd-v-field {
    padding: 120px 0;
  }
}

@media (max-width:992px) {
  .akd-v-field {
    padding: 90px 0;
  }
}

@media (max-width:768px) {
  .akd-v-field {
    padding: 60px 0;
  }
}

@media (max-width:576px) {
  .akd-v-field {
    padding: 30px 0;
  }
}

@media (max-width:420px) {
  .akd-v-field {
    padding: 15px 0;
  }
}

.akd-v-wrapper {
  position: relative;
  height: 75vh;
  /* width: min(1200px, 100%); */
  margin: 0 auto;
  padding: 0 30px;
}

/* video layer full */
.akd-v-videoLayer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
}

.akd-v-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.akd-v-video::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
  z-index: 2;
}

.akd-v-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* text layer */
.akd-v-textLayer {
  position: relative;
  z-index: 50;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  text-align: center;
}

@media (max-width:1200px) {
  .akd-v-textLayer {
    padding-bottom: 120px;
  }
}

@media (max-width:992px) {
  .akd-v-textLayer {
    padding-bottom: 90px;
  }
}

@media (max-width:768px) {
  .akd-v-textLayer {
    padding-bottom: 60px;
  }
}

@media (max-width:576px) {
  .akd-v-textLayer {
    padding-bottom: 30px;
  }
}

@media (max-width:420px) {
  .akd-v-textLayer {
    padding-bottom: 15px;
  }
}

.akd-v-title {
  font-weight: 800;
  color: #fff;
  letter-spacing: -3.8px;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 30px;
}

@media (max-width:1400px) {
  .akd-v-title {
    font-size: 52px;
  }
}

@media (max-width:1200px) {
  .akd-v-title {
    font-size: 50px;
  }
}

@media (max-width:992px) {
  .akd-v-title {
    font-size: 40px;
    letter-spacing: -1.5px;
  }
}

@media (max-width:768px) {
  .akd-v-title {
    font-size: 32px;
  }
}

@media (max-width:576px) {
  .akd-v-title {
    font-size: 26px;
    letter-spacing: -0.8px;
  }
}

@media (max-width:420px) {
  .akd-v-title {
    font-size: 20px;
  }
}

.akd-v-editor {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 980px;
}

.akd-v-editor h2 {
  margin: 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  font-size: 35px;
}

@media (max-width:992px) {
  .akd-v-editor h2 {
    font-size: 34px;
  }
}

@media (max-width:576px) {
  .akd-v-editor h2 {
    font-size: 26px;
  }
}

.akd-v-editor p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

/* CTA */
.akd-v-ctaWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 30px;
}

@media (max-width:576px) {
  .akd-v-ctaWrap {
    padding: 20px 0;
    width: 100%;
  }
}

.akd-v-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--akd-line);
  border-radius: 10px;
  padding: 14px 10px 15px 13px;
  text-decoration: none;
  color: var(--akd-text);
  font-weight: 600;
  align-items: center;
  gap: 40px;
  transition: color .3s ease, border-color .3s ease;
  overflow: hidden;
  box-shadow: var(--akd-shadow);
}

@media (max-width:992px) {
  .akd-v-btn {
    gap: 15px;
    padding-left: 15px;
  }
}

@media (max-width:576px) {
  .akd-v-btn {
    width: 100%;
    justify-content: space-between;
  }
}

.akd-v-btnFill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #1888c2;
  pointer-events: none;
  transition: width 450ms ease, height 450ms ease, right 450ms ease;
  z-index: 0;
}

@media (min-width:577px) {
  .akd-v-btn:hover .akd-v-btnFill {
    width: 100%;
    height: 100%;
    right: 0;
  }
}

.akd-v-btnText {
  font-size: 14px;
  font-weight: 800;
  line-height: 28px;
  color: #1888c2;
  z-index: 10;
  transition: color 450ms ease;
}

@media (min-width:577px) {
  .akd-v-btn:hover .akd-v-btnText {
    color: #fff;
  }
}

.akd-v-btnIcon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  position: relative;
}

.akd-v-btnIcon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  display: block;
}

/* Play-only CTA variant */
.akd-v-btn--play {
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  isolation: isolate;
}

.akd-v-btn--play .akd-v-play {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1888c2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.akd-v-btn--play .akd-v-play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 3px;
  /* optical centering */
}

.akd-v-btn--play::before,
.akd-v-btn--play::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(24, 136, 194, 0.35);
  transform: scale(1);
  opacity: .6;
  animation: akdPulse 1.8s ease-out infinite;
}

.akd-v-btn--play::after {
  animation-delay: .9s;
}

@keyframes akdPulse {
  0% {
    transform: scale(1);
    opacity: .6;
  }

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

/* accessibility helper */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Video Modal */
.akd-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}

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

.akd-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
}

.akd-modal__dialog {
  position: relative;
  width: min(1000px, 92vw);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.akd-modal__frame,
.akd-modal__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.akd-modal__close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .85);
  color: #111;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.akd-modal__close:hover {
  filter: brightness(.95);
}

/* footer */


.akd-footer {
  margin: 2.25rem;
  background: var(--bg-footer);
  color: #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}

.akd-footer__wrap {
  max-width: 1600px;
  margin: 0 auto;
}

.akd-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.15fr;
  border-top: 1px solid var(--line-footer);
}

.akd-footer__col {
  padding: 70px 70px 60px;
  min-height: 520px;
  position: relative;
}

.akd-footer__col--left {
  border-right: 1px solid var(--line-footer);
}

.akd-footer__col--mid {
  border-right: 1px solid var(--line-footer);
}

.akd-footer__col--right {
  padding-left: 90px;
}

/* LEFT */
.akd-footer__logo {
  width: 320px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 42px;
}

.akd-footer__label {
  color: var(--muted-footer);
  font-size: 16px;
  margin-bottom: 12px;
}

.akd-footer__icons {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 70px;
}

.akd-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.35s ease, transform 0.35s ease;
}

.akd-icon svg {
  width: 22px;
  height: 22px;
}

.akd-icon i {
  font-size: 22px;
  line-height: 1;
  display: inline-block;
}

.akd-icon:hover {
  color: #fff;
  transform: translateY(-1px);
}

.akd-footer__headline {
  font-size: 30px;
  line-height: 1.35;
  font-weight: 500;
  margin: 0 0 22px;
}

.akd-news {
  display: flex;
  width: 420px;
  max-width: 100%;
  height: 52px;
  margin-bottom: 14px;
}

.akd-news__input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
}

.akd-news__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.akd-news__btn {
  width: 150px;
  border: 0;
  background: var(--yellow-footer);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.3s ease;
}

.akd-news__btn:hover {
  filter: brightness(0.95);
}

.akd-footer__note {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  line-height: 1.4;
  max-width: 420px;
}

/* MID */
.akd-contact {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding-top: 10px;
}

.akd-contact__ico {
  color: rgba(255, 255, 255, 0.25);
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
}

.akd-contact__ico svg {
  width: 28px;
  height: 28px;
  display: block;
}

.akd-contact__ico i {
  font-size: 28px;
  line-height: 1;
  color: #1888c2;
  display: inline-block;
}

.akd-contact__label {
  color: rgb(255 255 255);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}

.akd-contact__value {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
}

.akd-contact__value--small {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* RIGHT MENU */
.akd-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.akd-menu li {
  display: flex;
  align-items: center;
  gap: 26px;
}

.akd-menu__no {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  width: 26px;
}

.akd-menu__txt {
  color: var(--menu-footer);
  text-decoration: none;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.05;
  transition: color 0.35s ease;
}

.akd-menu__txt:hover {
  color: rgba(255, 255, 255, 0.85);
}

.akd-pill {
  display: inline-block;
  margin-top: 58px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 12px;
  width: fit-content;
}

/* BOTTOM BAR */
.akd-footer__bottom {
  border-top: 1px solid var(--line-footer);
}

.akd-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 70px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
}

.akd-footer__web {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgb(255 255 255 / 96%);
  letter-spacing: 0.5px;
  font-size: 13px;
  font-weight: 500;
}

.akd-footer__web img {
  height: 30px;
  width: auto;
  display: inline-block;
}

.akd-footer__copy p {
  font-size: 15px;
  font-weight: 500;
  color: rgb(255 255 255 / 96%);
}

.akd-footer__web i {
  width: 22px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  display: inline-block;
}

.akd-footer__web i:after {
  content: "";
  position: absolute;
  right: 4px;
  top: 4px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .akd-footer__grid {
    grid-template-columns: 1fr;
  }

  .akd-footer__col {
    min-height: auto;
    padding: 44px 20px;
  }

  .akd-footer__col--left,
  .akd-footer__col--mid {
    border-right: 0;
    border-bottom: 1px solid var(--line-footer);
  }

  .akd-footer__col--right {
    padding-left: 20px;
    border-bottom: 0;
  }

  .akd-menu__txt {
    font-size: 32px;
  }

  .akd-footer__bottom-inner {
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
  }
}



.banner-container {
  width: 100%;
  max-width: 1400px;
  margin: 0px auto;
  background: linear-gradient(90deg, #1888c2, #202e5f);
  border-radius: 16px;
  /* overflow: hidden; */
  position: relative;
  height: 303px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  box-sizing: border-box;
}

.banner-image {
  position: absolute;
  top: -27px;
  margin-left: -75px;

}

.banner-image img {
  width: 360px;
  height: auto;
}

.banner-content {
  flex-grow: 1;
  margin-left: 14rem;
}

.banner-title {
  color: white;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
}

.banner-button {
  background-color: #1888c2;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.banner-button:hover {
  background-color: #028370;
}

.banner-button span {
  margin-right: 8px;
}


/* ===== Breadcrumb ===== */
.breadcrumb {
  /* position: relative; */
  height: 40vh;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 19 / 5;
}

@media (min-width: 1280px) {
  .breadcrumb {
    aspect-ratio: 19 / 10;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    aspect-ratio: auto;
    height: 300px;
  }
}

.breadcrumb__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 45vh;
}

.breadcrumb__overlay {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(to left,
      rgba(0, 0, 0, 0),
      rgba(15, 23, 42, 0.9));
  z-index: 1;
}

.breadcrumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.breadcrumb__container {
  width: 100%;
  max-width: var(--container);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  z-index: 2;
}

@media (max-width: 768px) {
  .breadcrumb__container {
    padding-bottom: 50px;
    align-items: center;
    text-align: center;
  }
}

.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}

.breadcrumb__list li {
  position: relative;
}

.breadcrumb__list li+li::before {
  content: "⌄";
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb__list a {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.5s ease;
}

.breadcrumb__list a:hover {
  color: var(--primary);
}

.breadcrumb__title {
  margin: 40px 0 0;
  font-family: var(--font-title);
  font-size: 60px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .breadcrumb__title {
    margin: 20px 0 0;
    font-size: 20px;
    width: 100%;
  }

  .breadcrumb__list {
    display: none;
  }
}

.animate-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: textIn 0.6s ease forwards;
}

@keyframes textIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Scroll hint ===== */
.breadcrumb__scrollHint {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  width: 300px;
  top: 45%;
}

@media (max-width: 768px) {
  .breadcrumb__scrollHint {
    transform: translateX(-50%) rotate(180deg) scale(0.5);
    transform-origin: center;
  }
}

.breadcrumb__mask {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  aspect-ratio: 95/23;
  background: #fff;
  z-index: -2;
  /* görünsün */

  -webkit-mask-image: url("../img/mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;

  mask-image: url("../img/mask.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}

.breadcrumb__btn {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-radius: 999px;
  background: var(--primary);
  transition: transform 0.5s ease;
  text-decoration: none;
  will-change: transform;
}

.breadcrumb__btn:hover {
  transform: translate(-50%, -50%) rotate(180deg) scale(1.05);
}

.breadcrumb__icon {
  width: 30px;
  height: 30px;
  transition: transform 0.5s ease;
  transition-delay: 0.1s;
}

.breadcrumb__btn:hover .breadcrumb__icon {
  transform: translateY(5px);
}



/* - Misyon / Vizyon */

.ak-vm-section {
  position: relative;
}

.ak-vm-hero {
  padding: clamp(30px, 4vw, 80px) 0;
}

.ak-vm-cards {
  padding: clamp(20px, 3.5vw, 60px) 0;
}

.ak-vm-container {
  width: min(1440px, calc(100% - 64px));
  margin: auto;
}

@media (max-width: 640px) {
  .ak-vm-container {
    width: calc(100% - 40px);
  }
}

/* Hero */
.ak-vm-hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  text-align: center;
}

.ak-vm-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ak-vm-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
}

.ak-vm-brand-text {
  font-size: 20px;
  color: var(--primary);
}

.ak-vm-title {
  font-size: clamp(22px, 3.2vw, 52px);
  line-height: 1.2;
  color: var(--ak-vm-secondary);
}

/* Grid */
.ak-vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 48px);
}

@media (max-width: 640px) {
  .ak-vm-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.ak-vm-card {
  position: relative;
  padding: clamp(20px, 4.5vw, 70px);
  border: 2px solid var(--ak-vm-border);
  border-radius: 35px;
  transition: 0.5s;
  background: #fff;
}

.ak-vm-card:hover {
  background: var(--ak-vm-primary);
  border-color: transparent;
}

.ak-vm-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 74px;
  height: 74px;
}

.ak-vm-icon img {
  position: absolute;
  inset: 0;
  transition: 0.5s;
}

.ak-vm-icon-hover {
  opacity: 0;
}

.ak-vm-card:hover .ak-vm-icon-hover {
  opacity: 1;
}

.ak-vm-card:hover .ak-vm-icon-default {
  opacity: 0;
}

.ak-vm-card-title {
  border-bottom: 1px solid var(--ak-vm-border);
  padding-bottom: 20px;
  font-size: clamp(20px, 2.5vw, 42px);
  transition: 0.5s;
}

.ak-vm-card-text {
  padding-top: 20px;
  font-size: clamp(16px, 1.4vw, 22px);
  color: var(--ak-vm-muted);
  transition: 0.5s;
}

.ak-vm-card:hover .ak-vm-card-title,
.ak-vm-card:hover .ak-vm-card-text {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

/* Reveal */
[data-akvm-animate] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(16px);
  transition: 0.8s ease;
}

.ak-vm-visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
}



/* =========================================================
        SCOPE ROOT: sadece bu sayfayı etkiler
      ========================================================= */
#prd-productsPage {
  position: relative;
  padding: 160px 0;
}

@media (max-width: 1536px) {
  #prd-productsPage {
    padding: 80px 0;
  }
}

@media (max-width: 1200px) {
  #prd-productsPage {
    padding: 60px 0;
  }
}

@media (max-width: 992px) {
  #prd-productsPage {
    padding: 45px 0;
  }
}

@media (max-width: 768px) {
  #prd-productsPage {
    padding: 30px 0;
  }
}

#prd-productsPage .container {
  max-width: 1500px;
}

#prd-productsPage .prd-wrap {
  position: relative;
}

/* ===== SIDEBAR (scoped + prefixed) ===== */
#prd-productsPage .prd-sidebar {
  position: sticky;
  top: 100px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#prd-productsPage .prd-sidebarTitle {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #111;
}

#prd-productsPage .prd-sidebarNav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#prd-productsPage .prd-sidebarLink {
  background: #f7f7f7;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  text-decoration: none;
  color: #5a6c7d;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;

}

/* replace dot with left arrow via pseudo-element */
#prd-productsPage .prd-sidebarLink .prd-dot {
  display: none;
}

#prd-productsPage .prd-sidebarLink {
  padding-left: 48px;
}

#prd-productsPage .prd-sidebarLink::before {
  content: "\f105";
  /* fa-angle-right */
  font-family: "FontAwesome";
  font-size: 14px;
  line-height: 1;
  color: var(--primary);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translate(0, -50%);
  transition: transform 250ms ease, color 250ms ease, opacity 250ms ease;
  opacity: 0.9;
}

#prd-productsPage .prd-sidebarLink:hover::before {
  transform: translate(4px, -50%);
  color: #111;
  opacity: 1;
}

#prd-productsPage .prd-sidebarLink.active::before {
  color: #fff;
  transform: translate(4px, -50%);
  opacity: 1;
}

#prd-productsPage .prd-sidebarLink.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 25px rgb(79 79 79 / 17%);
  transform: translateX(0);
}

#prd-productsPage .prd-sidebarLink:hover {
  background: #efefef;
  color: #111;
}

#prd-productsPage .prd-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #e30613;
  flex: 0 0 auto;
}

/* Mobil offcanvas (SADECE product sayfası root’u içinde class ile açılır) */
#prd-productsPage .prd-sidebarTrigger {
  display: none;
  width: 100%;
  border: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font-weight: 600;
}

#prd-productsPage .prd-sidebarClose {
  display: none;
}

#prd-productsPage .prd-sidebarBackdrop {
  display: none;
  /* desktopta hiç yok */
}

@media (max-width: 992px) {
  #prd-productsPage .prd-sidebarTrigger {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  #prd-productsPage .prd-sidebarBackdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: 250ms ease;
    z-index: 55;
  }

  #prd-productsPage .prd-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(340px, 88vw);
    transform: translateX(-110%);
    transition: 350ms ease;
    z-index: 60;
    border-radius: 0;
    padding: 18px;
    top: 0;
  }

  /* Açık state sadece root üzerinde */
  #prd-productsPage.prd-sidebarOpen .prd-sidebar {
    transform: translateX(0);
  }

  #prd-productsPage.prd-sidebarOpen .prd-sidebarBackdrop {
    opacity: 1;
    pointer-events: auto;
  }

  #prd-productsPage .prd-sidebarClose {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: #e30613;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
  }
}

/* ===== PRODUCT CARDS (scoped + prefixed) ===== */
#prd-productsPage .prd-item {
  height: 100%;
}

#prd-productsPage .prd-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  padding-bottom: 40px;
  background: #ececec;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: 350ms ease;
}

@media (max-width: 768px) {
  #prd-productsPage .prd-card {
    background: #f7f7f7;
    padding: 28px;
  }
}

#prd-productsPage .prd-item:hover .prd-card {
  background: #f7f7f7;
}

#prd-productsPage .prd-imgWrap {
  width: 100%;
  aspect-ratio: 40 / 33;
  margin-bottom: 37px;
}

#prd-productsPage .prd-imgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#prd-productsPage .prd-flyBtn {
  position: absolute;
  right: 30px;
  top: -60px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--ak-vm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 750ms ease;
}

#prd-productsPage .prd-item:hover .prd-flyBtn {
  top: 30px;
}

@media (max-width: 992px) {
  #prd-productsPage .prd-flyBtn {
    width: 50px;
    height: 50px;
    top: 30px;
  }
}

@media (max-width: 360px) {
  #prd-productsPage .prd-flyBtn {
    width: 45px;
    height: 45px;
  }
}

#prd-productsPage .prd-arrow {
  width: auto;
  height: auto;
  border: 0;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  transition: transform 300ms ease, color 300ms ease;

}

#prd-productsPage .prd-item:hover .prd-arrow {
  transform: rotate(322deg);
  color: #fff;
}

/* ===== PBMIT Lightbox (gallery) ===== */
.pbmit-lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.pbmit-lb.is-open {
  display: block;
}

.pbmit-lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .7);
}

.pbmit-lb__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1000px, 92vw);
  max-height: 90vh;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  animation: lbFadeIn 200ms ease;
}

.pbmit-lb__img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  background: #000;
}

.pbmit-lb__count {
  position: absolute;
  left: 14px;
  bottom: 8px;
  color: rgba(255, 255, 255, .85);
  font-size: 12px;
  font-weight: 300;
  pointer-events: none;
}

.pbmit-lb__caption {
  padding: 25px 14px;
  color: #fff;
  font-weight: 300;
  font-size: 14px;
}

.pbmit-lb__close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.pbmit-lb__close:hover {
  background: rgba(255, 255, 255, .28);
}

/* nav buttons */
.pbmit-lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.pbmit-lb__nav:hover {
  background: rgba(255, 255, 255, .25);
}

.pbmit-lb__prev {
  left: 10px;
}

.pbmit-lb__next {
  right: 10px;
}

.pbmit-lb__nav span {
  width: 12px;
  height: 12px;
  display: block;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.pbmit-lb__prev span {
  transform: rotate(225deg);
}

.pbmit-lb__next span {
  transform: rotate(45deg);
}

@keyframes lbFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 10px));
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

#prd-productsPage .prd-title {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0px;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin: 0;
}

#prd-productsPage .prd-cat {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.48px;
  color: #7e7e7e;
  margin-top: 4px;
}

@media (max-width: 768px) {
  #prd-productsPage .prd-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: normal;
  }
}

#prd-productsPage button:focus-visible,
#prd-productsPage a:focus-visible {
  outline: 2px solid rgba(227, 6, 19, 0.35);
  outline-offset: 3px;
}

/* ===== PAGINATION ===== */
.prd-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  padding-bottom: 24px;
}

.prd-pagination-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.prd-pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #4a4a4a;
  background: #f2f2f2;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.prd-pagination-link:hover {
  background: #e4e4e4;
  color: #1a1a1a;
  text-decoration: none;
}

.prd-pagination-item.active .prd-pagination-link {
  background: var(--primary, #1e89c2);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(30, 137, 194, 0.3);
}

.prd-pagination-item.disabled .prd-pagination-link {
  color: #c5c5c5;
  background: #f7f7f7;
  cursor: default;
  pointer-events: none;
}

.prd-pagination-prev,
.prd-pagination-next {
  font-size: 13px;
}

.prd-pagination-dots {
  background: transparent;
  cursor: default;
  pointer-events: none;
  font-size: 18px;
  letter-spacing: 2px;
  color: #aaa;
  min-width: 32px;
  padding: 0;
}

.prd-pagination-info {
  font-size: 13px;
  color: #999;
  letter-spacing: 0.3px;
}

@media (max-width: 576px) {
  .prd-pagination {
    margin-top: 32px;
  }

  .prd-pagination-link {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 14px;
    border-radius: 8px;
  }
}

/* =====================================================
         ✅ SCOPE: ÜRÜN DETAY SAYFASI
         - Tüm stiller bu wrapper altında scoped.
         - Başka sayfalarla çakışmayı engeller.
         ===================================================== */
.akd-pd-page {
  position: relative;
}

/* layout */
.akd-pd-page .akd-product-det-detail {
  position: relative;
  padding: 115px 0 10px;
  overflow: hidden;
}

/* ⚠️ Bootstrap .container override ETME: scoped container */
.akd-pd-page .product-detail__container {
  width: min(1500px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.akd-pd-page .grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 30px;
  align-items: start;
}

.akd-pd-page .left {
  min-width: 0;
  margin-top: 125px;
}

.akd-pd-page .right {
  min-width: 0;
}

/* background */
.akd-pd-page .bg-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 565px;
  pointer-events: none;
  z-index: 0;
}

.akd-pd-page .bg-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgb(24 136 194 / 6%); */
  opacity: var(--bg-opacity);
}

.akd-pd-page .bg-gradient {
  /* position: absolute; */
  inset: 0;
  /* background: linear-gradient(
          287deg, rgb(24 136 194 / 0%) 0%, rgb(24 136 194 / 7%) 70%, rgba(24, 136, 194, 0) 100%) !important */
}

/* ✅ only mobile gibi davranması için: desktop'ta kapalı, mobilde açık */
.akd-pd-page .bg-logo {
  display: block;
  position: absolute;
  left: 0;
  top: 36%;
  transform: translate(-25%, -50%) rotate(348deg);
  width: 50%;
  height: 445px;
  opacity: var(--logo-opacity);
  z-index: 1;
  overflow: hidden;
}

.akd-pd-page .logo-svg {
  width: 100%;
  height: 100%;
}

.akd-pd-page .logo-line {
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.akd-pd-page .line-1 {
  stroke: #6fa52c;
  stroke-width: 100px;
}

.akd-pd-page .line-2 {
  stroke: #0a6324;
  stroke-width: 90px;
}

.akd-pd-page .line-3 {
  stroke: #0a6324;
  stroke-width: 90px;
}

/* breadcrumb */
.akd-pd-page .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 18px;
  color: #b1b1b1;
}

.akd-pd-page .breadcrumb a {
  color: #b1b1b1;
  text-decoration: none;
  transition: color 0.25s ease;
}

.akd-pd-page .breadcrumb a:hover {
  color: var(--main-500);
}

.akd-pd-page .breadcrumb span {
  color: #b1b1b1;
}

/* header */
.akd-pd-page .header {
  margin-top: 28px;
}

.akd-pd-page .header h1 {
  margin: 0 0 20px 0;
  color: var(--main-500);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
}

.akd-pd-page .header p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  color: #222;
  max-width: 62ch;
}

/* buttons */
.akd-pd-page .actions {
  margin-top: 28px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.akd-pd-page .btnx {
  height: 50px;
  padding: 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.25s ease, background 0.25s ease,
    border-color 0.25s ease, color 0.25s ease;
  user-select: none;
  cursor: pointer;
}

.akd-pd-page .btnx.primary {
  background: var(--main-500);
  color: #fff;
  border: 1px solid var(--main-500);
}

.akd-pd-page .btnx.primary:hover {
  background: var(--main-600);
  border-color: var(--main-600);
  transform: translateY(-1px);
}

.akd-pd-page .btnx.ghost {
  background: transparent;
  color: var(--main-500);
  border: 1px solid var(--main-500);
}

.akd-pd-page .btnx.ghost:hover {
  background: var(--main-600);
  color: #fff;
  border-color: var(--main-600);
  transform: translateY(-1px);
}

.akd-pd-page .btnx.more {
  background: #fff;
  color: #111;
  border: 1px solid rgba(17, 17, 17, 0.2);
  margin: 18px auto 0;
  display: flex;
}

.akd-pd-page .btnx.more:hover {
  background: var(--main-600);
  color: #fff;
  border-color: var(--main-600);
}

.akd-pd-page .btnx.more .chev {
  transition: transform 0.25s ease;
}

/* features */
.akd-pd-page .features {
  margin-top: 60px;
  position: relative;
  padding-bottom: 80px;
}

.akd-pd-page .features-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 60px;
  padding-top: 10px;
  position: relative;
}

.akd-pd-page .feature {
  text-align: center;
  transition: transform 0.25s ease;
}

.akd-pd-page .feature:hover {
  transform: translateY(-4px);
}

.akd-pd-page .feature img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.akd-pd-page .feature p {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  min-height: 50px;
  transition: color 0.25s ease;
}

.akd-pd-page .feature:hover p {
  color: var(--main-500);
}

/* collapsed behavior (6 item üstü kısaltma) */
.akd-pd-page .features-inner[data-collapsed="true"] .feature:nth-child(n + 7) {
  display: none;
}

.akd-pd-page .features-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  height: 140px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 70%,
      rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
}

.akd-pd-page .features[data-expanded="true"] .features-fade {
  display: none;
}

.akd-pd-page .features[data-expanded="true"] .btnx.more .chev {
  transform: rotate(180deg);
}

/* RIGHT - sticky */
.akd-pd-page .sticky {
  position: sticky;
  top: 60px;
}

/* ---------------------------------------------------
         ✅ SWIPER + "SITE STYLE" CONTROLLER + THUMBS
         --------------------------------------------------- */
.akd-pd-page .carousel-field {
  position: relative;
  overflow: hidden;
  height: min(860px, 70vh);
  max-height: 860px;
  border-radius: 30px;
  background: #fff;
}

/* Swiper */
.akd-pd-page .single-akd-product-det-carousel {
  height: 100%;
}

.akd-pd-page .single-akd-product-det-carousel .swiper-wrapper {
  height: 100%;
}

.akd-pd-page .single-akd-product-det-carousel .swiper-slide {
  height: 100%;
}

/* image area */
.akd-pd-page .image-field,
.akd-pd-page .image,
.akd-pd-page .content {
  height: 100%;
}

/* full-cover: sitedeki gibi */
.akd-pd-page img.full-cover {
  width: 100%;
  height: 55vh;
  object-fit: contain;
  /* ürünse contain daha mantıklı */
  display: block;
  transition: transform 0.45s ease;
}

.akd-pd-page .image:hover img.full-cover {
  transform: scale(1.08);
}

/* Controller area (ortadaki yarım daire) */
.akd-pd-page .carousel-controller {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 20;
}

.akd-pd-page .scroll-field {
  position: relative;
  display: flex;
  justify-content: center;
}

.akd-pd-page .carousel-controller-field {
  position: relative;
  width: 200px;
  height: 100px;
  /* 200/2 */
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  background: #fff;
}

.akd-pd-page .carousel-navigation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 15px;
  display: flex;
  gap: 30px;
  pointer-events: none;
}

.akd-pd-page .single-akd-product-det-prev,
.akd-pd-page .single-akd-product-det-next {
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.akd-pd-page .single-akd-product-det-prev.is-disabled,
.akd-pd-page .single-akd-product-det-next.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.akd-pd-page .nav-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 4px;
  transition: transform 0.45s ease, color 0.45s ease;
  user-select: none;
}

.akd-pd-page .nav-icon .label {
  font-size: 12px;
  font-weight: 300;
  color: #111;
  transition: color 0.45s ease;
}

.akd-pd-page .nav-icon .arrow {
  font-size: 12px;
  color: #111;
  line-height: 1;
  transition: transform 0.45s ease, color 0.45s ease;
}

.akd-pd-page .single-akd-product-det-prev:hover .arrow {
  transform: translateX(-3px);
  color: var(--main-500);
}

.akd-pd-page .single-akd-product-det-next:hover .arrow {
  transform: translateX(3px);
  color: var(--main-500);
}

.akd-pd-page .single-akd-product-det-prev:hover .label,
.akd-pd-page .single-akd-product-det-next:hover .label {
  color: var(--main-500);
}

.akd-pd-page .split {
  width: 1px;
  height: 100%;
  background: #111;
  opacity: 0.2;
  position: absolute;
  right: -15px;
  top: 0;
}

/* SVG pagination (yay çizgileri) */
.akd-pd-page .carousel-pagination {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.akd-pd-page .carousel-pagination svg {
  width: 100%;
  height: 100%;
  transform: scaleX(0.87);
}

.akd-pd-page .carousel-pagination g {
  pointer-events: auto;
  cursor: pointer;
}

.akd-pd-page .carousel-pagination g .stroke-transparent {
  stroke: transparent;
  transition: stroke 0.45s ease;
}

.akd-pd-page .carousel-pagination g.is-active .stroke-transparent {
  stroke: var(--main-500);
}

/* thumbnails */
.akd-pd-page .thumbnail-prev-field,
.akd-pd-page .thumbnail-next-field {
  position: absolute;
  bottom: 20px;
  z-index: 20;
  background: #fff;
  border-radius: 15px;
  padding: 1px;
  cursor: pointer;
  transition: opacity 0.45s ease, visibility 0.45s ease,
    transform 0.45s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.akd-pd-page .thumbnail-prev-field {
  left: 20px;
}

.akd-pd-page .thumbnail-next-field {
  right: 20px;
}

.akd-pd-page .thumbnail-prev-field.is-hide,
.akd-pd-page .thumbnail-next-field.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.akd-pd-page .thumbnail-prev-field .thumb-img,
.akd-pd-page .thumbnail-next-field .thumb-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 15px;
}

.akd-pd-page .thumbnail-prev-field img,
.akd-pd-page .thumbnail-next-field img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.akd-pd-page .thumbnail-prev-field:hover img,
.akd-pd-page .thumbnail-next-field:hover img {
  transform: scale(1.08);
}

/* responsive */
@media (max-width: 1200px) {
  .akd-pd-page .grid {
    grid-template-columns: 1fr 1fr;
  }

  .akd-pd-page .right {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .akd-pd-page .grid {
    grid-template-columns: 1fr;
  }

  .akd-pd-page .right {
    grid-column: auto;
  }

  .akd-pd-page .breadcrumb {
    display: none;
  }

  .akd-pd-page .bg-logo {
    display: block;
    /* only mobile */
  }

  .akd-pd-page .carousel-field {
    height: 350px;
    max-height: 350px;
  }
}

@media (max-width: 520px) {
  .akd-pd-page .features-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .akd-pd-page .actions {
    flex-direction: column;
  }

  .akd-pd-page .btnx {
    width: 100%;
  }

  .akd-pd-page .thumbnail-prev-field,
  .akd-pd-page .thumbnail-next-field {
    display: none;
  }

  .akd-pd-page .carousel-controller-field {
    width: 150px;
    height: 75px;
  }

  .akd-pd-page .carousel-navigation {
    margin-top: 7px;
  }
}

/* =========================
     PRODUCT DETAIL TABS (SCOPED)
  ========================== */
:root {
  --akd-pd-main-500: var(--main-500, #0a6324);
  --akd-pd-main-600: var(--main-600, #06481a);
  --akd-pd-bg: var(--bg, #f1f7fb);
}

.akd-pd-tabs {
  position: relative;
  z-index: 20;
  margin: 120px 0;
}

@media (max-width: 1200px) {
  .akd-pd-tabs {
    margin: 80px 0;
  }
}

@media (max-width: 992px) {
  .akd-pd-tabs {
    margin: 60px 0;
  }
}

@media (max-width: 768px) {
  .akd-pd-tabs {
    margin: 45px 0;
  }
}

@media (max-width: 576px) {
  .akd-pd-tabs {
    margin: 30px 0;
  }
}

/* Background panel like your section */
.akd-pd-tabs__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
}

.akd-pd-tabs__bg-inner {
  width: min(1750px, 100%);
  height: 100%;
  background: linear-gradient(287deg, rgb(24 136 194 / 0%) 0%, rgb(24 136 194 / 7%) 70%, rgba(24, 136, 194, 0) 100%) !important;
  border-radius: 30px;
}

@media (max-width: 768px) {
  .akd-pd-tabs__bg-inner {
    border-radius: 0;
  }
}

.akd-pd-tabs__container {
  width: min(1600px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.akd-pd-tabs__wrapper {
  padding: 0 30px;
}

@media (max-width: 768px) {
  .akd-pd-tabs__wrapper {
    padding: 0;
  }
}

/* Tabs bar */
.akd-pd-tabs__bar {
  position: relative;
  margin-bottom: 15px;
}

.akd-pd-tabs__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
}

.akd-pd-tabs__tab {
  cursor: pointer;
  padding: 40px 40px 30px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: background 450ms;
  user-select: none;
  position: relative;
  height: 100%;
}

.akd-pd-tabs__tab-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  color: rgba(17, 17, 17, 0.75);
  font-weight: 400;
  transition: color 450ms;
  text-align: center;
  white-space: nowrap;
}

.akd-pd-tabs__tab.is-active {
  background: var(--akd-pd-main-500);
}

.akd-pd-tabs__tab.is-active .akd-pd-tabs__tab-title {
  color: #fff;
}

.akd-pd-tabs__split {
  width: 1px;
  height: 25px;
  background: #111;
  opacity: 0.1;
}

/* Selector image under active tab */
.akd-pd-tabs__selector {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 450ms, transform 450ms, visibility 450ms;
  z-index: 30;
}

.akd-pd-tabs__selector-img {
  height: 11px;
  width: 200px;
  overflow: hidden;
}

.akd-pd-tabs__img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.akd-pd-tabs__tab.is-active .akd-pd-tabs__selector {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 450ms;
}

/* Mobile horizontal scroll + hand */
@media (max-width: 768px) {
  .akd-pd-tabs__bar {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  .akd-pd-tabs__list {
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 15px;
    margin: 0;
  }

  .akd-pd-tabs__tab {
    padding: 40px 30px 30px;
  }
}

.akd-pd-tabs__bar::-webkit-scrollbar {
  height: 4px;
}

.akd-pd-tabs__bar::-webkit-scrollbar-track {
  background: rgba(10, 99, 36, 0.1);
  border-radius: 5px;
}

.akd-pd-tabs__bar::-webkit-scrollbar-thumb {
  background: var(--akd-pd-main-500);
  border-radius: 5px;
}

.akd-pd-tabs__hand {
  position: absolute;
  top: calc(50% - 15px);
  right: 30px;
  height: 35px;
  width: 35px;
  display: none;
  z-index: 20;
  animation: akdPdSlideX 1.1s ease-in-out infinite alternate;
  transition: opacity 450ms;
}

@media (max-width: 768px) {
  .akd-pd-tabs__hand {
    display: block;
  }
}

.akd-pd-tabs__hand.is-scroll {
  opacity: 0;
}

.akd-pd-tabs__hand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@keyframes akdPdSlideX {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-12px);
  }
}

/* Content wrapper */
.akd-pd-tabs__content {
  position: relative;
  padding-bottom: 50px;
}

.akd-pd-tabs__content-wrap {
  position: relative;
  background: var(--akd-pd-bg);
  overflow: hidden;
  border-radius: 20px;
  height: 0;
  transition: height 450ms;
}

/* Panels */
.akd-pd-tabs__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 450ms, transform 450ms, visibility 450ms;
  padding: 1px;
}

.akd-pd-tabs__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 450ms;
}

.akd-pd-tabs__panel-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.15),
      rgba(10, 99, 36, 0));
  border-radius: 20px;
}

.akd-pd-tabs__panel-gradient--faq {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.15),
      #f1f7fb,
      #f1f7fb);
}

.akd-pd-tabs__panel-inner {
  position: relative;
  z-index: 10;
  background: #f1f7fb;
  border-radius: 20px;
  padding: 50px;
}

@media (max-width: 1200px) {
  .akd-pd-tabs__panel-inner {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .akd-pd-tabs__panel-inner {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .akd-pd-tabs__panel-inner {
    padding: 25px;
  }
}

.akd-pd-tabs__title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 300;
  color: #111;
}

@media (max-width: 1200px) {
  .akd-pd-tabs__title {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .akd-pd-tabs__title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .akd-pd-tabs__title {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .akd-pd-tabs__title {
    font-size: 20px;
  }
}

/* Table style (odd/even like your sample) */
.akd-pd-tabs__table-style {
  position: relative;
}

.akd-pd-tabs__table-wrapper {
  position: relative;
  overflow: auto;
}

.akd-pd-tabs__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
}

.akd-pd-tabs__table td {
  border: 1px solid #afb6b1;
  padding: 14px 16px;
  vertical-align: middle;
  color: #111;
  font-weight: 300;
}

.akd-pd-tabs__table tr:nth-child(odd) {
  background: #f0f4dd;
}

.akd-pd-tabs__table tr:nth-child(even) {
  background: #f7f9ee;
}

.akd-pd-tabs__table p {
  margin: 0;
  font-size: 20px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .akd-pd-tabs__table {
    min-width: 640px;
  }

  .akd-pd-tabs__table p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .akd-pd-tabs__table p {
    font-size: 14px;
  }
}

/* Button (same hover sweep) */
.akd-pd-tabs__btn-field {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.akd-pd-tabs__btn {
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--akd-pd-main-500);
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  gap: 30px;
}

.akd-pd-tabs__btn::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--akd-pd-main-600);
  transition: left 450ms;
}

.akd-pd-tabs__btn:hover::before {
  left: 0;
}

.akd-pd-tabs__btn-text {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 300;
}

.akd-pd-tabs__btn--full {
  width: 100%;
}

/* Gallery */
.akd-pd-tabs__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

@media (max-width: 992px) {
  .akd-pd-tabs__gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .akd-pd-tabs__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .akd-pd-tabs__gallery {
    grid-template-columns: 1fr;
  }
}

.akd-pd-tabs__image-link {
  display: flex;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  transform: translateZ(0);
  cursor: pointer;
}

@media (max-width: 576px) {
  .akd-pd-tabs__image-link {
    height: 300px;
  }
}

.akd-pd-tabs__img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 450ms;
}

.akd-pd-tabs__img-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 450ms;
}

.akd-pd-tabs__image-link:hover .akd-pd-tabs__img-cover {
  transform: scale(1.1);
}

.akd-pd-tabs__image-link:hover .akd-pd-tabs__img-hover {
  opacity: 1;
}

.akd-pd-tabs__img-label {
  margin: 10px 0 0;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 300;
  color: #111;
  transition: color 450ms;
}

@media (max-width: 576px) {
  .akd-pd-tabs__img-label {
    padding-left: 0;
    font-size: 16px;
  }
}

/* FAQ (same behavior) */
.akd-pd-tabs__faq {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.akd-pd-tabs__faq-item {
  position: relative;
  z-index: 50;
}

.akd-pd-tabs__faq-content {
  border-radius: 20px;
  cursor: pointer;
  transition: padding 450ms, background 450ms;
  position: relative;
  padding: 30px 60px;
}

@media (max-width: 576px) {
  .akd-pd-tabs__faq-content {
    padding: 15px;
    border-radius: 10px;
  }
}

.akd-pd-tabs__faq-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.akd-pd-tabs__faq-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 300;
  color: rgba(17, 17, 17, 0.65);
  transition: color 450ms;
}

@media (max-width: 576px) {
  .akd-pd-tabs__faq-title {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .akd-pd-tabs__faq-title {
    font-size: 14px;
  }
}

.akd-pd-tabs__faq-icon {
  width: 40px;
  height: 40px;
  background: #e3ede6;
  border-radius: 999px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 450ms, background 450ms;
  position: relative;
}

.akd-pd-tabs__faq-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  display: block;
}

.akd-pd-tabs__faq-bottom {
  overflow: hidden;
  height: 0;
  transition: height 450ms;
}

.akd-pd-tabs__faq-editor {
  margin-top: 60px;
}

@media (max-width: 1200px) {
  .akd-pd-tabs__faq-editor {
    margin-top: 50px;
  }
}

@media (max-width: 992px) {
  .akd-pd-tabs__faq-editor {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .akd-pd-tabs__faq-editor {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .akd-pd-tabs__faq-editor {
    margin-top: 20px;
  }
}

.akd-pd-tabs__faq-editor p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  font-weight: 300;
}

@media (max-width: 420px) {
  .akd-pd-tabs__faq-editor p {
    font-size: 14px;
  }
}

.akd-pd-tabs__faq-split {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #000;
  opacity: 0.08;
  transition: opacity 450ms;
}

.akd-pd-tabs__faq-item.is-active .akd-pd-tabs__faq-content {
  background: #6fa52c;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 576px) {
  .akd-pd-tabs__faq-item.is-active .akd-pd-tabs__faq-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.akd-pd-tabs__faq-item.is-active .akd-pd-tabs__faq-title {
  color: #fff;
}

.akd-pd-tabs__faq-item.is-active .akd-pd-tabs__faq-icon {
  background: #fff;
  transform: rotate(180deg);
}

.akd-pd-tabs__faq-item.is-active .akd-pd-tabs__faq-split {
  opacity: 0;
}

/* Contact */
.akd-pd-tabs__contact {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

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

.akd-pd-tabs__contact-media {
  position: relative;
}

.akd-pd-tabs__contact-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.65;
  z-index: 2;
  pointer-events: none;
}

.akd-pd-tabs__contact-img {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

@media (max-width: 576px) {
  .akd-pd-tabs__contact-img {
    min-height: 300px;
  }
}

.akd-pd-tabs__contact-info {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 50px;
  z-index: 3;
}

@media (max-width: 768px) {
  .akd-pd-tabs__contact-info {
    left: 30px;
    right: 30px;
    bottom: 30px;
  }
}

.akd-pd-tabs__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.akd-pd-tabs__contact-link {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #fff;
  transition: transform 450ms;
  font-weight: 300;
}

.akd-pd-tabs__contact-link:hover {
  transform: translateX(4px);
}

.akd-pd-tabs__contact-ico {
  font-size: 18px;
  line-height: 1;
}

.akd-pd-tabs__contact-text {
  font-size: 18px;
  line-height: 1.2;
}

@media (max-width: 576px) {
  .akd-pd-tabs__contact-text {
    font-size: 16px;
  }
}

.akd-pd-tabs__contact-form {
  background: #fff;
  padding: 80px;
}

@media (max-width: 1200px) {
  .akd-pd-tabs__contact-form {
    padding: 60px;
  }
}

@media (max-width: 992px) {
  .akd-pd-tabs__contact-form {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .akd-pd-tabs__contact-form {
    padding: 30px;
  }
}

.akd-pd-tabs__form-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.akd-pd-tabs__form-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(17, 17, 17, 0.65);
  margin-bottom: 25px;
}

.akd-pd-tabs__simple-form {
  display: grid;
  gap: 16px;
}

.akd-pd-tabs__field {
  display: grid;
  gap: 8px;
}

.akd-pd-tabs__label {
  font-weight: 300;
  color: rgba(17, 17, 17, 0.75);
}

.akd-pd-tabs__input,
.akd-pd-tabs__textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 14px;
  padding: 14px;
  font: inherit;
  outline: none;
  transition: border-color 450ms, box-shadow 450ms;
}

.akd-pd-tabs__textarea {
  min-height: 120px;
  resize: vertical;
}

.akd-pd-tabs__input:focus,
.akd-pd-tabs__textarea:focus {
  border-color: rgba(10, 99, 36, 0.45);
  box-shadow: 0 0 0 4px rgba(10, 99, 36, 0.1);
}

/* Lightbox */
.akd-pd-tabs__lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.akd-pd-tabs__lightbox.is-open {
  display: block;
}

.akd-pd-tabs__lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.akd-pd-tabs__lb-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(980px, 92vw);
  max-height: 88vh;
  background: #111;
  border-radius: 18px;
  overflow: hidden;
}

.akd-pd-tabs__lb-content img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  background: #000;
}

.akd-pd-tabs__lb-content figcaption {
  padding: 14px 16px;
  color: #fff;
  font-weight: 300;
  opacity: 0.9;
}

.akd-pd-tabs__lb-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.akd-video-page {
  padding: 10rem;
}

.pbmit-gallery-items {
  margin: 0 -15px;
}

.pbmit-gallery-item {
  padding: 15px;
  margin-bottom: 30px;
}

.pbmit-gallery-wrapper {
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pbmit-gallery-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pbmit-gallery-img-box {
  position: relative;
  overflow: hidden;
  padding-top: 75%;
  /* 4:3 gÃƒÂ¶rÃƒÂ¼ntÃƒÂ¼ oranÃ„Â± */
}

.pbmit-gallery-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.pbmit-gallery-wrapper:hover .pbmit-gallery-img-box img {
  transform: scale(1.05);
}

.pbmit-gallery-icon-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.pbmit-gallery-wrapper:hover .pbmit-gallery-icon-box {
  opacity: 1;
}

.pbmit-gallery-icon-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #8ac64f;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pbmit-gallery-icon-box a:hover {
  background-color: #fff;
  color: #8ac64f;
}

.pbmit-gallery-content {
  padding: 20px;
  text-align: center;
}

.pbmit-gallery-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #222;
}
/* ---------- AKD Product Detail Table ---------- */
.akd-pd-tabs__table-wrapper{
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

/* CKEditor / editor çıktısı */
.akd-pd-tabs__table-wrapper .table{
  margin: 0;
}

/* Table */
.akd-pd-tabs__table-wrapper table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 520px;
  color: rgba(0,0,0,.88);
}

/* Cells */
.akd-pd-tabs__table-wrapper td{
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0,0,0,.12);
  border-right: 1px solid rgba(0,0,0,.12);
  vertical-align: middle;
  background: #fff;
}

.akd-pd-tabs__table-wrapper tr td:last-child{
  border-right: 0;
}

.akd-pd-tabs__table-wrapper tr:last-child td{
  border-bottom: 0;
}

/* Header row (first row) */
.akd-pd-tabs__table-wrapper tbody tr:first-child td{
  background: rgba(0,0,0,.04);
  font-weight: 700;
  border-bottom: 1px solid rgba(0,0,0,.18);
}

/* Header text spacing */
.akd-pd-tabs__table-wrapper tbody tr:first-child td p{
  margin: 0;
  line-height: 1.25;
}

.akd-pd-tabs__table-wrapper tbody tr:first-child td p + p{
  margin-top: 6px;
  font-weight: 500;
  color: rgba(0,0,0,.55);
}

/* Content rows */
.akd-pd-tabs__table-wrapper tbody tr:not(:first-child) td{
  font-weight: 600;
}

.akd-pd-tabs__table-wrapper tbody tr:not(:first-child) td i{
  font-weight: 500;
  color: rgba(0,0,0,.55);
  font-style: normal;
}

/* Zebra rows */
.akd-pd-tabs__table-wrapper tbody tr:nth-child(even):not(:first-child) td{
  background: rgba(0,0,0,.02);
}

/* Hover */
.akd-pd-tabs__table-wrapper tbody tr:not(:first-child):hover td{
  background: rgba(0,0,0,.05);
}

/* Mobile */
@media (max-width: 640px){
  .akd-pd-tabs__table-wrapper{
    border-radius: 12px;
  }

  .akd-pd-tabs__table-wrapper td{
    padding: 14px;
  }

  .akd-pd-tabs__table-wrapper table{
    min-width: 460px;
  }
}

.akd-pd-tabs__table-wrapper p {
  text-align: center;
  padding: 3px 0;
}

@media (max-width: 768px) {
  .akd-footer__col {
    min-height: auto;
    padding: 44px 7px;
  }
  .akd-news{
    width: auto;
  }
  .tp-section {
    overflow: hidden;
  }
  #pk-products .pk-hero {
    display: none;
  }
  .banner-image {
    display: none;
  }
  .akd-footer {
    margin: 0.25rem;
  }
  .banner-content {
    flex-grow: 0;
    margin-left: 0;
    margin-top: 4rem;
  }
}

/* ========== SEARCH TOGGLE & OVERLAY ========== */
.search-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 8px 12px;
  margin-right: 2px;
  transition: color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
}

.search-toggle:hover {
  color: #fff;
  transform: scale(1.1);
}

.header-field.sub-page .search-toggle {
  color: #5d5d5d;
}

.header-field.sub-page .search-toggle:hover {
  color: #1888c2;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 15, 36, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 20px;
  position: relative;
}

.search-close {
  position: absolute;
  top: -50px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
  padding: 8px;
}

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

.search-box {
  width: 100%;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-icon {
  position: absolute;
  left: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 18px 24px 18px 52px;
  font-size: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  font-family: inherit;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-input:focus {
  border-color: #1888c2;
  background: rgba(255, 255, 255, 0.12);
}

.search-results {
  margin-top: 16px;
  max-height: 55vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}

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

.search-results::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: background 0.25s ease;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.search-result-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.search-result-img-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25);
  font-size: 20px;
}

.search-result-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.search-result-name {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-category {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.search-result-code {
  font-size: 12px;
  color: #1888c2;
  font-weight: 500;
}

.search-no-result {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  padding: 32px 0;
  font-size: 15px;
}

.search-loading {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  padding: 32px 0;
  font-size: 15px;
}

@media (max-width: 1023px) {
  .search-toggle {
    display: flex;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
    margin-right: 0;
  }

  .header-field.sub-page .search-toggle {
    color: #fff;
  }

  .search-overlay {
    padding-top: 6vh;
  }

  .search-input {
    font-size: 16px;
    padding: 15px 20px 15px 48px;
  }
}

/* ========== RTL (Arabic) ========== */
html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .wrapper {
  direction: rtl;
}

html[dir="rtl"] .header-utility {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .header-utility .search-toggle {
  margin-right: 0;
  margin-left: 8px;
}

html[dir="rtl"] .nav-shell {
  direction: rtl;
}

html[dir="rtl"] .headerMenu {
  direction: rtl;
}

html[dir="rtl"] .sub-menu,
html[dir="rtl"] .sub-menu-1 {
  text-align: right;
}

html[dir="rtl"] .chev {
  margin-left: 0;
  margin-right: 4px;
}

html[dir="rtl"] .brand {
  margin-right: 0;
}

html[dir="rtl"] .search-input {
  padding: 18px 52px 18px 24px;
  text-align: right;
  direction: rtl;
}

html[dir="rtl"] .search-input-icon {
  left: auto;
  right: 20px;
}

html[dir="rtl"] .search-result-item {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .search-result-info {
  text-align: right;
}

html[dir="rtl"] .search-close {
  right: auto;
  left: 20px;
}

html[dir="rtl"] .footer-col,
html[dir="rtl"] .akd-footer__col {
  text-align: right;
}

@media (max-width: 1023px) {
  html[dir="rtl"] .search-toggle {
    right: auto;
    left: 60px;
  }

  html[dir="rtl"] .mobile-menu-field {
    margin-left: 0;
    margin-right: auto;
  }

  html[dir="rtl"] .search-input {
    padding: 15px 48px 15px 20px;
  }
}




/* ========== BLOG DETAIL UI ========== */
#akd-news-detail .akd-blog-post {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

#akd-news-detail .pbmit-featured-img-wrapper {
  margin-bottom: 0;
}

#akd-news-detail .pbmit-featured-wrapper img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

#akd-news-detail .pbmit-blog-classic-inner {
  padding: 36px 34px;
}

#akd-news-detail .pbmit-entry-content {
  color: #3b3b3b;
  font-size: 17px;
  line-height: 1.9;
}

#akd-news-detail .pbmit-entry-content h1,
#akd-news-detail .pbmit-entry-content h2,
#akd-news-detail .pbmit-entry-content h3,
#akd-news-detail .pbmit-entry-content h4,
#akd-news-detail .pbmit-entry-content h5 {
  color: #1e2a3a;
  margin: 28px 0 12px;
  line-height: 1.35;
  font-weight: 700;
}

#akd-news-detail .pbmit-entry-content p {
  margin-bottom: 16px;
}

#akd-news-detail .pbmit-entry-content ul,
#akd-news-detail .pbmit-entry-content ol {
  padding-left: 22px;
  margin: 0 0 18px;
}

#akd-news-detail .pbmit-entry-content li {
  margin-bottom: 8px;
}

#akd-news-detail .pbmit-entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 12px 0;
}

#akd-news-detail .pbmit-entry-content blockquote {
  border-left: 4px solid var(--primary, #1e89c2);
  background: #f8fbfd;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 20px 0;
  color: #2f4154;
}

#akd-news-detail .akd-blog-gallery h4 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #1e2a3a;
}

#akd-news-detail .akd-blog-gallery-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

#akd-news-detail .akd-blog-gallery-link img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

#akd-news-detail .akd-blog-gallery-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.22));
  opacity: 0;
  transition: opacity 0.3s ease;
}

#akd-news-detail .akd-blog-gallery-link:hover img {
  transform: scale(1.06);
}

#akd-news-detail .akd-blog-gallery-link:hover::after {
  opacity: 1;
}

@media (max-width: 992px) {
  #akd-news-detail .pbmit-blog-classic-inner {
    padding: 24px 20px;
  }

  #akd-news-detail .pbmit-entry-content {
    font-size: 16px;
    line-height: 1.8;
  }
}


/* ========== PAGE PRELOADER ========== */
body.is-preloading {
  overflow: hidden;
}

.akd-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
  radial-gradient(900px 520px at 20% 15%, rgb(23 134 190 / 34%), #20316275 58%), radial-gradient(900px 520px at 85% 85%, rgba(32, 46, 95, 0.3), #202d5d 62%), #1786bf;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.akd-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.akd-preloader__inner {
  min-width: min(360px, 88vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 34px 32px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(3px);
  animation: akdPreloaderCardIn 0.55s ease-out both, akdPreloaderBreath 2.6s ease-in-out 0.55s infinite;
}

.akd-preloader__logo {
  width: min(180px, 44vw);
  opacity: 0.96;
  animation: akdPreloaderLogoFloat 1.8s ease-in-out infinite;
}

.akd-preloader__spinnerWrap {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}

.akd-preloader__spinner {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #9ddfff;
  border-right-color: rgba(157, 223, 255, 0.6);
  animation: akdPreloaderSpin 0.85s linear infinite;
}

.akd-preloader__label {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-left: 0.35em;
  animation: akdPreloaderLabelPulse 1.6s ease-in-out infinite;
}

@media (max-width: 768px) {
  .akd-preloader__inner {
    min-width: min(320px, 90vw);
    padding: 28px 24px 24px;
    border-radius: 16px;
  }

  .akd-preloader__logo {
    width: min(156px, 52vw);
  }
}

@keyframes akdPreloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes akdPreloaderCardIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes akdPreloaderBreath {
  0%, 100% {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow: 0 30px 68px rgba(0, 0, 0, 0.42);
  }
}

@keyframes akdPreloaderLogoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes akdPreloaderLabelPulse {
  0%, 100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}

/* ========== SCROLL TOP BUTTON ========== */
.akd-scroll-top {
  position: fixed;
  right: 40px;
  bottom: 44px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1e89c2, #176b98);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.akd-scroll-top i {
  font-size: 15px;
}

.akd-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.akd-scroll-top:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.akd-scroll-top:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .akd-scroll-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

/* ========== DOCUMENTS (Belgelerimiz) ========== */
.akd-doc-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.akd-doc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 137, 194, 0.35);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.akd-doc-card__preview {
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f8fafc;
  position: relative;
  border-bottom: 1px solid #e5e7eb;
}

.akd-doc-card__preview i {
  font-size: 34px;
  color: #64748b;
}

.akd-doc-card__preview-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.akd-doc-card__ext {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.akd-doc-card__body {
  padding: 16px 16px 18px;
  background: rgba(255, 255, 255, 0.92);
}

.akd-doc-card__preview-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.akd-doc-card__preview-pdf {
  width: 100%;
  height: 350px;
  border: 0;
  background: #fff;
}

.akd-doc-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.akd-doc-card__btn {
  margin-top: 12px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(145deg, #1e89c2, #176b98);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.akd-doc-card__btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.akd-doc-card__btn .akd-btn-bg {
  position: absolute;
  right: 10px;
  width: 44px;
  height: 44px;
  background: #1e89c200;;
  border-radius: 6px;
  transition: all .4s ease-in-out;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.akd-documents-page {
  padding-top: 80px;
}
