/* Page-specific styles for Ketekete and Ayoka pages */

/* Hero Section */
.hero-section {
  padding: 80px 0 70px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 500px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #e31e24;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-btn {
  background: #e31e24;
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
}
.cta-btn a {
  color: white;
  text-decoration: none;
}

.cta-btn:hover {
  background: #c41e3a;
  transform: translateY(-2px);
}

.hero-images {
  flex: 1;
  max-width: 500px;
}

.image-carousel {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 20px 0;
    min-height: auto;
    background: #f8f9fa;
  }

  .hero-content {
    flex-direction: column;
    padding: 0;
    gap: 30px;
    min-height: auto;
  }

  .hero-text {
    text-align: center;
    padding: 20px;
    padding-top: 70px;
    opacity: 0;
    transform: translateY(30px);
    margin: 0 auto;
    width: 90%;
  }

  .hero-text.animate {
    animation: slideUpFade 1s ease forwards;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    opacity: 0;
    transform: translateY(30px);
  }

  .hero-text.animate h1 {
    animation: slideUp 0.8s ease forwards;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    color: #e31e24;
    opacity: 0;
    transform: translateY(30px);
  }

  .hero-text.animate .hero-subtitle {
    animation: slideUp 0.8s ease 0.2s forwards;
  }

  .hero-description {
    font-size: 1rem;
    color: #666;
    opacity: 0;
    transform: translateY(30px);
  }

  .hero-text.animate .hero-description {
    animation: slideUp 0.8s ease 0.4s forwards;
  }

  .cta-btn {
    margin: 20px auto 0;
    opacity: 0;
    background: #e31e24;
  }

  .hero-text.animate .cta-btn {
    animation: zoomIn 0.8s ease 0.6s forwards;
  }

  .hero-images {
    display: none;
  }

  .image-carousel {
    display: none;
  }

  .carousel-image {
    display: none;
  }

  .carousel-image {
    height: 100%;
    object-fit: cover;
  }

  @keyframes slideUpFade {
    from {
      transform: translateY(20px);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes slideUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes zoomIn {
    from {
      transform: scale(0.9);
      opacity: 0;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-image.active {
  opacity: 1;
}

/* Products Section */
.products-section {
  background: #fff;
}

.product-variant {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.product-variant.variant-alt {
  background: #fff;
}

.product-content {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 400px;
}


.product-content1 {
  display: flex;
  align-items: center;
  gap: 200px;
  min-height: 400px;
}


.product-text {
  flex: 1;
  max-width: 500px;
}

.product-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.2;
}

.product-subtitle {
  font-size: 1.3rem;
  color: #e31e24;
  font-weight: 600;
  margin-bottom: 25px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e31e24;
  font-weight: bold;
}

.product-image {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .product-variant {
    padding: 40px 0;
  }

  .product-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
    padding: 0 20px;
  }

  .product-content1 {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
    padding: 0 20px;
  }

  .variant-alt .product-content {
    flex-direction: column;
  }

  .variant-alt .product-content1 {
    flex-direction: column;
  }

  .product-text {
    padding: 0;
  }

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

  .product-subtitle {
    font-size: 1.1rem;
  }

  .product-features {
    text-align: left;
    display: inline-block;
  }

  .product-image {
    max-width: 100%;
    padding: 0 20px;
  }

  .product-image img {
    max-width: 80%;
  }
}

.product-center {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
  align-items: center;
  max-width: 800px;
  width: 100%;
}

.product-image-center {
  grid-column: 2;
  grid-row: 2;
  width: 280px;
  height: 200px;
  object-fit: contain;
  justify-self: center;
}

.spec-label {
  background: white;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-left: 3px solid #e31e24;
  font-size: 0.9rem;
  text-align: center;
}

.spec-label h3 {
  font-size: 0.7rem;
  color: #666;
  margin: 0 0 2px 0;
  font-weight: 500;
  text-transform: uppercase;
}

.spec-label p {
  font-size: 1rem;
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
}

.spec-label.range {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.spec-label.speed {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.spec-label.battery {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
}

.spec-label.charging {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
}

.spec-label.payload {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
}

.spec-label.terrain {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
}

/* Features Section */
.features-section {
  margin-top: 80px;
  text-align: center;
}

.features-section h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 40px;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  background: white;
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #e31e24;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item h4 {
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}

.use-cases-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #e31e24;
  border-radius: 2px;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.use-case-item {
  background: #ffffff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 5px solid #e31e24;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.use-case-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.use-case-item.animate {
  animation: slideUpFadeIn 0.8s ease forwards;
}

@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.use-case-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-left: 8px solid #e31e24;
  background: #fff;
}

.use-case-item h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.use-case-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #e31e24;
  transition: width 0.3s ease;
}

.use-case-item:hover h3::after {
  width: 60px;
}

.use-case-item p {
  color: #666;
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.use-case-item ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.use-case-item ul li {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.use-case-item ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #e31e24;
  font-weight: bold;
}

@media (max-width: 768px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-title {
    font-size: 2rem;
    padding-top: 30px;
  }

  .use-case-item {
    padding: 25px;
  }

  .use-case-item h3 {
    font-size: 1.2rem;
  }
}

.container0 {
  
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid Section */
.grid-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  overflow: hidden;
}

.grid-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.grid-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.grid-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

.grid-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding: 0 20px;
}

.grid-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.grid-item {
  width: 100%;
  min-width: auto;
  max-width: none;
}

.grid-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.grid-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(227, 30, 36, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.grid-icon i {
  font-size: 28px;
  color: white;
}

.grid-item:hover .grid-icon {
  transform: scale(1.1);
  background: rgba(227, 30, 36, 1);
}

.grid-item h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.grid-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1rem;
}

.grid-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.grid-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 15px;
  overflow: hidden;
  background: white;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
  .grid-section {
    padding: 60px 0;
  }

  .grid-content {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }

  .grid-items {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  .grid-item {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .grid-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .grid-icon i {
    font-size: 24px;
  }

  .grid-header {
    padding: 0 15px;
    margin-bottom: 40px;
  }

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

  .grid-header p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .grid-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .grid-item p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .grid-section {
    padding: 40px 0;
  }

  .grid-header h2 {
    font-size: 1.8rem;
  }

  .grid-items {
    gap: 15px;
  }

  .grid-item {
    padding: 20px 15px;
  }

  .grid-icon {
    width: 60px;
    height: 60px;
  }
}


.grid-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.grid-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.grid-item p {
  opacity: 0.9;
}

/* Mockup Section */
.mockup-section {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mockup-section h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #2c3e50;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.mockup-section p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  transition-delay: 0.2s;
}

.mockup-container {
  width: 100%;
  max-width: 3000px;
  margin: 5px auto;
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(50px);
  transition: all 1s ease;
  transition-delay: 0.4s;
}

.mockup-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.mockup-phone {
  position: relative;
  width: 320px;
  transition: all 0.5s ease;
}

.mockup-phone img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 12px solid #333;
  background: #333;
}

.mockup-phone.left {
  transform: translateX(100px) scale(0.9);
  z-index: 1;
  opacity: 0.8;
}

.mockup-phone.center {
  z-index: 3;
  transform: scale(1.1);
}

.mockup-phone.right {
  transform: translateX(-100px) scale(0.9);
  z-index: 1;
  opacity: 0.8;
}

.mockup-container:hover .mockup-phone.left {
  transform: translateX(140px) scale(0.85);
}

.mockup-container:hover .mockup-phone.right {
  transform: translateX(-140px) scale(0.85);
}

.mockup-container:hover .mockup-phone.center {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .mockup-container {
    height: 400px;
    margin: 40px auto;
  }

  .mockup-phone {
    width: 200px;
  }

  .mockup-phone.left {
    transform: translateX(60px) scale(0.9);
  }

  .mockup-phone.right {
    transform: translateX(-60px) scale(0.9);
  }

  .mockup-container:hover .mockup-phone.left {
    transform: translateX(80px) scale(0.85);
  }

  .mockup-container:hover .mockup-phone.right {
    transform: translateX(-80px) scale(0.85);
  }
}

@media (max-width: 480px) {
  .mockup-container {
    height: 300px;
  }

  .mockup-phone {
    width: 160px;
  }

  .mockup-phone img {
    border-width: 8px;
    border-radius: 16px;
  }

  .mockup-phone.left {
    transform: translateX(40px) scale(0.9);
  }

  .mockup-phone.right {
    transform: translateX(-40px) scale(0.9);
  }

  .mockup-container:hover .mockup-phone.left {
    transform: translateX(50px) scale(0.85);
  }

  .mockup-container:hover .mockup-phone.right {
    transform: translateX(-50px) scale(0.85);
  }
}

@keyframes rotatingShadow {
  0% {
    box-shadow: 20px 20px 30px rgba(227, 30, 36, 0.5),
                -20px -20px 30px rgba(44, 62, 80, 0.5);
  }
  25% {
    box-shadow: -20px 20px 30px rgba(227, 30, 36, 0.5),
                20px -20px 30px rgba(44, 62, 80, 0.5);
  }
  50% {
    box-shadow: -20px -20px 30px rgba(227, 30, 36, 0.5),
                20px 20px 30px rgba(44, 62, 80, 0.5);
  }
  75% {
    box-shadow: 20px -20px 30px rgba(227, 30, 36, 0.5),
                -20px 20px 30px rgba(44, 62, 80, 0.5);
  }
  100% {
    box-shadow: 20px 20px 30px rgba(227, 30, 36, 0.5),
                -20px -20px 30px rgba(44, 62, 80, 0.5);
  }
}

.mockup:hover img {
  transform: translateY(-10px);
  animation: rotatingShadowHover 4s ease-in-out infinite;
}

@keyframes rotatingShadowHover {
  0% {
    box-shadow: 25px 25px 40px rgba(227, 30, 36, 0.7),
                -25px -25px 40px rgba(44, 62, 80, 0.7);
  }
  25% {
    box-shadow: -25px 25px 40px rgba(227, 30, 36, 0.7),
                25px -25px 40px rgba(44, 62, 80, 0.7);
  }
  50% {
    box-shadow: -25px -25px 40px rgba(227, 30, 36, 0.7),
                25px 25px 40px rgba(44, 62, 80, 0.7);
  }
  75% {
    box-shadow: 25px -25px 40px rgba(227, 30, 36, 0.7),
                25px 25px 40px rgba(44, 62, 80, 0.7);
  }
  100% {
    box-shadow: 25px 25px 40px rgba(227, 30, 36, 0.7),
                -25px -25px 40px rgba(44, 62, 80, 0.7);
  }
}

@media (max-width: 768px) {
  .mockup-section {
    padding: 40px 20px;
  }
  
  .mockup-section h1 {
    font-size: 2rem;
  }
  
  .mockup-section p {
    font-size: 1.1rem;
  }
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

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

.benefits-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 50px;
  font-weight: bold;
}

.benefits-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.benefits-text h2 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  text-align: left;
  display: block;
}

.benefits-right {
  flex: 0.8;
}

.benefits-left {
  flex: 1.2;
}

.benefits-left {
  flex: 1;
}

.benefit-box {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  border-left: 4px solid #e31e24;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s ease;
}

.benefit-box.animate {
  opacity: 1;
  transform: translateX(0);
}

.benefit-box:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  background: #e31e24;
  color: white;
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.benefit-box h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-box p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.benefits-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.check-icon {
  background: #e31e24;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  font-weight: bold;
}

.benefit-detail {
  flex: 1;
}

.benefit-detail h3 {
  color: #000000;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  display: block;
}

.benefit-detail p {
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  display: block;
}

.benefits-right {
  flex: 1;
  position: relative;
}

.benefits-right img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 10px solid white;
  transform: translateX(-20px);
  transition: transform 0.3s ease;
}

