/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

ul,
ol {
  list-style: none;
}

/* Container responsive */
.container {
  padding-left: 160px !important;
  padding-right: 160px !important;
}

@media (max-width: 1400px) {
  .container {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
}

@media (max-width: 1200px) {
  .container {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

@media (max-width: 991px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ===== HEADER ===== */
header.header {
  background-color: transparent;
  padding: 40px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all .3s ease;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px 0;
  /* mobil üçün daha məntiqli */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  /* mobil menyu üçün VACIB */
}

/* Logo */
.left img {
  margin-bottom: 20px;
  max-height: 44px;
  display: block;
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
}

/* link base */
.nav-menu a {
  text-decoration: none;
  color: #fff;
  margin-left: 30px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.1s ease;
}

.nav-menu li:not(:nth-child(6)) a {
  border-radius: 30px;
  padding: 15px;
  border: 1px solid transparent;
  transition: 0.1s ease;
}

.nav-menu li:not(:nth-child(6)):not(.lang-switch) a:hover {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-link:hover{
  color: inherit;
  text-decoration: none;
}

/* CTA BUTTON (6-cı item) */
.nav-menu li:nth-child(6) a {
  background: linear-gradient(90deg,
      rgba(244, 235, 68, 0.6) 0%,
      rgba(84, 158, 204, 0.6) 50%,
      rgba(67, 154, 212, 0.6) 100%);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 10px 30px;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

/* ===== HAMBURGER ===== */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

  /* header spacing */
  header.header {
    padding: 16px 0;
  }

  header.scrolled {
    padding: 12px 0;
  }

  /* hamburger show */
  .nav-toggle {
    display: block;
  }

  /* nav wrapper: sağ tərəfdəki nav mobil-də overlay kimi */
  nav.right {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    pointer-events: none;
    /* bağlayanda klik olmasın */
  }

  /* menu panel */
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;

    width: 100%;
    padding: 16px;

    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.25s ease;

    pointer-events: auto;
    /* panel açıq olanda işləsin */
  }

  /* open state */
  header.header.is-open nav.right {
    pointer-events: auto;
  }

  header.header.is-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* links full width */
  .nav-menu a {
    margin-left: 0;
    padding: 12px 14px;
    display: block;
  }

  .nav-menu li:not(:nth-child(6)) a {
    border-radius: 12px;
  }

  .nav-menu li:nth-child(6) a {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 12px 14px;
  }

  /* lang switch səliqə */
  .lang-switch {
    justify-content: flex-start;
    gap: 12px;
    padding: 6px 4px;
  }
}

/* çox kiçik ekranlar */
@media (max-width: 420px) {
  .left img {
    max-height: 38px;
    margin-bottom: 10px;
  }
}


/* ===== BANNER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.hero-track {
  height: 100%;
  display: flex;
  transition: transform .6s ease;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.05);
  z-index: 0;
}

/* content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  max-width: 620px;
  color: #fff;
}

.hero-left h1 {
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-left .accent {
  color: #F4EB44;
}

.hero-left p {
  font-size: 18px;
  opacity: .9;
  line-height: 1.4;
}

.hero-store {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-store .qr {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-store .stores img {
  height: 42px;
  display: block;
  margin-bottom: 10px;
}

.hero-right {
  width: min(520px, 44vw);
  height: 520px;
}

.hero-phone {
  position: absolute;
  right: 13rem;
  bottom: -26rem;
  width: 64rem;
  max-width: 100%;
}

.hero-man {
  position: absolute;
  right: 1px;
  z-index: -1;
  bottom: 1rem;
  width: 60rem;
  max-width: 100%;
}

/* coins (opsional) */
.hero-coin {
  position: absolute;
  width: 120px;
  filter: blur(.2px);
  opacity: .95;
}

.coin-1 {
  width: 150px;
  right: 50px;
  top: 55px;
}

/* 2) telefonun sol-altına yaxın coin (ön planda) */
.coin-2 {
  width: 220px;
  left: 400px;
  bottom: 115px;
  z-index: 4;
  /* şəkildə öndə görünürsə */
}

/* 3) sol aşağı kənarda blur coin (yarısı kənarda) */
.coin-3 {
  width: 220px;
  left: -52px;
  bottom: 35px;
  opacity: .85;
  filter: blur(1.4px);
}

/* SOL NAV (şəkildəki kimi) */
.hero-dots {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* arxadakı xətt */
.hero-dots::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .25);
}

/* dot */
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
  position: relative;
  z-index: 2;
}

/* active dot (şəkildəki rəngli indikator hissi) */
.hero-dot.is-active {
  background: linear-gradient(180deg, #F4EB44 0%, #439AD4 100%);
  transform: scale(1.25);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .08);
}

/* responsive */
@media (max-width: 991.98px) {
  .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-right {
    width: 100%;
    height: 420px;
  }

  .hero-phone {
    right: 50%;
    transform: translateX(50%) rotate(10deg);
  }

  .hero-dots {
    left: 12px;
  }
}

.custom-modal {
  border-radius: 20px;
  padding: 10px 15px;
}

.custom-input {
  border-radius: 12px;
  background: #f2f2f2;
  border: none;
  padding: 12px;
}

.custom-input:focus {
  box-shadow: none;
  background: #eaeaea;
}

.modal-content {
  border: none;
}

.second-banner {
  padding: 60px;
}

.second-banner img {
  width: 100%;
}

.kamp-sec {
  background: #E8ECF18A;
  padding: 70px 0 70px;
}

/* başlıq sətri */
.kamp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.kamp-h {
  margin: 0;
  font-size: 25px;
  /* şəkildəki kimi */
  font-weight: 900;
  color: #0b0f16;
  letter-spacing: -0.4px;
}

.kamp-all {
  font-size: 13px;
  color: rgba(11, 15, 22, .7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* slider konteynerini şəkildəki kimi mərkəzə gətir */
.custom-company-container {
  padding: 10px 0px 10px 200px;
}

/* swiper */
.kamp-sw {
  overflow: hidden !important;
  clip-path: inset(-100px -100vw -100px 0);
  /* sağda kartların peek görünməsi üçün */
}

.kamp-sw .swiper-wrapper {
  display: flex !important;
  align-items: stretch;
}

/* Slayd ölçüləri (şəkildəki proporsiya) */
.kamp-slide--big {
  width: 720px !important;
}

.kamp-slide--sm {
  width: 255px !important;
}

/* kartlar */
.kamp-card {
  position: relative;
  height: 320px;
  /* şəkildəki hündürlük */
  border-radius: 26px;
  /* daha yumru */
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(0, 0, 0, .08);
}

/* BIG kart gradient */
.kamp-card--big {
  background: linear-gradient(90deg,
      #F4EB44 0%,
      #549ECC 55%,
      #439AD4 100%);
}

/* BIG text (şəkildəki kimi böyük) */
.kamp-big__text {
  position: absolute;
  left: 54px;
  top: 96px;
  color: #fff;
  z-index: 2;
}

.kamp-big__t1 {
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.kamp-big__t2 {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.05;
  margin-top: 6px;
}

.kamp-visa {
  display: block;
  margin-top: 22px;
  width: 88px;
  height: auto;
}

/* divan sağdan kəsilsin (şəkildəki kimi) */
.kamp-big__img {
  position: absolute;
  right: -120px;
  bottom: -18px;
  width: 540px;
  z-index: 1;
}

.kamp-big__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* SMALL kartlar */
.kamp-card--sm {
  background: #7ea7d1;
}

.kamp-sm__title {
  position: absolute;
  left: 22px;
  top: 22px;
  font-size: 34px;
  font-weight: 300;
  color: #fff;
  z-index: 2;
}

/* small VISA alt sol */
.kamp-visa--sm {
  position: absolute;
  left: 22px;
  bottom: 16px;
  width: 78px;
  height: auto;
  z-index: 2;
}

/* şəkillər sağdan və altdan daşsın */
.kamp-sm__img {
  position: absolute;
  right: -52px;
  bottom: -34px;
  width: 330px;
  z-index: 1;
  pointer-events: none;
}

.kamp-sm__img img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .18));
}

/* car daha çox daşsın */
.kamp-sm__img--car {
  width: 370px;
  right: -92px;
  bottom: -64px;
}

/* coffee bir az böyük və yumşaq */
.kamp-sm__img--coffee {
  width: 350px;
  right: -82px;
  bottom: -56px;
}

/* ===============================
   DOTS (şəkildəki bire-bir)
=============================== */
.kamp-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-left: 30rem;
}

.kampaniyalar__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kampaniyalar__dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(214, 224, 237, .9);
  /* #D6E0ED */
  opacity: 1;
  margin: 0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.kampaniyalar__dots .swiper-pagination-bullet-active {
  width: 52px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  /* şəkildəki kimi ağ kapsul */
}

/* ===============================
   SLIDE SCALE EFFECT (böyük/kiçik)
=============================== */
.kamp-sw .swiper-slide {
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
  transform: scale(0.95);
  /* Aktiv olmayanlar bir az kiçik */
  filter: brightness(0.9);
}

.kamp-sw .swiper-slide.swiper-slide-active {
  transform: scale(1);
  filter: brightness(1);
  z-index: 2;
}

.kamp-sw .swiper-slide.swiper-slide-next {
  transform: scale(.96);
  opacity: .92;
}

@media (max-width: 1400px) {
  .custom-company-container {
    padding-left: 500px;
  }
}

@media (max-width: 1100px) {
  .custom-company-container {
    padding-left: 400px;
  }
}

/* Mobil telefonlar */
@media (max-width: 768px) {
  .custom-company-container {
    padding-left: 20px;
    /* Mobildə slaydın tam görünməsi üçün minimal boşluq */
  }
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .kamp-sec {
    padding: 55px 0;
  }

  .kamp-h {
    font-size: 28px;
  }

  .kamp-slide--big {
    width: 86vw !important;
  }

  .kamp-slide--sm {
    width: 72vw !important;
  }

  .kamp-card {
    height: 300px;
    border-radius: 22px;
  }

  .kamp-big__text {
    left: 22px;
    top: 88px;
  }

  .kamp-big__t1 {
    font-size: 44px;
  }

  .kamp-big__t2 {
    font-size: 38px;
  }

  .kamp-big__img {
    width: 470px;
    right: -140px;
    bottom: -18px;
  }
}

/* ===============================
   VISA SECTION
=============================== */

.visa-section {
  background: #fff;
  padding: 90px 0 70px;
}

.visa-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: center;
}

/* ===============================
   LEFT CONTENT
=============================== */

.visa-title {
  font-size: 44px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #0b0f16;
}

.visa-desc {
  margin: 0 0 34px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(11, 15, 22, .65);
  max-width: 520px;
}

.visa-stats {
  display: flex;
  gap: 60px;
  margin-bottom: 26px;
}

.visa-stat__label {
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
  color: rgba(11, 15, 22, .85);
}

.visa-stat__value {
  font-size: 40px;
  font-weight: 400;
  color: #0b0f16;
}

.visa-old {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #ff4b4b;
  text-decoration: line-through;
}

.visa-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 34px;
  max-width: 560px;
}

