/* ===== Variables ===== */
:root {
  --color-primary: #004b93;
  --color-primary-dark: #003366;
  --color-primary-light: #1a6fd4;
  --color-accent: #fdb913;
  --color-accent-dark: #d99a0f;
  --color-highlight: #6eb5e8;
  --color-dark: #0d1b2a;
  --color-text: #2c3e50;
  --color-text-light: #5a6a7a;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f7fb;
  --color-border: #dce4ef;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(0,59,102,.08);
  --shadow-md: 0 4px 20px rgba(0,59,102,.12);
  --shadow-lg: 0 10px 40px rgba(0,59,102,.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --topbar-height: 40px;
  --navbar-height: 78px;
  --header-height: calc(var(--topbar-height) + var(--navbar-height));
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.section { padding: 100px 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-primary-dark); color: #fff; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.section-label--light { color: var(--color-accent); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  font-optical-sizing: auto;
}
.section-title--light { color: #fff; }

.section-header--center { text-align: center; max-width: 600px; margin: 0 auto 60px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: capitalize;
}
.btn--primary {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
  background: #fff;
  color: var(--color-primary-dark);
  border-color: #fff;
}
.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline-dark:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}
.topbar {
  height: var(--topbar-height);
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}
.topbar__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar__social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}
.topbar__social-link:hover {
  color: var(--color-primary-dark);
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}
.topbar__link svg {
  color: var(--color-accent);
  flex-shrink: 0;
}
.topbar__link:hover {
  color: #fff;
}
.header__bar {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.header__bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}
.header.scrolled .header__bar {
  background: rgba(255, 255, 255, 0.55);
  border-bottom-color: rgba(0, 75, 147, 0.08);
  box-shadow: 0 6px 28px rgba(0, 51, 102, 0.1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 62px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.footer .logo img {
  height: 72px;
  max-width: 220px;
}
.logo__icon {
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.logo__text { font-size: 1.1rem; color: var(--color-dark); }
.logo__text strong { color: var(--color-primary); }
.logo--light .logo__text { color: #fff; }
.logo--light .logo__text strong { color: var(--color-accent); }

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav__link {
  padding: 8px 11px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-primary-dark);
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav__link:hover { color: var(--color-accent-dark); }
.nav__link.active {
  color: var(--color-accent-dark);
}
.nav__link.active::after {
  content: '';
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 2px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.lang-select { position: relative; }
.lang-select__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  transition: var(--transition);
}
.lang-select__btn:hover {
  border-color: var(--color-primary);
}
.lang-select__flag {
  font-size: 0.95rem;
  line-height: 1;
}
.lang-select__arrow {
  opacity: 0.6;
}

.nav__dropdown { position: relative; }
.nav__caret,
.nav__submenu-link--has-child::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.6;
  transition: var(--transition);
}
.nav__submenu-link--has-child::after {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid currentColor;
  border-right: none;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0;
}
.nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  list-style: none;
}
.nav__dropdown:hover > .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__submenu-link {
  display: block;
  padding: 10px 32px 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav__submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav__submenu-link:hover,
.nav__submenu a:hover {
  background: rgba(253, 185, 19, 0.2);
  color: var(--color-accent-dark);
}
.nav__dropdown--nested { position: relative; }
.nav__submenu--nested {
  top: 0;
  left: 100%;
  margin-left: 4px;
  transform: translateX(10px);
}
.nav__dropdown--nested:hover > .nav__submenu--nested {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}
.header__phone:hover { color: var(--color-primary-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  margin-top: var(--header-height);
  min-height: calc(92vh - var(--header-height));
  min-height: calc(92dvh - var(--header-height));
}
.hero__slider {
  position: relative;
  height: calc(92vh - var(--header-height));
  height: calc(92dvh - var(--header-height));
  min-height: 520px;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero__slide.active { opacity: 1; z-index: 1; }
.hero__slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,51,102,.9) 0%, rgba(0,75,147,.65) 42%, rgba(0,0,0,0) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
  height: 100%;
}
.hero__content > * {
  max-width: 680px;
}
.hero__tag {
  display: inline-block;
  background: rgba(253,185,19,.2);
  color: var(--color-accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  width: fit-content;
  border: 1px solid rgba(253,185,19,.45);
}
.hero__welcome {
  color: rgba(255,255,255,.8);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  font-optical-sizing: auto;
}
.hero__title em {
  font-style: normal;
  color: var(--color-accent);
}
.hero__desc {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 32px;
  line-height: 1.75;
  letter-spacing: 0.015em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  transition: var(--transition);
  cursor: pointer;
}
.hero__dot.active {
  background: var(--color-accent);
  width: 28px;
  border-radius: 5px;
}

/* ===== About ===== */
.about__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 48px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__text {
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.about__content .btn {
  margin-top: 8px;
}
.about__subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
  margin-top: 8px;
}
.about__export-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  justify-content: center;
  align-items: stretch;
}

.about__export-grid .about__export-card {
  flex: 0 0 calc(33.333% - 10px);
  max-width: calc(33.333% - 10px);
}

@media (max-width: 1024px) {
  .about__export-grid .about__export-card {
    flex: 0 0 calc(50% - 7px);
    max-width: calc(50% - 7px);
  }
}

@media (max-width: 768px) {
  .about__export-grid .about__export-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.about__export-card {
  width: 100%;
  max-width: 300px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: 0 4px 16px rgba(0, 51, 102, 0.06);
  transition: var(--transition);
}
.about__export-card:hover {
  border-color: rgba(0, 75, 147, 0.2);
  box-shadow: 0 8px 24px rgba(0, 51, 102, 0.1);
  transform: translateY(-2px);
}
.about__export-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}
.about__export-card p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.55;
  margin: 0;
}
.about__points {
  margin-bottom: 20px;
  padding-left: 0;
}
.about__points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.55;
}
.about__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(253,185,19,.25);
}
.about__points li:last-child {
  margin-bottom: 0;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.about__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about__feature-icon {
  width: 52px;
  height: 52px;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.about__feature h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}
.about__feature p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.about__images {
  position: relative;
  height: 480px;
}
.about__img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__img--main {
  width: 72%;
  height: 82%;
  top: 0;
  right: 0;
  z-index: 2;
}
.about__img--secondary {
  width: 52%;
  height: 52%;
  bottom: 0;
  left: 0;
  z-index: 3;
  border: 4px solid #fff;
}

/* ===== Products ===== */
.products__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.products__grid .product-card {
  flex: 0 0 calc(33.333% - 22px);
  max-width: calc(33.333% - 22px);
}

@media (max-width: 1024px) {
  .products__grid .product-card {
    flex: 0 0 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  .products__grid .product-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.product-card {
  width: 100%;
  max-width: 400px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0, 51, 102, 0.04),
    0 12px 36px rgba(0, 51, 102, 0.08);
  transition: transform 0.4s cubic-bezier(.22, 1, .36, 1), box-shadow 0.4s ease;
  border: 1px solid rgba(0, 75, 147, 0.1);
}
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-10px);
  box-shadow:
    0 2px 4px rgba(0, 51, 102, 0.05),
    0 28px 56px rgba(0, 51, 102, 0.16);
}
.product-card__media {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.product-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(.22, 1, .36, 1);
}
.product-card:hover .product-card__media > img,
.product-card:focus-within .product-card__media > img {
  transform: scale(1.1);
}
.product-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 8px 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 51, 102, 0.14);
  pointer-events: none;
}
.product-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px 24px;
  background: linear-gradient(
    to top,
    rgba(0, 35, 70, 0.97) 0%,
    rgba(0, 51, 102, 0.72) 42%,
    rgba(0, 51, 102, 0.15) 68%,
    transparent 100%
  );
  transform: translateY(calc(100% - 88px));
  transition: transform 0.45s cubic-bezier(.22, 1, .36, 1), background 0.45s ease;
}
.product-card:hover .product-card__overlay,
.product-card:focus-within .product-card__overlay {
  transform: translateY(0);
  background: linear-gradient(
    to top,
    rgba(0, 35, 70, 0.98) 0%,
    rgba(0, 51, 102, 0.9) 55%,
    rgba(0, 51, 102, 0.55) 100%
  );
}
.product-card__overlay h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.25;
}
.product-card__overlay p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-top: 12px;
  margin-bottom: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease;
}
.product-card:hover .product-card__overlay p,
.product-card:focus-within .product-card__overlay p {
  max-height: 120px;
  opacity: 1;
  margin-top: 12px;
}
.product-card__btn,
.product-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 0;
  padding: 12px 22px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  background: var(--color-accent);
  border-radius: 50px;
  border: 2px solid var(--color-accent);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease, background 0.3s ease, gap 0.3s ease, transform 0.3s ease;
}
.product-card:hover .product-card__btn,
.product-card:hover .product-card__link,
.product-card:focus-within .product-card__btn,
.product-card:focus-within .product-card__link {
  max-height: 60px;
  opacity: 1;
  margin-top: 18px;
}
.product-card__btn::after,
.product-card__link::after {
  content: '→';
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.product-card__btn:hover,
.product-card__link:hover {
  background: #fff;
  border-color: #fff;
  color: var(--color-primary-dark);
  gap: 12px;
}
.product-card__btn:hover::after,
.product-card__link:hover::after {
  transform: translateX(3px);
}

@media (hover: none) {
  .product-card__overlay {
    transform: translateY(0);
    background: linear-gradient(
      to top,
      rgba(0, 35, 70, 0.95) 0%,
      rgba(0, 51, 102, 0.55) 50%,
      transparent 100%
    );
  }
  .product-card__overlay p {
    max-height: 120px;
    opacity: 1;
    margin-top: 10px;
  }
  .product-card__btn,
  .product-card__link {
    max-height: 60px;
    opacity: 1;
    margin-top: 14px;
  }
}

.product-card--cta {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__cta-inner {
  padding: 40px 24px;
  text-align: center;
  color: #fff;
}
.product-card__cta-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}
.product-card--cta h3 { color: #fff; margin-bottom: 12px; }
.product-card--cta p { color: rgba(255,255,255,.8); margin-bottom: 20px; }
.product-card--cta .btn--primary {
  background: #fff;
  color: var(--color-primary-dark);
  border-color: #fff;
}
.product-card--cta .btn--primary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* ===== Spice Products ===== */
.spice-products {
  background: var(--color-bg-alt);
}
.spice-products .section-header {
  margin-bottom: 56px;
}
.spice-products__intro {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.spice-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
}
.spice-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0, 51, 102, 0.04),
    0 12px 40px rgba(0, 51, 102, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.spice-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 2px 4px rgba(0, 51, 102, 0.05),
    0 20px 48px rgba(0, 51, 102, 0.1);
}
.spice-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  padding: 36px 32px;
  background: #fff;
}
.spice-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}
.spice-card:hover .spice-card__img img {
  transform: scale(1.03);
}
.spice-card__footer {
  padding: 22px 24px 26px;
  background: #f8fafc;
  text-align: center;
}
.spice-card__title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-primary-dark);
  line-height: 1.35;
  margin: 0;
}

