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

/* Global */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  /* background: #000; */
  background: url("Assets/black-background.png") center center / cover repeat-y;
  color: #fff;
}

/* ============================================================================
   ANIMATION SUPPORT & SMOOTH SCROLLING ENHANCEMENTS
   ============================================================================ */

/* Smooth scrolling for better animation performance */
html {
  scroll-behavior: smooth;
}

/* Optimize for animations */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure elements are ready for GSAP animations */
.banner-content h1,
.banner-content p,
.legacy-content h2,
.legacy-content > p,
.step,
.step h3,
.contact-us,
.collaborate-section h3,
.section-collaborations .intro-section h2,
.section-collaborations .intro-section p,
.images-section,
.full-image-section,
.grid-section .image-grid img,
.section-slider .slider,
.slider-nav span,
.celebrity-jersey-section h1,
.celebrity-jersey-section .card,
.section-exclusive-benefits h2,
.section-exclusive-benefits > .container > p,
.benefit-item,
.discover-section .left-block,
.discover-section .testimonial-img,
.discover-section .testimonial-text,
.discover-section .author,
.discover-section .discover-btn,
.faq-section h2,
.faq-item,
.footer-section .footer-logo,
.footer-section .social-icons a,
.footer-section .contact-list li,
.footer-section .footer-links li,
.nav-header,
.nav-logo,
.nav-menu li {
  will-change: transform, opacity;
}

.section-collaborations1 {
  padding: 150px 0;
  background: url(Assets/collab-bg.png) top center / auto no-repeat;
}

/* Enhanced hover states */
.card,
.contact-us,
.discover-btn,
.grid-section img {
  transition: box-shadow 0.3s ease;
}

/* .card:hover {
  box-shadow: 0 20px 40px rgba(218, 153, 67, 0.3);
} */

.contact-us:hover,
.discover-btn:hover {
  box-shadow: 0 10px 30px rgba(218, 153, 67, 0.4);
}

