@charset "UTF-8";
/* Hero */
@import url("https://fonts.googleapis.com/css?family=Dosis:400,600,700,800");

.swiper-slide {
  box-sizing: border-box;
}

.swiper-container {
  width: 100%;
  overflow: hidden;
}

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

body {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  background: #000;
}

/* product */
@font-face {
  font-family: "Uni Sans";
  src: url("https://res.cloudinary.com/muhammederdem/raw/upload/v1536168547/unisans-font/UniSansHeavyCAPS.woff2") format("woff2"), url("https://res.cloudinary.com/muhammederdem/raw/upload/v1536168547/unisans-font/UniSansHeavyCAPS.woff") format("woff"), url("https://res.cloudinary.com/muhammederdem/raw/upload/v1536168548/unisans-font/UniSansHeavyCAPS.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Uni Sans";
  src: url("https://res.cloudinary.com/muhammederdem/raw/upload/v1536168545/unisans-font/UniSansThinCAPS.woff2") format("woff2"), url("https://res.cloudinary.com/muhammederdem/raw/upload/v1536168545/unisans-font/UniSansThinCAPS.woff") format("woff"), url("https://res.cloudinary.com/muhammederdem/raw/upload/v1536168548/unisans-font/UniSansThinCAPS.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

body,
html {
  font-family: "Uni Sans", sans-serif;
  font-weight: 500;
  background: #000;
  margin: 0;
  padding: 0;
}

.hidden {
  display: none !important;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/* Navbar */
.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.main-navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-logo {
  color: #fff;
  font-family: "Uni Sans", sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 4px;
  text-decoration: none;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-links {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar-links:hover {
  color: #cb2240;
}

.navbar-btn {
  background-image: linear-gradient(-45deg, rgb(204, 56, 67) 0%, rgb(203, 25, 63) 100%);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(204, 51, 66, 0.4);
  transition: transform 0.3s;
}

.navbar-btn:hover {
  transform: translateY(-2px);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.navbar-toggle .bar {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

@media screen and (max-width: 992px) {
  .navbar-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 50px;
    transition: 0.3s ease-in-out;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-toggle {
    display: flex;
    z-index: 1001;
  }
}

/* Top Hero Slider */
.top-hero-slider {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
  background: #000;
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 768px) {
  .top-hero-slider {
    height: 100vh;
  }
}

.top-hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.top-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.top-hero-content {
  position: relative;
  z-index: 10;
  color: #fff;
  padding: 0 20px;
}

.top-hero-welcome {
  font-size: 12px;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #d8b88d;
}

.top-hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  /* Mobile base */
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 577px) {
  .top-hero-title {
    font-size: 50px;
  }
}

@media screen and (min-width: 769px) {
  .top-hero-title {
    font-size: 70px;
  }
}

@media screen and (min-width: 993px) {
  .top-hero-title {
    font-size: 100px;
  }
}

.top-hero-subtitle {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.top-hero-btn {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #d8b88d;
  color: #d8b88d;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.top-hero-btn:hover {
  background: #d8b88d;
  color: #000;
}

.top-hero-prev,
.top-hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: none;
  /* Mobile base */
  justify-content: center;
  align-items: center;
  outline: none;
}

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

  .top-hero-prev,
  .top-hero-next {
    display: flex;
  }
}

.top-hero-prev {
  left: 40px;
}

.top-hero-next {
  right: 40px;
}

.diamond-border {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(216, 184, 141, 0.4);
  transform: rotate(45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.diamond-border svg {
  transform: rotate(-45deg);
  width: 24px;
  height: 24px;
  fill: rgba(216, 184, 141, 0.8);
  transition: all 0.3s ease;
}

.diamond-border:hover {
  border-color: #d8b88d;
}

.diamond-border:hover svg {
  fill: #d8b88d;
}

.wrapper {
  width: 100%;
  height: auto;
  min-height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
  display: flex;
}

.wrapper-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  /* Mobile base */
  height: auto;
  min-height: 100vh;
  width: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
  opacity: 0.6;
  /* Desktop */
}

@media screen and (min-width: 993px) {
  .wrapper-bg-video {
    height: auto;
    min-height: 100%;
  }
}

.content {
  z-index: 1;
  /* Mobile base */
  height: auto;
  min-height: 100vh;
  margin: 20px auto;
  width: 100%;
  max-width: 920px;
  display: flex;
  align-items: center;
  position: relative;
  /* Tablet */
}

@media screen and (min-width: 768px) {
  .content {
    margin-top: 100px;
  }
}

.content {
  /* Desktop */
}

@media screen and (min-width: 993px) {
  .content {
    height: 600px;
    min-height: auto;
    margin: auto;
  }
}

.content {
  /* Large Desktop */
}

@media screen and (min-width: 1201px) {
  .content {
    max-width: 1050px;
  }
}

.bg-shape {
  /* Mobile base */
  height: 200px;
  width: 95%;
  border-radius: 20px;
  padding: 30px;
  align-items: flex-start;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  display: flex;
  background-image: linear-gradient(-45deg, #cc3843 0%, #cb193f 100%);
  box-shadow: 0px 30px 139px 0px rgba(10, 22, 31, 0.26);
  /* Tablet */
}

@media screen and (min-width: 577px) {
  .bg-shape {
    height: 290px;
    padding: 30px;
  }
}

@media screen and (min-width: 768px) {
  .bg-shape {
    width: 90%;
    padding: 50px;
    border-radius: 30px;
  }
}

.bg-shape {
  /* Desktop */
}

@media screen and (min-width: 993px) {
  .bg-shape {
    height: 100%;
    width: 50%;
    /* was 45% on 1200, 50% on large */
    align-items: center;
    padding: 45px 40px;
    left: 0;
    transform: none;
  }
}

@media screen and (min-width: 1201px) {
  .bg-shape {
    width: 50%;
  }
}

.bg-shape .bg-text {
  /* Mobile base */
  font-size: 36px;
  line-height: 60px;
  padding-top: 30px;
  transform: none;
  position: relative;
  left: auto;
  top: auto;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  font-weight: 900;
  color: #fff;
  opacity: 0.2;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-family: "Uni Sans", sans-serif;
  /* Tablet */
}

@media screen and (min-width: 577px) {
  .bg-shape .bg-text {
    font-size: 50px;
    line-height: 290px;
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .bg-shape .bg-text {
    font-size: 70px;
  }
}

.bg-shape .bg-text {
  /* Desktop */
}

@media screen and (min-width: 993px) {
  .bg-shape .bg-text {
    font-size: 80px;
    transform: translate(-50%, -50%) rotate(-90deg);
    transform-origin: center center;
    position: absolute;
    left: 100px;
    top: 50%;
    margin: 0;
    line-height: 0.9;
    white-space: nowrap;
  }
}

@media screen and (min-width: 1201px) {
  .bg-shape .bg-text {
    font-size: 100px;
    left: 120px;
  }
}

.next,
.prev {
  z-index: 22;
  display: inline-flex;
  border: none;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  position: absolute;
  /* Mobile Base */
  top: 280px;
  outline: none;
  cursor: pointer;
}

.next.disabled,
.prev.disabled {
  cursor: not-allowed;
}

.next:focus,
.prev:focus {
  outline: none;
}

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

  .next,
  .prev {
    top: 50%;
  }
}

.prev {
  /* Mobile Base */
  left: 0;
  transform: translate(20%, -50%);
}

@media screen and (min-width: 577px) {
  .prev {
    transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 993px) {
  .prev {
    left: -15%;
    transform: translate(-100%, -50%);
  }
}

@media screen and (min-width: 1201px) {
  .prev {
    left: -20%;
  }
}

.next {
  /* Mobile Base */
  right: 0;
  transform: translate(-20%, -50%);
}

@media screen and (min-width: 577px) {
  .next {
    transform: translate(50%, -50%);
  }
}

.product-slider {
  /* Mobile Base */
  width: 85%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 28px 79px 0 rgba(10, 22, 31, 0.35);
  position: relative;
  top: 0;
  margin-top: 130px;
  margin-bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}

.product-slider br {
  display: none;
}

@media screen and (min-width: 577px) {
  .product-slider {
    width: 80%;
    margin-top: 170px;
  }
}

@media screen and (min-width: 768px) {
  .product-slider {
    border-radius: 30px;
  }
}

@media screen and (min-width: 993px) {
  .product-slider {
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    transform: translateY(-50%);
    height: 85%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .product-slider br {
    display: block;
  }
}

@media screen and (min-width: 1201px) {
  .product-slider {
    width: 75%;
  }
}

.product-slider__wrp {
  height: 100%;
}

.product-slider__item {
  position: relative;
  /* Mobile Base */
  height: auto;
  width: 100%;
}

@media screen and (min-width: 993px) {
  .product-slider__item {
    height: 100%;
  }
}

.product-slider__item.swiper-slide-active .product-slider__content>* {
  opacity: 1;
  transform: none;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(1) {
  transition-delay: 0s;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(2) {
  transition-delay: 0.2s;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(3) {
  transition-delay: 0.4s;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(4) {
  transition-delay: 0.6s;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(5) {
  transition-delay: 0.8s;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(6) {
  transition-delay: 1s;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(7) {
  transition-delay: 1.2s;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(8) {
  transition-delay: 1.4s;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(9) {
  transition-delay: 1.6s;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(10) {
  transition-delay: 1.8s;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(11) {
  transition-delay: 2s;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(12) {
  transition-delay: 2.2s;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(13) {
  transition-delay: 2.4s;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(14) {
  transition-delay: 2.6s;
}

.product-slider__item.swiper-slide-active .product-slider__content>*:nth-child(15) {
  transition-delay: 2.8s;
}

.product-slider__item.swiper-slide-active circle {
  animation: progress 1s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0.75;
}

.product-slider__card {
  /* Mobile Base */
  height: 100%;
  display: flex;
  align-items: flex-start;
  width: 100%;
  transition: all 0.5s;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  background: rgba(12, 30, 44, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

@media screen and (min-width: 768px) {
  .product-slider__card {
    border-radius: 30px;
  }
}

@media screen and (min-width: 993px) {
  .product-slider__card {
    align-items: center;
  }
}

.product-slider__cover {
  /* Mobile Base */
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .product-slider__cover {
    border-radius: 30px;
  }
}

.product-slider__content {
  color: #fff;
  position: relative;
  z-index: 2;
  width: 100%;
  /* Mobile Base */
  padding-top: 320px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 50px;
  text-align: center;
}

@media screen and (min-width: 577px) {
  .product-slider__content {
    padding: 20px 30px 50px;
    padding-top: 300px;
  }
}

@media screen and (min-width: 768px) {
  .product-slider__content {
    padding: 20px 60px 100px;
    padding-top: 280px;
  }
}

@media screen and (min-width: 993px) {
  .product-slider__content {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 45%;
    padding-right: 5%;
    text-align: left;
  }
}

@media screen and (min-width: 1201px) {
  .product-slider__content {
    padding-left: 50%;
  }
}

.product-slider__title {
  margin: 0;
  margin-bottom: 10px;
  font-weight: 900;
  /* Mobile Base */
  font-size: 24px;
  line-height: 1.2em;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(55px);
  transition: all 0.5s;
}

@media screen and (min-width: 577px) {
  .product-slider__title {
    font-size: 34px;
  }
}

@media screen and (min-width: 1201px) {
  .product-slider__title {
    font-size: 41px;
  }
}

.product-slider__price {
  display: block;
  /* Mobile Base */
  font-size: 30px;
  opacity: 0;
  transform: translateY(55px);
  transition: all 0.5s;
}

@media screen and (min-width: 577px) {
  .product-slider__price {
    font-size: 36px;
  }
}

@media screen and (min-width: 1201px) {
  .product-slider__price {
    font-size: 42px;
  }
}

.product-slider__price sup {
  top: -20px;
  font-size: 65%;
}

.product-slider__cart {
  box-shadow: 0 7px 99px 0 rgba(204, 51, 66, 0.6);
  background-image: linear-gradient(-45deg, rgb(204, 56, 67) 0%, rgb(203, 25, 63) 100%);
  border: none;
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  min-height: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  /* Mobile Base */
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

@media screen and (min-width: 577px) {
  .product-slider__cart {
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 30px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 769px) {
  .product-slider__cart {
    margin-right: 40px;
  }
}

.product-slider__fav {
  color: #888e94;
  background: none;
  border: none;
  position: relative;
  padding-left: 25px;
  outline: none;
  cursor: pointer;
}

.product-slider__fav:focus {
  outline: none;
}

.product-slider__fav .heart {
  display: block;
  position: absolute;
  left: 0;
  transform: translate(-50%, -50%) scale(0.7);
  top: 50%;
  pointer-events: none;
  width: 100px;
  height: 100px;
  background: url("https://res.cloudinary.com/muhammederdem/image/upload/v1536405215/starwars/heart.png") no-repeat;
  background-position: 0 0;
  cursor: pointer;
  transition: background-position 1s steps(28);
  transition-duration: 0s;
}

.product-slider__fav .heart.is-active {
  transition-duration: 1s;
  background-position: -2800px 0;
}

.product-slider__bottom {
  margin-top: 50px;
  opacity: 0;
  transform: translateY(55px);
  transition: all 0.5s;
}

.product-ctr {
  display: flex;
  align-items: center;
  min-height: 150px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(55px);
  transition: all 0.5s;
  /* Mobile Base */
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .product-ctr {
    flex-wrap: nowrap;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 993px) {
  .product-ctr {
    justify-content: flex-start;
  }
}

.product-ctr .hr-vertical {
  background: #9fa3a7;
  flex-shrink: 0;
  opacity: 0.5;
  /* Mobile Base */
  width: 100%;
  margin: 35px 0;
  height: 1px;
  align-self: auto;
}

@media screen and (min-width: 768px) {
  .product-ctr .hr-vertical {
    width: 1px;
    align-self: stretch;
    margin: 0 35px;
    height: auto;
  }
}

.product-labels {
  /* Mobile Base */
  width: 100%;
}

@media screen and (min-width: 768px) {
  .product-labels {
    width: auto;
  }
}

.product-labels__checkbox {
  display: none;
}

.product-labels__checkbox:checked+.product-labels__txt {
  border-color: #cc3743;
  padding: 10px 13px;
}

.product-labels__title {
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 10px;
}

.product-labels__group {
  display: flex;
  margin-bottom: 15px;
  /* Mobile Base */
  justify-content: center;
}

@media screen and (min-width: 993px) {
  .product-labels__group {
    justify-content: flex-start;
  }
}

.product-labels__group:last-child {
  margin-bottom: 0;
}

.product-labels__item {
  margin: 5px;
  cursor: pointer;
}

.product-labels__item:first-child {
  margin-left: 0;
}

.product-labels__txt {
  display: block;
  border: 2px solid transparent;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.3s;
  letter-spacing: 2px;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.product-inf {
  text-align: center;
  /* Mobile Base */
  width: 100%;
}

@media screen and (min-width: 768px) {
  .product-inf {
    width: auto;
  }
}

.product-inf__percent {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: "Dosis", sans-serif;
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
}

.product-inf__percent circle {
  transform: rotate(180deg) scaleY(-1);
  transform-origin: 50%;
}

.product-inf__percent-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-inf__title {
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 18px;
}

.product-img {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  /* Mobile Base */
  width: 100%;
  max-width: 300px;
  height: 300px;
  left: 50%;
  transform: translateX(-50%);
  top: 220px;
}

@media screen and (min-width: 577px) {
  .product-img {
    max-width: 400px;
    height: 390px;
  }
}

@media screen and (min-width: 768px) {
  .product-img {
    width: 430px;
    max-width: none;
    top: 0;
    height: 350px;
  }
}

@media screen and (min-width: 993px) {
  .product-img {
    left: 20%;
    transform: translateX(-45%);
    height: 100%;
    max-height: 500px;
  }
}

@media screen and (min-width: 1201px) {
  .product-img {
    width: 500px;
    left: 25%;
  }
}

.product-img__item {
  display: flex;
  align-items: center;
  position: absolute;
  pointer-events: none;
  user-select: none;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(-130px);
  opacity: 0;
  transition: all 0.3s;
}

.product-img__item.active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  transition-delay: 0.3s;
}

.product-img__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
}

.story-wrapper {
  /* Mobile Base */
  height: auto;
  padding: 50px 20px;
}

@media screen and (min-width: 769px) {
  .story-wrapper {
    padding: 80px 40px;
  }
}

@media screen and (min-width: 993px) {
  .story-wrapper {
    padding: 100px 0;
  }
}

.story-wrapper .story-content {
  /* Mobile Base */
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
}

.story-wrapper .story-card-glass {
  /* Mobile Base */
  width: 100%;
  opacity: 1;
  transform: none;
  padding: 30px 20px;
  display: block;
  height: auto;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  box-shadow: none;
}

@media screen and (min-width: 769px) {
  .story-wrapper .story-card-glass {
    padding: 50px 40px;
  }
}

@media screen and (min-width: 993px) {
  .story-wrapper .story-card-glass {
    padding: 60px;
  }
}

.story-wrapper .story-text-content {
  /* Mobile Base */
  padding: 0;
  text-align: center;
}

.story-wrapper .story-title {
  /* Mobile Base */
  transform: none;
  opacity: 1;
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 900;
}

@media screen and (min-width: 769px) {
  .story-wrapper .story-title {
    font-size: 50px;
    margin-bottom: 30px;
  }
}

.story-wrapper .story-description {
  /* Mobile Base */
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  font-weight: 400;
  text-transform: none;
}

@media screen and (min-width: 769px) {
  .story-wrapper .story-description {
    font-size: 18px;
    line-height: 1.8;
  }
}

@media screen and (min-width: 993px) {
  .story-wrapper .story-description {
    font-size: 20px;
  }
}

.story-wrapper .story-description p {
  margin-bottom: 20px;
}

.story-wrapper .story-description p:last-child {
  margin-bottom: 0;
}

.social {
  position: absolute;
  /* Mobile Base */
  bottom: 0;
  right: 0;
  width: 100%;
  display: flex;
  padding: 20px 55px;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 577px) {
  .social {
    bottom: 10px;
    flex-direction: row;
  }
}

.social__item {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1em;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  /* Mobile Base */
  margin-bottom: 10px;
}

@media screen and (min-width: 577px) {
  .social__item {
    margin-bottom: 0;
  }
}

.social__item:hover {
  color: #fff;
}

.social__img {
  width: 24px;
  margin-right: 15px;
}

/* Stats Section */
.stats-section {
  background: #000;
  padding: 60px 20px;
  font-family: "Uni Sans", sans-serif;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* Mobile Base */
  flex-direction: column;
  gap: 40px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .stats-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.stat-item {
  text-align: center;
}

.stat-title {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.stat-subtitle {
  color: #ff0000;
  font-size: 14px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Trending Section */
.trending-section {
  background: #0b0b0b;
  /* Mobile Base */
  height: auto;
  position: relative;
  color: #fff;
  font-family: "Uni Sans", sans-serif;
}

.trending-sticky {
  /* Mobile Base */
  position: relative;
  top: 0;
  height: auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

@media screen and (min-width: 993px) {
  .trending-section {
    height: 300vh;
  }

  .trending-sticky {
    position: sticky;
    height: 100vh;
    flex-direction: row;
    align-items: center;
    padding: 0 5%;
  }
}

.trending-left {
  /* Mobile Base */
  flex: 0 0 auto;
  margin-bottom: 40px;
  z-index: 10;
}

@media screen and (min-width: 993px) {
  .trending-left {
    flex: 0 0 30%;
    margin-bottom: 0;
  }
}

.trending-left h2 {
  /* Mobile Base */
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .trending-left h2 {
    font-size: 60px;
  }
}

.view-all-btn {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
}

.trending-right {
  /* Mobile Base */
  flex: 1;
  position: relative;
  margin-left: 0;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.trending-right::-webkit-scrollbar {
  display: none;
}

@media screen and (min-width: 993px) {
  .trending-right {
    margin-left: 5%;
  }
}

.trending-cards {
  display: flex;
  gap: 30px;
  will-change: transform;
  /* Mobile Base */
  transform: none;
}

@media screen and (min-width: 993px) {
  .trending-cards {
    transform: translateX(100px);
  }
}

.trending-card {
  /* Mobile Base */
  width: 280px;
  flex-shrink: 0;
  text-align: center;
  scroll-snap-align: start;
}

@media screen and (min-width: 769px) {
  .trending-card {
    width: 350px;
  }
}

.trending-card-img {
  background: #f5f5f5;
  border-radius: 20px;
  /* Mobile Base */
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

@media screen and (min-width: 769px) {
  .trending-card-img {
    height: 350px;
  }
}

.trending-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.trending-card-title {
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trending-card-price {
  color: #888;
  font-size: 16px;
  margin-top: 10px;
  font-family: "Roboto", sans-serif;
}

/* Stories Section */
.stories-section {
  background: #111;
  color: #fff;
  /* Mobile Base */
  padding: 60px 0;
  font-family: "Uni Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

.stories-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.stories-header h2 {
  /* Mobile Base */
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .stories-header h2 {
    font-size: 50px;
  }
}

.stories-header p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #aaa;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.stories-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  /* Mobile Base */
  padding: 0 20px;
}

@media screen and (min-width: 769px) {
  .stories-slider-container {
    padding: 0 60px;
  }
}

.stories-slider {
  width: 100%;
  overflow: hidden;
  /* padding to show shadow if needed */
  padding: 20px 0;
}

.story-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.story-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.story-card:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;
  z-index: 1;
}

.story-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  z-index: 2;
  font-family: "Roboto", sans-serif;
}

.story-card-title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  font-size: 28px;
  font-weight: 900;
  z-index: 2;
  line-height: 1.2;
  margin: 0;
}

.stories-prev,
.stories-next {
  background-image: none !important;
  background-color: #fff !important;
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  margin-top: -25px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  outline: none;
}

.stories-prev {
  left: 0 !important;
}

.stories-next {
  right: 0 !important;
}

.stories-prev::before {
  content: "<";
  color: #000;
  font-size: 24px;
  font-weight: bold;
  font-family: monospace;
}

.stories-next::before {
  content: ">";
  color: #000;
  font-size: 24px;
  font-weight: bold;
  font-family: monospace;
}

/* Legacy Section */
.legacy-section {
  position: relative;
  background: url("../images/legacy_bg.png") center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: "Uni Sans", sans-serif;
  /* Mobile Base */
  padding: 60px 20px;
  min-height: auto;
}

@media screen and (min-width: 769px) {
  .legacy-section {
    min-height: 50vh;
  }
}

.legacy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.legacy-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.legacy-content h2 {
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 2px;
  /* Mobile Base */
  font-size: 40px;
}

@media screen and (min-width: 769px) {
  .legacy-content h2 {
    font-size: 60px;
  }
}

.legacy-content p {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #ddd;
  /* Mobile Base */
  font-size: 16px;
}

@media screen and (min-width: 769px) {
  .legacy-content p {
    font-size: 18px;
  }
}

/* Gear Section */
.gear-section {
  position: relative;
  background: url("../images/gear_bg_1777317632782.png") center center no-repeat;
  background-size: cover;
  font-family: "Uni Sans", sans-serif;
  color: #fff;
  /* Mobile Base */
  padding: 60px 20px;
  min-height: auto;
}

@media screen and (min-width: 769px) {
  .gear-section {
    padding: 100px 5%;
  }
}

.gear-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.gear-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.gear-title {
  text-align: center;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-transform: uppercase;
  /* Mobile Base */
  font-size: 36px;
}

@media screen and (min-width: 769px) {
  .gear-title {
    font-size: 60px;
  }
}

.gear-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  /* Mobile Base */
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 769px) {
  .gear-tabs {
    flex-wrap: nowrap;
  }
}

.gear-sub-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.gear-tab {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  padding: 10px 25px;
  border-radius: 30px;
  transition: 0.3s;
}

.gear-tab.active,
.gear-tab:hover {
  background: rgba(255, 255, 255, 0.3);
}

.gear-sub-tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.gear-sub-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.gear-sub-tab.active {
  background: linear-gradient(-45deg, rgb(204, 56, 67) 0%, rgb(203, 25, 63) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(204, 51, 66, 0.4);
}

.gear-grid {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Firefox */
}

.gear-grid::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.gear-card {
  background: transparent;
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .gear-card {
    width: 350px;
  }
}

.gear-card-img {
  background: #e8e8e8;
  border-radius: 30px;
  padding: 20px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.gear-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.3));
}

.gear-card-content h3 {
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gear-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Roboto", sans-serif;
}

.gear-card-features {
  font-size: 14px;
  color: #aaa;
}

.gear-card-link {
  font-size: 14px;
  color: #888;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.gear-card-link:hover {
  color: #fff;
}

/* Footer Section */
.krome-footer-minimal {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.minimal-footer-logo {
  font-family: "Uni Sans", sans-serif;
  font-size: 40px;
  /* Mobile base */
  font-weight: 900;
  letter-spacing: 5px;
  margin: 0 0 30px 0;
  color: #fff;
  text-transform: uppercase;
}

@media screen and (min-width: 577px) {
  .minimal-footer-logo {
    font-size: 60px;
    letter-spacing: 10px;
  }
}

@media screen and (min-width: 768px) {
  .minimal-footer-logo {
    font-size: 80px;
    letter-spacing: 15px;
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 1200px) {
  .minimal-footer-logo {
    font-size: 110px;
    letter-spacing: 25px;
  }
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .footer-contact-info {
    flex-direction: row;
    gap: 80px;
  }
}

.footer-contact-block h4 {
  font-family: "Uni Sans", sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
  color: #fff;
  text-transform: uppercase;
}

.footer-contact-block p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #888;
  margin: 0;
}

.footer-contact-block p a {
  color: #888;
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact-block p a:hover {
  color: #fff;
}

.minimal-footer-copy {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  /* Mobile base */
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .minimal-footer-copy {
    font-size: 12px;
    letter-spacing: 5px;
  }
}

@media screen and (min-width: 1200px) {
  .minimal-footer-copy {
    font-size: 14px;
    letter-spacing: 8px;
  }
}

/* 9.5 CONTACT SECTION */
.contact-section {
  padding: 80px 20px;
  background: #000;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-45deg, rgba(204, 56, 67, 0.1) 0%, rgba(203, 25, 63, 0.05) 100%);
  pointer-events: none;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  padding: 50px;
  border-radius: 30px;
  background: rgba(12, 30, 44, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 30px 100px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 993px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.contact-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
}

.contact-subtitle {
  color: #888;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(204, 51, 66, 0.1);
  border: 1px solid rgba(204, 51, 66, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cb193f;
  transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-icon {
  background: #cb193f;
  color: #fff;
  transform: scale(1.1);
}

.contact-detail-item h4 {
  color: #fff;
  font-family: "Dosis", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-size: 14px;
}

.contact-detail-item p,
.contact-detail-item a {
  color: #888;
  font-size: 16px;
  transition: color 0.3s;
}

.contact-detail-item a:hover {
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  width: 100%;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: #cb193f;
  box-shadow: 0 0 15px rgba(204, 51, 66, 0.3);
  background: rgba(0, 0, 0, 0.8);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  background-size: 12px auto;
}

select.form-control option {
  background: #080808;
  color: #fff;
}

.contact-submit-btn {
  margin: 10px 0 0 0;
  width: 100%;
  max-width: 100%;
}

/* 10. PRODUCT MODAL SYSTEM */
.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3000;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: rgba(12, 30, 44, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 30px 100px rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #FF0000;
}

.modal-img-container {
  height: 400px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
}

.modal-img-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-info h2 {
  font-size: 2.5rem;
  margin: 0 0 20px 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
}

.modal-info .category {
  color: #FF0000;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-bottom: 30px;
  display: block;
}

.modal-info .description {
  color: #888;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.modal-info .specs {
  border-top: 1px solid #1a1a1a;
  padding-top: 30px;
}

.modal-info .specs h4 {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 15px;
}

.modal-info .specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.modal-info .specs li {
  font-size: 0.8rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-info .specs li::before {
  content: "✓";
  color: #FF0000;
  font-weight: 900;
}

.modal-btn {
  box-shadow: 0 7px 99px 0 rgba(204, 51, 66, 0.6);
  background-image: linear-gradient(-45deg, rgb(204, 56, 67) 0%, rgb(203, 25, 63) 100%);
  border: none;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  margin-top: 40px;
  transition: opacity 0.3s;
}

.modal-btn:hover {
  opacity: 0.8;
}

@media (max-width: 800px) {
  .modal-content {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 30px;
  }

  .modal-img-container {
    height: 300px;
  }

  .modal-info h2 {
    font-size: 1.8rem;
  }
}

/* Fixes for Contact Section */
.story-card-glass {
  background: rgba(12, 30, 44, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 30px 100px rgba(0, 0, 0, 0.5);
  border-radius: 30px;
}

.contact-detail-item a {
  color: #888 !important;
  text-decoration: none !important;
}

.contact-detail-item a:hover {
  color: #fff !important;
}

.form-control {
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #fff !important;
}

select.form-control {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

textarea.form-control {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

/* About Section Styles */
.about-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Roboto', sans-serif;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-main-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 50px;
  letter-spacing: 2px;
}
.about-subtitle {
  color: #555;
}
.about-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  gap: 30px;
}
.about-heading-col {
  flex: 1;
  min-width: 250px;
}
.about-content-col {
  flex: 2;
  min-width: 300px;
}
.about-content-col p {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.about-red-heading {
  color: #e60000;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-divider {
  border: 0;
  height: 1px;
  background-color: #222;
  margin: 50px 0;
}
.about-large-text {
  font-size: 1.3rem !important;
  color: #ddd !important;
  line-height: 1.6;
}
.about-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.about-grid-item {
  padding: 20px;
  border-top: 1px solid #222;
}
.about-grid-item.about-dark-card {
  background-color: #111;
  border-top: none;
}
.about-red-line {
  width: 40px;
  height: 3px;
  background-color: #e60000;
  margin-bottom: 20px;
}
.about-grid-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.about-grid-item p {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.6;
}
.about-sub-main {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.about-framework-sub {
  color: #aaa;
  font-size: 1.1rem;
}
.about-framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.framework-card {
  background-color: #111;
  padding: 30px 20px;
  position: relative;
  transition: transform 0.3s ease;
}
.framework-card:hover {
  transform: translateY(-5px);
}
.framework-num {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
}
.framework-card h4 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.framework-card p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
}
.about-mission-vision {
  gap: 50px;
}
.about-half {
  flex: 1;
  min-width: 300px;
  display: flex;
  gap: 20px;
}
.about-red-line-vert {
  width: 3px;
  background-color: #e60000;
}
.about-half p {
  color: #aaa;
  line-height: 1.8;
}
.about-footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}
.about-footer-text {
  flex: 1;
  min-width: 300px;
}
.about-footer-text h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.about-red-subtitle {
  color: #e60000;
  font-size: 1.2rem;
  letter-spacing: 1px;
  line-height: 1.4;
}
.about-footer-img {
  flex: 1;
  min-width: 300px;
}
@media (max-width: 768px) {
  .about-main-title {
    font-size: 2rem;
  }
  .about-footer-text h2 {
    font-size: 2rem;
  }
  .about-row {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */