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

/* ======= PRELOADER ======= */
#site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #0f1923;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#site-preloader.spl-out {
  opacity: 0;
  visibility: hidden;
}
.spl-inner { text-align: center; }

.spl-gif {
  display: block;
  width: 130px;
  height: 130px;
  margin: 0 auto;
  object-fit: contain;
}

.spl-logo {
  display: block;
  max-width: 150px;
  margin: 20px auto 0;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.spl-bar {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  margin: 22px auto 0;
  overflow: hidden;
}
.spl-bar-fill {
  height: 100%;
  width: 0;
  background: #00B51B;
  border-radius: 2px;
  animation: spl-fill 1.4s ease forwards;
}
@keyframes spl-fill { to { width: 100%; } }
/* ====================== */

:root {
  --g: #00B51B;
  --g2: #00B51B;
  --g3: #00B51B;
  --black: #383e42;
  --dark: #383e42;
  --dark2: #383e42;
  --border: rgba(255, 255, 255, 0.07);
  --bg: rgba(86, 197, 128, 0.08);
  --text: #d8e8ce;
  --muted: #aab5a6;
  --nav: 68px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Urbanist', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  cursor: default;
}

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

button {
  font-family: 'Urbanist', sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: var(--g3);
  border-radius: 2px;
}

/* â”€â”€ HEADER â”€â”€ */
#hdr {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 calc(max(56px, (100% - 1300px) / 2));
  background: transparent;
}

#hdr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, rgb(0 0 0 / 95%) 0%, rgb(0 0 0 / 60%) 30%, rgb(0 0 0 / 0%) 100%);
  z-index: -1;
  pointer-events: none;
}

#hdr.solid {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

#hdr.solid::before {
  display: none;
}

.hero-desc-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  gap: 35px;
  border-radius: 80px 80px 0 0;
  z-index: 10;
  width: 90%;
  max-width: 1200px;
  justify-content: space-between;
}

.hd-prev,
.hd-next {
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--g);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hd-prev:hover,
.hd-next:hover {
  transform: scale(1.1);
  color: var(--g3);
}

.hd-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--g);
  white-space: nowrap;
}

.hd-text {
  font-size: 15px;
  font-weight: 600;
  color: #383e42;
  text-align: left;
  line-height: 1.5;
  flex: 1;
}

.hdr-left {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu>li {
  position: relative;
}

.nav-menu>li>a {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  padding: 22px 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
  white-space: nowrap;
}

.nav-menu>li>a:hover {
  color: #00B51B;
}

.nav-menu>li>a.dd::after {
  content: ' \25BE';
  font-size: 8px;
  opacity: .7;
  margin-top: 1px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #00B51B;
  border-radius: 10px;
  min-width: 220px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .22s;
  pointer-events: none;
  z-index: 1000;
}

.dropdown::before,
.lang-dd::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.nav-menu>li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 18px;
  color: #383e42;
  transition: color .2s, background .2s;
  border-left: 2px solid transparent;
}

.dropdown a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-left-color: #fff;
}

.hdr-logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hdr-logo img {
  height: 36px;
  width: auto;
}

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

.btn-bayi {
  font-size: 15px;
  font-weight: 600;
  color: #383e42;
  padding: 8px 20px;
  border-radius: 7px;
  border: 1px solid rgba(63, 63, 63, 0.3);
  background: transparent;
  transition: all .2s;
}

.btn-bayi:hover {
  border-color: #00B51B;
  color: #00B51B;
}

.lang-wrap {
  position: relative;
}

.lang-btn {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 7px;
  border: 1px solid rgb(51 169 54);
  background: transparent;
  transition: all .2s;
  cursor: pointer;
}

.lang-btn:hover,
.lang-wrap.open .lang-btn {
  border-color: #00B51B;
  color: #00B51B;
}

.lang-chev {
  font-size: 8px;
  transition: transform .2s;
}

.lang-wrap.open .lang-chev {
  transform: rotate(180deg);
}