.grid-section img:hover {
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

/* Subtle glow effect for animated elements */
.step-content-container {
  transition: box-shadow 0.5s ease;
}

.step:hover .step-content-container {
  box-shadow: 0 0 30px rgba(218, 153, 67, 0.2);
}

/* Enhanced focus states for accessibility */
.nav-menu li a:focus,
.contact-us:focus,
.discover-btn:focus {
  outline: 2px solid #da9943;
  outline-offset: 4px;
}

/* Smooth transforms for better performance */
.nav-menu li a,
.social-icons a,
.footer-links li a {
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-menu li a:hover,
.social-icons a:hover,
.footer-links li a:hover {
  transform: translateY(-2px);
}

/* Enhanced marquee container for better animation support */
.images-section marquee {
  overflow: hidden;
}

/* Grid image enhancements */
.grid-section .image-grid {
  perspective: 1000px;
}

.grid-section .image-grid img {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* Testimonial image enhancement */
.discover-section .testimonial-img {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  transition: filter 0.3s ease;
}

.discover-section .testimonial-img:hover {
  filter: drop-shadow(0 15px 30px rgba(218, 153, 67, 0.2));
}

/* FAQ items enhanced appearance */
.faq-item {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  background-color: rgba(218, 153, 67, 0.05);
}

/* Loading state optimization */
body.loading * {
  animation-play-state: paused;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Mobile animation optimizations */
@media (max-width: 768px) {
  .card,
  .grid-section img,
  .step {
    will-change: auto;
  }
  
  .card:hover,
  .grid-section img:hover {
    transform: none;
    box-shadow: none;
  }
  
  /* Responsive Grid Center-Reveal Layout */
  .grid-section {
    padding: 40px 0;
    min-height: 80vh;
  }
  
  .image-grid {
    height: 400px;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .image-grid img {
    width: 120px;
    height: 150px;
    border-radius: 8px;
  }
  
  /* Adjust final positions for mobile */
  .image-grid img:nth-child(1) { --final-x: 0%; --final-y: 0%; }
  .image-grid img:nth-child(2) { --final-x: 25%; --final-y: 0%; }
  .image-grid img:nth-child(3) { --final-x: 50%; --final-y: 0%; }
  .image-grid img:nth-child(4) { --final-x: 75%; --final-y: 0%; }
  .image-grid img:nth-child(5) { --final-x: 0%; --final-y: 33%; }
  .image-grid img:nth-child(6) { --final-x: 25%; --final-y: 33%; }
  .image-grid img:nth-child(7) { --final-x: 50%; --final-y: 33%; }
  .image-grid img:nth-child(8) { --final-x: 75%; --final-y: 33%; }
  .image-grid img:nth-child(9) { --final-x: 0%; --final-y: 66%; }
  .image-grid img:nth-child(10) { --final-x: 25%; --final-y: 66%; }
  .image-grid img:nth-child(11) { --final-x: 50%; --final-y: 66%; }
  .image-grid img:nth-child(12) { --final-x: 75%; --final-y: 66%; }
  .image-grid img:nth-child(13) { --final-x: 12.5%; --final-y: 100%; }
  .image-grid img:nth-child(14) { --final-x: 37.5%; --final-y: 100%; }
  .image-grid img:nth-child(15) { --final-x: 62.5%; --final-y: 100%; }
  /* Hide extra images on mobile for cleaner layout */
  .image-grid img:nth-child(n+16) {
    display: none;
  }
}

@media (max-width: 480px) {
  .grid-section {
    padding: 30px 0;
    min-height: 60vh;
  }
  
  .image-grid {
    height: 300px;
  }
  
  .image-grid img {
    width: 80px;
    height: 100px;
    border-radius: 6px;
  }
  
  /* Simplified 3x3 grid for very small screens */
  .image-grid img:nth-child(1) { --final-x: 0%; --final-y: 0%; }
  .image-grid img:nth-child(2) { --final-x: 40%; --final-y: 0%; }
  .image-grid img:nth-child(3) { --final-x: 80%; --final-y: 0%; }
  .image-grid img:nth-child(4) { --final-x: 0%; --final-y: 50%; }
  .image-grid img:nth-child(5) { --final-x: 40%; --final-y: 50%; }
  .image-grid img:nth-child(6) { --final-x: 80%; --final-y: 50%; }
  .image-grid img:nth-child(7) { --final-x: 0%; --final-y: 100%; }
  .image-grid img:nth-child(8) { --final-x: 40%; --final-y: 100%; }
  .image-grid img:nth-child(9) { --final-x: 80%; --final-y: 100%; }
  /* Hide extra images on very small screens */
  .image-grid img:nth-child(n+10) {
    display: none;
  }
}

/* Performance enhancement for large screens */
@media (min-width: 1920px) {
  .banner-section,
  .section-launch-legacy,
  .section-collaborations {
    transform: translateZ(0);
  }
}

/* CSS FOR SCROLL BAR */
::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #ffffff;
  border-radius: 0;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Positioning */
.nav-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 20px;
  z-index: 1000;
}

/* Gold box styling */
.nav-box {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 20px 30px;
  background-color: transparent;
  position: relative;
}

.nav-logo img {
  width: 220px;
  height: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  font-family: "Lektorat", sans-serif;
  transition: color 0.3s ease;
}

.nav-menu li a.active,
.nav-menu li a:hover {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e9d86e; /* Fallback for unsupported browsers */
}

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
  transition: 0.3s;
}

/* banner section styling - dramatic hero design */

.banner-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 100vh;
  min-height: 800px;
  background: url("Assets/Banner-1.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 120px 20px 0 20px;
  overflow: hidden;
  filter: grayscale(100%) contrast(1.2) brightness(0.8);
}

.banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:  rgba(0, 0, 0, 0.05) ;
  z-index: 1;
}

.section-launch-legacy {
  padding: 150px 0;
  background: url(Assets/launch-legacy-bg-img.png) top center / auto no-repeat;
}

.banner-content {
  text-align: center;
  width: 100%;
  max-width: 1400px;
  z-index: 10;
  position: relative;
}

.banner-content h1 {
  font-family: "Lektorat", sans-serif;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 3px #ffffff;
  font-size: clamp(4rem, 15vw, 148px);
  line-height: 0.9;
  margin: 60px 0 40px 0;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.banner-content p {
  color: #ffffff;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 600;
  
  margin: 40px auto 0 auto;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  opacity: 0.95;
  text-align: center;
}

/* .section-launch-legacy {
  padding: 150px 0;
  background: url("Assets/launch-legacy-bg-img.png") top center / auto no-repeat;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

.legacy-content h2 {
  text-align: center;
  color: #000;
  font-size: 48px;
  margin-bottom: 20px;
}

.legacy-content .steps .step h3 {
  font-size: 56px;
  font-weight: 600;
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e9d86e; /* Fallback for unsupported browsers */
/* } */

.legacy-content span {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e9d86e; /* Fallback for unsupported browsers */
}

h4 {
  font-family: "Lektorat", sans-serif;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.step-content-container {
  background: url("Assets/dream-it-img.png") center center / contain no-repeat;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 100px;
}

.legacy-content p {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.step {
  width: 30%;
  padding: 20px;
  background: url("paint-splash.png") center no-repeat;
  background-size: cover;
  text-align: center;
  border-radius: 10px;
  color: #000;
}

.step h3 {
  font-size: 48px;
}

.step p {
  font-size: 14px;
}

.contact-us {
  display: block;
  margin: 50px auto;
  padding: 15px 30px;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

.contact-us:hover {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
}

/* 3 Steps Section - New Design */
.section-launch-legacy {
  padding: 80px 0;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.legacy-content {
  /* max-width: 1400px; */
  padding: 0 20px;
  margin: 2rem auto;
}

.legacy-content h2 {
  text-align: center;
  color: #000000;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 51px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  text-transform: uppercase;
}
  
  .golden-text {
    background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #da9943; /* Fallback for unsupported browsers */
  }

.legacy-content > p {
  text-align: center;
  color: #666666;
  font-size: clamp(16px, 1.8vw, 20px);
  max-width: 1000px;
  margin: 40px auto 80px auto;
  line-height: 1.4;
  font-weight: 400;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-top: 80px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

  .step-number {
  font-family: "Lektorat", sans-serif;
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 900;
    background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #da9943; /* Fallback for unsupported browsers */
    margin-bottom: 25px;
    z-index: 10;
    position: relative;
  }

.step-content-brush {
  width: 100%;
  min-height: 354px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  text-align: center;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

/* Individual step backgrounds - clean, no overlay */
.step:nth-child(1) .step-content-brush {
  background: url("Assets/dream-it-img.png") center center / contain no-repeat;
}

.step:nth-child(2) .step-content-brush {
  background: url("Assets/market-fans-bg.png") center center / contain no-repeat;
}

.step:nth-child(3) .step-content-brush {
  background: url("Assets/earn-revnue.png") center center / cover no-repeat;
}

.step-content-brush h4,
.step-content-brush p {
  position: relative;
  z-index: 2;
}

.step-content-brush h4 {
  font-family: "Lektorat", sans-serif;
  color: #ffffff;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.step-content-brush p {
  color: #ffffff;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.4;
  opacity: 0.95;
}

.legacy-content p {
  font-size: 16px;
    font-weight: 500;
  line-height: 1.6;
    color: black;
    text-align: center;
}
.legacy-content .step-content-brush p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: white;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.step {
  width: 30%;
  padding: 20px;
  background: url("paint-splash.png") center no-repeat;
  background-size: cover;
  text-align: center;
  border-radius: 10px;
  color: #000;
}

.step h3 {
  font-size: 48px;
}

.step p {
  font-size: 14px;
  padding: 0px 31px;
}

.contact-us {
  display: block;
  margin: 50px auto;
  padding: 15px 30px;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

.contact-us:hover {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
}

/* Collaborate Section */
.collaborate-section {
  margin: 0 auto;
  max-width: 1200px;
  background: url(Assets/colaborate-bg.png) top center / contain no-repeat;
  display: flex;
  background-size: cover;
    padding: 286px 50px 250px 50px;
  color: #000;
  margin-top: 100px;
}



.legacy-content span {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da9943; /* Fallback for unsupported browsers */
}

.collaborate-section h3 {
  font-size: clamp(20px, 4vw, 28px) !important;
  color: #fff;
  width: 69%;
  line-height: 1.7;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
}

/* Colaboration Section Start */
.section-collaborations {
  padding: 50px 0;
  background: url("Assets/black-background.png") no-repeat center;
  background-size: cover;
  /* height: 160vh; */
}

.section-collaborations .container .content h2 {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e9d86e; /* Fallback for unsupported browsers */
  font-size: 100px;
  font-weight: 600;
  text-align: center;
  line-height: 100px;
  margin-bottom: 30px;
}

.section-collaborations .container .content p {
  font-family: "poppins", sans-serif;
  font-size: 20px;
  text-align: center;
  width: 70%;
  margin: 0 auto;
}

.intro-section p {
  font-size: 18px;
  line-height: 1.6;
}

.images-section {
  margin: 50px 0;
  display: flex;
  justify-content: center;
}

.images-section marquee {
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.images-section .images {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.images-section .images img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
}

.full-image-section {
  text-align: center;
  margin-top: 50px;
}

.full-image-section img {
  max-width: 100%;
  height: auto;
}

/* Grid Images Styling - Center Reveal Animation */
.grid-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.image-grid {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 800px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: transparent;
  box-sizing: border-box;
  padding: 0;
}

.image-grid img {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  /* Initially stack all images in center */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 1;
  opacity: 0;
}

/* First image is visible initially */
.image-grid img:first-child {
  opacity: 1;
  z-index: 20;
  transform: translate(-50%, -50%) scale(1);
}

/* Define final positions for reveal animation - tighter spacing */
.image-grid img:nth-child(1) { --final-x: 5%; --final-y: 5%; }
.image-grid img:nth-child(2) { --final-x: 23%; --final-y: 5%; }
.image-grid img:nth-child(3) { --final-x: 41%; --final-y: 5%; }
.image-grid img:nth-child(4) { --final-x: 59%; --final-y: 5%; }
.image-grid img:nth-child(5) { --final-x: 77%; --final-y: 5%; }
.image-grid img:nth-child(6) { --final-x: 5%; --final-y: 27%; }
.image-grid img:nth-child(7) { --final-x: 23%; --final-y: 27%; }
.image-grid img:nth-child(8) { --final-x: 41%; --final-y: 27%; }
.image-grid img:nth-child(9) { --final-x: 59%; --final-y: 27%; }
.image-grid img:nth-child(10) { --final-x: 77%; --final-y: 27%; }
.image-grid img:nth-child(11) { --final-x: 5%; --final-y: 49%; }
.image-grid img:nth-child(12) { --final-x: 23%; --final-y: 49%; }
.image-grid img:nth-child(13) { --final-x: 41%; --final-y: 49%; }
.image-grid img:nth-child(14) { --final-x: 59%; --final-y: 49%; }
.image-grid img:nth-child(15) { --final-x: 77%; --final-y: 49%; }
.image-grid img:nth-child(16) { --final-x: 5%; --final-y: 71%; }
.image-grid img:nth-child(17) { --final-x: 23%; --final-y: 71%; }
.image-grid img:nth-child(18) { --final-x: 41%; --final-y: 71%; }
.image-grid img:nth-child(19) { --final-x: 59%; --final-y: 71%; }
.image-grid img:nth-child(20) { --final-x: 77%; --final-y: 71%; }

/* Revealed state */
.image-grid.revealed img {
  opacity: 1;
  transform: translate(var(--final-x), var(--final-y)) scale(1);
}

/* Enhanced hover effect for grid images */
.image-grid img:hover {
  transform: translate(var(--final-x), var(--final-y)) scale(2.5);
  z-index: 100;
  box-shadow: 0 25px 60px rgba(218, 153, 67, 0.6);
  border-radius: 16px;
  border: 4px solid #bd9139;
}

/* Testimonial Section Styling */
.section-slider {
  background: url("Assets/full-grid-img.png") center center / cover no-repeat;
  width: 100%;
  margin: 0 auto;
  /* padding: 50px 15px; */
  padding: 50px 0px;
  position: relative;
}
.section-slider .container {
  width: 100%;
}

.slider {
  display: flex;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-slider h2 {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.stars {
  font-size: 24px;
  color: #ffcc00;
  margin: 10px 0 0 0;
}

.section-slider h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

.section-slider p {
  font-size: 24px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 0px 150px;
}

.manager {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.manager img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 10px;
}

.manager p {
  font-size: 18px;
  color: #fff;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.prev,
.next {
  font-size: 30px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Celebrity jersey section styling - Artistic Layout */
.celebrity-jersey-section {
  padding: 150px 0;
  background: url(Assets/launch-legacy-bg-img.png) top center / auto no-repeat;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.celebrity-jersey-section h1 {
  color: #fff;
  font-size: clamp(3rem, 8vw, 90px);
  margin-bottom: 80px;
  font-family: "Lektorat", sans-serif;
  font-weight: 700;
  max-width: 1300px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1;
}

.full-width-image {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.full-width-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.card .text-wrap {
  margin-top: 10px;
}

.card .view-details {
  color: #ffffff;
  font-size: 12px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.card .view-details {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.card:hover .view-details {
  opacity: 1;
  transform: translateY(0);
}

.card:hover .view-details {
  transition-delay: 0.1s;
}

.rotate-left {
  transform: rotate(-5deg);
}

.rotate-right {
  transform: rotate(5deg);
}

.card-1,
.card-3 {
  align-self: flex-start;
}

.card-2 {
  align-self: flex-end;
}

/* Profit Sharing Section Styling */
.profit-sharing-section {
  background: url('Assets/black-background.png') center center / cover no-repeat;
  background-color: #000;
  padding: 0px 0;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}


.profit-sharing-content {
  position: relative;
  z-index: 2;
}

.profit-sharing-content h2 {
  text-align: center;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(2.5rem, 6vw, 73px);
  font-weight: 800;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.profit-sharing-content .golden-text {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da9943; /* Fallback for unsupported browsers */
}

.subtitle {
  text-align: center;
  color: #ffffff;
  font-size: clamp(16px, 2vw, 22px);
  max-width: 800px;
  margin: 0 auto 80px auto;
  line-height: 1.5;
  opacity: 0.9;
}

.profit-sharing-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Partnership Card (Left) */
.partnership-card {
  background: url(Assets/brand-white-bg.png) center center / contain no-repeat;
    background-color: transparent;
    padding: 125px 82px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    min-height: 577px;
    width: 500px;
    display: flex
;
    flex-direction: column;
    justify-content: center;
}

.partnership-card h3 {
  color: #000;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.partnership-card h4 {
  color: #000;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  margin-bottom: 15px;
  text-transform: uppercase;
  line-height: 1.1;
}

.partnership-subtitle {
  color: #000;
  font-size: clamp(16px, 1.8vw, 20px);
  margin-bottom: 5px;
}

.revenue-share {
  color: #000;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  margin-bottom: 30px;
}

.partner-btn {
  background: #000;
  color: #fff;
    padding: 10px 33px;
    margin: 0 11px;
    border: none;
    margin: auto;
    max-width: 259px;
    border-radius: 8px;
    font-family: "Lektorat", sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.partner-btn:hover {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  color: #000;
  transform: translateY(-2px);
}

/* Benefits List (Center) */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.benefit-icon {
  width: 220px;
  height: auto;
  
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-content h5 {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffffff; /* Fallback for unsupported browsers */
  font-family: "Lektorat", sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefit-content p {
  color: #ffffff;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.5;
  opacity: 0.9;
}

/* Partnership Image (Right) */
.partnership-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}



.partnership-image img {
  width: 100%;
  max-width: 350px;
  height: 450px;
  object-fit: cover;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

/* Partnering with Verbero Black Section */
.partnering-section {
  background: url('Assets/black-background.png') center center / cover no-repeat;
  background-color: #000;
  padding: 200px 0;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.partnering-content h2 {
  text-align: center;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(2.5rem, 6vw, 68px);
  font-weight: 900;
  margin-bottom: 80px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.partnering-content .golden-text {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da9943; /* Fallback for unsupported browsers */
}

/* Steps Process */
.steps-process {
  display: flex;
  justify-content: center;
  gap: 37px;
  margin-bottom: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  max-width: 500px;
}

.step-number {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da9943; /* Fallback for unsupported browsers */
  font-family: "Lektorat", sans-serif;
  font-size: clamp(50px, 6vw, 59px);
  font-weight: 900;
  margin-bottom: 0;
  line-height: 1;
  flex-shrink: 0;
}

.step-content {
  padding-top: 10px;
}

.step-content h3 {
  color: #ffffff;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: capitalize;
  line-height: 1.2;
  margin-top: 0;
}

.step-content p {
  color: #ffffff;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.3;
  opacity: 0.9;
  text-transform: lowercase;
  margin: 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.service-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-item h4 {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da9943; /* Fallback for unsupported browsers */
  font-family: "Lektorat", sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0;
  line-height: 1.2;
}

/* Responsive Design for Partnering Section */
@media (max-width: 1024px) {
  .partnering-section .steps-process {
    gap: 80px;
    margin-bottom: 80px;
  }
  
  .partnering-section .services-grid {
    gap: 6px 4px;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .partnering-section {
    padding: 60px 0;
  }
  
  .partnering-content h2 {
    margin-bottom: 60px;
  }
  
  .steps-process {
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
    text-align: center;
    padding: 0 20px;
  }
  
  .step-item {
    max-width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  
  .service-item {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .partnering-section {
    padding: 50px 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  
  .partnering-content h2 {
    font-size: clamp(24px, 7vw, 40px);
    margin-bottom: 40px;
    padding: 0 15px;
    line-height: 1.2;
  }
  
  .steps-process {
    flex-direction: column;
    gap: 35px;
    margin-bottom: 50px;
    padding: 0 20px;
    align-items: center;
  }
  
  .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
    gap: 15px;
  }
  
  .step-number {
    font-size: clamp(40px, 8vw, 50px);
    line-height: 1;
    margin-bottom: 0;
  }
  
  .step-content {
    padding-top: 0;
    text-align: center;
  }
  
  .step-content h3 {
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 5px;
    line-height: 1.2;
  }
  
  .step-content p {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.3;
    margin: 0;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .service-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    text-align: left;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(189, 145, 57, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 0 0px;
  }
  
  .service-item:hover {
    background: rgba(189, 145, 57, 0.1);
    border-color: rgba(189, 145, 57, 0.5);
    transform: translateY(-2px);
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: rgba(189, 145, 57, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
    justify-content: flex-start;
    padding: 8px;
    margin-right: 5px;
  }
  
  .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
    margin-left: 2px;
  }
  
  .service-item h4 {
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.3;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
}

/* Exclusive Benefits Section Styling - New Design */
.section-exclusive-benefits {
  background: url('Assets/black-background.png') center center / cover no-repeat;
  background-color: #000;
  padding: 100px 0;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.benefits-content h2 {
  text-align: center;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(2.5rem, 6vw, 80px);
  font-weight: 900;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.benefits-content .golden-text {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da9943; /* Fallback for unsupported browsers */
}

.benefits-subtitle {
  text-align: center;
  color: #ffffff;
  font-size: clamp(16px, 2vw, 22px);
  max-width: 1000px;
  margin: 0 auto 80px auto;
  line-height: 1.5;
  opacity: 0.9;
}

/* Benefits Layout */
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left Side - Benefits List */
.benefits-list-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.benefit-number {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da9943; /* Fallback for unsupported browsers */
  font-family: "Lektorat", sans-serif;
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -10px;
}

.benefit-content h3 {
  color: #ffffff;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.benefit-content p {
  color: #ffffff;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.3;
  opacity: 0.9;
  margin: 0;
}

/* Center - Testimonial */
.testimonial-section {
  text-align: center;
  padding: 40px 20px;
}



.testimonial-author {
  color: #ffffff;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 600;
  font-style: normal;
}

/* Right Side - Image Frames */
.image-frames-section {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-item {
  position: absolute;
  border: 3px solid #666;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.frame-1 {
  width: 120px;
  height: 160px;
  top: 20px;
  right: 60px;
  transform: rotate(15deg);
  z-index: 3;
}

.frame-2 {
  width: 140px;
  height: 180px;
  top: 150px;
  right: 20px;
  transform: rotate(-8deg);
  z-index: 2;
}

.frame-3 {
  width: 130px;
  height: 170px;
  top: 80px;
  right: 150px;
  transform: rotate(25deg);
  z-index: 1;
}

.frame-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-item:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 10;
  border-color: #da9943;
}

/* Responsive Design for Benefits Section */
@media (max-width: 1024px) {
  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .testimonial-section {
    order: -1;
  }
  
  .image-frames-section {
    height: 300px;
    margin: 0 auto;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .section-exclusive-benefits {
    padding: 60px 0;
  }
  
  .benefits-content h2 {
    margin-bottom: 20px;
  }
  
  .benefits-subtitle {
    margin-bottom: 50px;
    padding: 0 20px;
  }
  
  .benefits-layout {
    gap: 40px;
    padding: 0 20px;
  }
  
  .benefits-list-section {
    gap: 30px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .benefit-number {
    margin-top: 0;
  }
  
  .testimonial-section {
    padding: 30px 15px;
  }
  
  .image-frames-section {
    height: 250px;
  }
  
  .frame-1, .frame-2, .frame-3 {
    width: 100px;
    height: 130px;
  }
}

@media (max-width: 480px) {
  .section-exclusive-benefits {
    padding: 40px 0;
  }
  
  .benefits-layout {
    gap: 30px;
    padding: 0 15px;
  }
  
  .benefits-list-section {
    gap: 25px;
  }
  
  .testimonial-section {
    padding: 20px 10px;
  }
  
  .image-frames-section {
    height: 200px;
  }
  
  .frame-1, .frame-2, .frame-3 {
    width: 80px;
    height: 110px;
  }
}

/* Discover Section Styling */
.discover-section {
  display: flex;
  background: url("Assets/black-background.png") center center / cover no-repeat;
  padding: 80px 0;
}

.left-block {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.left-block img {
  height: 600px;
  width: 100%;
}

.discover-section .container {
  /* max-width: 1440px; */
  max-width: 100%;
  margin-right: 200px;
  padding-right: 60px;
  flex: 1;
}

.right-content {
  max-width: 500px;
  margin-left: auto;
  text-align: left;
}

.testimonial-img {
  width: 100%;
  transform: rotate(1deg);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 30px;
  font-family: "Lactorat, sans-serif";
  line-height: 1.5;
  margin-bottom: 10px;
}

.author {
  font-weight: bold;
  margin-bottom: 30px;
}

.author span {
  font-weight: normal;
  font-size: 14px;
}

.discover-btn {
  background-color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: bold;
  color: black;
}

.discover-btn:hover {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
}

/* FAQ SECTION STYLING */
.faq-section {
  background-color: #fff;
  padding: 40px 20px;
}

.faq-section h2 {
  font-size: 56px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}

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

.question h3 {
  margin: 0;
  color: #222;
}

.answer {
  padding-top: 15px;
  font-size: 16px;
  line-height: 1.5;
}

.answer p {
  color: #000;
}

/* FOOTER SECTION STYLING */
.footer-section {
  background-color: #000;
  padding: 40px 0px 20px 0px;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background-color: #000;
}

.footer-logo img {
  width: 170px;
  height: auto;
}

.social-icons {
  display: flex;
  gap: 25px;
}

.social-icons a {
  color: #fff;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #fff;
  color: #000;
}

.contact-list {
  list-style-type: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-list li img {
  margin-right: 10px;
  width: 20px;
}

.footer-links ul {
  list-style-type: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-lower {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 10px;
}

.footer-lower p {
  font-size: 16px;
  color: #fff;
}

/* TABLET RESPONSIVENESS************************************************************************** */

@media (max-width: 1024px) {
  .container {
    max-width: 960px;
    padding: 0 20px;
  }
  .nav-box {
    flex-wrap: wrap;
    padding: 15px 20px;
    background-color: #0000008a;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 15px;
    gap: 20px;
  }

  .nav-menu.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
  /* BANNER SECTION RESPONSIVENESS */
  .banner-section {
    padding: 70px 20px;
    min-height: 750px;
  }

  .banner-content h1 {
    font-size: clamp(2rem, 8vw, 100px);
    -webkit-text-stroke: 1.5px white;
  }

  .banner-content p {
    font-size: 20px;
  }
  /* LAUNCH LEGACY RESPONSIVENESS */
  /* .section-launch-legacy {
    padding: 80px 0;
    background-size: cover;
  }

  .legacy-content h2 {
    font-size: 36px;
    padding: 0 10px;
  }

  .legacy-content p {
    font-size: 18px;
    padding: 0 20px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .step {
    width: 90%;
  }

  .step-content-container {
    padding: 20px 30px;
    background-size: cover !important;
    background-position: center !important;
  }

  .contact-us {
    width: auto;
    padding: 12px 24px;
  }

  .collaborate-section h3 {
    font-size: 20px;
    padding: 0 15px;
    text-align: center;
  } */
  .section-launch-legacy {
    padding: 80px 0;

  }

  .legacy-content h2 {
    font-size: 34px;
    line-height: 1.3;
  }

  .legacy-content p {
    font-size: 18px;
    padding: 0 10px;
  }

  .steps {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .step {
    width: 100%;
  }

  .step-content-container {
    min-height: 250px;
    padding: 20px;
    background-size: cover;
  }

  .contact-us {
    font-size: 16px;
    padding: 12px 25px;
  }

  .collaborate-section h3 {
    font-size: 18px;
    padding: 0 15px;
  }
  /* COLLABORATION SECTION RESPONSIVENESS */
  .section-collaborations {
    height: auto;
    padding: 40px 0;
    background-size: cover;
  }

  .section-collaborations .container .content h2 {
    font-size: 70px;
    line-height: 80px;
  }

  .section-collaborations .container .content p {
    font-size: 18px;
    width: 85%;
  }

  .images-section marquee {
    width: 180px;
  }
  /* TESTIMONIAL SECTION RESPONSIVENESS */
  .section-slider h2 {
    font-size: 40px;
  }

  .section-slider h3 {
    font-size: 24px;
  }

  .section-slider p {
    font-size: 20px;
    padding: 0 80px;
  }

  .stars {
    font-size: 20px;
  }
  /* CELEBRITY CELEBRATION RESPONSIVENESS */
  .celebrity-jersey-section h1 {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .cards-wrapper {
    gap: 40px;
    padding: 40px 40px;
  }

  .card {
    max-width: 450px;
  }

  .card .label {
    font-size: 13px;
  }

  .card .view-details {
    font-size: 11px;
  }
  /* EXCLUSIVE BENEFITS RESPONSIVENESS */
  .section-exclusive-benefits h2 {
    font-size: 40px;
    text-align: center;
  }

  .section-exclusive-benefits p {
    font-size: 18px;
    text-align: center;
    padding: 0 20px;
  }

  .benefits {
    gap: 80px;
    padding: 20px 30px;
    flex-direction: column;
  }

  .benefit-item {
    flex-direction: row;
    justify-content: flex-start;
  }
  /* DISCOVER SECTION RESPONSIVENESS */
  .discover-section {
    flex-direction: column;
    padding: 60px 20px;
    align-items: center;
  }

  .left-block img {
    height: auto;
    width: 100%;
    max-width: 500px;
  }

  .discover-section .container {
    margin: 0 auto;
    padding: 0 20px;
  }

  .right-content {
    max-width: 100%;
    margin: 40px auto 0 auto;
    text-align: center;
  }

  .testimonial-text {
    font-size: 24px;
  }

  .discover-btn {
    padding: 10px 18px;
    font-size: 16px;
  }
  /* FAQ SECTION RESPONSIVENESS */
  .faq-section h2 {
    font-size: 40px;
  }

  .faq {
    gap: 15px;
  }

  .question h3 {
    font-size: 20px;
  }

  .answer {
    font-size: 15px;
  }
  /* FOOTER SECTION RESPONSIVENESS */
  .footer-content {
    padding: 0px 15px 0px 0px;
  }
  .footer-links ul li a {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 15px 0 0 0;
    overflow-x: hidden;
  }
}

/* MOBILE RESPONSIVENESS************************************************************************** */

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }

  .nav-logo img {
    width: 140px;
  }

  .nav-menu li a {
    font-size: 16px;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  /* BANNER SECTION RESPONSIVENESS */
  .banner-section {
    padding: 50px 15px;
    min-height: 600px;
  }

  .banner-content h1 {
    font-size: clamp(1.8rem, 7vw, 60px);
    -webkit-text-stroke: 1px white;
  }

  .banner-content p {
    font-size: 16px;
  }

  /* LAUNCH LEGACY RESPONSIVENESS */
  .section-launch-legacy {
    padding: 60px 0;
    background-size: cover;
    background-position: top;
  }

  .legacy-content h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  h4 {
    font-size: 22px;
  }

  .legacy-content p,
  .step p {
    font-size: 16px;
  }

  .step-content-container {
    min-height: 200px;
    padding: 20px;
  }

  .contact-us {
    font-size: 16px;
    padding: 10px 20px;
  }

  .collaborate-section h3 {
    font-size: 18px;
    width: 100% !important;
        line-height: 1.4 !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 35px 2px !important;
        word-spacing: 1.5px;
  }

  /* COLLABORATION SECTION RESPONSIVENESS */
  .section-collaborations {
    height: auto;
    padding: 30px 0;
    background-size: cover;
  }

  .section-collaborations .container .content h2 {
    font-size: 45px;
    line-height: 55px;
  }

  .section-collaborations .container .content p {
    font-size: 16px;
    width: 95%;
  }

  .images-section marquee {
    width: 150px;
  }

  /* TESTIMONIAL SECTION RESPONSIVENESS */
  .section-slider {
    padding: 40px 10px;
  }

  .section-slider h2 {
    font-size: 28px;
  }

  .section-slider h3 {
    font-size: 20px;
  }

  .section-slider p {
    font-size: 18px;
    padding: 0 30px;
  }

  .stars {
    font-size: 18px;
  }

  .manager img {
    width: 60px;
    height: 60px;
  }

  .manager p {
    font-size: 16px;
  }

  .prev,
  .next {
    font-size: 24px;
    padding: 6px;
  }

  /* CELEBRITY CELEBRATION RESPONSIVENESS */
  .celebrity-jersey-section h1 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .cards-wrapper {
    gap: 30px;
    padding: 30px 20px;
  }

  .card {
    max-width: 100%;
  }

  .card .label {
    font-size: 12px;
  }

  .card .view-details {
    font-size: 10px;
  }
  /* EXCLUSIVE BENEFITS RESPONSIVENESS */
  .testimonial-text {
    font-size: 20px;
  }

  .author {
    font-size: 16px;
  }

  .discover-btn {
    width: 100%;
    padding: 12px 0;
  }

  .left-block img {
    max-width: 100%;
    height: auto;
  }

  .testimonial-img {
    transform: none;
  }
  /* FAQ SECTION RESPONSIVENESS */
  .faq-section h2 {
    font-size: 40px;
  }

  .faq {
    gap: 15px;
  }

  .question h3 {
    font-size: 20px;
  }

  .answer {
    font-size: 15px;
  }
  /* FOOTER SECTION RESPONSIVENESS */
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .contact-list li,
  .footer-links li {
    justify-content: center;
  }

  .footer-links ul,
  .contact-list {
    padding: 0;
  }

  .footer-box {
    padding: 0;
  }

  .contact-list li {
    flex-direction: column;
    align-items: center;
  }

  .contact-list li img {
    margin-bottom: 5px;
  }
}

/* TESTIMONIAL EXTRA MEDIA QUERY */
@media (max-width: 480px) {
  .section-slider p {
    padding: 0 15px;
  }

  .section-slider h2 {
    font-size: 24px;
  }

  .section-slider h3 {
    font-size: 18px;
  }
  /* CELEBRITY JERSEY EXTRA RESPONSIVENESS */
  .section-exclusive-benefits h2 {
    font-size: 40px;
    text-align: center;
  }

  .section-exclusive-benefits p {
    font-size: 18px;
    text-align: center;
    padding: 0 20px;
  }

  .benefits {
    gap: 80px;
    padding: 20px 30px;
  }

  .benefit-item {
    flex-direction: row;
    justify-content: flex-start;
  }
}

/* @media (max-width: 768px) {
  .benefits {
    flex-direction: column;
    gap: 40px;
    padding: 20px 20px;
  }

  .benefit-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .benefit-item h3 {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .section-exclusive-benefits h2 {
    font-size: 32px;
  }

  .section-exclusive-benefits p {
    font-size: 16px;
  }

  .benefit-item p {
    font-size: 16px;
    text-align: left;
    padding: 0;
  }
} */

/******************************* RESPONSIVENESS STYLING FOR TABLET *******************************************/
/* @media (max-width: 1024px) {
  .container {
    max-width: 900px;
    padding: 0 20px;
  }

  .nav-box {
    padding: 15px 20px;
    flex-direction: row;
    align-items: center;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    align-items: flex-start;
    width: 100%;
  }

  .nav-menu li a {
    font-size: 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-logo img {
    width: 60px;
  }

  .image-grid {
    gap: 5px;
  }
  .banner-section {
    height: 80vh;
  }

  .banner-content p {
    font-size: 20px;
    max-width: 100%;
  }

  .section-exclusive-benefits h2 {
    font-size: 40px;
  }

  .benefits {
    flex-direction: column;
    gap: 40px;
    padding: 20px;
  }

  .benefit-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .benefit-item h3 {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-icons {
    margin-bottom: 20px;
  }

  .social-icons a {
    margin-right: 10px;
  }

  .contact-list {
    margin-bottom: 20px;
  }

  .contact-list li {
    margin-bottom: 15px;
  }

  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .footer-links li {
    margin-bottom: 0;
    padding: 5px;
  }

  .footer-lower p {
    font-size: 14px;
  }
} */

/******************************* RESPONSIVENESS STYLING FOR TABLET *******************************************/

/* @media (max-width: 768px) {
  .container {
    max-width: 700px;
  }
  .nav-box {
    padding: 10px 15px;
    flex-direction: row;
    align-items: center;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li a {
    font-size: 14px;
    text-align: left;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-logo img {
    width: 50px;
  }

  .banner-content h1 {
    font-size: clamp(1.5rem, 8vw, 80px);
    line-height: 100px;
  }

  .banner-content p {
    font-size: 18px;
    max-width: 100%;
  }

.section-exclusive-benefits h2 {
    font-size: 32px;
  }

  .section-exclusive-benefits p,
  .benefit-item p {
    font-size: 16px;
  }

  .benefit-item h3 {
    font-size: 30px;
  }
} */

/* Responsive design for 3 Steps Section */
@media (max-width: 1024px) {
  .section-launch-legacy {
    padding: 80px 0;
  }
  
  .legacy-content {
    padding: 0 20px;
    margin: 6rem auto;
  }
  
  .legacy-content h2 {
    font-size: clamp(1.6rem, 4vw, 45px);
    margin-bottom: 40px;
  }
  
  .legacy-content > p {
    font-size: clamp(15px, 1.6vw, 18px);
    margin: 30px auto 60px auto;
  }
  
  .steps {
    gap: 20px;
    margin-top: 60px;
  }
  
  .step-number {
    font-size: clamp(35px, 4.5vw, 70px);
    margin-bottom: 20px;
  }
  
  .step-content-brush {
    min-height: 300px;
    padding: 45px 35px;
  }
}

@media (max-width: 768px) {
  .section-launch-legacy {
    padding: 60px 0;
  }
  
  .legacy-content {
    padding: 0 15px;
    margin: 4rem auto;
  }
  
  .legacy-content h2 {
    font-size: clamp(1.4rem, 3.5vw, 38px);
    margin-bottom: 30px;
    line-height: 1.2;
  }
  
  .legacy-content > p {
    font-size: clamp(14px, 1.4vw, 16px);
    margin: 25px auto 50px auto;
    max-width: 95%;
    padding: 0 10px;
  }
  
  .steps {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  
  .step {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .step-number {
    font-size: clamp(40px, 3.5vw, 76px);
    margin-bottom: 15px;
  }
  
  .step-content-brush {
    min-height: 250px;
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .step-content-brush h4 {
    font-size: clamp(14px, 2vw, 20px);
    margin-bottom: 10px;
  }
  
  .step-content-brush p {
    font-size: clamp(11px, 1.2vw, 14px) !important;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .section-launch-legacy {
    padding: 40px 0;
  }
  
  .legacy-content {
    padding: 0 10px;
    margin: 3rem auto;
  }
  
  .legacy-content h2 {
    font-size: clamp(1.2rem, 3vw, 32px);
    margin-bottom: 25px;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }
  
  .legacy-content > p {
    font-size: clamp(13px, 1.3vw, 15px);
    margin: 20px auto 40px auto;
    max-width: 98%;
    padding: 0 5px;
    line-height: 1.4;
  }
  
  .steps {
    gap: 5px;
    margin-top: 30px;
  }
  
  .step-number {
    font-size: clamp(40px, 3.5vw, 76px);
    margin-bottom: 12px;
  }
  
  .step-content-brush {
    min-height: 220px;
    padding: 25px 18px;
    border-radius: 15px;
  }
  
  .step-content-brush h4 {
    font-size: clamp(12px, 1.8vw, 18px);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    line-height: 1.2;
  }
  
  .step-content-brush p {
    font-size: clamp(10px, 1.1vw, 13px);
    line-height: 1.3;
    opacity: 0.95;
  }
  
  .contact-us-container {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .contact-us-btn {
    font-size: clamp(13px, 2.5vw, 16px);
    padding: 12px 25px;
  }
  
  /* COLLABORATE SECTION MOBILE */
  .collaborate-section {
    margin-top: 40px;
    padding: 40px 47px 50px 27px;
    background-size: contain;
    background-position: center;
  }
  
  .collaborate-section h3 {
    font-size: clamp(6px, 3.5vw, 18px) !important;
        width: 100% !important;
        line-height: 1.4 !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 35px 2px !important;
        word-spacing: 1.5px;
  }
  
  .collaborate-section h3 span {
    display: inline;
    white-space: nowrap;
  }
  
  /* ELITE COLLABORATION SECTION MOBILE */
  .section-collaborations {
    padding: 40px 0;
    background-size: cover;
    background-position: center;
  }
  
  .section-collaborations .container {
    padding: 0 15px;
  }
  
  .section-collaborations .container .content h2 {
    font-size: clamp(22px, 6vw, 35px) !important;
    line-height: 1.2 !important;
    margin-bottom: 15px;
    text-align: center;
    padding: 0 10px;
  }
  
  .section-collaborations .container .content p {
    font-size: clamp(12px, 3.5vw, 14px) !important;
    width: 95% !important;
    margin: 0 auto;
    text-align: center;
    line-height: 1.4;
    padding: 0 5px;
  }

  
  .intro-section {
    padding: 20px 0;
  }
  
  /* GALLERY GRID SECTION MOBILE */
  .grid-section {
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    min-height: 50vh;
  }
  
  .image-grid {
    height: 350px !important;
    padding: 0 20px;
    max-width: 100%;
  }
  
  .image-grid img {
    width: 90px !important;
    height: 90px !important;
    border-radius: 8px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
    object-fit: cover !important;
    transition: all 0.4s ease !important;
    cursor: pointer !important;
  }
  
  /* Two images per row layout for mobile - closer spacing */
  .image-grid img:nth-child(1) { --final-x: 30%; --final-y: 20%; }
  .image-grid img:nth-child(2) { --final-x: 70%; --final-y: 20%; }
  .image-grid img:nth-child(3) { --final-x: 30%; --final-y: 50%; }
  .image-grid img:nth-child(4) { --final-x: 70%; --final-y: 50%; }
  .image-grid img:nth-child(5) { --final-x: 30%; --final-y: 80%; }
  .image-grid img:nth-child(6) { --final-x: 70%; --final-y: 80%; }
  
  /* Hide extra images for cleaner mobile view */
  .image-grid img:nth-child(n+7) {
    display: none;
  }
  
  /* Mobile animation enhancement */
  .image-grid.revealed img {
    transform: translate(var(--final-x), var(--final-y)) scale(1) rotate(0deg);
  }
  
  /* Add subtle rotation for visual interest - 2 column layout */
  .image-grid.revealed img:nth-child(1) { transform: translate(var(--final-x), var(--final-y)) scale(1) rotate(-10deg); }
  .image-grid.revealed img:nth-child(2) { transform: translate(var(--final-x), var(--final-y)) scale(1) rotate(8deg); }
  .image-grid.revealed img:nth-child(3) { transform: translate(var(--final-x), var(--final-y)) scale(1) rotate(12deg); }
  .image-grid.revealed img:nth-child(4) { transform: translate(var(--final-x), var(--final-y)) scale(1) rotate(-6deg); }
  .image-grid.revealed img:nth-child(5) { transform: translate(var(--final-x), var(--final-y)) scale(1) rotate(-15deg); }
  .image-grid.revealed img:nth-child(6) { transform: translate(var(--final-x), var(--final-y)) scale(1) rotate(10deg); }
  
  .image-grid img:hover {
    transform: translate(var(--final-x), var(--final-y)) scale(3.5) rotate(0deg) !important;
    z-index: 100 !important;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 3px solid #bd9139;
  }
  
  /* Remove background for section-collaborations1 on mobile */
  .section-collaborations1 {
    padding: 80px 0;
    margin-top: -2px;
  }

   .hidden-mobile {
    display: none;
  }
}

/* Gallery grid images: perfectly square after animation - Desktop only */
@media (min-width: 481px) {
  .image-grid img {
    width: 200px !important;
    height: 200px !important;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }
}

@media (max-width: 900px) {
  .image-grid {
    height: 480px;
  }
  
  .image-grid img {
    width: 120px !important;
    height: 120px !important;
  }
}

@media (max-width: 600px) {
  .image-grid {
    height: 320px;
  }
  
  .image-grid img {
    width: 100px !important;
    height: 100px !important;
  }
}

/* Responsive styling for dramatic hero section */
@media (max-width: 1024px) {
  .banner-section {
    min-height: 700px;
    padding: 0px ;
  }
  
  .banner-content h1 {
    font-size: clamp(2.5rem, 10vw, 120px);
    -webkit-text-stroke: 2.5px #ffffff;
    margin: 0 20px 30px 0;
  }
  
  .banner-content p {
    font-size: clamp(16px, 2.2vw, 24px);
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    min-height: 100vh;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .banner-content {
    width: 100%;
    text-align: center;
  }
  
  .banner-content h1 {
    font-size: clamp(3rem, 12vw, 100px);
    -webkit-text-stroke: 2.5px #ffffff;
    letter-spacing: -1px;
    margin: 279px 0 25px 0;
    line-height: 0.85;
  }
  
  .banner-content p {
    font-size: clamp(18px, 5vw, 24px);
    max-width: 95%;
    margin: 30px auto 0 auto;
    line-height: 1.4;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  .banner-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center center !important;
  }
  
  .banner-section .container {
    padding: 0;
    max-width: none;
    width: 100%;
    margin: 0;
  }
  
  .banner-content {
    width: 100%;
    text-align: center;
  }
  
  .banner-content h1 {
    font-size: clamp(2.5rem, 10vw, 80px);
    -webkit-text-stroke: 2px #ffffff;
    letter-spacing: 0;
    margin: 279px 0 25px 0;
    line-height: 0.9;
  }
  
  .banner-content p {
    font-size: clamp(16px, 4.5vw, 20px);
    max-width: 95%;
    margin: 25px auto 0 auto;
    line-height: 1.4;
    padding: 0 5px;
  }
}

/* Contact Us Button in 3-Steps Section */
.contact-us-container {
  text-align: center;
  margin-top: 90px;
  margin-bottom: 40px;
}

.contact-us-btn {
  background: black;
    color: white;
    font-family: "Lektorat", sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-us-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #F4E874 0%, #da9943 50%, #F4E874 100%);
}

.contact-us-btn:active {
  transform: translateY(0);
}

/* Responsive Contact Button */
@media (max-width: 768px) {
  .contact-us-container {
    margin-top: 60px;
    margin-bottom: 30px;
  }
  
  .contact-us-btn {
    padding: 12px 30px;
    font-size: clamp(14px, 3vw, 18px);
  }
}

@media (max-width: 480px) {
  .contact-us-container {
    margin-top: 50px;
    margin-bottom: 20px;
  }
  
  .contact-us-btn {
    padding: 10px 25px;
  }
}

/* Responsive Design for Celebrity Jersey Section */
@media (max-width: 1024px) {
  .celebrity-jersey-section {
    padding: 60px 0;
    min-height: 80vh;
  }
  
  .celebrity-jersey-section h1 {
    margin-bottom: 60px;
  }
  
  .full-width-image {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .celebrity-jersey-section {
    padding: 50px 0;
    min-height: auto;
  }
  
  .celebrity-jersey-section h1 {
    font-size: clamp(2rem, 6vw, 60px);
    margin-bottom: 40px;
  }
  
  .full-width-image {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .celebrity-jersey-section {
    padding: 40px 0;
  }
  
  .celebrity-jersey-section h1 {
    font-size: clamp(1.5rem, 5vw, 40px);
    margin-bottom: 30px;
    margin-top: 100px;
  }
  
  .full-width-image {
    padding: 0 15px;
  }
}

/* Responsive Design for Profit Sharing */
@media (max-width: 1024px) {
  .profit-sharing-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .partnership-card {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .benefits-list {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .partnership-image {
    order: -1;
  }
  
  .partnership-image img {
    max-width: 300px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .profit-sharing-section {
    padding: 60px 0;
  }
  
  .profit-sharing-content h2 {
    margin-bottom: 20px;
  }
  
  .subtitle {
    margin-bottom: 50px;
    padding: 0 20px;
  }
  
  .profit-sharing-layout {
    gap: 40px;
    padding: 0 20px;
  }
  
  .partnership-card {
    padding: 40px 30px;
    min-height: 300px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .benefit-icon {
    margin: 0 auto;
  }
  
  .partnership-image img {
    max-width: 280px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .profit-sharing-section {
    padding: 50px 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  
  .profit-sharing-content h2 {
    font-size: clamp(28px, 8vw, 45px);
    margin-bottom: 20px;
    line-height: 1.2;
    padding: 0 15px;
  }
  
  .subtitle {
    font-size: clamp(14px, 4vw, 16px);
    margin-bottom: 40px;
    padding: 0 15px;
    line-height: 1.4;
  }
  
  .profit-sharing-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 15px;
    align-items: center;
  }
  
  .partnership-card {
    width: 100%;
    max-width: 350px;
    padding: 28px 25px 40px 25px;
    min-height: 350px;
    background-size: contain;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .partnership-card h3 {
    font-size: clamp(10px, 2.8vw, 14px);
    margin-bottom: 6px;
    text-align: center;
    line-height: 1.2;
  }
  
  .partnership-card h4 {
    font-size: clamp(14px, 3.8vw, 18px);
    margin-bottom: 10px;
    line-height: 1.1;
    text-align: center;
  }
  
  .partnership-subtitle {
    font-size: clamp(12px, 3vw, 14px);
    margin-bottom: 5px;
    text-align: center;
  }
  
  .revenue-share {
    font-size: clamp(14px, 4vw, 18px);
    margin-bottom: 20px;
    text-align: center;
  }
  
  .partner-btn {
    font-size: clamp(11px, 3vw, 13px);
    padding: 10px 18px;
    margin-top: 5px;
  }
  
  .benefits-list {
    gap: 30px;
    width: 100%;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    align-items: center;
  }
  
  .benefit-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }
  
  .benefit-content h5 {
    font-size: clamp(14px, 4vw, 18px);
    margin-bottom: 8px;
    text-align: center;
  }
  
  .benefit-content p {
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.4;
    text-align: center;
    max-width: 280px;
  }
  
  .partnership-image {
    order: -1;
    margin-bottom: 20px;
  }
  
  .partnership-image img {
    max-width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
  }
}

/* Exclusive Benefits Section Styling */
.exclusive-benefits-section {
  background: #ffffff;
  padding: 150px 0;
    background: url(Assets/launch-legacy-bg-img.png) top center / auto no-repeat;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.benefits-content h2 {
  text-align: center;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(2.5rem, 6vw, 80px);
  font-weight: 900;
  margin-bottom: 30px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.benefits-content .golden-text {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da9943;
}

.benefits-subtitle {
  text-align: center;
  color: #333333;
  font-size: clamp(16px, 2vw, 22px);
  max-width: 1000px;
  margin: 0 auto 80px auto;
  line-height: 1.5;
  opacity: 0.9;
}

/* Benefits Main Layout */
.benefits-main-layout {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1400px;
  margin: 100px auto 0 auto;
  align-items: center;
}

/* Benefits Row */
.benefits-row {
  display: flex;
  justify-content: center;
  gap: 120px;
  width: 100%;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  text-align: left;
  max-width: 400px;
}

.benefit-number {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da9943;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}

.benefit-text h3 {
  color: #000000;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}

.benefit-text p {
  color: #333333;
  font-size: clamp(14px, 1.6vw, 20px);
  line-height: 1.3;
  opacity: 0.9;
  margin: 0;
}

/* Testimonial Row */
.testimonial-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
}

.testimonial-content {
  flex: 1;
  text-align: center;
  max-width: 600px;
}

.testimonial-quote {
  color: #000000;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da9943;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 600;
  font-style: normal;
}

/* Image Frames */
.image-frames {
  position: relative;
  height: 600px;
  width: 500px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.image-frames:hover {
  transform: scale(1.02);
}

.frame-item {
  position: absolute;
  border: 4px solid #888;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease;
  background: #333;
}

.frame-1 {
  width: 220px;
  height: 280px;
  top: 30px;
  right: 50px;
  transform: rotate(12deg);
  z-index: 3;
}

.frame-2 {
  width: 240px;
  height: 300px;
  top: 200px;
  right: 10px;
  transform: rotate(-6deg);
  z-index: 2;
}

.frame-3 {
  width: 230px;
  height: 290px;
  top: 100px;
  right: 180px;
  transform: rotate(20deg);
  z-index: 1;
}

.frame-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-item:hover {
  transform: scale(1.08) rotate(0deg);
  z-index: 10;
  border-color: #da9943;
  box-shadow: 0 20px 40px rgba(218, 153, 67, 0.3);
}

/* Image Popup Styles */
.image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-popup.active {
  display: flex;
  opacity: 1;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.popup-content {
  position: relative;
  width: 90%;
  max-width: 1400px;
  max-height: 90vh;
  margin: auto;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.popup-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  z-index: 1;
}

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

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #da9943;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close:hover {
  background: #c88a3a;
  transform: scale(1.1);
}

.popup-header {
  padding: 30px 40px 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.popup-header h3 {
  font-family: "Lektorat", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.popup-header p {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.popup-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px;
  max-height: 80vh;
  overflow-y: auto;
  align-items: start;
}

.popup-image-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  background: #fff;
  position: relative;
}

.popup-image-container:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(218, 153, 67, 0.3);
}

.popup-image-container img {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.popup-image-container:hover img {
  transform: scale(1.1);
}

/* Responsive Popup */
@media (max-width: 768px) {
  .popup-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .popup-header {
    padding: 20px 20px 15px;
  }
  
  .popup-header h3 {
    font-size: 24px;
  }
  
  .popup-header p {
    font-size: 14px;
  }
  
  .popup-images {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 20px;
    gap: 15px;
  }
  
  .popup-image-container img {
    height: 200px;
  }
  
  .popup-close {
    top: 10px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .popup-images {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 10px;
  }
  
  .popup-image-container img {
    height: 180px;
  }
  
  .popup-close {
    top: 8px;
    right: 12px;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}

/* Enhanced Mobile Responsive Design */

/* Large tablets and small laptops */
@media (max-width: 1024px) {
  .exclusive-benefits-section {
    padding: 80px 0;
  }
  
  .benefits-row {
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .benefit-item {
    min-width: 300px;
    max-width: 400px;
  }
  
  .testimonial-row {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  
  .image-frames {
    margin: 0 auto;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .exclusive-benefits-section {
    padding: 60px 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  
  .benefits-content h2 {
    font-size: clamp(32px, 8vw, 48px);
    padding: 0 20px;
  }
  
  .benefits-subtitle {
    font-size: clamp(16px, 4vw, 20px);
    padding: 0 20px;
    margin-bottom: 50px;
  }
  
  .benefits-main-layout {
    padding: 0 20px;
  }
  
  .benefits-row {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    max-width: 350px;
    width: 100%;
  }
  
  .benefit-number {
    font-size: clamp(50px, 10vw, 70px);
  }
  
  .benefit-text h3 {
    font-size: clamp(18px, 4vw, 22px);
    margin-bottom: 8px;
  }
  
  .benefit-text p {
    font-size: clamp(14px, 3vw, 18px);
    line-height: 1.4;
  }
  
  .testimonial-row {
    gap: 40px;
  }
  
  .testimonial-quote {
    font-size: clamp(20px, 4.5vw, 24px);
    line-height: 1.4;
  }
  
  .testimonial-author {
    font-size: clamp(16px, 3.5vw, 18px);
  }
  
        .image-frames {
     height: 550px;
     width: 480px;
     margin: 0 auto;
     display: flex;
     justify-content: center;
     align-items: center;
   }
   
   .frame-1, .frame-2, .frame-3 {
     width: 180px;
     height: 230px;
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
   }
}

/* Mobile devices */
@media (max-width: 480px) {
  .exclusive-benefits-section {
    padding: 90px 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow-x: hidden;
  }
  
  .benefits-content h2 {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 20px;
    padding: 0 15px;
    line-height: 1.1;
    text-align: center;
  }
  
  .benefits-subtitle {
    font-size: clamp(14px, 4vw, 16px);
    margin-bottom: 40px;
    padding: 0 15px;
    line-height: 1.4;
    text-align: center;
  }
  
  .benefits-main-layout {
    gap: 35px;
    padding: 0 15px;
  }
  
  /* Benefits in one row on mobile */
  .benefits-row {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }
  
  .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex: 1;
    max-width: none;
    min-width: 0;
  }
  
  .benefit-number {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1;
    margin-bottom: 0;
  }
  
  .benefit-text h3 {
    font-size: clamp(11px, 3.2vw, 14px);
    margin-bottom: 4px;
    line-height: 1.1;
    font-weight: 700;
  }
  
  .benefit-text p {
    font-size: clamp(9px, 2.5vw, 12px);
    line-height: 1.2;
    margin: 0;
    opacity: 0.9;
  }
  
  /* Testimonial row below benefits */
  .testimonial-row {
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }
  
  .testimonial-content {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(189, 145, 57, 0.2);
    margin: 0 5px;
  }
  
  .testimonial-quote {
    font-size: clamp(14px, 4vw, 18px);
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 400;
  }
  
  .testimonial-author {
    font-size: clamp(12px, 3.5vw, 15px);
    font-weight: 600;
  }
  
     .image-frames {
     height: 350px;
     width: 350px;
     margin: 0 auto;
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
   }
  
    .frame-1 {
     width: 140px;
     height: 180px;
     position: absolute;
     top: 20px;
     left: 28%;
     transform: translateX(-50%) rotate(8deg);
   }
   
   .frame-2 {
     width: 150px;
     height: 190px;
     position: absolute;
     top: 120px;
     left: 70%;
     transform: translateX(-50%) rotate(-4deg);
   }
   
   .frame-3 {
     width: 145px;
     height: 185px;
     position: absolute;
     top: 90px;
     left: 50%;
     transform: translateX(-50%) rotate(12deg);
   }
}

/* Extra small devices (very small phones) */
@media (max-width: 360px) {
  .exclusive-benefits-section {
    padding: 40px 0;
  }
  
  .benefits-content h2 {
    font-size: clamp(20px, 6vw, 28px);
    padding: 0 10px;
  }
  
  .benefits-subtitle {
    font-size: clamp(12px, 3.5vw, 14px);
    padding: 0 10px;
    margin-bottom: 30px;
  }
  
  .benefits-main-layout {
    gap: 25px;
    padding: 0 10px;
  }
  
  .benefits-row {
    gap: 10px;
  }
  
  .benefit-number {
    font-size: clamp(18px, 5vw, 22px);
  }
  
  .benefit-text h3 {
    font-size: clamp(9px, 2.8vw, 11px);
  }
  
  .benefit-text p {
    font-size: clamp(8px, 2.2vw, 10px);
  }
  
  .testimonial-content {
    padding: 20px 10px;
    margin: 0;
  }
  
  .testimonial-quote {
    font-size: clamp(12px, 3.5vw, 15px);
  }
  
  .testimonial-author {
    font-size: clamp(10px, 3vw, 12px);
  }
  
  .image-frames {
    height: 220px;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .frame-1, .frame-2, .frame-3 {
    width: 75px;
    height: 95px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* QR Code Custom Order Section Styling */
.qr-code-section {
  background: url('Assets/black-background.png') center center / cover no-repeat;
  background-color: #000;
  padding: 100px 0;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.qr-code-content h2 {
  text-align: center;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(2.5rem, 6vw, 60px);
  font-weight: 900;
  margin-bottom: 30px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.qr-subtitle {
  text-align: center;
  color: #ffffff;
  font-size: clamp(16px, 2vw, 20px);
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.5;
  opacity: 0.9;
}

.qr-code-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.qr-code-info h3 {
  color: #ffffff;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da9943;
}

.order-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.order-steps li {
  color: #ffffff;
  font-size: clamp(14px, 1.8vw, 18px);
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.4;
}

.order-steps li::before {
  content: "→";
  color: #bd9139;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2em;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(189, 145, 57, 0.2);
}

.contact-info p {
  color: #ffffff;
  margin: 8px 0;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.4;
}

.contact-info strong {
  color: #e9d86e;
}

.qr-code-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-code-wrapper {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid #bd9139;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(189, 145, 57, 0.2);
}

.qr-code-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.qr-label {
  color: #e9d86e;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Team Intake Form Section */
.team-intake-section {
  margin-top: 80px;
  text-align: center;
}

.team-intake-section h3 {
  color: #ffffff;
  font-family: "Lektorat", sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #bd9139 0%, #e9d86e 50%, #c99d43 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #da9943;
}

.form-description {
  color: #fff;
  font-size: clamp(14px, 1.8vw, 18px);
  max-width: 600px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
  opacity: 0.9;
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
}

.form-container iframe {
  border-radius: 12px;
  max-width: 100%;
  overflow: hidden;
}

/* QR Code Section Responsive Design */
@media (max-width: 1024px) {
  .qr-code-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .qr-code-container {
    order: -1;
  }
  
  .team-intake-section {
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .qr-code-section {
    padding: 60px 0;
  }
  
  .qr-code-content h2 {
    margin-bottom: 20px;
    padding: 0 20px;
  }
  
  .qr-subtitle {
    margin-bottom: 40px;
    padding: 0 20px;
  }
  
  .qr-code-layout {
    gap: 40px;
    padding: 0 20px;
  }
  
  .qr-code-wrapper {
    padding: 25px;
  }
  
  .qr-code-image {
    width: 250px;
    height: 250px;
  }
  
  .team-intake-section {
    margin-top: 40px;
  }
  
  .form-container iframe {
    width: 100%;
    height: 450px;
    max-width: 600px;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .qr-code-section {
    padding: 50px 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  
  .qr-code-content h2 {
    font-size: clamp(24px, 7vw, 32px);
    padding: 0 15px;
    line-height: 1.1;
  }
  
  .qr-subtitle {
    font-size: clamp(14px, 4vw, 16px);
    padding: 0 15px;
    margin-bottom: 30px;
  }
  
  .qr-code-layout {
    gap: 30px;
    padding: 0 15px;
  }
  
  .order-steps li {
    font-size: clamp(12px, 3.5vw, 14px);
    margin-bottom: 12px;
    padding-left: 25px;
  }
  
  .contact-info {
    padding: 20px 15px;
  }
  
  .contact-info p {
    font-size: clamp(12px, 3.5vw, 14px);
  }
  
  .qr-code-wrapper {
    padding: 20px;
    margin: 0 10px;
  }
  
  .qr-code-image {
    width: 220px;
    height: 220px;
  }
  
  .qr-label {
    font-size: clamp(14px, 4vw, 16px);
  }
  
  .team-intake-section {
    margin-top: 30px;
  }
  
  .team-intake-section h3 {
    font-size: clamp(20px, 6vw, 28px);
    margin-bottom: 15px;
  }
  
  .form-description {
    font-size: clamp(12px, 3.5vw, 14px);
    margin-bottom: 25px;
    padding: 0 15px;
  }
  
  .form-container iframe {
    width: 100%;
    height: 1200px;
    max-width: 100%;
    margin: 0 10px;
    overflow: hidden;
  }
}

/* Remove background for section-collaborations1 on mobile */
/* .section-collaborations1 {
  background: none;
  padding: 80px 0;
} */

/* Quote Section Styling */
.quote-section {
  padding: 80px 0;
  background: url("Assets/black-background.png") center center / cover no-repeat;
  text-align: center;
}

.quote-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-quote {
  font-size: clamp(20px, 4vw, 32px);
  line-height: 1.4;
  margin: 0 0 30px 0;
  color: #e9d86e;
  font-weight: 400;
  font-style: italic;
  position: relative;
}





.quote-author {
  font-size: clamp(16px, 3vw, 20px);
  color: #ffffff;
  font-weight: 500;
  font-style: normal;
}

/* Mobile responsiveness for quote section */
@media (max-width: 768px) {
  .quote-section {
    padding: 60px 0;
  }
  
  .quote-content {
    padding: 0 15px;
  }
  
  .main-quote::before,
  .main-quote::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .quote-section {
    padding: 50px 0;
  }
  
  .main-quote {
    margin: 0 0 20px 0;
  }
}

/* Media query for 1400px width screens - Legacy Content Section */
@media (max-width: 1500px) and (min-width: 1024px) {
  .legacy-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 42px);
  }
  
  .legacy-content > p {
    font-size: clamp(14px, 1.5vw, 18px);
    max-width: 800px;
    margin: 30px auto 60px auto;
  }
  
  .step-content-brush {
    min-height: 280px;
    padding: 40px 30px;
  }
  
  .step:nth-child(1) .step-content-brush {
    background: url("Assets/dream-it-img.png") center center / 80% no-repeat;
  }
  
  .step:nth-child(2) .step-content-brush {
    background: url("Assets/market-fans-bg.png") center center / 80% no-repeat;
  }
  
  .step:nth-child(3) .step-content-brush {
    background: url("Assets/earn-revnue.png") center center / 80% no-repeat;
  }
  
  .step-content-brush h4 {
    font-size: clamp(14px, 1.6vw, 20px);
    margin-bottom: 10px;
  }
  
  .step-content-brush p,
  .legacy-content .step-content-brush p {
    font-size: clamp(10px, 1.1vw, 14px);
    line-height: 1.4;
  }
  
  .steps {
    gap: 40px;
    margin-top: 60px;
  }
  
  .step-number {
    font-size: clamp(35px, 4vw, 65px);
  }
  
  /* Celebrity Jersey Section adjustments */
  .celebrity-jersey-section h1 {
    font-size: clamp(2.5rem, 6vw, 70px);
    margin-bottom: 60px;
  }
  
  .cards-wrapper {
    height: 700px;
  }
  
  .card img {
    width: 350px;
    height: 350px;
  }
  
  .card .label {
    font-size: clamp(10px, 1vw, 12px);
    margin-top: 10px;
  }
  
  .card-1 {
    top: 15%;
    left: 8%;
  }
  
  .card-2 {
    top: 8%;
    right: 10%;
  }
  
  .card-3 {
    bottom: 18%;
  }
}

/* ============================================================================
   TORN PAPER DIVIDERS - Breaking up black sections with elegant white paper
   ============================================================================ */

.torn-paper-divider {
  height: 250px;
  background: url(Assets/collab-bg.png) top center / cover no-repeat;
 
}

/* Alternative torn paper styles for variety */
/* .torn-paper-divider:nth-child(even) {
  height: 140px;
  transform: scaleX(-1); 
}

.torn-paper-divider:nth-child(4n) {
  height: 100px;
  transform: scaleY(-1); 
} */

/* Responsive adjustments */
@media (max-width: 1024px) {
  .torn-paper-divider {
    height: 100px;

  }
  
 
}

@media (max-width: 768px) {
  .torn-paper-divider {
    height: 0;
    display: none;
  }
}

@media (max-width: 480px) {
  .torn-paper-divider {
    height: 0;
    display: none;
  }
}

/* Commission Calculator Section Styling */
.commission-calculator-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  position: relative;
  
}

.commission-calculator-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("Assets/black-background.png") center center / cover;
  opacity: 0.1;
  z-index: 0;
}

.calculator-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.calculator-content h2 {
  font-family: "Lektorat", sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #fff;
}

.calculator-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #666666;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.calculator-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Calculator Form Styling */
.calculator-form {
  background: rgba(0, 0, 0, 0.8);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(218, 153, 67, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-group {
  margin-bottom: 25px;
  text-align: left;
}

.form-group label {
  display: block;
  font-family: "Lektorat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #da9943;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(218, 153, 67, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #da9943;
  box-shadow: 0 0 15px rgba(218, 153, 67, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
  color: #999;
}

.form-group select option {
  background: #1a1a1a;
  color: #fff;
  padding: 10px;
}

.calculate-btn {
  width: 100%;
  background: black;
  color: white;
  font-family: "Lektorat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  margin-top: 20px;
}

.calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #F4E874 0%, #da9943 50%, #F4E874 100%);
  color: #000;
}

/* Calculator Results Styling */
.calculator-results {
  background: rgba(0, 0, 0, 0.8);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(218, 153, 67, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.calculator-results h3 {
  font-family: "Lektorat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #da9943;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid rgba(218, 153, 67, 0.3);
  padding-bottom: 15px;
}

.cost-breakdown {
  margin-bottom: 30px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item.subtotal {
  border-top: 2px solid rgba(218, 153, 67, 0.5);
  border-bottom: 2px solid rgba(218, 153, 67, 0.5);
  margin-top: 15px;
  padding: 15px 0;
  font-weight: 600;
}

.item-label {
  font-size: 16px;
  color: #ccc;
}

.item-value {
  font-size: 18px;
  font-weight: 600;
  color: #da9943;
}

.support-costs {
  margin-bottom: 30px;
}

.support-costs h4 {
  font-family: "Lektorat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #da9943;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.support-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

.service-name {
  font-size: 14px;
  color: #ccc;
  flex: 1;
}

.service-cost {
  font-size: 16px;
  font-weight: 600;
  color: #da9943;
  margin-left: 10px;
}

.service-note {
  font-size: 12px;
  color: #999;
  font-style: italic;
  margin-left: 10px;
  flex-basis: 100%;
  margin-top: 5px;
}

.support-item.coach-care {
  background: rgba(218, 153, 67, 0.1);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(218, 153, 67, 0.3);
  margin-top: 15px;
}

.total-calculation {
  border-top: 2px solid rgba(218, 153, 67, 0.5);
  padding-top: 20px;
}

.price-adjustment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.adjustment-label {
  font-size: 16px;
  color: #ccc;
}

.adjustment-value {
  font-size: 16px;
  font-weight: 600;
  color: #da9943;
}

.final-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(218, 153, 67, 0.1);
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #da9943;
}

.total-label {
  font-family: "Lektorat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #da9943;
  text-transform: uppercase;
}

.total-value {
  font-family: "Lektorat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #F4E874;
  text-shadow: 0 0 10px rgba(244, 232, 116, 0.3);
}

/* Responsive Design for Calculator */
@media (max-width: 768px) {
  .commission-calculator-section {
    padding: 60px 0;
  }
  
  .calculator-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .calculator-form,
  .calculator-results {
    padding: 30px 20px;
  }
  
  .calculator-content h2 {
    font-size: clamp(28px, 6vw, 48px);
  }
  
  .support-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .service-cost {
    margin-left: 0;
    margin-top: 5px;
  }
  
  .service-note {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .calculator-form,
  .calculator-results {
    padding: 20px 15px;
  }
  
  .form-group input,
  .form-group select {
    padding: 12px 15px;
  }
  
  .calculate-btn {
    padding: 15px 30px;
    font-size: 16px;
  }
}