.visa-tag {
  background: #eef2f6;
  font-size: 12px;
  font-weight: 300;
  padding: 10px 16px;
  border-radius: 999px;
  color: #969BA2;
}

/* BUTTONS */

.visa-actions {
  display: flex;
  gap: 20px;
}

.visa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  padding: 0 46px;
  border-radius: 24px;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  transition: .25s ease;
}

.visa-btn--primary {
  background: #439AD4;
  color: #fff;
  box-shadow: 0 12px 26px rgba(108, 155, 208, .35);
}

.visa-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(108, 155, 208, .45);
}

.visa-btn--ghost {
  background: #cfe0f2;
  color: #fff;
}

.visa-btn--ghost:hover {
  transform: translateY(-2px);
}

/* ===============================
   RIGHT - CARD STACK
=============================== */

.visa-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-stack {
  position: relative;
  width: 440px;
  height: 410px;
}

.card {
  position: absolute;
  left: 0;
  top: 0;
  width: 390px;
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .16);

  user-select: none;
  -webkit-user-drag: none;

  transition: transform .55s cubic-bezier(.2, .9, .2, 1),
    opacity .55s,
    filter .55s;
}

/* STACK POSITIONS */

.card.pos-0 {
  z-index: 4;
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

.card.pos-1 {
  z-index: 3;
  transform: translate(1px, 50px) scale(.92);
}

.card.pos-2 {
  z-index: 2;
  transform: translate(1px, 100px) scale(.84);
  filter: saturate(.95);
}

.card.pos-3 {
  z-index: 1;
  transform: translate(1px, 150px) scale(.78);
  filter: saturate(.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

/* ===============================
   LEAVING ANIMATION
=============================== */

.card.leaving {
  z-index: 10;
  animation: toBackDesktop .65s cubic-bezier(.2, .9, .2, 1) forwards;
}

@keyframes toBackDesktop {
  0% {
    transform: translate(0, 0) scale(1) rotate(0);
    opacity: 1;
  }
}

/* ===============================
   DOTS
=============================== */

.visa-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #D6E0ED;
  border: none;
  /* ⛔ border yoxdur */
  outline: none;
  /* ⛔ focus border də yoxdur */
  box-shadow: none;
  /* ⛔ heç bir kənar effekt yoxdur */
  transition: all .35s cubic-bezier(.4, .0, .2, 1);
  cursor: pointer;
}

.dot.is-active {
  width: 48px;
  /* uzun kapsul */
  height: 10px;
  background: #D6E0ED;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width:991.98px) {

  .visa-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .visa-actions {
    flex-direction: column;
  }

  .visa-btn {
    width: 100%;
  }

  .card-stack {
    width: 92vw;
    height: 360px;
  }

  .card {
    width: 84vw;
  }

  .card.pos-1 {
    transform: translate(12px, 85px) scale(.93);
  }

  .card.pos-2 {
    transform: translate(22px, 170px) scale(.85);
  }

  .card.pos-3 {
    transform: translate(32px, 245px) scale(.79);
  }

  .card.leaving {
    animation: toBackMobile .65s cubic-bezier(.2, .9, .2, 1) forwards;
  }

  @keyframes toBackMobile {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 1;
    }
  }
}

/* ===============================
   APP FEATURES
=============================== */

.app-features {
  position: relative;
  background: #fff;
  padding: 400px 0 400px;
  /* artıq 300px etmə, layout pozur */
  overflow: hidden;
}

.app-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/clouds.png") center top no-repeat;
  background-size: cover;
  opacity: .12;
  pointer-events: none;
  z-index: 1;
}