.lang-dd {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #00B51B;
  border-radius: 10px;
  min-width: 140px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .22s;
}

.lang-wrap.open .lang-dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dd a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 15px;
  color: #383e42;
  transition: color .2s, background .2s;
}

.lang-dd a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.lang-dd a.act {
  color: #fff;
}

.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

.hbg span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

.hbg.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hbg.open span:nth-child(2) {
  opacity: 0;
}

.hbg.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-nav {
  display: none;
  position: fixed;
  top: var(--nav);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(63, 63, 63, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 30px;
  flex-direction: column;
  overflow-y: auto;
}

.mob-nav.open {
  display: flex;
}

.mob-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
  text-decoration: none;
}

.mob-item:hover {
  color: var(--g);
}

.mob-item .chev {
  font-size: 10px;
  color: rgba(255,255,255,.5);
  transition: transform .2s;
}

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

.mob-sub {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,.2);
}

.mob-sub.open {
  display: flex;
}

.mob-sub a {
  padding: 11px 36px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.06);
  border-left: 2px solid transparent;
  transition: all .2s;
}

.mob-sub a:hover {
  color: var(--g);
  border-left-color: var(--g);
}

/* â”€â”€ FOOTER â”€â”€ */
.footer {
  padding: 80px 56px 60px;
  background: url('../img/footerbg.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  border-top: none;
}

.f-inn {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.fg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
  gap: 30px;
  align-items: stretch;
}

.f-col-logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-logo {
  max-width: 180px;
  display: block;
}

.f-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: auto;
  padding-top: 40px;
}

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

.fct {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}

.fcl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fcl a {
  font-size: 13px;
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.2s;
}

.fcl a:hover {
  color: #fff;
}

.fcl .sub {
  padding-left: 14px;
}

.f-contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cr {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ci {
  color: #fff;
  margin-top: 2px;
}

.ctxt {
  font-size: 13px;
  color: #a0a0a0;
  line-height: 1.6;
}

.f-col-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.f-socs {
  display: flex;
  gap: 12px;
}

.fsoc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #a0a0a0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: all 0.2s;
}

.fsoc:hover {
  background: #fff;
  transform: translateY(-2px);
}

.f-40-logo {
  max-width: 130px;
  margin-top: auto;
  padding-top: 40px;
}

/* â”€â”€ DETAIL PAGE LAYOUT â”€â”€ */
.dp-wrap {
  padding-top: var(--nav);
  min-height: 100vh;
  background: var(--black);
}

.dp-hero {
  padding: 50px 56px 36px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.bk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 26px;
  font-weight: 500;
  transition: color .2s;
}

.bk:hover {
  color: var(--g2);
}

.dp-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--g2);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.dp-title {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.dp-body {
  padding: 52px 0px 8px;
  max-width: 1280px;
  margin: 0 auto;
}

.inner-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

.inner-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 28px 0 12px;
}

.inner-content ul {
  margin-left: 24px;
  margin-bottom: 18px;
}

