:root {
  --primary-blue: #0f1b4c;
  --accent-blue: #1251c5;
  --luxury-gold: #d4a574;
  --deep-navy: #0a1429;
  --pure-white: #ffffff;
  --soft-grey: #f8f9fa;
  --medium-grey: #6c757d;
  --dark-grey: #2c3e50;
  --premium-red: #c5282f;
  --success-green: #28a745;
  --shadow-light: rgba(15, 27, 76, 0.08);
  --shadow-medium: rgba(15, 27, 76, 0.15);
  --shadow-heavy: rgba(15, 27, 76, 0.25);
  --gradient-primary: linear-gradient(
    135deg,
    #0f1b4c 0%,
    #1251c5 50%,
    #2563eb 100%
  );
  --gradient-luxury: linear-gradient(
    135deg,
    #166488ff 0%,
    #ffffffff 50%,
    #680000ff 100%
  );
  --gradient-overlay: ;
}

html {
  scroll-behavior: smooth;
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(
      135deg,
      #166488ff 0%,
      rgb(65, 55, 55) 50%,
      #680000ff 100%
    ),
    url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  padding: 0 40px;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(
    135deg,
    #166488ff 0%,
    #ffffffff 50%,
    #680000ff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(
    135deg,
    #166488ff 0%,
    rgba(104, 95, 95, 0.486) 50%,
    #680000ff 100%
  );
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(90, 73, 54, 0.3);
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #c0dbe0;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.section-title {

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f1b4c;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    135deg,
    #166488ff 0%,
    rgba(104, 95, 95, 0.486) 50%,
    #680000ff 100%
  );
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  font-weight: 300;
  line-height: 1.7;
}

.products-section {
  padding: 120px 0;
  background: #f8f9fa;
  position: relative;
}

.products-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.product-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(15, 27, 76, 0.08);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 480px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    #166488ff 0%,
    rgba(104, 95, 95, 0.486) 50%,
    #680000ff 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(15, 27, 76, 0.15);
}

.product-card:hover::before {
  opacity: 0.03;
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: hidden; 
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-image img {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
}

.product-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
  z-index: 2;
}

.product-title {

  font-size: 1.5rem;
  font-weight: 600;
  color: #0f1b4c;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: #1251c5;
}

.product-description {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 25px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-description {
  opacity: 1;
  transform: translateY(0);
}

.product-btn {
  align-self: center;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid #c5282f;
  color: #c5282f;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.product-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #c5282f;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.product-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 40, 47, 0.3);
}

.product-btn:hover::before {
  left: 0;
}
.stats-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f1b4c 0%, #470205 50%, #03465a 100%);
  color: #ffffff;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.stat-item {
  padding: 30px 20px;
}

.stat-number {

  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
    min-height: 600px;
  }

  .container {
    padding: 0 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-card {
    height: 490px;
  }
  .product-description {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .section-header {
    margin-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 20px;
  }

  .products-section {
    padding: 80px 0;
  }

  .stats-section {
    padding: 80px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

[data-aos="luxury-fade-up"] {
  transform: translate3d(0, 40px, 0);
  opacity: 0;
}

[data-aos="luxury-fade-up"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-aos="luxury-zoom"] {
  transform: scale(0.8);
  opacity: 0;
}

[data-aos="luxury-zoom"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

[data-aos="luxury-slide-right"] {
  transform: translate3d(-60px, 0, 0);
  opacity: 0;
}

[data-aos="luxury-slide-right"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  text-align: center;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  opacity: 0.8;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: #ffffff;
  margin: 0 auto;
  position: relative;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