.app-features .container {
  position: relative;
  z-index: 2;
}

/* LEFT COL: phone üçün yer saxla */
.app-features .col-lg-5 {
  position: relative;
  min-height: 640px;
  /* phone böyükdür, yer saxlayır */
}

/* PHONE — flow-da qalsın, amma yuxarıdan biraz gəlsin */
.app-phone{
  position: absolute;
  left: 0;
  width: 300px;
  max-width: 100%;
  height: auto;
transform: translateY(-400px);
  will-change: transform;
}

/* section görünəndə */
/* .app-phone.is-in {
  transform: translateY(0);
  opacity: 1;
} */

/* RIGHT */
.app-features__title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.02;
  color: #0b0f16;
  margin: 0;
  letter-spacing: -0.4px;
}

.app-features__desc {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(11, 15, 22, .75);
  max-width: 620px;
}

/* CARD LAYOUT */
.feature-card {
  background: #7E95BE;
  border-radius: 22px;
  height: 130px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(10, 20, 40, 0.12);
  cursor: pointer;

  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.feature-card:hover {
  box-shadow: 0 26px 60px rgba(10, 20, 40, 0.18);
  transform: translateY(-3px);
  filter: brightness(1.02);
}

/* DEFAULT ICONS */
.feature-card__img,
.feature-card__train {
  width: 100%;
  height: 100px;
  object-fit: contain;
  display: block;
}

/* 1-ci və 3-cü (təyyarə + qatar) qutudan bir az çıxsın */
.app-features .row.g-4>.col-md-4:nth-child(1) .feature-card__train {
  transform: translateY(-14px) translateX(-10px);
}

.app-features .row.g-4>.col-md-4:nth-child(3) .feature-card__train {
  transform: translateY(-10px) translateX(10px);
}

/* META */
.feature-meta {
  margin-top: 12px;
}

.feature-meta__title {
  font-size: 14px;
  font-weight: 900;
  color: #0b0f16;
}

.feature-meta__text {
  font-size: 12px;
  color: rgba(11, 15, 22, .6);
  margin-top: 4px;
}

/* BOTTOM (link solda, store+qr sağda) */
.app-features__bottom {
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.all-features-link {
  color: rgba(11, 15, 22, .75);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 15, 22, .25);
  padding-bottom: 2px;
}

.all-features-link:hover {
  color: #0b0f16;
  border-bottom-color: rgba(11, 15, 22, .5);
}

.store-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.store-badges {
  display: flex;
  flex-direction: column;
  /* şəkildə badge-lər üst-üstədir */
  gap: 10px;
}

.store-badges img {
  height: 34px;
  width: auto;
  display: block;
}

.app-qr {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

/* ACTIVE CARD (telefon dəyişəndə) */
.feature-card.is-active {
  outline: 2px solid rgba(45, 143, 218, 0.45);
  box-shadow: 0 22px 55px rgba(10, 20, 40, 0.18);
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .app-features {
    padding: 50px 0;
  }

  .app-features .col-lg-5 {
    min-height: auto;
  }

  .app-phone {
    position: relative;
    top: 0%;
    left: 0;
    width: min(360px, 80vw);
    margin: 0 auto 24px;
  }

  .app-features__title {
    font-size: 34px;
    text-align: center;
  }

  .app-features__desc {
    font-size: 14px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .app-features__bottom {
    justify-content: center;
    text-align: center;
  }

  .store-row {
    justify-content: center;
  }

  .store-badges {
    flex-direction: row;
    /* mobil üçün yan-yana yaxşı görünür */
  }
}

/* ===============================
   PARTNYORLAR
=============================== */

.partnyorlar {
  background-color: feature-#F9FBFC;
  overflow: hidden;
  padding: 100px 0;
}

.partnyorlar__title {
  font-size: 24px;
  font-weight: 900;
}

.partnyorlar__link {
  font-size: 12px;
  color: #7b8794;
}

.partners-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin-bottom: 25px;
}

.partners-track {
  display: inline-flex;
  gap: 20px;
}

.partners-track img {
  height: 140px;
  border-radius: 14px;
  flex-shrink: 0;
}

.marquee-right .partners-track {
  animation: scrollRight 30s linear infinite;
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0%);
  }
}

