/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #f4f4f1;
  color: #2b2b2b;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47, 45, 49, 0.06);
}

.header-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

/* MOBILE TOP STRIP */
.mobile-top-strip {
  display: none;
}

.mobile-top-lang {
  display: none;
}

.mobile-header-order-btn {
  display: none;
}

/* LOGO */
.logo {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 120px;
  height: 100%;
}

.logo-box {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-18%);
  width: 110px;
  height: 110px;
  background: #ffffff;
  border: 1px solid rgba(47, 45, 49, 0.08);
  box-shadow: 0 18px 40px rgba(47, 45, 49, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  overflow: hidden;
}

.logo-box img {
  width: 95%;
  height: 95%;
  object-fit: contain;
}

/* DESKTOP NAV */
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
}

.desktop-nav > a,
.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #3d3d3d;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.desktop-nav > a:hover,
.nav-link:hover {
  color: #2f2d31;
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 108px;
}

.arrow {
  font-size: 11px;
  line-height: 1;
  margin-top: 1px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 12px);
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid rgba(47, 45, 49, 0.08);
  border-radius: 16px;
  padding: 8px 0;
  box-shadow: 0 18px 40px rgba(47, 45, 49, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 50;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #2b2b2b;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f7f7f4;
  color: #2f2d31;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(47, 45, 49, 0.08);
  border-radius: 999px;
  background: #f3f1ec;
}

.lang-btn {
  border: none;
  background: transparent;
  color: #555;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
}

.lang-btn.active {
  background: #f2b312;
  color: #2f2d31;
  box-shadow: 0 4px 12px rgba(242, 179, 18, 0.18);
}

.header-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: #f2b312;
  color: #2f2d31;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(242, 179, 18, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-order-btn:hover,
.mobile-header-order-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(242, 179, 18, 0.28);
}

/* MOBILE TOGGLE */
.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(47, 45, 49, 0.08);
  background: #fff;
  border-radius: 16px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(47, 45, 49, 0.05);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #2f2d31;
  border-radius: 999px;
  display: block;
}

/* MOBILE OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: #f7f7f4;
  z-index: 2000;
  display: none;
  overflow-y: auto;
}

.mobile-overlay.active {
  display: block;
}

.mobile-overlay-inner {
  min-height: 100vh;
  padding: 18px 16px 28px;
  display: flex;
  flex-direction: column;
}

.mobile-overlay-header {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: start;
  margin-bottom: 18px;
}

.mobile-overlay-header-spacer {
  width: 48px;
  height: 48px;
}

.mobile-overlay-logo-wrap {
  display: flex;
  justify-content: center;
}

.mobile-overlay-logo {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border: 1px solid rgba(47, 45, 49, 0.08);
  box-shadow: 0 14px 28px rgba(47, 45, 49, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mobile-overlay-logo img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.mobile-close {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(47, 45, 49, 0.08);
  background: #ffffff;
  border-radius: 18px;
  position: relative;
  cursor: pointer;
  justify-self: end;
}

.mobile-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #2f2d31;
  border-radius: 999px;
}

.mobile-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* CONTROLS ROW */
.mobile-overlay-controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.mobile-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(47, 45, 49, 0.08);
  border-radius: 999px;
  background: #ebe7df;
  width: fit-content;
}

.mobile-lang-btn {
  border: none;
  background: transparent;
  color: #555;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.mobile-lang-btn.active {
  background: #f2b312;
  color: #2f2d31;
  box-shadow: 0 4px 12px rgba(242, 179, 18, 0.18);
}

.mobile-order-btn-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: #f2b312;
  color: #2f2d31;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(242, 179, 18, 0.22);
}

/* MOBILE NAV */
.mobile-overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-overlay-link,
.mobile-dropdown-toggle {
  width: 100%;
  min-height: 68px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(47, 45, 49, 0.06);
  box-shadow: 0 4px 12px rgba(47, 45, 49, 0.04);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  color: #2f2d31;
}

.mobile-overlay-link.active {
  background: #f2b312;
  color: #2f2d31;
  border-color: #f2b312;
  box-shadow: 0 10px 20px rgba(242, 179, 18, 0.18);
}

.mobile-dropdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-dropdown-toggle {
  background: #f0ede6;
  color: #2f2d31;
  cursor: pointer;
}

