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

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #330066 100%);
  color: #ffffff;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1001;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(179, 102, 255, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 2rem;
  gap: 2rem;
}

.header-left {
  justify-self: start;
}

.header-center {
  justify-self: center;
}

.logo-link {
  display: block;
}

.logo-img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
}

#aboutImage {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  border-radius: 15px;
  box-shadow: 0 25px 60px rgba(179, 102, 255, 0.4),
              0 15px 35px rgba(179, 102, 255, 0.2),
              0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.main-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333333;
  margin: 0;
  background: linear-gradient(45deg, #333333, #b366ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.drums-heading {
  font-size: 1rem;
  color: #b366ff;
  text-align: center;
  margin: 0.5rem 0 0 0;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 100px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  margin-top: 10px;
  border-bottom: 1px solid rgba(179, 102, 255, 0.2);
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 10px 0;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-menu li:not(:last-child)::after {
  content: "|";
  color: #b366ff;
  margin: 0 0.8rem;
  font-weight: 300;
  font-size: 0.7rem;
}

.nav-menu a {
  color: #333333;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.2rem 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  font-size: 0.7rem;
}

.nav-menu a i {
  font-size: 0.6rem;
  min-width: 10px;
  max-width: 12px;
  width: 0.6rem;
  height: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-menu a:hover {
  color: #b366ff;
}

.nav-menu a.active {
  color: #b366ff;
  font-weight: 500;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #330066 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0px;
  padding: 2rem 0 1rem 0;
}



.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(179, 102, 255, 0.15) 0%, transparent 60%);
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
  z-index: 2;
  position: relative;
}

.hero-content {
  z-index: 2;
}

.hero-text {
  text-align: left;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #ffffff, #b366ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
  line-height: 1.1;
}

.hero h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #b366ff;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #cccccc;
  line-height: 1.4;
}

.hero-tagline {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #aaaaaa;
  font-style: italic;
}

@keyframes glow {
  from { text-shadow: 0 0 20px rgba(179, 102, 255, 0.5); }
  to { text-shadow: 0 0 30px rgba(179, 102, 255, 0.8); }
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.featured-drum {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 25px 60px rgba(179, 102, 255, 0.4), 
              0 15px 35px rgba(179, 102, 255, 0.2),
              0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.featured-drum:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(179, 102, 255, 0.6), 
              0 20px 45px rgba(179, 102, 255, 0.3),
              0 10px 25px rgba(0, 0, 0, 0.4);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #330066, #b366ff);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(179, 102, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(179, 102, 255, 0.5);
}

/* Sections */
.section {
  padding: 5rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ffffff, #b366ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* What's New Section */
.whats-new-section {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.whats-new-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(179, 102, 255, 0.1) 0%, transparent 60%);
}

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

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

.section-header h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff, #b366ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.whats-new-category {
  margin-bottom: 3rem;
}

.category-title {
  font-size: 2.5rem;
  color: #b366ff;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.drums-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.drum-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(179, 102, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  cursor: pointer;
  min-width: 280px;
}

.drum-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(179, 102, 255, 0.4);
  border-color: rgba(179, 102, 255, 0.6);
}

.drum-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0033, #330066);
  min-height: 200px;
}

.drum-item:nth-child(4) .drum-image {
  aspect-ratio: 21/9;
  min-height: auto;
  height: auto;
}

.drum-item:nth-child(4) .drum-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.drum-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: all 0.4s ease;
  background: rgba(26, 0, 51, 0.1);
  display: block;
}