.marquee-left .partners-track {
  animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .partnyorlar {
    padding: 70px 0;
  }

  .partners-track img {
    height: 88px;
  }
}

/* ===============================
   MIL KALKULYATORU (şəkildəki kimi)
=============================== */

.mil-kalkulyatoru {
  position: relative;
  background: #f2f5f7;
  overflow: hidden;
  padding: 120px 0;
}

.mil-kalkulyatoru::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/cloud2.png") center / cover no-repeat;
  pointer-events: none;
  z-index: 1;
}

.mil-kalkulyatoru .container {
  position: relative;
  z-index: 3;
}

/* QUŞLAR */
.mk-birds {
  position: absolute;
  top: 10px;
  right: -900px;
  width: 640px;
  pointer-events: none;
  z-index: 4;
  opacity: .95;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform .08s linear;
}

/* LEFT */
.mk-title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  color: #0b0f16;
}

.mk-desc {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(11, 15, 22, .55);
  max-width: 520px;
}

/* Tabs pill */
.mk-tabs {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mk-tab {
  border: none;
  background: #fff;
  color: #94a3af;
  font-size: 12px;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.mk-tab:hover {
  transform: translateY(-1px);
}

.mk-tab.active {
  background: #2d8fda;
  color: #fff;
  box-shadow: 0 14px 30px rgba(45, 143, 218, .25);
}

/* Card */
.mk-card {
  position: relative;
  margin-top: 22px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  max-width: 560px;
  box-shadow: 0 18px 45px rgba(10, 20, 40, .08);
}

.mk-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.mk-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mk-label {
  font-size: 11px;
  color: rgba(11, 15, 22, .35);
}

.mk-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 20px;
  font-weight: 200;
  color: #0b0f16;
  width: 220px;
}

.mk-output {
  font-size: 20px;
  font-weight: 200;
  color: #0b0f16;
}

.mk-right-col {
  min-width: 70px;
  display: flex;
  justify-content: flex-end;
}

.mk-unit {
  font-size: 13px;
  font-weight: 800;
  color: rgba(11, 15, 22, .55);
}

.mk-divider {
  height: 1px;
  background: #e8edf2;
  margin: 14px 0;
  width: 90%;
}

/* refresh */
.mk-refresh {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(11, 15, 22, .45);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.mk-refresh:hover {
  background: rgba(11, 15, 22, .05);
  color: rgba(11, 15, 22, .65);
  transform: translateY(-50%) rotate(12deg);
}

/* bottom controls */
.mk-bottom {
  margin-top: 22px;
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 560px;
}

.mk-select {
  flex: 1;
  border: none;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 14px;
  outline: none;
  box-shadow: 0 18px 45px rgba(10, 20, 40, .08);
  color: rgba(11, 15, 22, .8);
}

.mk-btn {
  border: none;
  background: #2d8fda;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  padding: 16px 22px;
  border-radius: 18px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 18px 40px rgba(45, 143, 218, .22);
}

.mk-btn:hover {
  background: #1c76bd;
  transform: translateY(-1px);
}

/* RIGHT image card */
.mk-right {
  position: relative;
  min-height: 520px;
}

.mk-visual {
  background: transparent;
}

.mk-galata {
  display: block;
  width: 80%;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .mil-kalkulyatoru {
    padding: 80px 0;
  }

  .mk-title {
    font-size: 26px;
    text-align: center;
  }

  .mk-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .mk-tabs {
    justify-content: center;
  }

  .mk-card,
  .mk-bottom {
    max-width: 100%;
  }

  .mk-right {
    min-height: auto;
  }

  .mk-visual {
    margin: 40px auto 0;
    width: min(360px, 92vw);
  }

  .mk-birds {
    top: 10px;
    right: -40px;
    width: 360px;
    opacity: .9;
  }
}

/* ===============================
   ISTIQAMETLER
=============================== */

.istiqametler {
  background: #fff;
}

.istiqametler__title {
  font-size: 30px;
  font-weight: 900;
}

.istiqametler__link {
  font-size: 12px;
  color: #7b8794;
}

.dest-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: transparent;
  padding: 20px;
  border-radius: 20px;
  transition: all .35s ease;
  cursor: pointer;
}

.dest-card:hover {
  background: #e9edf2;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.dest-card__img {
  width: 140px;
  height: 190px;
  border-radius: 24px;
  object-fit: cover;
}

.dest-card__content h4 {
  font-size: 40px;
  font-weight: 900;
  margin: 0;
}

.dest-card__content p {
  margin: 6px 0 14px;
  font-size: 13px;
  color: #6c7a89;
}

.dest-badge {
  display: inline-block;
  background: #2d8fda;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 999px;
  transition: .3s;
}

.dest-card:hover .dest-badge {
  background: linear-gradient(90deg, #63d5ff, #2d8fda);
}

@media (max-width: 991px) {
  .dest-card {
    padding: 14px;
  }

  .dest-card__img {
    width: 120px;
    height: 120px;
  }

  .dest-card__content h4 {
    font-size: 16px;
  }
}


/* ===== FOOTER ===== */
.footer {
  background: #2F3F55;
  padding: 42px 0;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 0.9fr 1fr;
  grid-template-areas:
    "left links1 links2 stores"
    "left join   join   social";
  column-gap: 56px;
  row-gap: 26px;
  align-items: start;
}

/* LEFT */
.f-left {
  grid-area: left;
}

.f-logo img {
  height: 26px;
  display: block;
  margin-bottom: 44px;
  /* logo ilə slogan arası screendə böyükdür */
}

.f-slogan {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.2px;
  margin-top: 80px;
}

.f-slogan .accent {
  color: #F4EB44;
}

.gradient-text {
  background: linear-gradient(90deg,
      rgba(244, 235, 68, 1) 0%,
      rgba(84, 158, 204, 1) 50%,
      rgba(67, 154, 212, 1) 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}

/* LINKS */
.f-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  /* yuxarı xəttə oturt */
}

.f-links a {
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.f-links a:hover {
  color: #fff;
  opacity: .9;
}

.f-links-1 {
  grid-area: links1;
}

.f-links-2 {
  grid-area: links2;
}

/* STORES (top-right) */
.f-stores {
  grid-area: stores;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-self: end;
  /* sağa yapış */
}

.f-stores img {
  height: 34px;
  display: block;
}

/* JOIN (middle-right spanning 2 columns) */
.f-join {
  grid-area: join;
  max-width: 380px;
}

.f-join-title {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 8px;
}

.f-join-text {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .75);
}

/* SOCIAL (bottom-right) */
.f-social {
  grid-area: social;
  justify-self: end;
  display: flex;
  gap: 12px;
  align-items: center;
}

.social {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
}

.social:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-2px);
}

.social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  /* icon ağ */
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "links1"
      "links2"
      "stores"
      "join"
      "social";
    column-gap: 0;
  }

  .f-stores,
  .f-social {
    justify-self: start;
  }

  .f-logo img {
    margin-bottom: 24px;
  }

  .f-slogan {
    font-size: 28px;
  }
}

/* ===============================
   LOADER
=============================== */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(8, 10, 18, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity .35s ease, visibility .35s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
}

.loader-logo {
  width: 64px;
  height: auto;
  animation: loaderPulse 1.2s ease-in-out infinite;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, .35));
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, .18);
  border-top-color: rgba(255, 255, 255, .92);
  animation: loaderSpin 1s linear infinite;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .95;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}