/* ===== Pillars ===== */
.pillars {
  background-color: var(--color-accent);
  background-image: radial-gradient(rgba(0,51,102,.09) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  position: relative;
  overflow: hidden;
}
.pillars::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 40px solid rgba(0,51,102,.06);
  border-radius: 50%;
  pointer-events: none;
}
.pillars .section-label {
  color: var(--color-primary-dark);
  background: rgba(255,255,255,.45);
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.16em;
}
.pillars .section-title {
  color: var(--color-primary-dark);
}
.pillars__layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 48px 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.pillars__header {
  max-width: none;
  margin-bottom: 0;
  position: sticky;
  top: calc(var(--header-height) + 32px);
}
.pillars__intro {
  color: rgba(0,51,102,.88);
  margin-bottom: 28px;
  line-height: 1.75;
  font-size: 0.95rem;
}
.pillars .btn--outline-dark {
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.pillars .btn--outline-dark:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 22px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.8);
  box-shadow:
    0 1px 0 rgba(0,51,102,.04),
    0 14px 36px rgba(0,51,102,.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s ease;
}
.pillar-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 1px 0 rgba(0,51,102,.04),
    0 22px 48px rgba(0,51,102,.16);
}
.pillar-card:hover::after {
  transform: scaleX(1);
}
.pillar-card__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--color-primary-dark);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), background 0.3s ease;
}
.pillar-card__icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  border: 1px dashed rgba(0,51,102,.2);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.35s ease;
}
.pillar-card:hover .pillar-card__icon {
  background: var(--color-primary);
  transform: rotate(-6deg) scale(1.06);
}
.pillar-card:hover .pillar-card__icon::before {
  opacity: 1;
  transform: rotate(6deg);
}
.pillar-card__body {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pillar-card p {
  font-size: 0.84rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin: 0;
}

/* ===== Global ===== */
.global {
  background: var(--color-primary-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.global__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, #000 20%, transparent 75%);
}
.global__decor::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border: 1px solid rgba(253,185,19,.15);
  border-radius: 50%;
}
.global__decor::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: 50%;
}
.global .container {
  position: relative;
  z-index: 1;
}
.global__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px 56px;
  align-items: center;
}
.global__content p {
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  line-height: 1.8;
}
.global__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 24px 22px;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.stat-card:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(253,185,19,.35);
  transform: translateY(-4px);
}
.stat { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 4px; }
.stat__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-accent);
  line-height: 1;
  font-optical-sizing: auto;
}
.stat__suffix {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-accent);
}
.stat__label {
  width: 100%;
  font-size: 0.85rem;
  color: rgba(255,255,255,.65);
  margin-top: 8px;
  line-height: 1.4;
}
.global__aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.global__feature {
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.1);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.global__feature:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
}
.global__feature--gold {
  background: rgba(253,185,19,.12);
  border-color: rgba(253,185,19,.28);
}
.global__feature--gold:hover {
  background: rgba(253,185,19,.16);
  border-color: rgba(253,185,19,.4);
}
.global__feature-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.global__feature-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(253,185,19,.15);
  border: 1px solid rgba(253,185,19,.3);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.global__feature--gold .global__feature-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary-dark);
}
.global__feature h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
}
.global__feature p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin: 0;
}

