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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
      color: #ffffff;
      overflow-x: hidden;
      line-height: 1.6;
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 20%, rgba(218, 165, 32, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 60%);
      pointer-events: none;
      z-index: -1;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      backdrop-filter: blur(20px);
      background: rgba(15, 15, 15, 0.95);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .logo {
      height: 40px;
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 100%;
      width: auto;
      object-fit: contain;
    }

    .desktop-nav {
      display: flex;
      gap: 30px;
    }

    .desktop-nav a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-weight: 500;
      padding: 10px 20px;
      border-radius: 25px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .desktop-nav a:hover {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    .hero {
      min-height: 95vh;
      width: 100%;
      position: relative;
      z-index: 2;
      background-image: url('../images/himalayan-mountains-bg.webp');
      background-size: cover;
      background-position: center right;
      background-repeat: no-repeat;
      background-attachment: scroll;
    
      will-change: transform;}

    .hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
      padding: 120px 40px 40px;
      min-height: 95vh;
      position: relative;
      z-index: 3;
      contain: layout style;}

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(
        135deg, 
        rgba(10, 10, 10, 0.85) 0%, 
        rgba(10, 10, 10, 0.7) 40%, 
        rgba(10, 10, 10, 0.3) 70%, 
        rgba(10, 10, 10, 0.1) 100%
      );
      z-index: 1;
    }

    .floating-particles {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: radial-gradient(circle, #FFD700 0%, #DAA520 100%);
      border-radius: 50%;
      animation: float 6s infinite ease-in-out;
      z-index: 1;
      box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    }

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

    .hero-text {
      flex: 1;
      max-width: 650px;
      animation: slideInLeft 1s ease-out;
      position: relative;
      z-index: 3;
    }

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

    .hero-text h1 {
      font-size: clamp(42px, 7vw, 64px);
      font-weight: 700;
      margin-bottom: 16px;
      color: #ffffff;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .hero-subtitle {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 20px;
      font-weight: 400;
    }

    .hero-description {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      margin-bottom: 32px;
      max-width: 580px;
    }

    .clinical-data {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 40px;
      padding: 24px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .data-point {
      text-align: left;
    }

    .data-number {
      display: block;
      font-size: 28px;
      font-weight: 700;
      color: #DAA520;
      margin-bottom: 4px;
    }

    .data-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 2px;
    }

    .data-study {
      display: block;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.6);
      font-style: italic;
    }

    .cta-section {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .btn-primary-new {
      padding: 16px 32px;
      background: #ffffff;
      color: #000000;
      text-decoration: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      transition: all 0.3s ease;
      border: 2px solid #ffffff;
    }

    .btn-primary-new:hover {
      background: transparent;
      color: #ffffff;
      transform: translateY(-2px);
    }

    .btn-secondary-new {
      padding: 14px 28px;
      background: transparent;
      color: #ffffff;
      text-decoration: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .btn-secondary-new:hover {
      border-color: rgba(255, 255, 255, 0.6);
      transform: translateY(-1px);
    }

    section {
      padding: 60px 0;
      position: relative;
      z-index: 1;
      background: rgba(10, 10, 10, 0.85);
    }

    .section-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .section-title {
      font-size: clamp(36px, 6vw, 48px);
      font-weight: 800;
      text-align: center;
      margin-bottom: 50px;
      color: #ffffff;
    }

    .why-items {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .why-item {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(15px);
      padding: 40px 30px;
      border-radius: 25px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .why-item:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .why-item h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #DAA520;
    }

    .why-item p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 16px;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 40px;
    }

    .product-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px);
      padding: 30px;
      border-radius: 25px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 550px;
    }

    .product-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .product-image {
      height: 280px;
      border-radius: 20px;
      margin-bottom: 25px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.02);
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }

    .product-card h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #ffffff;
    }

    .product-card p {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 25px;
      font-size: 16px;
      flex-grow: 1;
    }

    .product-price {
      font-size: 32px;
      font-weight: 800;
      color: #DAA520;
      margin-bottom: 20px;
      text-align: center;
      background: linear-gradient(135deg, #DAA520, #FFD700);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
      letter-spacing: -0.02em;
    }

    .buy-btn {
      background: #ffffff;
      color: #000000;
      text-decoration: none;
      padding: 16px 32px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      transition: all 0.3s ease;
      display: block;
      text-align: center;
      border: 2px solid #ffffff;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: auto;
    }

    .buy-btn:hover {
      background: transparent;
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }

    .review-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px);
      padding: 35px;
      border-radius: 25px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      position: relative;
    }

    .review-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .stars {
      font-size: 24px;
      color: #DAA520;
      margin-bottom: 15px;
      animation: sparkle 2s ease-in-out infinite;
    }

    @keyframes sparkle {
      0%, 100% { filter: brightness(1); }
      50% { filter: brightness(1.3); }
    }

    .review-text {
      font-size: 18px;
      font-style: italic;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .review-author {
      color: rgba(255, 255, 255, 0.6);
      font-size: 14px;
    }

    .science-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .science-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px);
      padding: 35px;
      border-radius: 25px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .science-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, #DAA520, #FFD700);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .science-card:hover::before {
      transform: scaleX(1);
    }

    .science-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .science-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #DAA520;
    }

    .science-card p {
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .science-card a {
      color: #DAA520;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .science-card a:hover {
      color: #FFD700;
      text-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .about-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(25px);
      padding: 40px 30px;
      border-radius: 25px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      text-align: left;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .about-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.25);
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .about {
      position: relative;
      overflow: hidden;
    }

    .about-hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('../images/about/himalayan-peaks-dramatic.jpg');
      background-size: cover;
      background-position: left center;
      background-repeat: no-repeat;
      background-attachment: scroll;
      z-index: -2;
    }

    .about::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.85) 30%,
        rgba(10, 10, 10, 0.7) 60%,
        rgba(10, 10, 10, 0.9) 100%
      );
      z-index: -1;
    }

    .about-card h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #DAA520;
      border-bottom: 2px solid rgba(218, 165, 32, 0.3);
      padding-bottom: 10px;
    }

    .about-card p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 16px;
      line-height: 1.6;
    }

    .commitment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .commitment-item {
      background: rgba(255, 255, 255, 0.02);
      padding: 30px 25px;
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.3s ease;
    }

    .commitment-item:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.12);
      transform: translateY(-3px);
    }

    .commitment-item h4 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #ffffff;
    }

    .commitment-item p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      line-height: 1.5;
    }

    .contact-info {
      text-align: center;
      color: rgba(255, 255, 255, 0.8);
    }

    .contact-info strong {
      color: #ffffff;
      font-size: 16px;
      display: block;
      margin-bottom: 8px;
    }

    .nobrainer {
      background: rgba(10, 10, 10, 0.80);
      border-radius: 25px;
      padding: 60px 60px;
      margin: 40px auto 20px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      max-width: 1400px;
      width: 100%;
      box-sizing: border-box;
    }

    .nobrainer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
    }

    .nobrainer-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      padding: 30px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .nobrainer-card:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .nobrainer-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #DAA520;
    }

    .nobrainer-card p {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.5;
    }

    .nobrainer-text {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .nobrainer-text p {
      font-size: 22px;
      line-height: 1.7;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
    }

    .cta-center {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin-top: 30px;
    }

    .buy-now {
      background: #ffffff;
      color: #000000;
      padding: 20px 40px;
      text-decoration: none;
      border-radius: 8px;
      font-size: 20px;
      font-weight: 700;
      display: inline-block;
      transition: all 0.3s ease;
      border: 2px solid #ffffff;
      text-align: center;
    }

    .buy-now:hover {
      background: transparent;
      color: #ffffff;
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (min-width: 769px) {
      .hero {
        background-attachment: fixed;
      }
      
      .about-hero-bg {
        background-attachment: fixed;
      }
    }

    
/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 30px;
  padding: 80px 20px 20px;
}

.mobile-nav-content a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
}