.mobile-arrow {
  font-size: 15px;
  transition: transform 0.25s ease;
}

.mobile-dropdown.active .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 8px;
}

.mobile-dropdown.active .mobile-submenu {
  display: flex;
}

.mobile-submenu a {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: #ffffff;
  border: 1px solid rgba(47, 45, 49, 0.06);
  border-radius: 14px;
  color: #2f2d31;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(47, 45, 49, 0.03);
}

.mobile-submenu a:hover {
  background: #faf8f3;
}

/* PLACEHOLDER */
.page-placeholder {
  padding: 110px 0 80px;
  min-height: calc(100vh - 120px);
  background: #efefeb;
}

.placeholder-box {
  background: #ffffff;
  border: 1px solid rgba(47, 45, 49, 0.05);
  border-radius: 28px;
  padding: 46px 34px;
  text-align: center;
  color: #4a5562;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(47, 45, 49, 0.03);
  margin-top: 10px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* TABLET */
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav > a,
  .nav-link {
    font-size: 14px;
  }

  .logo {
    width: 108px;
  }

  .logo-box {
    width: 96px;
    height: 96px;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-top-strip {
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 46px;
    background: #efefee;
    border-radius: 18px;
    z-index: 5;
  }

  .mobile-top-lang {
    position: absolute;
    top: 8px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 15;
  }

  .mobile-top-lang-btn {
    border: none;
    background: transparent;
    color: #666;
    font-size: 11px;
    font-weight: 800;
    padding: 0;
    cursor: pointer;
    line-height: 1;
  }

  .mobile-top-lang-btn.active {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f2b312;
    color: #2f2d31;
    box-shadow: 0 6px 16px rgba(242, 179, 18, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-inner {
    min-height: 168px;
    display: grid;
    grid-template-columns: 128px 1fr 92px;
    align-items: end;
    column-gap: 16px;
    row-gap: 12px;
    padding-top: 12px;
    padding-bottom: 16px;
  }

  .logo {
    width: 128px;
    height: 100px;
    order: 1;
  }

  .logo-box {
    position: relative;
    left: 0;
    top: auto;
    bottom: auto;
    transform: none;
    width: 112px;
    height: 112px;
    box-shadow: 0 10px 24px rgba(47, 45, 49, 0.1);
  }

  .logo-box img {
    width: 92%;
    height: 92%;
  }

  .mobile-header-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
    width: 100%;
    max-width: 320px;
    min-height: 92px;
    padding: 0 28px;
    border-radius: 34px;
    background: #f2b312;
    color: #232937;
    font-size: 26px;
    font-weight: 800;
    box-shadow: 0 16px 30px rgba(242, 179, 18, 0.16);
    white-space: nowrap;
    order: 2;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
    align-self: center;
    width: 94px;
    height: 94px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(47, 45, 49, 0.05);
    order: 3;
  }

  .menu-toggle span {
    width: 34px;
    height: 4px;
    border-radius: 999px;
  }

  .page-placeholder {
    padding-top: 68px;
    min-height: calc(100vh - 168px);
  }

  .placeholder-box {
    font-size: 24px;
    line-height: 1.9;
    padding: 44px 32px;
    border-radius: 36px;
    max-width: 100%;
  }
}

/* SMALL MOBILE */
@media (max-width: 520px) {
  .container {
    width: calc(100% - 18px);
  }

  .mobile-top-strip {
    top: 8px;
    height: 42px;
    border-radius: 16px;
  }

  .mobile-top-lang {
    top: 9px;
    right: 10px;
    gap: 8px;
  }

  .mobile-top-lang-btn {
    font-size: 10px;
  }

  .mobile-top-lang-btn.active {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
  }

  .header-inner {
    min-height: 8px;
    grid-template-columns: 86px 1fr 62px;
    column-gap: 10px;
    padding-top: 8px;
    padding-bottom: 10px;
  }

  .logo {
    width: 86px;
    height: 78px;
  }

  .logo-box {
    width: 78px;
    height: 78px;
  }

  .mobile-header-order-btn {
    max-width: 320px;
    min-height: 50px;
    font-size: 14px;
    padding: 0 14px;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(242, 179, 18, 0.16);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .menu-toggle span {
    width: 22px;
    height: 3px;
  }

  .mobile-overlay-inner {
    padding: 18px 16px 24px;
  }

  .mobile-overlay-header {
    grid-template-columns: 44px 1fr 44px;
    margin-bottom: 14px;
  }

  .mobile-overlay-header-spacer {
    width: 44px;
    height: 44px;
  }

  .mobile-overlay-logo {
    width: 108px;
    height: 108px;
  }

  .mobile-close {
    width: 44px;
    height: 44px;
    border-radius: 16px;
  }

  .mobile-overlay-controls-row {
    gap: 10px;
    margin-bottom: 18px;
  }

  .mobile-lang-switcher {
    padding: 7px;
    gap: 5px;
  }

  .mobile-lang-btn {
    font-size: 12px;
    padding: 8px 10px;
  }

  .mobile-order-btn-top {
    min-height: 48px;
    font-size: 14px;
    padding: 0 18px;
  }

  .mobile-overlay-link,
  .mobile-dropdown-toggle {
    min-height: 62px;
    font-size: 17px;
    padding: 0 18px;
    border-radius: 16px;
  }

  .mobile-submenu a {
    min-height: 50px;
    font-size: 15px;
    padding: 0 16px;
    border-radius: 12px;
  }

  .page-placeholder {
    padding-top: 52px;
  }

  .placeholder-box {
    padding: 28px 18px;
    font-size: 16px;
    line-height: 1.8;
    border-radius: 24px;
  }
}










/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47, 45, 49, 0.04);
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 88vh;
  margin-top: -108px;
  padding-top: 108px;
  padding-bottom: 42px;
  overflow: hidden;
  background: #ece9e2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* 👈 əsas dəyişiklik */
  background-image: url("images/hero-products.png");
  background-size: cover;
  background-position: 62% center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(239, 239, 235, 0.97) 0%,
    rgba(239, 239, 235, 0.95) 28%,
    rgba(239, 239, 235, 0.82) 40%,
    rgba(239, 239, 235, 0.28) 52%,
    rgba(239, 239, 235, 0.04) 62%,
    rgba(239, 239, 235, 0) 72%
  );
}