/* ===== Process ===== */
.process__intro {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: -8px;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
.process__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.process__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,75,147,.25);
}
.process__card:hover::before {
  transform: scaleX(1);
}
.process__step {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(0,75,147,.08);
  pointer-events: none;
}
.process__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,75,147,.1), rgba(26,111,212,.06));
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.35s ease, color 0.35s ease;
}
.process__card:hover .process__icon {
  background: var(--color-primary);
  color: #fff;
}
.process__card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.35;
  padding-right: 36px;
}
.process__card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin: 0;
}

/* ===== Certifications ===== */
.certifications__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.cert-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.cert-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.cert-card__img {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  padding: 8px;
}
.cert-card__img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.cert-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
}

/* ===== Why Choose Us ===== */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.why__video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why__video img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.why__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,51,102,.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
}
.why__play {
  width: 64px;
  height: 64px;
  background: #fff;
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding-left: 4px;
}
.why__play:hover {
  transform: scale(1.1);
  background: var(--color-accent);
  color: #fff;
}
.why__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.why__right .about__points {
  margin-bottom: 24px;
}
.global__intro {
  color: rgba(255,255,255,.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.global__points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.global__points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.55;
}
.global__points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(253,185,19,.15);
  border: 1px solid rgba(253,185,19,.35);
  color: var(--color-accent);
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  box-shadow: none;
}
.global__points li:last-child {
  margin-bottom: 0;
}
.global__points--compact {
  margin-bottom: 0;
}
.destinations__intro {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.destinations__points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.destinations__points li {
  position: relative;
  padding: 14px 16px 14px 44px;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,75,147,.08);
  box-shadow: 0 2px 10px rgba(0,51,102,.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.destinations__points li:hover {
  border-color: rgba(0,75,147,.2);
  box-shadow: 0 4px 16px rgba(0,51,102,.08);
}
.destinations__points li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(253,185,19,.2);
}
.why__items { display: flex; flex-direction: column; gap: 28px; }
.why__item {
  display: flex;
  gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}
.why__item:last-child { border-bottom: none; padding-bottom: 0; }
.why__item-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
}
.why__item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}
.why__item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== Destinations ===== */
.destinations {
  position: relative;
  background-color: #eef2f8;
  overflow: hidden;
}
.destinations__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0,75,147,.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.destinations__decor::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 300px;
  height: 300px;
  border: 32px solid rgba(0,75,147,.05);
  border-radius: 50%;
}
.destinations .container {
  position: relative;
  z-index: 1;
}
.destinations__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px 56px;
  align-items: stretch;
}
.destinations__main {
  padding-right: 12px;
}
.destinations__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 51, 102, 0.12);
  min-height: 100%;
}
.destinations__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.destinations__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.destinations__tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  border: 1px solid rgba(0,75,147,.1);
  box-shadow: 0 2px 8px rgba(0,51,102,.05);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.destinations__tags span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}