.drum-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(179, 102, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.view-details {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.drum-item:hover .drum-img {
  transform: scale(1.1);
}

.drum-item:hover .drum-overlay {
  opacity: 1;
}

.drum-info {
  padding: 2rem 1.5rem;
  text-align: center;
}

.drum-info h4 {
  font-size: 1.4rem;
  color: #b366ff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.drum-info p {
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.drum-link {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(45deg, #330066, #b366ff);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(179, 102, 255, 0.3);
}

.drum-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 102, 255, 0.5);
  background: linear-gradient(45deg, #b366ff, #330066);
}

.view-all-container {
  text-align: center;
  margin-top: 3rem;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #330066, #b366ff);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(179, 102, 255, 0.3);
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(179, 102, 255, 0.5);
  background: linear-gradient(45deg, #b366ff, #330066);
}

.view-all-btn i {
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

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

.product-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(179, 102, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(179, 102, 255, 0.3);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1a0033, #330066);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}

.product-card:nth-child(3) .product-img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(179, 102, 255, 0.9);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon {
  background: rgba(179, 102, 255, 1);
  transform: scale(1.1);
}

.product-card h3 {
  color: #b366ff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.product-card p {
  color: #cccccc;
  line-height: 1.6;
}

/* Services Section Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(179, 102, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(179, 102, 255, 0.4);
  border-color: rgba(179, 102, 255, 0.6);
}

.service-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0033, #330066);
  height: 300px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-info {
  padding: 2rem 1.5rem;
  text-align: center;
}

.service-info h3 {
  font-size: 1.5rem;
  color: #b366ff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-info p {
  color: #cccccc;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .service-image {
    height: 250px;
  }

  .service-info {
    padding: 1.5rem;
  }

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

  .service-info p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .service-image {
    height: 200px;
  }

  .service-info {
    padding: 1.2rem;
  }

  .service-info h3 {
    font-size: 1.2rem;
  }

  .service-info p {
    font-size: 0.9rem;
  }
}

/* About Section */
.about {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0;
  padding: 3rem;
  margin: 3rem 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  min-height: 400px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  max-height: 711px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: max-height 0.3s ease;
}

.about-text.expanded {
  max-height: none;
}

.about-text:not(.expanded)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  pointer-events: none;
}

.about-text:hover {
  color: #b366ff;
}

.about-text::before {
  content: 'See More';
  position: absolute;
  bottom: 10px;
  right: 20px;
  background: linear-gradient(45deg, #330066, #b366ff);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(179, 102, 255, 0.3);
  z-index: 10;
}

.about-text.expanded::before {
  content: 'See Less';
}

.about-text:hover::before {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 102, 255, 0.5);
}

.about-image {
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  background: transparent;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 9/16;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: transparent;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(179, 102, 255, 0.3);
}

/* Legal Footer */
.legal-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  padding: 8px 0;
  border-top: 1px solid rgba(179, 102, 255, 0.3);
  z-index: 1001;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}

.legal-links a {
  color: #888888;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0 1rem;
  position: relative;
  font-size: 11px;
  overflow: hidden;
}

.legal-links a::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #330066, #b366ff);
  transition: all 0.4s ease;
  transform: translateX(-50%);
  border-radius: 1px;
  box-shadow: 0 0 5px rgba(179, 102, 255, 0.5);
}

.legal-links a:hover::before {
  width: 90%;
}

.legal-links a:not(:last-child)::after {
  content: "|";
  color: #b366ff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
}

.legal-links a:hover {
  color: #b366ff;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0 1.5rem;
  position: relative;
}

.footer-links a:not(:last-child)::after {
  content: "|";
  color: #b366ff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
}

.footer-links a:hover {
  color: #b366ff;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  justify-self: end;
  grid-column: 3;
}

.hamburger-menu:hover {
  color: #b366ff;
  background: rgba(179, 102, 255, 0.1);
}

/* Mobile Navigation Modal */
.mobile-nav-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-nav-content {
  background: linear-gradient(135deg, #1a0033, #330066);
  border-radius: 15px;
  padding: 2rem;
  max-width: 350px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid rgba(179, 102, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(179, 102, 255, 0.3);
}

.mobile-nav-header h3 {
  color: #b366ff;
  margin: 0;
  font-size: 1.5rem;
}

.close-mobile-nav {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-mobile-nav:hover {
  color: #b366ff;
  background: rgba(179, 102, 255, 0.1);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-links a {
  color: #ffffff;
  text-decoration: none;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(179, 102, 255, 0.2);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(179, 102, 255, 0.2);
  color: #b366ff;
  transform: translateX(10px);
}

.mobile-nav-links a i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }

  .navbar {
    display: none;
  }

  .header-container {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 0 1rem;
  }

  .main-title {
    font-size: 1.8rem;
  }

  .logo-img {
    height: 45px;
  }

  .navbar {
    top: 70px;
    padding: 0.8rem 0;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .nav-menu {
    font-size: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0;
  }

  .nav-menu li:not(:last-child)::after {
    margin: 0 0.8rem;
    font-size: 0.8rem;
  }

  .nav-menu a {
    padding: 0.3rem 0;
    gap: 0.3rem;
  }

  .nav-menu a i {
    font-size: 0.9rem;
    min-width: 16px;
    max-width: 20px;
    width: 0.9rem;
    height: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .hero {
    margin-top: 140px;
    padding: 1.5rem 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

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

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

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

  .hero-description {
    font-size: 1.1rem;
  }

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

  /* What's New Mobile Styles */
  .whats-new-section {
    padding: 3rem 0;
  }

  .section-container {
    padding: 0 1rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

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

  .category-title {
    font-size: 2rem;
  }

  .drums-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .drum-image {
    aspect-ratio: 3/4;
  }

  .drum-info {
    padding: 1.5rem;
  }

  .drum-info h4 {
    font-size: 1.2rem;
  }

  .drum-info p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .drum-link {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .view-all-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 0.5rem;
  }

  .main-title {
    font-size: 1.5rem;
  }

  .nav-container {
    padding: 0 0.5rem;
  }

  .nav-menu {
    font-size: 0.75rem;
    gap: 0.3rem 0;
  }

  .nav-menu li:not(:last-child)::after {
    margin: 0 0.5rem;
    font-size: 0.7rem;
  }

  .nav-menu a {
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
    font-size: 0.7rem;
  }

  .nav-menu a i {
    font-size: 1rem;
    min-width: 18px;
    max-width: 22px;
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }


  .hero-container {
    gap: 2rem;
    padding: 0 1rem;
  }

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

  .hero h2 {
    font-size: 1.8rem;
  }

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

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

  .hero-tagline {
    font-size: 0.9rem;
  }

  /* What's New Small Mobile Styles */
  .section-container {
    padding: 0 0.5rem;
    }

  .section-header h2 {
    font-size: 2rem;
  }

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

  .category-title {
    font-size: 1.8rem;
  }

  .drums-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .drum-image {
    aspect-ratio: 3/4;
  }

  .drum-info {
    padding: 1.2rem;
  }

  .drum-info h4 {
    font-size: 1.1rem;
  }

  .drum-info p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .drum-link {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .view-details {
    font-size: 1rem;
  }

  .view-all-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Image Modal Styles */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
  box-shadow: 0 25px 60px rgba(179, 102, 255, 0.6);
  transition: all 0.3s ease;
  transform: scale(0.8);
}

.image-modal.active .modal-image {
  transform: scale(1);
}

.close-modal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(179, 102, 255, 0.8);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal:hover {
  background: rgba(179, 102, 255, 1);
  transform: scale(1.1);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #330066, #b366ff);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #b366ff, #330066);
}

/* Customize Section Styles */
.customize-section {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 3rem;
  margin: 3rem 0;
  text-align: center;
}

.customize-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.customize-content h2 {
  width: 100%;
  font-size: 35px;
  margin-bottom: -8%;
  z-index: 999;
}

.customize-image {
  width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customize-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 25px 60px rgba(179, 102, 255, 0.4),
              0 15px 35px rgba(179, 102, 255, 0.2),
              0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  background: transparent;
}

.customize-img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(179, 102, 255, 0.6),
              0 20px 45px rgba(179, 102, 255, 0.3),
              0 10px 25px rgba(0, 0, 0, 0.4);
}

.customize-overlay {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.customize-cta-button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(45deg, #330066, #b366ff);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(179, 102, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.customize-cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(179, 102, 255, 0.6);
  background: linear-gradient(45deg, #b366ff, #330066);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design for Customize Section */
@media (max-width: 768px) {
  .customize-section {
    padding: 2rem 1rem;
    margin: 2rem 0;
  }

  .customize-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .customize-section {
    padding: 1.5rem 0.5rem;
  }

  .customize-section h2 {
    font-size: 1.8rem;
  }
}

/* Contact Section Styles */
.contact-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 0, 51, 0.9) 50%, rgba(51, 0, 102, 0.8) 100%);
  border-radius: 0;
  padding: 5rem 0;
  margin: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(179, 102, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.contact-section h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #ffffff, #b366ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 4rem 3rem;
  transition: all 0.4s ease;
  border: none;
  border-right: 1px solid rgba(179, 102, 255, 0.2);
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-item:last-child {
  border-right: none;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(179, 102, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(179, 102, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.contact-item:hover::before {
  opacity: 1;
}

.contact-icon {
  background: linear-gradient(45deg, #330066, #b366ff);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(179, 102, 255, 0.5);
  position: relative;
  z-index: 3;
}

.contact-item:hover .contact-icon {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 20px 60px rgba(179, 102, 255, 0.8);
  background: linear-gradient(45deg, #b366ff, #330066);
}

.contact-item h3 {
  color: #b366ff;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 3;
}

.contact-item:hover h3 {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(179, 102, 255, 0.8);
}

.contact-item p {
  color: #cccccc;
  line-height: 1.8;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 400;
  position: relative;
  z-index: 3;
}

.contact-item p:last-child {
  margin-bottom: 0;
}

.contact-item p strong {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.3rem;
}

.contact-item:hover p {
  color: #ffffff;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #b366ff;
  text-shadow: 0 0 10px rgba(179, 102, 255, 0.5);
}

/* Responsive Design for Contact Section */
@media (max-width: 1200px) {
  .contact-grid {
    max-width: 100%;
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }

  .contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 1rem;
  }

  .contact-item {
    padding: 3rem 2rem;
    border-right: none;
    border-bottom: 1px solid rgba(179, 102, 255, 0.2);
    min-height: 250px;
  }

  .contact-item:last-child {
    border-bottom: none;
  }

  .contact-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .contact-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .contact-item p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 3rem 0;
  }

  .contact-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .contact-grid {
    padding: 0 0.5rem;
  }

  .contact-item {
    padding: 2.5rem 1.5rem;
    min-height: 200px;
  }

  .contact-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }

  .contact-item p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .contact-item p strong {
    font-size: 1.1rem;
  }
}

/* About Builder Section Styles */
.about-builder {
    padding: 0;
    background-color: #f8f8f8;
}

.builder-content {
    display: flex;
    max-width: 100%;
    margin: 0 auto;
    gap: 0;
    align-items: stretch;
    padding: 0;
    min-height: 100vh;
}

.builder-image {
    flex: 0 0 50%;
    max-width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8e8e8;
}

.builder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.builder-text {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f8f8;
}

.builder-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: bold;
    text-align: center;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.bio-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.bio-text p strong {
    font-weight: bold;
    color: #222;
}

.bio-text-collapsed {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.bio-text-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.show-more-btn {
    background: linear-gradient(45deg, #330066, #b366ff);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(179, 102, 255, 0.3);
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 102, 255, 0.5);
    background: linear-gradient(45deg, #b366ff, #330066);
}

.show-more-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(179, 102, 255, 0.3);
}

/* Responsive Design for About Builder */
@media (max-width: 1024px) {
    .builder-content {
        flex-direction: column;
        align-items: center;
    }

    .builder-image {
        flex: none;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .builder-image img {
        min-height: 700px;
        min-width: 400px;
    }

    .builder-text {
        padding-left: 0;
        max-width: 90%;
    }

    .builder-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .builder-image {
        max-width: 100%;
    }

    .builder-image img {
        min-height: 600px;
        min-width: 300px;
    }

    .builder-text {
        max-width: 95%;
    }

    .builder-text h2 {
        font-size: 1.8rem;
    }

    .bio-text {
        font-size: 1rem;
    }

    .about-builder {
        padding: 1rem 0;
    }

    .builder-content {
        padding: 0 1rem;
    }
}