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

:root {
  --primary-gold: #d4af37;
  --dark-gold: #b8941f;
  --light-gold: #f5e6a3;
  --dark-bg: #1a1a1a;
  --darker-bg: #0f0f0f;
  --text-light: #ffffff;
  --text-gray: #cccccc;
  --accent-blue: #4a90e2;
  --accent-purple: #8e44ad;
  --gradient-primary: linear-gradient(135deg, #d4af37, #b8941f);
  --gradient-dark: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
  --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.href-decoration {
  text-decoration: none;
  color: var(--primary-gold);
  transition: color 0.3s ease;
}
.href-decoration:hover {
  color: var(--dark-gold);
}
body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--dark-bg);
  overflow-x: hidden;
}

/* Skip to content link for accessibility */
.skip-to-content {
  position: absolute;
  top: -80px;
  left: 6px;
  background: var(--primary-gold);
  color: var(--dark-bg);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 6px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon,
.logo-icon img {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.2rem;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.logo-subtitle {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-style: italic;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary-gold);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  background: transparent;
  border: none;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  z-index: -1;
}

/* Gold Dust Animation */
.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      rgba(212, 175, 55, 0.8),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, rgba(212, 175, 55, 0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.9), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(212, 175, 55, 0.7), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255, 215, 0, 0.6), transparent),
    radial-gradient(1px 1px at 200px 90px, rgba(212, 175, 55, 0.8), transparent),
    radial-gradient(2px 2px at 240px 50px, rgba(255, 215, 0, 0.5), transparent),
    radial-gradient(1px 1px at 280px 20px, rgba(212, 175, 55, 0.6), transparent),
    radial-gradient(1px 1px at 320px 70px, rgba(255, 215, 0, 0.7), transparent),
    radial-gradient(2px 2px at 360px 40px, rgba(212, 175, 55, 0.5), transparent),
    radial-gradient(1px 1px at 400px 80px, rgba(255, 215, 0, 0.8), transparent),
    radial-gradient(2px 2px at 440px 30px, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(1px 1px at 480px 60px, rgba(255, 215, 0, 0.6), transparent),
    radial-gradient(2px 2px at 520px 90px, rgba(212, 175, 55, 0.7), transparent),
    radial-gradient(1px 1px at 560px 20px, rgba(255, 215, 0, 0.5), transparent),
    radial-gradient(2px 2px at 600px 70px, rgba(212, 175, 55, 0.6), transparent),
    radial-gradient(1px 1px at 640px 40px, rgba(255, 215, 0, 0.8), transparent),
    radial-gradient(2px 2px at 680px 80px, rgba(212, 175, 55, 0.5), transparent),
    radial-gradient(1px 1px at 720px 30px, rgba(255, 215, 0, 0.7), transparent),
    radial-gradient(2px 2px at 760px 60px, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(1px 1px at 800px 90px, rgba(255, 215, 0, 0.6), transparent),
    radial-gradient(2px 2px at 840px 20px, rgba(212, 175, 55, 0.8), transparent),
    radial-gradient(1px 1px at 880px 50px, rgba(255, 215, 0, 0.5), transparent),
    radial-gradient(2px 2px at 920px 80px, rgba(212, 175, 55, 0.7), transparent),
    radial-gradient(1px 1px at 960px 40px, rgba(255, 215, 0, 0.6), transparent),
    radial-gradient(
      2px 2px at 1000px 70px,
      rgba(212, 175, 55, 0.5),
      transparent
    ),
    radial-gradient(1px 1px at 1040px 30px, rgba(255, 215, 0, 0.8), transparent),
    radial-gradient(
      2px 2px at 1080px 60px,
      rgba(212, 175, 55, 0.4),
      transparent
    ),
    radial-gradient(1px 1px at 1120px 90px, rgba(255, 215, 0, 0.7), transparent),
    radial-gradient(
      2px 2px at 1160px 20px,
      rgba(212, 175, 55, 0.6),
      transparent
    );
  background-repeat: repeat;
  background-size: 1200px 100px;
  animation: goldDustFloat 25s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      1px 1px at 30px 60px,
      rgba(255, 223, 0, 0.7),
      transparent
    ),
    radial-gradient(2px 2px at 70px 20px, rgba(212, 175, 55, 0.5), transparent),
    radial-gradient(1px 1px at 110px 90px, rgba(255, 223, 0, 0.8), transparent),
    radial-gradient(2px 2px at 150px 50px, rgba(212, 175, 55, 0.6), transparent),
    radial-gradient(1px 1px at 190px 10px, rgba(255, 223, 0, 0.4), transparent),
    radial-gradient(2px 2px at 230px 80px, rgba(212, 175, 55, 0.7), transparent),
    radial-gradient(1px 1px at 270px 40px, rgba(255, 223, 0, 0.6), transparent),
    radial-gradient(
      2px 2px at 310px 100px,
      rgba(212, 175, 55, 0.5),
      transparent
    ),
    radial-gradient(1px 1px at 350px 60px, rgba(255, 223, 0, 0.8), transparent),
    radial-gradient(2px 2px at 390px 25px, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(1px 1px at 430px 85px, rgba(255, 223, 0, 0.7), transparent),
    radial-gradient(2px 2px at 470px 45px, rgba(212, 175, 55, 0.6), transparent),
    radial-gradient(1px 1px at 510px 15px, rgba(255, 223, 0, 0.5), transparent),
    radial-gradient(2px 2px at 550px 75px, rgba(212, 175, 55, 0.8), transparent),
    radial-gradient(1px 1px at 590px 35px, rgba(255, 223, 0, 0.6), transparent),
    radial-gradient(2px 2px at 630px 95px, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(1px 1px at 670px 55px, rgba(255, 223, 0, 0.7), transparent),
    radial-gradient(2px 2px at 710px 18px, rgba(212, 175, 55, 0.5), transparent),
    radial-gradient(1px 1px at 750px 78px, rgba(255, 223, 0, 0.8), transparent),
    radial-gradient(2px 2px at 790px 38px, rgba(212, 175, 55, 0.6), transparent),
    radial-gradient(1px 1px at 830px 98px, rgba(255, 223, 0, 0.4), transparent),
    radial-gradient(2px 2px at 870px 58px, rgba(212, 175, 55, 0.7), transparent),
    radial-gradient(1px 1px at 910px 22px, rgba(255, 223, 0, 0.6), transparent),
    radial-gradient(2px 2px at 950px 82px, rgba(212, 175, 55, 0.5), transparent),
    radial-gradient(1px 1px at 990px 42px, rgba(255, 223, 0, 0.8), transparent),
    radial-gradient(
      2px 2px at 1030px 105px,
      rgba(212, 175, 55, 0.4),
      transparent
    ),
    radial-gradient(1px 1px at 1070px 65px, rgba(255, 223, 0, 0.7), transparent),
    radial-gradient(
      2px 2px at 1110px 28px,
      rgba(212, 175, 55, 0.6),
      transparent
    ),
    radial-gradient(1px 1px at 1150px 88px, rgba(255, 223, 0, 0.5), transparent),
    radial-gradient(
      2px 2px at 1190px 48px,
      rgba(212, 175, 55, 0.8),
      transparent
    );
  background-repeat: repeat;
  background-size: 1200px 110px;
  animation: goldDustFloat2 30s linear infinite reverse;
  z-index: 2;
  pointer-events: none;
}

@keyframes goldDustFloat {
  0% {
    transform: translateX(-100px) translateY(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(100vw) translateY(-20px);
    opacity: 0;
  }
}

@keyframes goldDustFloat2 {
  0% {
    transform: translateX(100px) translateY(10px);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(-100vw) translateY(-30px);
    opacity: 0;
  }
}

/* Additional floating particles for more depth */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      3px 3px at 25% 25%,
      rgba(255, 215, 0, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 75% 75%, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(1px 1px at 45% 15%, rgba(255, 215, 0, 0.5), transparent),
    radial-gradient(4px 4px at 85% 35%, rgba(212, 175, 55, 0.2), transparent),
    radial-gradient(2px 2px at 15% 85%, rgba(255, 215, 0, 0.6), transparent),
    radial-gradient(3px 3px at 65% 55%, rgba(212, 175, 55, 0.3), transparent),
    radial-gradient(1px 1px at 35% 95%, rgba(255, 215, 0, 0.4), transparent),
    radial-gradient(2px 2px at 95% 65%, rgba(212, 175, 55, 0.5), transparent);
  animation: slowFloat 40s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes slowFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
    opacity: 1;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 100px;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.title-part1 {
  display: block;
  color: var(--text-light);
}

.title-part2 {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  letter-spacing: 2px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  background: var(--gradient-primary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.feature-text h3 {
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-text p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Product Showcase */
.product-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
  position: relative;
}

.product-tube {
  width: 400px;
  height: 500px;
  position: relative;
  transform: rotate(-15deg);
  filter: drop-shadow(0 15px 40px rgba(212, 175, 55, 0.6));
  animation: float 3s ease-in-out infinite;
  background-image: url("../img/material/cream.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@keyframes float {
  0%,
  100% {
    transform: rotate(-15deg) translateY(0px);
  }
  50% {
    transform: rotate(-15deg) translateY(-10px);
  }
}

.tube-body {
  display: none;
}

.tube-cap {
  display: none;
}

.tube-label {
  display: none;
}

.label-text {
  display: none;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--darker-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(350px, 1fr));
  gap: 3rem;
}

.about-card {
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-gold);
}

.about-card h3 {
  color: var(--primary-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-card p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.card-content p {
  color: var(--text-light);
  font-weight: 500;
  font-size: 1rem;
}

/* Product Details */
.product-details {
  padding: 100px 0;
  background: var(--dark-bg);
}

.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-showcase-large {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 700px;
}

.product-tube-large {
  width: 450px;
  height: 550px;
  position: relative;
  transform: rotate(-10deg);
  filter: drop-shadow(0 25px 50px rgba(212, 175, 55, 0.5));
  animation: float 4s ease-in-out infinite;
  background-image: url("../img/material/cream.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.tube-body-large {
  display: none;
}

.tube-cap-large {
  display: none;
}

.tube-label-large {
  display: none;
}

.label-text-large {
  display: none;
}

.product-info {
  padding: 2rem 0;
}

.product-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-gray);
}

.product-text strong {
  color: var(--primary-gold);
}

.product-benefits {
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.product-benefits h3 {
  color: var(--primary-gold);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.product-benefits ul {
  list-style: none;
}

.product-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-light);
}

.product-benefits li i {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

/* Statistics Section */
.statistics {
  padding: 100px 0;
  background: var(--darker-bg);
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1.2rem;
  margin-top: 1rem;
}

.stats-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.platform-stats {
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.platform-logo {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

.wb-logo {
  background: linear-gradient(145deg, #8b4cf0, #7c3aed);
}

.ozon-logo {
  background: linear-gradient(145deg, #0066cc, #0052a3);
}

.platform-info h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.stats-summary {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-gold);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-score {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-light);
}

.stars {
  color: var(--primary-gold);
  font-size: 1rem;
}

.review-count {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.qr-section {
  text-align: center;
}

.qr-section h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.qr-codes {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.qr-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.qr-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.qr-placeholder img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 15px;
}

.wb-qr {
  background: linear-gradient(145deg, #8b4cf0, #7c3aed);
}

.ozon-qr {
  background: linear-gradient(145deg, #0066cc, #0052a3);
}
.ozon-qr img {
  height: 120%;
}

/* .qr-placeholder::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 8px,
      rgba(255, 255, 255, 0.3) 8px,
      rgba(255, 255, 255, 0.3) 16px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 8px,
      rgba(255, 255, 255, 0.3) 8px,
      rgba(255, 255, 255, 0.3) 16px
    );
} */

.qr-code span {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Business Section */
.business {
  padding: 100px 0;
  background: var(--dark-bg);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.business-card {
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.business-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
  box-shadow: var(--shadow-gold);
}

.pharmacy {
  background: linear-gradient(145deg, #ff6b6b, #ee5a5a);
}
.ecommerce {
  background: linear-gradient(145deg, #4ecdc4, #45b7b8);
}
.medical {
  background: linear-gradient(145deg, #45b7d1, #3a9bc1);
}
.retail {
  background: linear-gradient(145deg, #96ceb4, #85c1a0);
}
.healthcare {
  background: linear-gradient(145deg, #ffeaa7, #fdcb6e);
}
.spa {
  background: linear-gradient(145deg, #dda0dd, #da70d6);
}

.business-card h3 {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.business-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: linear-gradient(145deg, var(--primary-gold), var(--dark-gold));
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.benefit-icon,
.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--primary-gold);
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.benefit-card h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--darker-bg);
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-logo {
  margin-bottom: 3rem;
}

.logo-icon-large {
  background: var(--gradient-primary);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
  color: white;
  box-shadow: var(--shadow-gold);
}
.logo-icon-large img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-brand {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.contact-tagline {
  color: var(--text-gray);
  font-style: italic;
  font-size: 1.2rem;
}

.contact-info h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  color: var(--primary-gold);
  font-size: 1.2rem;
  width: 20px;
}

.contact-item p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--darker-bg);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-content p {
  color: var(--text-gray);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

/* Loading Screen */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
  color: var(--text-light);
}

.loader-icon {
  background: var(--gradient-primary);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-gold);
  animation: pulse 2s infinite;
}

.loader-text {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-top: 3px solid var(--primary-gold);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Active navigation link */
.nav-link.active {
  color: var(--primary-gold);
}

.nav-link.active::after {
  width: 100%;
}

/* Navbar scrolled state */
.navbar.scrolled {
  background: rgba(15, 15, 15, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Tablet and small desktop adjustments */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }
}

/* Enhanced mobile menu */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem 0;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
    left: 0;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
  }

  .hamburger {
    display: flex;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-gold);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 0px;
  }

  .hamburger span:nth-child(2) {
    top: 8px;
  }

  .hamburger span:nth-child(3) {
    top: 16px;
  }

  .hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }
}

/* Enhanced transitions */
* {
  transition: all 0.3s ease;
}

button,
.btn {
  cursor: pointer;
}

/* Improved accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for better accessibility */
.nav-link:focus,
.business-card:focus,
.benefit-card:focus,
.about-card:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Large Desktops - 1200px and up */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }
}

/* Medium Desktops - 992px to 1199px */
@media (max-width: 1199px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .product-tube {
    width: 300px;
    height: 400px;
  }

  .product-tube-large {
    width: 350px;
    height: 450px;
  }
}

/* Tablets - 768px to 991px */
@media (max-width: 991px) {
  /* Navigation */
  .nav-menu {
    display: none;
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem 0;
    z-index: 999;
  }

  .product-image-section {
    display: none;
  }

  .hamburger {
    display: flex;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-gold);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 0px;
  }

  .hamburger span:nth-child(2) {
    top: 8px;
  }

  .hamburger span:nth-child(3) {
    top: 16px;
  }

  .nav-menu.active {
    display: flex;
    left: 0;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
  }

  .hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }

  /* Hero Section */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-top: 120px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .product-showcase {
    height: 400px;
  }

  .product-tube {
    width: 250px;
    height: 350px;
  }

  /* About Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Product Details */
  .product-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .product-showcase-large {
    height: 500px;
    order: -1;
  }

  .product-tube-large {
    width: 300px;
    height: 400px;
  }

  /* Statistics */
  .stats-platforms {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-summary {
    gap: 1rem;
    justify-content: center;
  }

  .qr-codes {
    gap: 2rem;
  }

  /* Business Section */
  .business-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .business-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Mobile Landscape - 576px to 767px */
@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .logo-icon,
  .logo-icon img {
    width: 60px;
    height: 60px;
  }

  .feature-item {
    gap: 1rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .product-tube {
    width: 300px;
    height: 400px;
  }

  .product-tube-large {
    width: 250px;
    height: 350px;
  }

  .about-card {
    padding: 2rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .platform-stats {
    padding: 2rem;
  }

  .contact-brand {
    font-size: 2.5rem;
  }

  .logo-icon-large {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .qr-placeholder {
    width: 120px;
    height: 120px;
  }
}

/* Mobile Portrait - up to 575px */
@media (max-width: 575px) {
  .container {
    padding: 0 10px;
  }

  .product-image-section {
    display: none;
  }
  /* Navigation */
  .navbar {
    padding: 0.75rem 0;
  }

  .nav-container {
    padding: 0 15px;
  }

  .nav-logo {
    gap: 8px;
  }

  .logo-icon,
  .logo-icon img {
    width: 50px;
    height: 50px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .logo-subtitle {
    font-size: 0.7rem;
  }

  /* Hero Section */
  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding-top: 100px;
    gap: 2rem;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
  }

  .hero-features {
    gap: 1.5rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin: 0 auto;
  }

  .feature-text h3 {
    font-size: 1rem;
  }

  .feature-text p {
    font-size: 0.85rem;
  }

  .product-showcase {
    height: 300px;
  }

  .product-tube {
    width: 250px;
    height: 330px;
  }

  /* Sections */
  .about,
  .product-details,
  .statistics,
  .business,
  .contact {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* About Cards */
  .about-grid {
    gap: 1.5rem;
  }

  .about-card {
    padding: 1.8rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .about-card h3 {
    font-size: 1rem;
  }

  .about-card p,
  .card-content p {
    font-size: 0.85rem;
  }

  /* Product Details */
  .product-showcase-large {
    height: 350px;
  }

  .product-tube-large {
    width: 180px;
    height: 280px;
  }

  .product-info {
    padding: 1rem 0;
  }

  .product-text {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .product-benefits {
    padding: 1.5rem;
  }

  .product-benefits h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .product-benefits li {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  /* Statistics */
  .platform-stats {
    padding: 1.8rem;
  }

  .platform-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .platform-logo {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .platform-info h3 {
    font-size: 1.3rem;
  }

  .stats-summary {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .rating {
    justify-content: center;
  }

  .qr-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .qr-codes {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .qr-placeholder {
    width: 100px;
    height: 100px;
  }

  /* Business Section */
  .business-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .business-card {
    padding: 1.5rem;
  }

  .business-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .business-card h3 {
    font-size: 1rem;
  }

  .business-benefits {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }

  /* Contact Section */
  .contact-content {
    max-width: 100%;
  }

  .contact-logo {
    margin-bottom: 2rem;
  }

  .logo-icon-large {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .contact-brand {
    font-size: 2rem;
  }
}

/* Extra Small Mobile - up to 360px */
@media (max-width: 360px) {
  .container {
    padding: 0 8px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .product-tube {
    width: 130px;
    height: 200px;
  }

  .product-tube-large {
    width: 160px;
    height: 250px;
  }

  .about-card,
  .platform-stats,
  .business-card,
  .benefit-card {
    padding: 1.2rem;
  }

  .contact-brand {
    font-size: 1.8rem;
  }
}

/* Hamburger Animation */
@media (max-width: 991px) {
  .hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }
}

/* Landscape Orientation Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding-top: 80px;
  }

  .product-showcase {
    height: 250px;
  }

  .product-tube {
    width: 120px;
    height: 180px;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
  margin: 5% auto;
  padding: 0;
  border: 2px solid var(--primary-gold);
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-gold);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: var(--gradient-primary);
  border-radius: 13px 13px 0 0;
  border-bottom: 2px solid var(--primary-gold);
}

.modal-header h2 {
  margin: 0;
  color: var(--dark-bg);
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.close {
  color: var(--dark-bg);
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.close:hover,
.close:focus {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.modal-body {
  padding: 30px;
  color: var(--text-light);
  line-height: 1.8;
}

.modal-body h3 {
  color: var(--primary-gold);
  margin: 25px 0 15px 0;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: "Playfair Display", serif;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  margin-bottom: 15px;
  color: var(--text-gray);
  font-size: 1rem;
}

.modal-body ul {
  margin: 15px 0;
  padding-left: 25px;
}

.modal-body li {
  margin-bottom: 8px;
  color: var(--text-gray);
  position: relative;
}

.modal-body li::marker {
  color: var(--primary-gold);
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal-content {
    margin: 10% auto;
    width: 95%;
    max-height: 70vh;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-body {
    padding: 20px;
  }

  .close {
    font-size: 24px;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    margin: 15% auto;
    width: 98%;
  }

  .modal-header h2 {
    font-size: 1.3rem;
  }

  .modal-body h3 {
    font-size: 1.1rem;
  }
}