.destinations__tags span:hover {
  background: var(--color-primary-dark);
  color: #fff;
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
}
.destinations__tags span:hover::before {
  background: var(--color-accent);
}

/* ===== FAQ ===== */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.faq__cta {
  margin-top: 32px;
  padding: 28px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.faq__cta h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}
.faq__cta p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}
.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq__item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  background: #fff;
  transition: var(--transition);
}
.faq__item.active .faq__question {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}
.faq__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-primary);
  transition: var(--transition);
}
.faq__icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq__item.active .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__item.active .faq__answer { max-height: 300px; }
.faq__answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,.8);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand p {
  margin-top: 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
}
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 20px;
}
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}
.footer__contact-list a {
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer__contact-list a:hover { color: var(--color-accent); }
.footer__contact-list svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__address div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__address strong {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.footer__address span {
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  font-size: 0.85rem;
}
.footer__links h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 20px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--color-accent); }
.footer__bottom {
  padding: 24px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.4);
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
.modal__dialog {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.modal.active .modal__dialog { transform: translateY(0); }
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  font-size: 1.5rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal__close:hover { background: var(--color-border); }
.modal__dialog h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 8px;
}
.modal__subtitle {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: var(--transition);
  background: #fff;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,75,147,.18);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .topbar__link:last-child { display: none; }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  :root { --topbar-height: 0px; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .nav.open {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px;
    overflow-y: auto;
    z-index: 999;
  }
  .nav.open .nav__list {
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open .nav__link {
    padding: 14px 16px;
    font-size: 1rem;
  }
  .nav.open .nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 16px;
    display: none;
    min-width: 0;
  }
  .nav.open .nav__submenu--nested {
    padding-left: 16px;
    margin-left: 0;
  }
  .nav.open .nav__dropdown.open > .nav__submenu { display: block; }
  .nav.open .nav__caret {
    border-top: 5px solid currentColor;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
  }
  .nav.open .nav__submenu-link--has-child::after {
    border-top: 5px solid currentColor;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: none;
    position: static;
    transform: none;
    margin-left: 6px;
  }
  .nav-toggle { display: flex; }
  .header__phone { display: none; }
  .lang-select { display: none; }
  .nav__link { font-size: 1rem; padding: 14px 16px; }
  .nav__link.active::after { display: none; }

  .about__grid,
  .global__grid,
  .why__grid,
  .destinations__grid,
  .faq__grid,
  .pillars__layout { grid-template-columns: 1fr; gap: 40px; }

  .pillars__header { position: static; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }

  .products__grid,
  .spice-products__grid { grid-template-columns: repeat(2, 1fr); }
  .certifications__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand,
  .footer__contact { grid-column: 1 / -1; }

  .about__export-grid { grid-template-columns: 1fr; }
  .about__images { height: 360px; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .products__grid,
  .pillars__grid,
  .certifications__grid,
  .process__grid,
  .spice-products__grid,
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .global__stats { grid-template-columns: 1fr; }
  .about__images { height: 280px; }
  .modal__dialog { padding: 28px 20px; }
}