.hero-container {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
}

.hero-content {
  width: 100%;
  max-width: 620px;
  padding: 10px 0 10px;
}

.hero-title {
  font-size: clamp(53px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #111a32;
  margin-bottom: 34px;
}

.hero-title span {
  color: #f2b312;
}

.hero-text {
  max-width: 450px;
  font-size: 19px;
  line-height: 1.9;
  color: #55606d;
  margin-bottom: 34px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 999px;
  background: #f2b312;
  color: #202635;
  font-size: 16px;
  font-weight: 800;
  width: fit-content;
  box-shadow: 0 14px 26px rgba(242, 179, 18, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(242, 179, 18, 0.28);
}

/* FEATURE BAR */
.hero-features-wrap {
  position: relative;
  z-index: 4;
  margin-top: -236px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 34px;
  border: 1px solid rgba(47, 45, 49, 0.05);
  box-shadow: 0 12px 28px rgba(47, 45, 49, 0.05);
  overflow: hidden;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 26px 28px;
}

.hero-feature-item + .hero-feature-item {
  border-left: 1px solid rgba(47, 45, 49, 0.06);
}

.hero-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #f5f0e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a7f88;
  font-size: 16px;
  flex-shrink: 0;
}

.hero-feature-text {
  font-size: 25px;
  line-height: 1.45;
  color: #273140;
  font-weight: 700;
}

/* TABLET */
@media (max-width: 1200px) {
  .hero-title {
    font-size: clamp(48px, 5vw, 72px);
  }

  .hero-content {
    max-width: 560px;
    padding-bottom: 130px;
  }
}

@media (max-width: 1100px) {
  .hero-section {
    min-height: auto;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 24px;
  }

  .hero-bg {
    position: relative;
    height: 420px;
    inset: auto;
  }

  .hero-overlay {
    top: 0;
    left: 0;
    right: 0;
    height: 420px;
    bottom: auto;
    background: linear-gradient(
      180deg,
      rgba(239, 239, 235, 0.78) 0%,
      rgba(239, 239, 235, 0.35) 34%,
      rgba(239, 239, 235, 0.05) 58%,
      rgba(239, 239, 235, 0) 100%
    );
  }

  .hero-container {
    min-height: auto;
    margin-top: -420px;
    padding-top: 110px;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 720px;
    padding: 24px 0 40px;
  }

  .hero-title {
    font-size: 52px;
    line-height: 1.03;
    margin-bottom: 24px;
  }

  .hero-text {
    font-size: 17px;
    max-width: 520px;
  }

  .hero-features-wrap {
    margin-top: 0;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 24px;
  }

  .hero-feature-item:nth-child(3),
  .hero-feature-item:nth-child(4) {
    border-top: 1px solid rgba(47, 45, 49, 0.06);
  }

  .hero-feature-item:nth-child(3) {
    border-left: none;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-bg {
    height: 360px;
    background-position: 62% center;
  }

  .hero-overlay {
    height: 360px;
  }

  .hero-container {
    margin-top: -360px;
    padding-top: 120px;
  }

  .hero-content {
    padding: 18px 0 28px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 420px;
  }

  .hero-btn {
    min-height: 52px;
    padding: 0 24px;
    font-size: 14px;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
  }

  .hero-feature-item {
    min-height: 92px;
    padding: 18px 16px;
    gap: 12px;
  }

  .hero-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .hero-feature-text {
    font-size: 15px;
  }
}

/* SMALL MOBILE */
@media (max-width: 520px) {
  .hero-bg {
    height: 320px;
    background-position: 66% center;
  }

  .hero-overlay {
    height: 320px;
  }

  .hero-container {
    margin-top: -320px;
    padding-top: 110px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.08;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-features {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .hero-feature-item,
  .hero-feature-item + .hero-feature-item {
    border-left: none;
  }

  .hero-feature-item + .hero-feature-item {
    border-top: 1px solid rgba(47, 45, 49, 0.06);
  }

  .hero-feature-item {
    min-height: 76px;
    padding: 14px 14px;
  }

  .hero-feature-text {
    font-size: 14px;
  }
}




.hero-feature-icon svg {
  width: 40px;
  height: 40px;
  stroke: #2f2d31;
  stroke-width: 1.7;
  fill: none;
  transition: all 0.3s ease;
}

.hero-feature-item:hover svg {
  stroke: #f2b312;
  transform: scale(1.1);
}




/* ===== MOBILE PERFECT HERO ===== */
@media (max-width: 900px) {

  .hero-container {
    transform: scale(0.9);
    transform-origin: top center;
    width: 112%;
  }

  .hero-content {
    max-width: 100px;
    padding: 3px 0 10px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .hero-text {
    font-size: 0px;
    line-height: 1.7;
    max-width: 300px;
  }

  .hero-btn {
    min-height: 50px;
    padding: 0 22px;
    font-size: 14px;
  }

  .hero-features-wrap {
    margin-top: -30px;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
  }

  .hero-feature-item {
    padding: 16px;
    min-height: 80px;
    gap: 10px;
  }

  .hero-feature-icon {
    width: 42px;
    height: 42px;
  }

  .hero-feature-text {
    font-size: 16px;
  }
}














/* ABOUT PREMIUM SECTION */
.about-premium-section {
  padding: 36px 0 30px;
  background: #f4f4f1;
  position: relative;
  z-index: 20;
}

.about-premium-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  border-radius: 32px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(47, 45, 49, 0.08);
}

.about-premium-left {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.07), transparent 28%),
    linear-gradient(135deg, #0f2a44 0%, #0f2a44 55%, #0f2a44 100%);
  color: #ffffff;
  padding: 42px 40px 40px;
  position: relative;
}

.about-premium-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.45;
  pointer-events: none;
}

.about-premium-right {
  background: #fbfbf9;
  padding: 42px 34px 34px;
}

.about-premium-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f2b312;
  margin-bottom: 14px;
}

.about-premium-title {
  font-size: 34px;
  line-height: 1.16;
  font-weight: 900;
  margin: 0 0 10px;
  max-width: 520px;
}

.about-premium-line {
  width: 66px;
  height: 4px;
  border-radius: 999px;
  background: #f2b312;
  margin: 18px 0 28px;
}

.about-premium-line.small {
  width: 54px;
  height: 3px;
  margin-top: 12px;
  margin-bottom: 26px;
}

.about-premium-line.small.dark {
  background: #f2b312;
}

.about-premium-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 22px;
  max-width: 620px;
}