.inner-content ul li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.map-ph {
  border-radius: 14px;
  height: 360px;
  border: 1px solid var(--border);
  background: var(--dark2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
}

.map-ph .mi {
  font-size: 44px;
}

.map-ph .mt {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.map-ph .mpl {
  color: var(--g2);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

iframe.mfr {
  width: 100%;
  height: 360px;
  border: none;
  border-radius: 14px;
  display: none;
}

.info-c {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.info-t {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.ir {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.ir:last-of-type {
  border-bottom: none;
}

.iri {
  color: var(--g2);
  width: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.irl {
  color: var(--muted);
  width: 88px;
  flex-shrink: 0;
}

.irv {
  color: #fff;
}

.map-btn {
  width: 100%;
  margin-top: 18px;
  padding: 13px;
  border-radius: 8px;
  background: var(--g);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s;
  display: block;
  text-align: center;
}

.map-btn:hover {
  background: var(--g3);
}

.bd2 {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.blc {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 20px;
  text-align: center;
}

.blcn {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.blcf {
  font-size: 13px;
  color: var(--muted);
}

.bst {
  font-size: 52px;
  font-weight: 900;
  color: var(--g2);
  line-height: 1;
}

.bss {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.bab {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.pc {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: border-color .2s;
}

.pc:hover {
  border-color: rgba(86, 197, 128, .28);
}

.pci {
  font-size: 26px;
  margin-bottom: 10px;
}

.pcn {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.pcd {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.ndw {
  max-width: 100%;
  margin: 0 auto;
}

.ndtag {
  display: inline-block;
  background: var(--g);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.ndtit {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 10px;
}

.ndmet {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.ndimg {
  width: 100%;
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
  background: url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?w=1200&q=80') center/cover;
  filter: brightness(.7);
}

.ndbody {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.2;
}

.ndbody p {
  margin-bottom: 5px;
}

.ndbody h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 24px 0 10px;
}

.subeler-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
}

.sub-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}

.sub-card:hover {
  border-color: rgba(86, 197, 128, .3);
  transform: translateY(-2px);
}

.sub-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.sub-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.sub-card .go {
  color: var(--g2);
  font-size: 13px;
  font-weight: 600;
}

@media(max-width:960px) {
  #hdr {
    padding: 0 20px;
  }

  .hdr-left {
    display: none;
  }

  .hdr-logo {
    position: static;
    transform: none;
    flex: 1;
  }

  .hdr-logo img {
    height: 30px;
  }

  .nav-menu {
    display: none;
  }

  .hbg {
    display: flex;
  }

  .btn-bayi {
    display: none;
  }

  .footer,
  .dp-hero,
  .dp-body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .fg {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .two-col,
  .bd2 {
    grid-template-columns: 1fr;
  }

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

  .dp-title {
    font-size: 30px;
  }

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

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

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


.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 350px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 5;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
}

.slide.prev {
  opacity: 1;
  z-index: 1;
}

.slide.on {
  opacity: 1;
  z-index: 2;
  animation: slideFadeIn 1s ease forwards;
}

@keyframes slideFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: opacity 1s ease;
}

.slide-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.slide-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
}
.slide-video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-video-text {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  padding: clamp(30px, 6vw, 100px);
  padding-bottom: clamp(60px, 12vh, 140px);
  pointer-events: none;
}
.slide-video-text > div {
  max-width: 900px;
  color: #fff;
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.9;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.slide-ov {
  position: absolute;
  inset: 0;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 56px 44px;
}

.slide-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 9px 16px;
  backdrop-filter: blur(8px);
}

.stat-ico {
  font-size: 17px;
}

.stat-val {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-lbl {
  font-size: 10px;
  color: var(--muted);
}

.sdots {
  position: absolute;
  bottom: 16px;
  left: 56px;
  display: flex;
  gap: 8px;
  z-index: 20;
}

.sdot {
  height: 3px;
  border-radius: 2px;
  cursor: pointer;
  background: rgba(255, 255, 255, .28);
  transition: width .3s, background .3s;
  width: 24px;
}

.sdot.on {
  background: var(--g2);
  width: 48px;
}

.hero-lower {
  background: #ffffff;
  padding: 85px 56px 65px;
}

.hl-inn {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
}

.hl-left {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.hl-ey {
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: #00B51B;
  margin-bottom: -15px;
  margin-left: 5px;
}

.hl-brand {
  font-size: 85px;
  font-weight: 900;
  color: #383e42;
  line-height: 1;
  letter-spacing: -3px;
}

.hl-brand .g {
  color: var(--g2);
}

.hl-tag {
  font-size: 28px;
  font-weight: 700;
  color: #00B51B;
  margin-top: -15px;
  letter-spacing: -1px;
}

.hl-text {
  font-size: 16px;
  font-weight: 500;
  color: #383e42;
  line-height: 1.6;
}

.three-boxes {
  background: #ffffff;
  padding: 0 56px 68px;
}

.tb-inn {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.box {
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.box-g {
  background: var(--g);
  padding: 0px;
}

.box-d {
  background: #252925;
  border: 1px solid rgba(255, 255, 255, .08);
}

.box-pi {
  background: var(--g3);
  background-image: url('../img/filmbg.jpg');
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
}

.box-pi::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 60, 30, .72);
  border-radius: 20px;
  transition: background 0.35s ease;
}

.box-pi:hover::after {
  background: rgba(20, 60, 30, .55);
}

/* Video Promo Content */
.vp-overlay {
  display: none;
}

.vp-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  text-align: center;
  gap: 14px;
}

.vp-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

.vp-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #00B51B;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(86, 197, 128, 0.55);
  animation: vp-pulse 2.2s infinite;
  transition: transform 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.box-pi:hover .vp-play {
  transform: scale(1.10);
  background: #3fb86a;
}

@keyframes vp-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(86,197,128,0.55); }
  60%  { box-shadow: 0 0 0 20px rgba(86,197,128,0); }
  100% { box-shadow: 0 0 0 0   rgba(86,197,128,0); }
}

.vp-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  max-width: 220px;
}

.vp-desc {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  max-width: 230px;
}


/* YouTube Modal */
.yt-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.yt-modal.open {
  display: flex;
}

.yt-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: ytFadeIn 0.3s ease;
}

@keyframes ytFadeIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

.yt-frame-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.yt-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.yt-close:hover {
  background: #00B51B;
  transform: scale(1.1);
}

.box-pi-c {
  position: relative;
  z-index: 2;
}

.box-lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.sg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.sc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.sc span {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.b2h {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.b2i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.b2t {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.b2d {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin-bottom: 16px;
}

.b2l {
  font-size: 13px;
  font-weight: 700;
  color: var(--g2);
}

.b2l:hover {
  text-decoration: underline;
}

.brl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  cursor: pointer;
  transition: opacity .2s;
}

.brl:last-child {
  border-bottom: none;
}

.brl:hover {
  opacity: .8;
}

.brn {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.brd {
  flex: 1;
  margin: 0 8px;
  border-bottom: 1px dotted rgba(255, 255, 255, .3);
}

.brt {
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
}

.locations {
  padding: 80px 56px;
  background: url('../img/lokasyonbg.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.locations::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  opacity: .05;
  border-radius: 50%;
  pointer-events: none;
}

.loc-inn {
  max-width: 1200px;
  margin: 0 auto;
}

.loc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.loc-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
}

.loc-desc {
  max-width: 440px;
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.6;
}

.loc-bottom {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 30px;
}

.loc-photo {
  border-radius: 20px;
  overflow: hidden;
  height: 440px;
  background: #111;
  position: relative;
}

.loc-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity .35s ease;
}

.loc-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 440px;
  justify-content: space-between;
}

.loc-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-radius: 16px;
  background: #1a1a1a;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
}

.loc-item:hover,
.loc-item.sel {
  background: #252525;
  border-color: rgba(255, 255, 255, 0.05);
}

.loc-nm {
  font-size: 20px;
  font-weight: 600;
  color: #e0e0e0;
  transition: color .3s ease;
}

.loc-item:hover .loc-nm,
.loc-nm.grn {
  color: var(--g);
}

.loc-arr {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b0b0;
  font-size: 16px;
  transition: all .3s ease;
}

.loc-item:hover .loc-arr {
  border-color: rgba(255, 255, 255, .2);
  color: var(--g);
}

.brands {
  padding: 80px 56px;
  background: #fff;
}

.binn {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.b-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.b-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bh {
  margin-bottom: 30px;
}

.bt {
  font-size: 54px;
  font-weight: 800;
  color: var(--g);
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.bd {
  font-size: 13px;
  color: #a0a0a0;
  line-height: 1.6;
  max-width: 480px;
}

.bc {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--g);
  border-radius: 16px;
  padding: 30px 40px;
  background: #fff;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}

.bc:hover {
  box-shadow: 0 10px 30px rgba(86, 197, 128, .15);
  transform: translateY(-2px);
}

.bc-large {
  flex: 1;
  margin-top: 0;
}

.bl {
  flex: 1;
}

.brand-logo {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.bn {
  display: none; /* fallback removed */
}

.bcd {
  font-size: 11px;
  color: #a0a0a0;
  line-height: 1.5;
}

.bb {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--g);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.bgo {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: background .2s, transform .2s;
}

.bc:hover .bgo {
  background: var(--g3);
  transform: scale(1.08);
}

.news-sec {
  padding: 80px 56px;
  background: url('../img/haberbg.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.news-inn {
  max-width: 1200px;
  margin: 0 auto;
}

.news-bottom {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 60px;
}

.news-photo-container {
  position: relative;
  height: 600px;
  border-radius: 20px;
}

.news-photo {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
}
.news-photo img {
  opacity: 1;
  transition: opacity .35s ease;
}

.news-active-line {
  position: absolute;
  right: -8px;
  width: 8px;
  background: var(--g);
  border-radius: 4px;
  transition: top 0.4s cubic-bezier(0.25, 1, 0.5, 1), height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 15px rgba(86, 197, 128, 0.5);
  top: 0; 
  height: 100px;
  z-index: 5;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 600px;
  justify-content: space-between;
  position: relative;
}

.news-item {
  flex: 1;
  background: #1a1a1a;
  border-radius: 16px;
  padding: 0 32px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 1px solid transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-item:hover {
  background: #252525;
}

.news-item.open {
  background: var(--g);
  border-color: rgba(255, 255, 255, 0.1);
  justify-content: flex-start;
  padding-top: 30px;
}

.ni-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ni-title {
  font-size: 18px;
  font-weight: 600;
  color: #e0e0e0;
  transition: color 0.3s ease;
}

.news-item.open .ni-title {
  color: #fff;
}

.ni-arr {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b0b0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.news-item.open .ni-arr {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.ni-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  opacity: 0;
}

.news-item.open .ni-body {
  max-height: 250px;
  margin-top: 16px;
  opacity: 1;
}

.ni-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 12px;
}

.ni-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,.25);
  padding: 7px 16px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.25);
  transition: background .2s, border-color .2s;
  margin-bottom: 4px;
}
.ni-read-more:hover {
  background: rgba(0,0,0,.45);
  border-color: rgba(255,255,255,.5);
}
.ni-read-more span {
  transition: transform .2s;
}
.ni-read-more:hover span {
  transform: translateX(4px);
}

.video-wrap {
  padding: 0 40px 40px;
  background: var(--black);
}

.vc {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 260px;
  cursor: pointer;
}

.vbg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80') center/cover;
  filter: brightness(.5) saturate(.7);
  transition: filter .3s, transform .3s;
}

.vc:hover .vbg {
  filter: brightness(.65);
  transform: scale(1.02);
}

.vi {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 52px;
  gap: 24px;
}

.pb {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  transition: all .2s;
}

.vc:hover .pb {
  border-color: var(--g2);
  background: rgba(86, 197, 128, .1);
}

.vt {
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -.5px;
}

@media (min-width: 961px) {
  .mobile-vid { display: none !important; }
}

@media(max-width:960px) {
  .hero {
    height: 56.25vw;
    min-height: unset;
  }
  .hero::after {
    height: 60px;
    opacity: 0.5;
  }
  
  .slide-video-text {
    padding: 16px;
    padding-bottom: 24px;
    align-items: center;
    justify-content: center;
  }
  .slide-video-text > div {
    font-size: 28px !important;
    text-align: center;
    width: 100%;
  }

  .hero-desc-box {
    padding: 12px 20px;
    gap: 10px;
    width: 100%;
    border-radius: 0;
    justify-content: center;
  }
  .hd-title { font-size: 16px; display: none; }
  .hd-text { display: none; }
  .hd-prev, .hd-next { font-size: 20px; padding: 0 10px; }

  .slide-content {
    padding: 0 24px 36px;
  }

  .sdots {
    left: 24px;
  }

  .hero-lower,
  .three-boxes,
  .locations,
  .brands,
  .news-sec,
  .video-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hl-inn {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .tb-inn {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .loc-inn {
    grid-template-columns: 1fr;
  }

  .loc-list {
    margin-top: 20px;
  }

  .bh {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .nh {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .nfi {
    height: 300px;
  }

  .video-wrap {
    padding: 0 20px 28px;
  }

  .vt {
    font-size: 30px;
  }

  .desktop-vid { display: none !important; }

  /* Markalar — tek sütuna geç */
  .binn {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bc {
    padding: 20px 24px;
  }

  .bc-large {
    margin-top: 0;
  }

  /* Haberler â€” tek sütuna geç, sabit yükseklikleri kaldır */
  /* Haberler — tek sütuna geç, sabit yükseklikleri kaldır */
  .news-bottom {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .news-photo-container {
    height: 260px;
  }

  .news-list {
    height: auto;
  }

  .news-active-line {
    display: none;
  }
  
  .ni-body {
    max-height: none !important;
    opacity: 1 !important;
    margin-top: 16px !important;
  }
  
  .ni-arr {
    display: none !important;
  }

  /* Footer Centering for Mobile */
  .fg {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .f-col-logo,
  .f-col,
  .f-col-right {
    align-items: center;
    text-align: center;
  }
  .fcl {
    align-items: center;
  }
  .cr {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .ctxt {
    text-align: center;
  }
}

@media(max-width:600px) {

  .bt,
  .loc-title,
  .nt {
    font-size: 38px;
  }

  .hl-brand {
    font-size: 50px;
  }

  .bc {
    padding: 16px 18px;
    gap: 14px;
  }

  .bgo {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .bt {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .news-photo-container {
    height: 200px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SIDEBAR LAYOUT UTILITY (hizmetler / hizmet / sube)
   240px sol sidebar + 1fr içerik
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.sidebar-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   EK MOBİL STİLLER â€” 960px
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media(max-width:960px) {

  /* Sidebar layout â†’ dikey yığın */
  .sidebar-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Sticky sidebar â†’ yatay etiket listesi */
  .svc-sidebar {
    position: static !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
  }

  .svc-sidebar > div:first-child {
    flex-basis: 100%;
    margin-bottom: 2px;
  }

  .svc-sidebar-link {
    display: inline-flex !important;
    padding: 5px 12px !important;
    font-size: 13px !important;
    margin-bottom: 0 !important;
    background: rgba(86,197,128,.05) !important;
    border: 1px solid rgba(86,197,128,.18) !important;
    border-radius: 20px !important;
  }

  .svc-sidebar-link.active {
    background: rgba(86,197,128,.15) !important;
    border-color: rgba(86,197,128,.4) !important;
  }

  /* DP sayfa dikey padding */
  .dp-hero { padding-top: 36px; padding-bottom: 24px; }
  .dp-body { padding-top: 28px; padding-bottom: 48px; }

  /* Footer dikey padding */
  .footer { padding-top: 52px; padding-bottom: 44px; }

  /* Hero lower */
  .hero-lower { padding-top: 52px; padding-bottom: 44px; }
  .hl-inn { gap: 32px; }

  /* Three-boxes */
  .three-boxes { padding-bottom: 44px; }

  /* Lokasyonlar: loc-bottom 2-kolon â†’ tek kolon */
  .loc-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .loc-photo { height: 280px; }
  .loc-list  { height: auto; gap: 10px; }
  .loc-top   { flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .loc-desc  { max-width: 100%; }

  /* Harita embed yüksekliği */
  .loc-map-wrap { height: 280px !important; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   EK MOBİL STİLLER â€” 600px
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media(max-width:600px) {

  /* Header */
  #hdr { padding: 0 16px; }

  /* DP */
  .dp-title { font-size: 26px; }
  .dp-hero  { padding-top: 28px; padding-bottom: 20px; }
  .dp-body  { padding-left: 16px; padding-right: 16px; padding-top: 24px; }

  /* Footer */
  .footer { padding: 40px 16px 36px; }
  .fct    { margin-bottom: 14px; }

  /* Hero slider */
  .slide-content { padding: 0 16px 96px; }
  .slide-stats   { gap: 8px; }
  .stat-pill     { padding: 7px 12px; }
  .stat-val      { font-size: 15px; }

  /* Hero lower */
  .hero-lower { padding: 44px 16px 40px; }
  .hl-brand   { font-size: 52px; }
  .hl-tag     { font-size: 22px; }
  .hl-ey      { font-size: 16px; }
  .hl-text    { font-size: 15px; }

  /* Three boxes */
  .three-boxes { padding: 0 16px 36px; }
  .box { padding: 22px 18px; }

  /* Lokasyonlar */
  .locations  { padding-left: 16px; padding-right: 16px; }
  .loc-title  { font-size: 36px; letter-spacing: -1px; }
  .loc-item   { padding: 0 18px; }
  .loc-nm     { font-size: 16px; }
  .loc-map-wrap { height: 240px !important; }

  /* Markalar & Haberler */
  .brands, .news-sec { padding-left: 16px; padding-right: 16px; }
  /* Video */
  .video-wrap { padding: 0 16px 28px; }
  .vt         { font-size: 26px; }
}
.career-hero{padding: 96px 0 56px;background: #383e42;text-align:center}
.career-hero h1{font-size:40px;font-weight:900;color: #ffffff;margin-bottom:10px}
.career-hero p{color:#7a8099;font-size:16px;max-width:560px;margin:0 auto;line-height:1.7}
.career-wrap{max-width: 1280px;margin:0 auto;padding:0 24px}
.career-body{padding:64px 0 80px;background: #383e42;}

/* Pozisyon kartları */
.positions-section{margin-bottom:56px}
.positions-section h2{font-size:20px;font-weight:800;color: #ffffff;margin-bottom:24px;display:flex;align-items:center;gap:10px}
.positions-section h2::after{content:'';flex:1;height:2px;background:#e8ecf1;border-radius:2px}
.positions-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:16px}
.pos-card{background:#fff;border:2px solid #e8ecf1;border-radius:14px;padding:24px;cursor:pointer;transition:.2s;text-decoration:none;color:inherit;display:block}
.pos-card:hover,.pos-card.selected{border-color:#56c580;box-shadow:0 4px 20px rgba(86,197,128,.12)}
.pos-card.selected{background:#f0fff4}
.pos-card-title{font-size:16px;font-weight:700;color:#2c3346;margin-bottom:6px}
.pos-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:10px}
.pos-tag{font-size:11px;font-weight:600;padding:3px 9px;border-radius:20px;background:#f1f5f9;color:#7a8099}
.pos-tag.green{background:#f0fff4;color:#27ae60}
.no-pos{padding:28px 24px;background:#fff;border-radius:12px;text-align:center;color:#7a8099;font-size:15px;border:2px dashed #e8ecf1}

/* Modal */
.pos-modal-ov{display:none;position:fixed;inset:0;z-index:9999;background:rgba(0,0,0,.55);backdrop-filter:blur(4px);padding:20px;align-items:center;justify-content:center}
.pos-modal-ov.open{display:flex}
.pos-modal{background:#fff;border-radius:20px;max-width:640px;width:100%;max-height:85vh;overflow-y:auto;position:relative;box-shadow:0 24px 80px rgba(0,0,0,.2)}
.pos-modal-head{padding:28px 32px 20px;border-bottom:1px solid #e8ecf1}
.pos-modal-title{font-size:22px;font-weight:800;color:#2c3346;margin-bottom:6px}
.pos-modal-meta{font-size:13px;color:#7a8099;display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.pos-modal-body{padding:24px 32px 28px}
.pos-modal-body h4{font-size:13px;font-weight:700;color:#2c3346;text-transform:uppercase;letter-spacing:.5px;margin:20px 0 10px}
.pos-modal-body h4:first-child{margin-top:0}
.pos-modal-body p,.pos-modal-body li{font-size:14px;color:#4a5568;line-height:1.8}
.pos-modal-body ul{padding-left:20px}
.pos-modal-foot{padding:16px 32px 24px;display:flex;gap:12px}
.pos-modal-close{position:absolute;top:16px;right:20px;background:none;border:none;font-size:22px;color:#aaa;cursor:pointer;line-height:1}
.pos-modal-close:hover{color:#2c3346}
.btn-apply{background:#56c580;color:#fff;border:none;padding:13px 28px;border-radius:10px;font-size:15px;font-weight:700;cursor:pointer;font-family:inherit;transition:.2s}
.btn-apply:hover{background:#3da863}
.btn-cancel{background:#f1f5f9;color:#7a8099;border:none;padding:13px 20px;border-radius:10px;font-size:14px;font-weight:600;cursor:pointer;font-family:inherit}
@media(max-width:680px){.pos-modal-head,.pos-modal-body,.pos-modal-foot{padding-left:20px;padding-right:20px}}

/* Form */
.apply-card{background:#fff;border-radius:16px;padding:36px;box-shadow:0 4px 24px rgba(0,0,0,.07)}
.apply-card h2{font-size:22px;font-weight:800;color:#2c3346;margin-bottom:24px}
.fc-group{margin-bottom:18px}
.fc-group label{display:block;font-size:13px;font-weight:600;color:#2c3346;margin-bottom:6px}
.fc-group input,.fc-group select,.fc-group textarea{width:100%;padding:11px 14px;border:2px solid #e8ecf1;border-radius:9px;font-size:14px;color:#2c3346;font-family:inherit;transition:.2s;background:#fff}
.fc-group input:focus,.fc-group select:focus,.fc-group textarea:focus{outline:none;border-color:#56c580;box-shadow:0 0 0 3px rgba(86,197,128,.12)}
.fc-group textarea{resize:vertical;min-height:130px}
.fc-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.fc-file-wrap{display:flex;align-items:center;gap:12px;padding:12px 14px;border:2px dashed #e8ecf1;border-radius:9px;cursor:pointer;transition:.2s}
.fc-file-wrap:hover{border-color:#56c580}
.fc-file-wrap input{display:none}
.fc-file-label{font-size:13px;color:#7a8099}
.fc-file-name{font-size:12px;color:#56c580;font-weight:600}
.submit-btn{width:100%;padding:14px;background:#56c580;color:#fff;border:none;border-radius:10px;font-size:15px;font-weight:700;cursor:pointer;font-family:inherit;transition:.2s;margin-top:8px}
.submit-btn:hover{background:#3da863}
.msg-success{background:#f0fff4;border:1.5px solid #56c580;color:#1e7940;padding:16px;border-radius:10px;margin-bottom:20px;font-size:15px}
.msg-error{background:#fff0f0;border:1.5px solid rgba(231,76,60,.3);color:#c0392b;padding:16px;border-radius:10px;margin-bottom:20px;font-size:14px}
.req-mark{color:#e74c3c}
@media(max-width:760px){.fc-row{grid-template-columns:1fr}}
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   EK MOBİL STİLLER â€” 480px (küçük telefon)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media(max-width:480px) {
  .dp-title  { font-size: 22px; }
  .hl-brand  { font-size: 44px; letter-spacing: -2px; }
  .hl-tag    { font-size: 19px; }
  .loc-title { font-size: 30px; }
  .bt, .nt   { font-size: 30px; }

  /* Hero stat pilleri çok küçük ekranda gizle */
  .slide-stats { display: none; }
}