.mobile-nav-content a:hover {
  color: #ffffff;
  background: rgba(218, 165, 32, 0.2);
  transform: translateY(-2px);
}

/* Desktop/Mobile Navigation Toggle */
@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
  }
  
  .mobile-nav {
    display: block;
  }
}

@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .mobile-nav {
    display: none !important;
  }
  
  .desktop-nav {
    display: flex !important;
  }
}

@media (max-width: 768px) {
      header {
        padding: 15px 20px;
      }

      .hero {
        background-attachment: scroll !important;
        background-position: center center;
      }

      .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
        gap: 40px;
        min-height: auto;
        contain: layout style;}

      .hero-text {
        max-width: 100%;
      }

      .hero-text h1 {
        font-size: 42px;
      }

      .clinical-data {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .section-content {
        padding: 0 20px;
      }

      .nobrainer {
        padding: 40px 20px;
        margin: 40px 10px;
        border-radius: 20px;
      }

      .cta-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }

      .btn-primary-new, .btn-secondary-new {
        width: 100%;
        max-width: 280px;
        text-align: center;
      }

      .why-items, .science-grid, .nobrainer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .review-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .about-grid, .commitment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .contact-section > div {
        flex-direction: column;
        gap: 20px;
      }

      .about-hero-bg {
        background-attachment: scroll !important;
        background-position: center center;
      }
    }

    @media (max-width: 480px) {
      .hero-text h1 {
        font-size: 36px;
      }
      
      .hero-text p {
        font-size: 18px;
      }
      
      .section-title {
        font-size: 32px;
      }
    }

    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(135deg, #DAA520, #FFD700);
      border-radius: 10px;
    }