/* ===== Inner Pages ===== */
.page-hero { position: relative; margin-top: var(--header-height); min-height: 430px; display: flex; align-items: center; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,51,102,.92) 0%, rgba(0,75,147,.72) 48%, rgba(0,0,0,.22) 100%); }
.page-hero__content { position: relative; z-index: 1; padding: 70px 16px; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.08; color: #fff; max-width: 820px; margin-bottom: 18px; letter-spacing: -0.025em; }
.page-hero__text { color: rgba(255,255,255,.86); max-width: 720px; font-size: 1.05rem; line-height: 1.75; }
.story-grid, .profile-grid, .contact-grid, .product-detail-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: start; }
.story-grid p, .profile-grid p, .product-detail-grid p { color: var(--color-text-light); margin-bottom: 16px; }
.story-card, .pdf-panel, .contact-card, .product-spec-card, .contact-form { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.story-card h3, .pdf-panel h3, .product-spec-card h3, .packing-grid h3, .timeline-grid h3, .value-grid h3 { font-family: var(--font-display); color: var(--color-dark); font-size: 1.25rem; margin-bottom: 14px; }
.check-list { display: grid; gap: 12px; margin: 22px 0 28px; }
.check-list li { position: relative; padding-left: 28px; color: var(--color-text-light); line-height: 1.55; }
.check-list li::before { content: ''; position: absolute; left: 0; top: .55em; width: 10px; height: 10px; border-radius: 50%; background: var(--color-accent); box-shadow: 0 0 0 4px rgba(253,185,19,.18); }
.value-grid, .timeline-grid, .packing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-grid article, .timeline-grid article, .packing-grid article { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.value-grid span { font-family: var(--font-display); font-size: 2.5rem; color: rgba(0,75,147,.16); font-weight: 700; }
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.category-tile { position: relative; min-height: 340px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.category-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.category-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,35,70,.96), rgba(0,75,147,.35)); }
.category-tile:hover img { transform: scale(1.08); }
.category-tile > div { position: absolute; inset: auto 0 0 0; z-index: 1; padding: 28px; color: #fff; }
.category-tile span, .blog-card span { color: var(--color-accent); font-weight: 700; text-transform: uppercase; font-size: .75rem; letter-spacing: .12em; }
.category-tile h3 { font-family: var(--font-display); font-size: 1.8rem; margin: 6px 0 8px; }
.category-tile p { max-width: 480px; color: rgba(255,255,255,.82); margin-bottom: 18px; }
.category-tile__text-link { display: inline-flex; margin-left: 16px; color: #fff; font-weight: 600; }
.product-spec-card table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 12px; }
.product-spec-card th, .product-spec-card td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--color-border); vertical-align: top; }
.product-spec-card th { width: 38%; color: var(--color-primary-dark); font-weight: 700; background: var(--color-bg-alt); }
.product-spec-card td { color: var(--color-text-light); }
.product-actions, .pdf-panel__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.profile-stats span { display: grid; gap: 4px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 14px; padding: 18px; color: var(--color-text-light); }
.profile-stats strong { font-family: var(--font-display); color: var(--color-primary); font-size: 1.55rem; line-height: 1; }
.pdf-panel { background: linear-gradient(180deg, #fff, #f7fbff); }
.pdf-panel__icon { width: 76px; height: 92px; border-radius: 14px; background: var(--color-primary); color: var(--color-accent); display: flex; align-items: center; justify-content: center; font-weight: 800; letter-spacing: .08em; margin-bottom: 20px; box-shadow: var(--shadow-md); }
.cert-card--large p { color: var(--color-text-light); font-size: .9rem; margin-top: 10px; }
.contact-list { display: grid; gap: 16px; margin-top: 24px; }
.contact-list li { display: grid; gap: 4px; color: var(--color-text-light); }
.contact-list strong { color: var(--color-primary-dark); }
.contact-list a { color: var(--color-primary); font-weight: 600; }
.contact-form textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--color-border); border-radius: 8px; resize: vertical; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card div { .blog-card__image{
    position: relative;
    height: 220px; /* pehle 260px tha */
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.blog-card__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
}

.blog-card:hover .blog-card__image img{
    transform: scale(1.08);
} }
.blog-card h3 { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.25; margin: 8px 0 10px; color: var(--color-dark); }
.blog-card p { color: var(--color-text-light); font-size: .92rem; margin-bottom: 14px; }
.blog-card a { color: var(--color-primary); font-weight: 700; }
.cta-band { background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary)); color: #fff; padding: 66px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.76); max-width: 640px; }
@media (max-width: 1024px) { .story-grid, .profile-grid, .contact-grid, .product-detail-grid, .category-grid { grid-template-columns: 1fr; } .value-grid, .timeline-grid, .packing-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); } .cta-band__inner { align-items: flex-start; flex-direction: column; } }
@media (max-width: 640px) { .page-hero { min-height: 360px; } .story-card, .pdf-panel, .contact-card, .product-spec-card, .contact-form { padding: 24px; } .value-grid, .timeline-grid, .packing-grid, .blog-grid, .profile-stats { grid-template-columns: 1fr; } .category-tile { min-height: 310px; } .category-tile__text-link { margin-left: 0; margin-top: 12px; display: flex; } .product-spec-card th, .product-spec-card td { display: block; width: 100%; } }


/* ===== Product Detail Redesign ===== */
.product-showcase {
  margin-top: var(--header-height);
  padding: 86px 0 76px;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 38%, #ffffff 100%);
}
.product-showcase__grid {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}
.product-showcase__media {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  min-height: 620px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef4fb;
  border: 1px solid rgba(0,75,147,.1);
  box-shadow: 0 24px 60px rgba(0,51,102,.14);
}
.product-showcase__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,51,102,0) 56%, rgba(0,35,70,.42) 100%);
  pointer-events: none;
}
.product-showcase__media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}
.product-showcase__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 50px;
  background: rgba(253,185,19,.96);
  color: var(--color-primary-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(0,35,70,.22);
}
.product-showcase__content {
  padding-top: 6px;
}
.product-showcase__content .section-title {
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  margin-bottom: 18px;
}
.product-showcase__intro {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 720px;
}
.product-showcase__points {
  margin: 24px 0 28px;
}
.product-spec-card--showcase {
  margin-top: 34px;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
}
.product-spec-card--showcase h3 {
  padding: 28px 32px 8px;
  margin: 0;
  font-size: 1.45rem;
}
.product-spec-card--showcase table {
  border-radius: 0;
}
.product-spec-card--showcase th,
.product-spec-card--showcase td {
  padding: 17px 20px;
}
@media (max-width: 1024px) {
  .product-showcase { padding: 64px 0; }
  .product-showcase__grid { grid-template-columns: 1fr; gap: 36px; }
  .product-showcase__media { position: relative; top: auto; min-height: 420px; }
  .product-showcase__media img { min-height: 420px; }
}
@media (max-width: 640px) {
  .product-showcase { padding: 42px 0 56px; }
  .product-showcase__media { min-height: 320px; border-radius: 14px; }
  .product-showcase__media img { min-height: 320px; }
  .product-showcase__badge { left: 16px; bottom: 16px; }
  .product-spec-card--showcase h3 { padding: 24px 22px 6px; }
  .product-spec-card--showcase th,
  .product-spec-card--showcase td { padding: 14px 18px; }
}