.about-premium-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  margin: 34px 0 36px;
}

.about-services-title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0;
  color: #ffffff;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-service-card {
  min-height: 185px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.about-service-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(242, 179, 18, 0.28);
}

.about-service-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2b312;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-service-icon svg {
  width: 34px;
  height: 34px;
}

.about-service-card span {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 800;
  color: #ffffff;
  max-width: 140px;
  position: relative;
  padding-bottom: 14px;
}

.about-service-card span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: #f2b312;
}

.about-why-title {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0;
  color: #1f2430;
}

.about-why-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(47, 45, 49, 0.05);
  box-shadow: 0 8px 22px rgba(47, 45, 49, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(47, 45, 49, 0.08);
}

.about-why-icon {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: #f8f2e7;
  color: #f2b312;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-why-icon svg {
  width: 34px;
  height: 34px;
}

.about-why-text h4 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.28;
  font-weight: 900;
  color: #1f2430;
}

.about-why-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #5f6775;
}

/* TABLET */
@media (max-width: 1350px) {
  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .about-premium-grid {
    grid-template-columns: 1fr;
  }

  .about-premium-right {
    border-top: 1px solid rgba(47, 45, 49, 0.06);
  }

  .about-premium-left,
  .about-premium-right {
    padding: 42px 32px;
  }

  .about-premium-title {
    max-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .about-premium-section {
    padding: 40px 0 56px;
  }

  .about-premium-left,
  .about-premium-right {
    padding: 28px 22px;
  }

  .about-premium-title {
    font-size: 28px;
  }

  .about-services-title,
  .about-why-title {
    font-size: 24px;
  }

  .about-premium-text {
    font-size: 15px;
    line-height: 1.75;
  }

  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about-service-card {
    min-height: 170px;
    padding: 18px 14px;
  }

  .about-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
  }

  .about-service-icon svg {
    width: 32px;
    height: 32px;
  }

  .about-why-card {
    padding: 22px 18px;
  }

  .about-why-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .about-why-icon svg {
    width: 28px;
    height: 28px;
  }

  .about-why-text h4 {
    font-size: 18px;
  }

  .about-why-text p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .about-why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .about-why-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .about-why-icon {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 520px) {
  .about-premium-left,
  .about-premium-right {
    padding: 24px 18px;
  }

  .about-premium-title {
    font-size: 24px;
  }

  .about-services-title,
  .about-why-title {
    font-size: 22px;
  }

  .about-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .about-service-card {
    min-height: 148px;
  }

  .about-why-card {
    flex-direction: column;
    align-items: flex-start;
  }
}






/* PARTNERS LOGO STRIP */
.partners-logo-strip-section {
  width: 100%;
  background: #f4f4f1;
  padding: 20px 0 20px;
  overflow: hidden;
}

.partners-logo-strip {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-logo-track {
  display: flex;
  align-items: center;
  gap: 90px;
  width: max-content;
  animation: partnersLogoScroll 45s linear infinite;
}

.partner-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  transition: transform 0.3s ease;
}

.partner-logo-item img {
  max-height: 90px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.72;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.04);
}