.benefits-right img:hover {
  transform: translateX(-10px);
}

@media (max-width: 768px) {
  .benefits-wrapper {
    flex-direction: column;
  }

  .benefits-right img {
    margin-top: 30px;
  }

  .benefit-box {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .benefits-content {
    grid-template-columns: 1fr;
  }

  .benefits-text {
    padding: 30px 20px;
  }

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

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

@media (max-width: 968px) {
  .benefits-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .benefits-text {
    padding-right: 0;
  }

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

  .check-icon {
    margin-bottom: 10px;
  }

  .benefits-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Animation Classes */
.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease;
}

.fade-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.fade-only {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.slide-in-left.animate,
.slide-in-right.animate,
.fade-in.animate,
.fade-up.animate {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

.fade-only.animate {
  opacity: 1;
}

/* Staggered animations for product section */
.product-section .label {
  transition-delay: calc(var(--animation-order, 0) * 0.1s);
}

.product-section .top-left {
  --animation-order: 1;
}

.product-section .mid-left {
  --animation-order: 2;
}

.product-section .bottom-left {
  --animation-order: 3;
}

.product-section .top-right {
  --animation-order: 1;
}

.product-section .mid-right {
  --animation-order: 2;
}

.product-section .bottom-right {
  --animation-order: 3;
}

/* Staggered animations for use cases */
.use-cases-grid .use-case-item {
  transition-delay: calc(var(--animation-order, 0) * 0.15s);
}

.use-cases-grid .use-case-item:nth-child(1) {
  --animation-order: 1;
}

.use-cases-grid .use-case-item:nth-child(2) {
  --animation-order: 2;
}

.use-cases-grid .use-case-item:nth-child(3) {
  --animation-order: 3;
}

.use-cases-grid .use-case-item:nth-child(4) {
  --animation-order: 4;
}

/* Staggered animations for benefits */
.benefits-left .benefit-box {
  transition-delay: calc(var(--animation-order, 0) * 0.15s);
}

.benefits-left .benefit-box:nth-child(1) {
  --animation-order: 1;
}

.benefits-left .benefit-box:nth-child(2) {
  --animation-order: 2;
}

.benefits-left .benefit-box:nth-child(3) {
  --animation-order: 3;
}

.benefits-left .benefit-box:nth-child(4) {
  --animation-order: 4;
}


.container1 {
  position: relative;
  width: 50%;
  height: 500px;
  justify-self: center;

  margin: 0 auto;
}

.center-image {
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 70%;
}

.label {
  position: absolute;
  max-width: 150px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .container1 {
    width: 90%;
    height: 400px;
    margin: 20px auto;
  }

  .center-image {
    width: auto;
    height: auto;
    max-width: 60%;
    max-height: 60%;
  }

  .label {
    font-size: 12px;
    max-width: 120px;
    padding: 8px 12px;
  }

  /* Maintain positions but adjust for smaller screen */
  .label.top-left {
    top: 30px;
    left: 10px;
  }

  .label.mid-left {
    top: 160px;
    left: 5px;
  }

  .label.bottom-left {
    bottom: 30px;
    left: 10px;
  }

  .label.top-right {
    top: 30px;
    right: 10px;
  }

  .label.mid-right {
    top: 160px;
    right: 5px;
  }

  .label.bottom-right {
    bottom: 30px;
    right: 10px;
  }

  /* Adjust connecting lines for mobile */
  .label.top-left::after {
    width: 80px;
    right: -80px;
    transform: rotate(25deg);
  }

  .label.mid-left::after {
    width: 100px;
    right: -100px;
    transform: rotate(0deg);
  }

  .label.bottom-left::after {
    width: 80px;
    right: -80px;
    transform: rotate(-25deg);
  }

  .label.top-right::after {
    width: 80px;
    left: -80px;
    transform: rotate(-25deg);
  }

  .label.mid-right::after {
    width: 100px;
    left: -100px;
    transform: rotate(0deg);
  }

  .label.bottom-right::after {
    width: 80px;
    left: -80px;
    transform: rotate(25deg);
  }

  .section-title-2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .container1 {
    height: 350px;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: visible;
  }

  .label {
    font-size: 10px;
    max-width: 90px;
    padding: 6px 8px;
    position: absolute;
    z-index: 2;
  }

  .center-image {
    max-width: 60%;
    max-height: 60%;
    left: 50%;
  }

  /* Adjust label positions for smaller screens */
  .label.top-left {
    top: 20px;
    left: 5px;
  }

  .label.mid-left {
    top: 150px;
    left: 5px;
  }

  .label.bottom-left {
    bottom: 20px;
    left: 5px;
  }

  .label.top-right {
    top: 20px;
    right: 5px;
  }

  .label.mid-right {
    top: 150px;
    right: 5px;
  }

  .label.bottom-right {
    bottom: 20px;
    right: 5px;
  }

  /* Adjust connecting lines for smaller screens */
  .label::after {
    width: 40px !important;
  }

  .label.top-left::after {
    right: -40px;
    transform: rotate(20deg);
  }

  .label.mid-left::after {
    right: -40px;
    transform: rotate(0deg);
  }

  .label.bottom-left::after {
    right: -40px;
    transform: rotate(-20deg);
  }

  .label.top-right::after {
    left: -40px;
    transform: rotate(-20deg);
  }

  .label.mid-right::after {
    left: -40px;
    transform: rotate(0deg);
  }

  .label.bottom-right::after {
    left: -40px;
    transform: rotate(20deg);
  }

  /* Product section specific adjustments */
  .product-section {
    width: 100%;
    overflow-x: hidden;
    padding: 0;
  }

  .product-content {
    width: 100%;
    padding: 0;
    overflow: visible;
  }


  .product-content1 {
    width: 100%;
    padding: 0;
    overflow: visible;
  }
}


.label::after {
  content: '';
  position: absolute;
  background: #e31e24;
  height: 2px;
  z-index: 1;
}

/* Label positions and lines */
.label.top-left {
  top: 40px;
  left: 20px;
}

.label.top-left::after {
  width: 120px;
  top: 110%;
  right: -120px;
  transform: rotate(15deg);
}

.label.mid-left {
  top: 200px;
  left: 10px;
}

.label.mid-left::after {
  width: 150px;
  top: 50%;
  right: -150px;
}

.label.bottom-left {
  bottom: 40px;
  left: 20px;
}

.label.bottom-left::after {
  width: 120px;
  top: 0%;
  right: -120px;
  transform: rotate(-32deg);
}

.label.top-right {
  top: 40px;
  right: 20px;
}

.label.top-right::after {
  width: 120px;
  top: 100%;
  left: -120px;
  transform: rotate(-15deg);
}

.label.mid-right {
  top: 200px;
  right: 10px;
}

.label.mid-right::after {
  width: 150px;
  top: 50%;
  left: -150px;
}

.label.bottom-right {
  bottom: 40px;
  right: 20px;
}

.label.bottom-right::after {
  width: 120px;
  top: 0%;
  left: -120px;
  transform: rotate(15deg);
}

.label:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.label:hover::after {
  background: #ff1a1a;
  box-shadow: 0 0 10px rgba(227, 30, 36, 0.3);
}

@media (max-width: 768px) {
  .container1 {
    width: 90%;
    height: 400px;
    margin: 0px auto;
  }

  .center-image {
    width: auto;
    height: auto;
    max-width: 60%;
    max-height: 60%;
  }

  .label {
    font-size: 12px;
    max-width: 120px;
    padding: 8px 12px;
  }

  .label::after {
    width: 60px !important;
  }

  /* Maintain positions but adjust for smaller screen */
  .label.top-left {
    top: 65px;
    left: 10px;
  }

  .label.mid-left {
    top: 130px;
    left: 5px;
  }

  .label.bottom-left {
    bottom: 20px;
    left: 10px;
  }

  .label.top-right {
    top: 50px;
    right: 10px;
  }

  .label.mid-right {
    top: 160px;
    right: 5px;
  }

  .label.bottom-right {
    bottom: 80px;
    right: 35px;
  }

  .label.top-left::after {
    right: -60px;
    transform: rotate(32deg);
  }

  .label.mid-left::after {
    right: -50px;
  }

  .label.bottom-left::after {
    right: -50px;
    transform: rotate(-50deg);
  }

  .label.top-right::after {
    left: -60px;
    transform: rotate(-32deg);
  }

  .label.mid-right::after {
    left: -60px;
  }

  .label.bottom-right::after {
    left: -60px;
    transform: rotate(32deg);
  }

  .section-title-2 {
    font-size: 2rem;
    margin-bottom: 0px;
  }
}

@media (max-width: 480px) {
  .container1 {
    height: 350px;
    width: 100%;
    animation: fadeIn 1s ease forwards;
  }

  .label {
    font-size: 11px;
    max-width: 100px;
    padding: 6px 10px;
    animation: fadeSlideIn 0.8s ease forwards;
    opacity: 0;
  }

  .center-image {
    max-width: 50%;
    max-height: 70%;
    animation: zoomFadeIn 1s ease forwards;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes zoomFadeIn {
    from {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.9);
    }

    to {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }

  /* Override animation classes for mobile */
  .slide-in-left,
  .slide-in-right,
  .fade-in,
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Ensure all product labels are visible */
  .product-section .label {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-right {
    gap: 10px;
  }

  .chat-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

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

  .product-center {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, auto);
    gap: 15px;
    text-align: center;
  }

  .product-image-center {
    grid-column: 1;
    grid-row: 4;
    width: 250px;
    height: 180px;
  }

  .spec-label.range {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .spec-label.speed {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .spec-label.battery {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }

  .spec-label.charging {
    grid-column: 1;
    grid-row: 5;
    justify-self: center;
  }

  .spec-label.payload {
    grid-column: 1;
    grid-row: 6;
    justify-self: center;
  }

  .spec-label.terrain {
    grid-column: 1;
    grid-row: 7;
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}


/* Mockup container */
.mockup {
  display: inline-block;
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
 position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: rotatingShadow 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: box-shadow;
}

@keyframes rotatingShadow {
  0% {
    box-shadow: 20px 20px 30px rgba(227, 30, 36, 0.5),
                -20px -20px 30px rgba(44, 62, 80, 0.5);
  }
  25% {
    box-shadow: -20px 20px 30px rgba(227, 30, 36, 0.5),
                20px -20px 30px rgba(44, 62, 80, 0.5);
  }
  50% {
    box-shadow: -20px -20px 30px rgba(227, 30, 36, 0.5),
                20px 20px 30px rgba(44, 62, 80, 0.5);
  }
  75% {
    box-shadow: 20px -20px 30px rgba(227, 30, 36, 0.5),
                -20px 20px 30px rgba(44, 62, 80, 0.5);
  }
  100% {
    box-shadow: 20px 20px 30px rgba(227, 30, 36, 0.5),
                -20px -20px 30px rgba(44, 62, 80, 0.5);
  }
}

.mockup img {
  max-width: 100%;
  display: block;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: rotatingShadow 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: box-shadow;
}

/* Why Sunbread Section */
.why-sunbread {
  padding: 80px 0;
  margin: 0 auto;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1200px;
}

.section-title-2 {
  text-align: center;
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
  padding-top: 70px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.section-title-2.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-title-2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #e31e24;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .why-sunbread {
    padding: 40px 0;
  }

  .section-title-2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

@keyframes rotatingShadow {
  0% {
    box-shadow: 20px 20px 30px rgba(227, 30, 36, 0.5),
                -20px -20px 30px rgba(44, 62, 80, 0.5);
  }
  25% {
    box-shadow: -20px 20px 30px rgba(227, 30, 36, 0.5),
                20px -20px 30px rgba(44, 62, 80, 0.5);
  }
  50% {
    box-shadow: -20px -20px 30px rgba(227, 30, 36, 0.5),
                20px 20px 30px rgba(44, 62, 80, 0.5);
  }
  75% {
    box-shadow: 20px -20px 30px rgba(227, 30, 36, 0.5),
                -20px 20px 30px rgba(44, 62, 80, 0.5);
  }
  100% {
    box-shadow: 20px 20px 30px rgba(227, 30, 36, 0.5),
                -20px -20px 30px rgba(44, 62, 80, 0.5);
  }
}

.mockup-section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mockup-section h1 strong {
  color: #e31e24;
}