/*========================================
PAGE BANNER
========================================*/

.page-banner{
    background:linear-gradient(rgba(9,42,80,.88),rgba(9,42,80,.88)),
    url("../images/banner.jpg") center center/cover;
    padding:90px 0;
    text-align:center;
    color:#fff;
}

.page-banner h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:15px;
}

.breadcrumbs{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.breadcrumbs a{
    color:#ffc107;
    text-decoration:none;
    transition:.3s;
}

.breadcrumbs a:hover{
    color:#fff;
}

.breadcrumbs span{
    color:#fff;
}


/*========================================
PRODUCT SECTION
========================================*/

.product-section{
    padding:80px 0;
    background:#f8fafc;
}

.product-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:start;
}

.image-card{
    background:#fff;
    padding:18px;
    border-radius:18px;
    position:relative;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.image-card img{
    width:100%;
    height:470px;
    object-fit:cover;
    border-radius:14px;
    display:block;
}

.product-tag{
    position:absolute;
    top:35px;
    left:35px;
    background:#ffb400;
    color:#fff;
    padding:10px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
}

.section-label{
    display:inline-block;
    color:#0d5cab;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:15px;
}

.product-right h2{
    font-size:48px;
    color:#0d2f55;
    margin-bottom:20px;
    line-height:1.2;
}

.product-desc{
    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:30px;
}


/*========================================
FEATURE BOXES
========================================*/

.feature-boxes{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:30px;
}

.feature-item{
    background:#eef6ff;
    color:#0d5cab;
    padding:12px 20px;
    border-radius:50px;
    font-weight:600;
}


/*========================================
FEATURE LIST
========================================*/

.product-features{
    list-style:none;
    margin:0 0 35px;
    padding:0;
}

.product-features li{
    position:relative;
    padding-left:32px;
    margin-bottom:15px;
    color:#555;
    line-height:1.8;
}

.product-features li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#ffb400;
    font-weight:bold;
}


/*========================================
BUTTONS
========================================*/

.product-buttons{
    display:flex;
    gap:18px;
    margin-bottom:45px;
}

.btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    padding:15px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.btn-primary{
    background:#ffb400;
    color:#fff;
}

.btn-primary:hover{
    background:#0d5cab;
    color:#fff;
}

.btn-outline{
    border:2px solid #0d5cab;
    color:#0d5cab;
    background:#fff;
}

.btn-outline:hover{
    background:#0d5cab;
    color:#fff;
}


/*========================================
STATS
========================================*/

.stats-row{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.stat-box{
    flex:1;
    min-width:160px;
    background:#fff;
    border-radius:15px;
    text-align:center;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.stat-box h3{
    font-size:36px;
    color:#0d5cab;
    margin-bottom:8px;
}

.stat-box span{
    color:#777;
}


/*========================================
SPECIFICATION
========================================*/

.specification-section{
    padding:70px 0;
    background:#fff;
}

.spec-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.spec-card h2{
    color:#0d2f55;
    margin-bottom:30px;
}

.spec-card table{
    width:100%;
    border-collapse:collapse;
}

.spec-card th{
    width:30%;
    background:#f3f7fc;
    color:#0d2f55;
    text-align:left;
    padding:18px;
    border-bottom:1px solid #e8edf3;
}

.spec-card td{
    padding:18px;
    border-bottom:1px solid #e8edf3;
    color:#555;
}


/*========================================
SECTION HEADING
========================================*/

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading span{
    color:#0d5cab;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
}

.section-heading h2{
    font-size:40px;
    color:#0d2f55;
    margin:15px 0;
}

.section-heading p{
    color:#666;
    max-width:650px;
    margin:auto;
}


/*========================================
GALLERY
========================================*/

.gallery-section{
    padding:80px 0;
    background:#f8fafc;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
    display:block;
}

.gallery-item:hover img{
    transform:scale(1.08);
}
/*==========================================
QUALITY SECTION
==========================================*/

.quality-section{
    padding:90px 0;
    background:#ffffff;
}

.quality-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.quality-card{
    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.quality-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.quality-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#f3f8ff;
    color:#0d5cab;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:34px;
    margin-bottom:25px;
}

.quality-card h3{
    margin-bottom:15px;
    color:#0d2f55;
}

.quality-card p{
    color:#666;
    line-height:1.8;
}


/*==========================================
EXPORT PROCESS
==========================================*/

.process-section{
    padding:90px 0;
    background:#f8fafc;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-item{
    background:#fff;
    text-align:center;
    padding:40px 25px;
    border-radius:18px;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.process-number{
    width:65px;
    height:65px;
    background:#ffb400;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 25px;
    font-size:22px;
    font-weight:700;
}

.process-item h4{
    margin-bottom:15px;
    color:#0d2f55;
}

.process-item p{
    color:#666;
}


/*==========================================
RELATED PRODUCTS
==========================================*/

.related-section{
    padding:90px 0;
    background:#fff;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.related-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.related-card:hover{
    transform:translateY(-8px);
}

.related-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.related-card h3{
    padding:25px 20px 10px;
    color:#0d2f55;
}

.related-card .btn{
    margin:20px;
}


/*==========================================
CTA
==========================================*/

.cta-section{
    padding:90px 0;
    background:linear-gradient(135deg,#0d2f55,#0d5cab);
}

.cta-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    color:#fff;
}

.cta-wrapper span{
    color:#ffc107;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.cta-wrapper h2{
    margin:15px 0;
    font-size:42px;
    line-height:1.3;
}

.cta-wrapper p{
    max-width:650px;
    line-height:1.8;
    opacity:.9;
}

.btn-lg{
    padding:18px 45px;
    font-size:17px;
}


/*==========================================
HOVER EFFECTS
==========================================*/

.gallery-item,
.image-card,
.spec-card,
.stat-box,
.related-card,
.quality-card,
.process-item{
    transition:.35s;
}

.image-card:hover,
.spec-card:hover,
.stat-box:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}


/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:1200px){

.product-wrapper{
    grid-template-columns:380px 1fr;
}

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.related-grid{
    grid-template-columns:repeat(2,1fr);
}

.process-grid{
    grid-template-columns:repeat(2,1fr);
}

}


@media(max-width:991px){

.page-banner{
    padding:70px 0;
}

.page-banner h1{
    font-size:40px;
}

.product-wrapper{
    grid-template-columns:1fr;
}

.image-card{
    max-width:500px;
    margin:auto;
}

.product-right{
    text-align:center;
}

.product-features{
    display:inline-block;
    text-align:left;
}

.feature-boxes{
    justify-content:center;
}

.product-buttons{
    justify-content:center;
}

.stats-row{
    justify-content:center;
}

.quality-grid{
    grid-template-columns:1fr;
}

.related-grid{
    grid-template-columns:1fr;
}

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.process-grid{
    grid-template-columns:repeat(2,1fr);
}

.cta-wrapper{
    flex-direction:column;
    text-align:center;
}

}


@media(max-width:768px){

.page-banner h1{
    font-size:34px;
}

.section-heading h2{
    font-size:32px;
}

.product-right h2{
    font-size:34px;
}

.gallery-grid{
    grid-template-columns:1fr;
}

.process-grid{
    grid-template-columns:1fr;
}

.stats-row{
    flex-direction:column;
}

.product-buttons{
    flex-direction:column;
}

.btn{
    width:100%;
}

.spec-card{
    overflow-x:auto;
    padding:25px;
}

.spec-card table{
    min-width:650px;
}

.image-card img{
    height:350px;
}

.related-card img{
    height:240px;
}

.cta-wrapper h2{
    font-size:32px;
}

}


@media(max-width:576px){

.page-banner{
    padding:60px 0;
}

.page-banner h1{
    font-size:28px;
}

.product-section,
.gallery-section,
.quality-section,
.process-section,
.related-section,
.specification-section,
.cta-section{
    padding:60px 0;
}

.feature-item{
    width:100%;
    text-align:center;
}

.breadcrumbs{
    font-size:14px;
}

.section-heading h2{
    font-size:28px;
}

.cta-wrapper h2{
    font-size:28px;
}

}
.page-banner{
    background:#143d6b;
    padding:60px 0;
    text-align:center;
    margin-top:110px;
}

.page-banner h1{
    font-size:52px;
    margin-bottom:15px;
    color:#fff;
}


/* ===== Professional Product Page Refresh ===== */
.product-banner {
  background: linear-gradient(135deg, #0b355f 0%, #154b7e 62%, #0a2d50 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.product-banner::after {
  content: '';
  position: absolute;
  inset: auto -10% -72px -10%;
  height: 130px;
  background: rgba(255,255,255,.06);
  transform: rotate(-2deg);
}
.product-section {
  background: linear-gradient(180deg, #f7fafd 0%, #ffffff 100%);
  padding: 86px 0 72px;
}
.product-wrapper {
  grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}
.image-card {
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(13,92,171,.08);
  box-shadow: 0 24px 60px rgba(13, 47, 85, .12);
}
.image-card::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 12px;
  box-shadow: inset 0 -90px 120px rgba(9, 43, 77, .16);
  pointer-events: none;
}
.image-card img {
  height: 500px;
  border-radius: 12px;
}
.product-tag {
  z-index: 2;
  background: #ffb400;
  color: #0d2f55;
  box-shadow: 0 10px 26px rgba(255,180,0,.28);
}
.product-right h2 {
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 0;
}
.product-desc {
  max-width: 760px;
  color: #5d6670;
}
.feature-boxes {
  gap: 12px;
}
.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  background: #eef6ff;
  color: #075da8;
  border: 1px solid rgba(13,92,171,.08);
  box-shadow: 0 8px 22px rgba(13,92,171,.06);
}
.feature-item span,
.product-features li::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffb400;
  color: #0d2f55;
  flex: 0 0 auto;
}
.feature-item span { position: relative; display: inline-block; }
.feature-item span::after,
.product-features li::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 4px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
.feature-item span::after { left: 5px; top: 5px; }
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
}
.product-features li::after {
  left: 5px;
  top: 11px;
  color: #0d2f55;
}
.product-buttons .btn { min-width: 168px; }
.specification-section {
  background: #ffffff;
  padding: 72px 0;
}
.spec-card {
  border-radius: 18px;
  border: 1px solid rgba(13,92,171,.1);
  box-shadow: 0 22px 55px rgba(13, 47, 85, .1);
}
.spec-card h2 { font-size: clamp(28px, 3vw, 40px); }
.spec-card th {
  width: 28%;
  color: #0d2f55;
  background: #f1f6fb;
}
.quality-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
  padding: 92px 0;
}
.quality-grid { align-items: stretch; }
.quality-card {
  border-radius: 16px;
  border: 1px solid rgba(13,92,171,.08);
  box-shadow: 0 18px 46px rgba(13,47,85,.09);
}
.quality-icon {
  color: #0d5cab;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #eef6ff 72%);
  border: 1px solid rgba(13,92,171,.1);
  box-shadow: inset 0 0 0 8px rgba(255,255,255,.55), 0 12px 24px rgba(13,92,171,.08);
}
.quality-icon svg { display: block; }
.cta-section { background: linear-gradient(135deg, #0d2f55, #075da8); }
@media (max-width: 991px) {
  .product-wrapper { grid-template-columns: 1fr; }
  .product-right { text-align: left; }
  .feature-boxes, .product-buttons { justify-content: flex-start; }
  .product-features { display: block; }
}
@media (max-width: 768px) {
  .product-banner { margin-top: 110px; padding: 54px 0 48px; }
  .product-section, .specification-section, .quality-section, .cta-section { padding: 56px 0; }
  .image-card img { height: 340px; }
  .product-buttons .btn { width: 100%; }
  .spec-card { padding: 24px; overflow-x: visible; }
  .spec-card table { min-width: 0; }
  .spec-card th, .spec-card td { display: block; width: 100%; }
  .spec-card th { border-bottom: 0; padding-bottom: 8px; }
  .spec-card td { padding-top: 8px; }
}

.cardamom-product-section{
    padding:80px 0;
}

.product-main-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.product-image img{
    width:100%;
    border-radius:20px;
}

.product-content h2{
    font-size:42px;
    margin:15px 0;
}

.product-content p{
    color:#666;
    line-height:1.8;
}

.size-boxes{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin:35px 0;
}

.size-box{
    background:#f8f8f8;
    text-align:center;
    padding:30px 15px;
    border-radius:15px;
    transition:.3s;
    border:2px solid transparent;
}

.size-box:hover{
    transform:translateY(-8px);
    border-color:var(--primary-color);
}

.size-box h4{
    color:var(--primary-color);
    font-size:24px;
    margin-bottom:10px;
}

.spec-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.spec-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.spec-card h3{
    margin-bottom:20px;
    color:var(--primary-color);
}

.spec-card ul{
    padding-left:20px;
}

.spec-card ul li{
    margin-bottom:12px;
    color:#666;
}

@media(max-width:991px){

    .product-main-box{
        grid-template-columns:1fr;
        padding:30px;
    }

    .size-boxes,
    .spec-grid{
        grid-template-columns:1fr;
    }

    .product-content h2{
        font-size:32px;
    }
}
.product-main-box{
    display:grid;
    grid-template-columns:45% 55%;
    gap:70px;
    align-items:center;
    background:#fff;
    padding:60px;
    border-radius:30px;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.product-image{
    text-align:center;
}

.product-image img{
    width:100%;
    max-width:420px; /* image size */
    height:auto;
    border-radius:25px;
    padding:25px;
    background:#fff;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.4s;
}

.product-image img:hover{
    transform:translateY(-10px);
}
.quality-section{
    padding:100px 0;
}

.quality-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.quality-card{
    background:#fff;
    padding:50px 35px;
    text-align:center;
    border-radius:25px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.4s;
    border:1px solid #edf2f7;
}

.quality-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.quality-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#f4f8fc;
    margin:0 auto 30px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    color:#0d4d91;
    box-shadow:0 5px 15px rgba(13,77,145,.1);
}

.quality-card h3{
    font-size:28px;
    margin-bottom:20px;
    color:#12345b;
}

.quality-card p{
    line-height:1.9;
    color:#666;
}

@media(max-width:991px){

    .product-main-box{
        grid-template-columns:1fr;
        padding:35px;
    }

    .quality-grid{
        grid-template-columns:1fr;
    }

    .product-image img{
        max-width:320px;
    }
}
/* ================= BLOG SECTION ================ */

.home-blogs{
    padding:100px 0;
    background:#f8fbff;
}

.blogs-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.blogs-heading p{
    color:#667085;
    line-height:1.8;
    margin-top:20px;
}

.blogs-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.blog-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.4s ease;
    border:1px solid #edf2f7;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.1);
}

.blog-card__image{
    position:relative;
    overflow:hidden;
    height:260px;
}

.blog-card__image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.blog-card:hover .blog-card__image img{
    transform:scale(1.08);
}

.blog-category{
    position:absolute;
    top:20px;
    left:20px;
    background:#f7b500;
    color:#082f63;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.blog-card__content{
    padding:30px;
}

.blog-meta{
    margin-bottom:15px;
    color:#6b7280;
    font-size:14px;
}

.blog-card h3{
    font-size:24px;
    line-height:1.4;
    margin-bottom:18px;
    color:#0c2f63;
}

.blog-card p{
    color:#667085;
    line-height:1.8;
    margin-bottom:25px;
}

.blog-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#0c2f63;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.blog-btn span{
    transition:.3s;
}

.blog-btn:hover{
    color:#f7b500;
}

.blog-btn:hover span{
    transform:translateX(8px);
}

.blogs-action{
    text-align:center;
    margin-top:60px;
}

@media(max-width:991px){

    .blogs-grid{
        grid-template-columns:1fr;
    }

    .blog-card__image{
        height:240px;
    }
}
.blog-card__image{
    position: relative;
    height: 220px; /* pehle 260px tha */
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.blog-card__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
}

.blog-card:hover .blog-card__image img{
    transform: scale(1.08);
}