/* Additional Mobile Optimizations */

/* Improved touch targets */
@media (max-width: 768px) {
  /* Ensure all clickable elements are at least 44px */
  a, button, .btn-primary-new, .btn-secondary-new {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Better spacing for mobile */
  .hero-content {
    padding: 120px 20px 80px;
    contain: layout style;}
  
  /* Improved mobile navigation */
  .mobile-nav-content a {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Better mobile typography */
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }
  
  /* Better mobile forms and inputs */
  input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px;
    border-radius: 8px;
  }
  
  /* Improved mobile cards */
  .why-item, .science-item, .product-card {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  /* Better mobile images */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Mobile-friendly tables */
  table {
    font-size: 14px;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
}

/* Extra small devices optimization */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  /* Smaller padding on very small screens */
  .section-content {
    padding: 0 15px;
  }
  
  .hero-content {
    padding: 100px 15px 60px;
    contain: layout style;}
}

/* Landscape phone optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-content {
    padding: 80px 20px 40px;
    contain: layout style;}
  
  .hero-text h1 {
    font-size: 32px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Optimize for retina displays */
  .logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  /* Already dark theme, but ensure consistency */
  body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print styles */
@media print {
  .mobile-menu-toggle, .mobile-nav {
    display: none !important;
  }
  
  header {
    position: static !important;
    background: white !important;
    color: black !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
}


/* About Page Styles */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('/images/himalayan-mountains-bg.webp') center/cover;
  min-height: 60vh;
}

.about-hero .hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.about-hero .hero-subtitle {
  font-size: 24px;
  color: #d4af37;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-hero .hero-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.story-content h3 {
  color: #d4af37;
  font-size: 20px;
  margin: 30px 0 15px 0;
}

.story-content h3:first-child {
  margin-top: 0;
}

.story-content p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Values Section */
.values-section {
  background: rgba(255,255,255,0.02);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-item h3 {
  color: #d4af37;
  font-size: 22px;
  margin-bottom: 15px;
}

.value-item p {
  line-height: 1.6;
  font-size: 16px;
}

/* Quality Standards */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.quality-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border-left: 4px solid #d4af37;
}

.quality-badge {
  background: #d4af37;
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.quality-item h3 {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 8px;
}

.quality-item p {
  line-height: 1.6;
  font-size: 15px;
}

/* Team/Commitment Section */
.team-section {
  background: rgba(255,255,255,0.02);
}

.commitment-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.commitment-text h3 {
  color: #d4af37;
  font-size: 22px;
  margin: 30px 0 15px 0;
}

.commitment-text h3:first-child {
  margin-top: 0;
}

.commitment-list {
  list-style: none;
  padding: 0;
}

.commitment-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  line-height: 1.6;
}

.commitment-list li:last-child {
  border-bottom: none;
}

.commitment-list strong {
  color: #d4af37;
}

.commitment-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 25px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.contact-text p {
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 16px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-details a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #d4af37;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #d4af37;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Page Mobile Responsive */
@media (max-width: 768px) {
  .about-hero .hero-text h1 {
    font-size: 32px;
  }
  
  .about-hero .hero-subtitle {
    font-size: 20px;
  }
  
  .about-hero .hero-description {
    font-size: 16px;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .quality-grid {
    grid-template-columns: 1fr;
  }
  
  .commitment-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .commitment-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn-primary-new,
  .cta-buttons .btn-secondary-new {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .value-item,
  .quality-item,
  .contact-item {
    padding: 20px;
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .commitment-stats {
    grid-template-columns: 1fr;
  }
}


/* Return Policy Page Styles */
.policy-hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('../images/mountain-background.webp');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  text-align: center;
  color: white;
}

.policy-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #d4af37;
}

.hero-subtitle {
  font-size: 20px;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.policy-content {
  padding: 80px 0;
  background: #1a1a1a;
  color: white;
}

.policy-section {
  margin-bottom: 60px;
}

.policy-section h2 {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 30px;
  border-bottom: 2px solid #333;
  padding-bottom: 15px;
}

.policy-section h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.policy-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
}

.guarantee-highlight {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
  color: #000;
}

.guarantee-highlight h3 {
  color: #000;
  font-size: 28px;
  margin-bottom: 15px;
}

.guarantee-highlight p {
  color: #333;
  font-size: 18px;
  margin: 0;
}

.condition-item {
  background: #2a2a2a;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 25px;
  border-left: 4px solid #d4af37;
}

.condition-item h3 {
  color: #d4af37;
  font-size: 22px;
  margin-bottom: 15px;
}

.condition-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.process-steps {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background: #2a2a2a;
  padding: 30px;
  border-radius: 12px;
}

.step-number {
  background: #d4af37;
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  color: #d4af37;
  font-size: 20px;
  margin-bottom: 10px;
}

.step-content p {
  margin: 0;
  color: #ccc;
  line-height: 1.6;
}

.refund-details {
  background: #2a2a2a;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.refund-details h3 {
  color: #d4af37;
  font-size: 20px;
  margin-bottom: 15px;
}

.refund-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.refund-details li {
  padding: 8px 0;
  font-size: 16px;
  color: #ccc;
}

.refund-timeline {
  background: #333;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #444;
}

.refund-timeline h3 {
  color: #d4af37;
  margin-bottom: 15px;
}

.refund-timeline p {
  margin-bottom: 10px;
  font-size: 15px;
}

.important-notes {
  display: grid;
  gap: 25px;
}

.note-item {
  background: #2a2a2a;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #ff6b6b;
}

.note-item h3 {
  color: #ff6b6b;
  font-size: 18px;
  margin-bottom: 12px;
}

.note-item p {
  margin: 0;
  color: #ccc;
  line-height: 1.6;
}

.contact-info {
  background: #2a2a2a;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-method {
  background: #333;
  padding: 25px;
  border-radius: 8px;
}

.contact-method h3 {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-method p {
  margin: 5px 0;
  font-size: 14px;
}

.legal-section {
  background: #333;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #444;
}

.legal-section h2 {
  border-bottom: 2px solid #444;
}

.legal-section p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .policy-hero {
    padding: 100px 0 60px;
  }
  
  .policy-hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .policy-content {
    padding: 60px 0;
  }
  
  .policy-section h2 {
    font-size: 28px;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto 20px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .condition-item,
  .step,
  .refund-details,
  .note-item,
  .contact-info {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .policy-hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .guarantee-highlight {
    padding: 20px;
  }
  
  .guarantee-highlight h3 {
    font-size: 24px;
  }
}

