@charset "UTF-8";

/* =========================
   HERO SECTION
========================= */

.hero-section {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background-color: #22170f;
}

/* -------------------------
   HERO IMAGE SLIDER
------------------------- */

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 1.1s ease, transform 6s ease;
  transform: scale(1.02);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1.06);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;

  /* IMPORTANT */
  object-fit: cover;
  object-position: center center;
}

/* -------------------------
   OVERLAY
------------------------- */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(11, 15, 20, 0.20) 0%,
      rgba(11, 15, 20, 0.38) 30%,
      rgba(11, 15, 20, 0.76) 68%,
      rgba(11, 15, 20, 0.92) 100%
    );
  pointer-events: none;
}

/* -------------------------
   HERO CONTENT
------------------------- */

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 22px;
}

.hero-content {
  max-width: 980px;
  padding: 150px 0 56px;
  color: #ffffff;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.hero-title {
  margin-bottom: 14px;
  color: #ffffff;
  font-family: "Bellosa DEMO";
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 1px;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.30);
}

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.75;
  font-family: 'Aesthetic Beauty CF';
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-section .btn-primary {
  background: linear-gradient(135deg, #c79557 0%, #8b5b34 100%);
  color: #ffffff;
}

.hero-section .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-highlights li {
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-family: Arial, sans-serif;
  backdrop-filter: blur(4px);
}

/* -------------------------
   HERO CONTROLS
------------------------- */

.hero-controls {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 28px;
  display: flex;
  gap: 10px;
}

.hero-control {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-control:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
}

/* -------------------------
   HERO DOTS
------------------------- */

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 22px;
  bottom: 34px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  background: #ffffff;
  transform: scale(1.15);
}

/* =========================
   TRUST BAR
========================= */

.trust-bar-section {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: linear-gradient(180deg, rgba(246, 238, 226, 1) 0%, rgba(255, 255, 255, 1) 100%);
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
}

.trust-bar-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-item {
  position: relative;
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 15, 20, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.trust-title {
  display: block;
  margin-bottom: 6px;
  color: rgba(11, 15, 20, 0.88);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.trust-sub {
  display: block;
  color: rgba(11, 15, 20, 0.66);
  font-size: 15px;
  line-height: 1.5;
  font-family: 'Aesthetic Beauty CF';
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (min-width: 1920px) {
  .hero-section {
    min-height: 900px;
  }

  .hero-content {
    max-width: 1100px;
    padding: 180px 0 70px;
  }

  .hero-title {
    font-size: 90px;
  }

  .hero-subtitle {
    max-width: 840px;
    font-size: 22px;
  }

  .trust-bar-inner {
    padding: 24px 40px;
    gap: 16px;
  }
}

@media screen and (min-width: 1400px) {

  .hero-slide img {
    object-fit: cover;
    object-position: center center;
  }

}

@media screen and (max-width: 1200px) {
  .hero-section {
    min-height: 760px;
  }

  .hero-inner {
    padding: 0 18px;
  }

  .hero-content {
    max-width: 820px;
    padding: 140px 0 46px;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px;
  }
	
	  .hero-slide img {
    object-position: center 35%;
  }
}

@media screen and (max-width: 900px) {

  .hero-section {
    min-height: 640px;
  }

  .hero-slide img {
    object-position: center 30%;
  }

}

@media screen and (max-width: 768px) {
   .hero-section {
    min-height: 620px;
  }

  .hero-slide img {
    object-position: center 25%;
  }

  .hero-inner {
    padding: 0 14px;
  }

  .hero-content {
    padding: 120px 0 34px;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-highlights li {
    width: 100%;
  }

  .hero-controls {
    right: 14px;
    bottom: 22px;
  }

  .hero-dots {
    left: 14px;
    bottom: 28px;
  }

  .trust-bar-inner {
    padding: 14px;
    gap: 10px;
  }
}

@media screen and (max-width: 480px) {
  .hero-section {
    min-height: 560px;
  }

  .hero-slide img {
    object-position: center 20%;
  }

  .hero-inner {
    padding: 0 12px;
  }

  .hero-content {
    padding: 110px 0 78px;
  }

  .hero-kicker {
    font-size: 11px;
    padding: 7px 12px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-control {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .trust-item {
    padding: 14px 12px;
  }

  .trust-sub {
    font-size: 14px;
  }
}

@media screen and (max-width: 300px) {
    .hero-section {
    min-height: 500px;
  }

  .hero-slide img {
    object-position: center 15%;
  }

  .hero-content {
    padding: 96px 0 74px;
  }

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

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.55;
  }
}