@keyframes partnersLogoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* TABLET */
@media (max-width: 1100px) {
  .partners-logo-track {
    gap: 70px;
    animation-duration: 26s;
  }

  .partner-logo-item {
    min-width: 110px;
  }

  .partner-logo-item img {
    max-height: 56px;
    max-width: 140px;
  }
}

/* MOBILE */
@media (max-width: 700px) {
  .partners-logo-strip-section {
    padding: 8px 0 8px;
  }

  .partners-logo-track {
    gap: 32px;
    animation-duration: 45s;
  }

  .partner-logo-item {
    min-width: 90px;
  }

  .partner-logo-item img {
    max-height: 42px;
    max-width: 110px;
    opacity: 0.78;
  }
}





.categories {
  background: #0f2a44;
  padding-top: 10px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}

/* HEADER */
.categories-header {
  text-align: center;
  color: #fff;
}

.categories-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.categories-header p {
  font-size: 18px;
  color: #cbd5e1;
}

.categories-header .line {
  width: 60px;
  height: 4px;
  background: #f4b321;
  margin: 3px auto 0;
  border-radius: 10px;
}

/* CARDS WRAPPER */
.categories-wrapper {
  max-width: 1200px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  padding: 0 20px;
}

/* CARD */
.category-card {
  background: #fff;
  border-radius: 18px;
  padding: 5px 10px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ICON */
.category-card .icon {
  font-size: 40px;
  margin-bottom: 12px;
}

/* TEXT */
.category-card span {
  font-size: 14px;
  font-weight: 600;
  color: #1f2a44;
  display: block;
}

/* HOVER */
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

/* Tablet */
@media (max-width: 1100px) {
  .categories-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .categories {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .categories-header h2 {
    font-size: 26px;
  }

  .categories-header p {
    font-size: 14px;
  }

  .categories-wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .category-card {
    padding: 12px 6px;
  }

  .category-card .icon {
    font-size: 22px;
  }

  .category-card span {
    font-size: 11px;
  }
}








/* RESET (yalnız bu blok üçün təhlükəsiz) */
.order-section,
.order-section * {
  box-sizing: border-box;
}

/* SECTION */
.order-section {
  width: 100%;
  margin: 0;
}

/* MAIN BLOCK */
.order-card {
  width: 100%;
  padding: 18px 1px;
  background: #fbfaf7;
  border-top: 1px solid #ece7de;
  border-bottom: 1px solid #ece7de;

  display: grid;
  grid-template-columns: 1.2fr 1px 0.8fr;
  gap: 28px;
  align-items: start;

  min-height: auto;
  height: auto;
}

/* LEFT */
.hero-row {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* ICON */
.hero-icon {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 50%;
  background: #f4ebdc;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #e3ac2d;
}

.hero-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

/* TEXT */
.hero-content {
  max-width: 620px;
}

.hero-content h2 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.15;
  color: #0f2240;

  /* KRİTİK FIX */
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

.hero-content h2 span {
  color: #e4a626;

  /* ƏN VACİB FIX */
  display: inline !important;
}

.hero-content p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #667085;

  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 100%;
  background: #e5ddd1;
}

/* RIGHT */
.order-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* BUTTONS */
.cta-box {
  width: 100%;
  padding: 10px 18px;
  border-radius: 16px;
  text-decoration: none;

  display: flex;
  align-items: center;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-icon {
  width: 44px;
  height: 44px;
}

.cta-text h3 {
  margin: 0;
  font-size: 17px;
}

.cta-text p {
  margin: 0;
  font-size: 14px;
}

/* COLORS */
.cta-yellow {
  background: #efb52f;
  color: #000;
}

.cta-whatsapp {
  border: 2px solid #25d366;
  color: #25d366;
}

/* PRIVACY */
.privacy-note {
  font-size: 14px;
  color: #7b8190;
}

/* ===================== */
/* 📱 MOBILE FIX (ƏSAS HİSSƏ) */
/* ===================== */

@media (max-width: 768px) {

  .order-card {
    display: block;
    padding: 28px 18px;
  }

  .divider {
    display: none;
  }

  .hero-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-icon {
    width: 70px;
    height: 70px;
  }

  .hero-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h2 {
    font-size: 28px;
    line-height: 1.2;

    /* CRITICAL */
    word-break: normal;
    overflow-wrap: normal;
    white-space: normal;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .cta-box {
    padding: 16px;
  }

}
.order-left {
  padding-left: 100px;
}

@media (max-width: 768px) {
  .order-left {
    padding-left: 0;
  }
}
.order-right {
  padding-right: 100px;
}
@media (max-width: 768px) {
  .order-right {
    padding-right: 0;
  }

  .cta-box {
    margin-right: 0;
  }
}
.divider {
  position: relative;
  left: -20px; /* sola çəkir */
}
.cta-icon.whatsapp-icon {
  width: 32px;
  height: 32px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon.whatsapp-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}






.footer-bar {
  background: #201f1f; /* tünd mavi */
  padding: 14px 20px;
}

.footer-bar-inner {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cbd5e1;
  font-size: 14px;
}

/* sol hissə */
.footer-left {
  opacity: 0.9;
}

/* sağ hissə */
.footer-right {
  display: flex;
  gap: 25px;
}

.footer-right a {
  color: #cbd5e1;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.25s;
}

.footer-right a i {
  font-size: 13px;
  opacity: 0.8;
}

.footer-right a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-right {
    flex-wrap: wrap;
    gap: 14px;
  }

  .footer-right a {
    font-size: 13px;
  }
}