/* Main page background image */
body {
  background-image: url('../Images/background.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-container:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  max-width: 800px;
  padding: var(--space-4);
  z-index: 1;
  animation: fadeInUp 1.2s ease-out;
}

.hero-content h1 {
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content .cta-button {
  font-size: var(--font-size-lg);
  padding: var(--space-3) var(--space-8);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    height: 80vh;
    padding: var(--space-4);
  }
  
  .hero-content {
    max-width: 100%;
    padding: var(--space-3);
  }
  
  .hero-content h1 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-3);
  }
  
  .hero-content p {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-6);
  }
  
  .hero-content .cta-button {
    font-size: var(--font-size-base);
    padding: var(--space-2) var(--space-6);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 400px;
    height: 70vh;
    padding: var(--space-2);
  }
  
  .hero-content {
    padding: var(--space-2);
  }
  
  .hero-content h1 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2);
  }
  
  .hero-content p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-4);
  }
  
  .hero-content .cta-button {
    font-size: var(--font-size-sm);
    padding: var(--space-2) var(--space-5);
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 360px) {
  .hero {
    min-height: 350px;
    height: 60vh;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-lg);
  }
  
  .hero-content p {
    font-size: var(--font-size-xs);
  }
}

/* Hero Section ends here */



/* Solution and Bookings Section starts from here */

.grab-solutions-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 10px;
}

.solutions-card {
    background: linear-gradient(rgba(0, 0, 0, 0.109), rgba(0, 0, 0, 0.4)),
              url('../Images/Main\ Redirection1.jpg') center/cover no-repeat;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 1200px; /* Expanded */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.solutions-grid, .bookings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px;
    max-width: 100%;
    margin: 0 auto;
    
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-title {
    font-size: 25px;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-icon img {
    width: 24px;
    height: 24px;
}

.solution-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 12px;
}

.solution-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.solution-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.solution-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .solutions-grid,
    .bookings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .solution-icon img {
        width: 35px;
        height: 35px;
    }
}

/* Solution and Bookings Section ends here */


/* 1st section starts from here */

 .First-section {
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .text-content {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
    }

    .text-content h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #000000;
      margin-bottom: 20px;
    }

    .text-content p {
      font-size: 15px;
      line-height: 1.6;
      color: #000000;
      margin-bottom: 30px;
      justify-content: center;
      
    }

    .image-content {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
    }

    .image-content img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    @media screen and (max-width: 768px) {
      .First-section {
        flex-direction: column;
        text-align: center;
      }
    }

    /* Button 86 styling */
    .button-86 {
      all: unset;
      width: 120px;
      height: 40px;
      font-size: 16px;
      background: transparent;
      border: none;
      position: relative;
      color: #000000;
      cursor: pointer;
      z-index: 1;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
    }

    .button-86::after,
    .button-86::before {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: -99999;
      transition: all .4s;
    }

    .button-86::before {
      transform: translate(0%, 0%);
      width: 100%;
      height: 100%;
      border: 2px solid #DE5B7B;
      background: transparent;
      border-radius: 10px;
    }

    .button-86::after {
      transform: translate(10px, 10px);
      width: 35px;
      height: 35px;
      background: #de5b7c56;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border-radius: 50px;
    }

    .button-86:hover::before {
      transform: translate(5%, 20%);
      width: 110%;
      height: 110%;
    }

    .button-86:hover::after {
      border-radius: 10px;
      transform: translate(0, 0);
      width: 100%;
      height: 100%;
    }

    .button-86:active::after {
      transition: 0s;
      transform: translate(0, 5%);
    }
    
/* 1st section ends here */

/* 2nd section starts from here */

/* Glassmorphism for Quality Section */
.quality-section {
  background: rgba(255, 255, 255, 0.133); /* Glass pink */
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  color: #000000;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
  padding: 80px 20px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 90%, 60% 85%, 40% 95%, 20% 90%, 0 100%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  position: relative;
  z-index: 1;
  /* Fallback for older browsers */

}

.quality-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 50px;
}

.quality-image img {
  width: 100%;
        max-width: 450px;
      border-radius: 25px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .quality-text {
      max-width: 500px;
    }

    .quality-text h2 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .quality-text p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 30px;
      color: #000000;
    }

    .quality-text h2, .quality-text p {
  color: #000000;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

    .button-861 {
      all: unset;
      width: 120px;
      height: 40px;
      font-size: 16px;
      background: transparent;
      border: none;
      position: relative;
      color: #000000;
      cursor: pointer;
      z-index: 1;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
    }

    .button-861::after,
    .button-861::before {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: -99999;
      transition: all .4s;
      
    }

    .button-861::before {
      transform: translate(0%, 0%);
      width: 100%;
      height: 100%;
      /* background: rgb(224, 249, 181); */
      border-radius: 10px;
      border: 2px solid #DE5B7B;
     
    }

    .button-861::after {
      transform: translate(10px, 10px);
      width: 35px;
      height: 35px;
      background: #de5b7c56;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border-radius: 50px;
     
    }

    .button-861:hover::before {
      transform: translate(5%, 20%);
      width: 110%;
      height: 110%;
    }

    .button-861:hover::after {
      border-radius: 10px;
      transform: translate(0, 0);
      width: 100%;
      height: 100%;
    }

    .button-861:active::after {
      transition: 0s;
      transform: translate(0, 5%);
    }

    @media (max-width: 768px) {
      .quality-container {
        flex-direction: column;
        text-align: center;
      }

      .quality-text h2 {
        font-size: 1.8rem;
      }
    }
/* 2nd section ends here */

/* 3rd section starts from here */


    .Second-section {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      flex-direction: row; /* Image on left, content on right */
    }

    .image-content2 {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
      order: 1; /* Ensure image is left */
    }

    .image-content2 img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .text-content2 {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
      order: 2; /* Ensure text is right */
    }

    .text-content2 h2 {
     font-size: 1.5rem;
      font-weight: 700;
      color: #000000;
      margin-bottom: 20px;
    }

    .text-content2 p {
      font-size: 15px;
      line-height: 1.6;
      color: #000000;
      margin-bottom: 30px;
    }

    @media screen and (max-width: 768px) {
      .Second-section {
        flex-direction: column;
        text-align: center;
      }

      .image-content2,
      .text-content2 {
        order: unset; /* Stack normally on mobile */
      }
    }

    

/* 3rd section ends here */

/* 4th section starts from here */

.Third-section {
      display: flex;
      flex-direction: row; /* Ensures left-to-right layout */
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .text-content1 {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
      order: 1; /* Left side */
    }

    .text-content1 h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #000000;
      margin-bottom: 20px;
    }

    .text-content1 p {
      font-size: 15px;
      line-height: 1.6;
      color: #000000;
      margin-bottom: 30px;
    }

    .image-content1 {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      padding: 20px;
      order: 2; /* Right side */
    }

    .image-content1 img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    @media screen and (max-width: 768px) {
      .Third-section {
        flex-direction: column;
        text-align: center;
      }

      .text-content1, .image-content1 {
        order: unset; /* Reset order on small screens */
      }
    }

/* 4th section ends here */

/* Why People Love Mobliv section starts from here */

.testimonials {
  margin: 4em auto;
  max-width: 90%;
  width: 1100px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.testimonials .block {
  flex: 1 1 100%;
  padding: 1.5em;
  min-height: 280px;

}

.testimonial-header  {
  flex: 1 1 100%;
  padding: 0;
}


.testimonial-header h2 {
  margin: 0 0 0.5em;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
}

.testimonial-header h5 {
  margin-top: 0;
  font-size: 40px;
  line-height: 50px;
  font-weight: 300;
  color: #000000;
}

.testimonials blockquote {
  margin: 0;
  border: none;
}

.testimonials p {
  margin: 0;
  font-size: 15px;
  line-height: 28px;
  font-weight: 700;
  /* color: #fff; */
}

.testimonials cite span {
  display: block;
  margin-top: 2em;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  /* color: #fff; */
}

/* Color classes */
.color1 {
  background: rgba(255, 255, 255, 0.133);
   -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.color2 {
  background: rgba(255, 255, 255, 0.133);
   -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.color3 {
 background: rgba(255, 255, 255, 0.133);
   -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Responsive layout */
@media screen and (min-width: 650px) {
  .testimonials .block {
    flex: 1 1 48%;
  }

  .testimonial-header {
    flex: 1 1 100%;
  }
}

@media screen and (min-width: 1000px) {
  .testimonials .block {
    flex: 1 1 30%;
  }

  .testimonial-header {
    flex: 1 1 100%;
  }
}

.testimonials {
	margin: 4em auto;
	width: 1100px;
	max-width: 90%;
	@include clearfix;

	.block {
		display: block;	
		margin: 0;	
		@include MQ(M) {
			float: left;
			width: percentage(1/2);
			height: 300px;
		}
		@include MQ(L) {
			width: percentage(1/3);
			height: 280px;			
		}
		&:nth-child(n+2) {
			padding: 1.5em;
		}

		&:nth-child(2), &:nth-child(4) {
			background-color: color1;
		}
		&:nth-child(3), &:nth-child(5) {
			background-color: color2;
		}
		&:nth-child(6) {
			background-color: color3;
		}

		p {
			margin: 0;
			font-size: 15px;
			line-height: 28px;
			font-weight: 400;
			/* color: #ffffff; */
		}

		cite span {
			display: block;
			margin-top: 2em;
			font-size: 14px;
			font-weight: 600;
			font-style: normal;
			/* color: #fff; */
		}
	}

	h2 {
		margin: 0 0 0.5em;
		font-size: 14px;
		line-height: 20px;
		font-weight: 700;
		text-transform: uppercase;
		color: #444;
	}

	h5 {
		margin-top: 0;
		font-size: 2rem;
		line-height: 50px;
		font-weight: 700;
		color: color1;
	}
}

/* Why People Love Mobliv section ends here */

/* Our Team section starts from here */

.team-section {
   /* background: rgba(255, 255, 255, 0.133);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); */
  padding: 60px 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* .about-title {
  font-size:1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  white-space: nowrap;
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  background: linear-gradient(to bottom, rgb(8 42 123 / 35%) 30%, rgb(255 255 255 / 0%) 76%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
} */

.about-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000000;
}

.carousel-container {
  width: 100%;
  max-width: 1200px;
  height: 350px;
  position: relative;
  perspective: 1000px;
  margin: 80px auto 0;
}

.carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.card {
  position: absolute;
  width: 280px;
  height: 380px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.8s ease;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.card.center {
  z-index: 10;
  transform: scale(1.1) translateZ(0);
}

.card.left-1 {
  z-index: 5;
  transform: translateX(-200px) scale(0.9) translateZ(-100px);
  opacity: 0.9;
}

.card.left-2 {
  z-index: 1;
  transform: translateX(-400px) scale(0.8) translateZ(-300px);
  opacity: 0.7;
}

.card.right-1 {
  z-index: 5;
  transform: translateX(200px) scale(0.9) translateZ(-100px);
  opacity: 0.9;
}

.card.right-2 {
  z-index: 1;
  transform: translateX(400px) scale(0.8) translateZ(-300px);
  opacity: 0.7;
}

.card.hidden {
  opacity: 0;
  pointer-events: none;
}

.card img:not(.center img) {
  filter: grayscale(100%);
}

.member-info {
  text-align: center;
  margin-top: 40px;
}

.member-name {
  color: #DE5B7B;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

/* .member-name::before,
.member-name::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 100px;
  height: 2px;
  background: #DE5B7B;
}

.member-name::before {
  left: -120px;
}

.member-name::after {
  right: -120px;
} */

.member-role {
  color:#de5b7c79;
  font-size: 1.5rem;
  font-weight: 200;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: -15px;
} 

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E0F9B5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #DE5B7B;
  transform: scale(1.2);
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #DE5B7B;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  font-size: 1.5rem;
  border: none;
  outline: none;
  border : 2px solid #E0F9B5;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)  ;
}

.nav-arrow.left {
  left: 20px;
}

.nav-arrow.right {
  right: 20px;
}

@media (max-width: 768px) {
  .about-title {
    font-size: 4.5rem;
  }

  .card {
    width: 200px;
    height: 280px;
  }

  .card.left-2 {
    transform: translateX(-250px) scale(0.8) translateZ(-300px);
  }

  .card.left-1 {
    transform: translateX(-120px) scale(0.9) translateZ(-100px);
  }

  .card.right-1 {
    transform: translateX(120px) scale(0.9) translateZ(-100px);
  }

  .card.right-2 {
    transform: translateX(250px) scale(0.8) translateZ(-300px);
  }

  .member-name {
    font-size: 2rem;
  }

  .member-role {
    font-size: 1.2rem;
  }

  .member-name::before,
  .member-name::after {
    width: 50px;
  }

  .member-name::before {
    left: -70px;
  }

  .member-name::after {
    right: -70px;
  }
}


/* Our Team section ends here */

/* Mobile responsiveness overrides */
@media (max-width: 768px) {
  body {
    /* Fixed backgrounds can cause jank on mobile */
    background-attachment: scroll;
  }

  .solutions-card {
    padding: 24px;
    border-radius: 16px;
  }

  .testimonials {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .solutions-grid,
  .bookings-grid {
    grid-template-columns: 1fr;
  }

  .solution-icon {
    width: 56px;
    height: 56px;
  }

  .solution-icon img {
    width: 32px;
    height: 32px;
  }
}

/* Social Section Styles */
.social-section {
  text-align: center;
  margin: var(--space-8) 0;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-section h3 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-lg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.social-section .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DE5B7B 0%, #E0F9B5 100%);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(222, 91, 123, 0.3);
  cursor: pointer;
}

.social-section .social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.social-section .social-icon:hover::before {
  left: 100%;
}

.social-section .social-icon i {
  font-size: 18px;
  z-index: 1;
  position: relative;
  transition: transform 0.3s ease;
}

/* Unique hover effects for each social media icon in social section */
.social-section .social-icon:nth-child(1):hover {
  transform: translateY(-5px) rotate(5deg);
  background: linear-gradient(135deg, #3b5998 0%, #4c70ba 100%);
  box-shadow: 0 8px 25px rgba(59, 89, 152, 0.4);
}

.social-section .social-icon:nth-child(2):hover {
  transform: translateY(-5px) rotate(-5deg);
  background: linear-gradient(135deg, #00aced 0%, #1da1f2 100%);
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.social-section .social-icon:nth-child(3):hover {
  transform: translateY(-5px) scale(1.1);
  background: linear-gradient(135deg, #e4405f 0%, #f56040 100%);
  box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

.social-section .social-icon:nth-child(4):hover {
  transform: translateY(-5px) rotate(10deg);
  background: linear-gradient(135deg, #007bb6 0%, #00a0dc 100%);
  box-shadow: 0 8px 25px rgba(0, 123, 182, 0.4);
}

.social-section .social-icon:nth-child(5):hover {
  transform: translateY(-5px) rotate(-10deg);
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.social-section .social-icon:hover i {
  transform: scale(1.1);
}

/* Active state for social section */
.social-section .social-icon:active {
  transform: scale(0.95);
  transition: transform 0.1s;
}

/* Responsive styles for social section */
@media (max-width: 768px) {
  .social-section {
    padding: var(--space-4);
    margin: var(--space-6) 0;
  }
  
  .social-section h3 {
    font-size: var(--font-size-md);
  }
  
  .social-icons {
    gap: var(--space-3);
  }
  
  .social-section .social-icon {
    width: 35px;
    height: 35px;
  }
  
  .social-section .social-icon i {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .social-section .social-icon {
    width: 32px;
    height: 32px;
  }
  
  .social-section .social-icon i {
    font-size: 16px;
  }
  
  .social-icons {
    gap: var(--space-2);
  }
}

/* Newsletter styles */
.newsletter-container {
  width: 100%;
  padding: 40px;
  margin: 0 auto;
  border-radius: 30px 30px 0px 0px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: #DE5B7B;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  margin-top: 50px;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.newsletter-title span {
  color: #E0F9B5;
}

.newsletter-container form {
  margin-top: 30px;
}

.newsletter-container label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  color: white;
}

.newsletter-container input[type="email"] {
  width: 50%;
  padding: 10px;
  border: none;
  border-bottom: 2px solid #E0F9B5;
  background-color: transparent;
  color: white;
  font-size: 16px;
  outline: none;
  transition: border-bottom-color 0.3s ease;
}

.newsletter-container input[type="email"]:focus {
  border-bottom-color: #ffffff;
}

.newsletter-container input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-container .checkbox-wrapper {
  margin: 20px 0;
  display: flex;
  align-items: center;
}

.newsletter-container .checkbox-wrapper input[type="checkbox"] {
  accent-color: #E0F9B5;
  margin-right: 10px;
  transform: scale(1.2);
}

.newsletter-container .checkbox-wrapper label {
  margin-bottom: 0;
  cursor: pointer;
}

.newsletter-container .rating-stars {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.newsletter-container .star {
  font-size: 30px;
  color: #E0F9B5;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-container .star:hover,
.newsletter-container .star.active {
  transform: scale(1.2);
  color: #ffffff;
}

.newsletter-container .star.fa-solid {
  color: #ffffff;
}

/* Newsletter message styles */
.newsletter-message {
  padding: 15px;
  margin: 15px 0;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  animation: slideIn 0.3s ease-out;
}

.newsletter-message.error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.newsletter-message.success {
  background-color: #e8f5e8;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

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

/* Button 866 styling */
.button-866 {
  all: unset;
  width: 120px;
  height: 40px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #000000;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition: transform 0.2s ease;
}

.button-866:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.button-866::after,
.button-866::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.button-866::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #E0F9B5;
  border-radius: 10px;
}

.button-866::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #de5b7c8e;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.button-866:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-866:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-866:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

.button-866:disabled::before,
.button-866:disabled::after {
  transition: none;
}

/* Responsive newsletter styles */
@media (max-width: 768px) {
  .newsletter-container {
    padding: 20px;
    margin-top: 30px;
  }
  
  .newsletter-title {
    font-size: 1.5rem;
  }
  
  .newsletter-container input[type="email"] {
    width: 100%;
  }
  
  .newsletter-container .rating-stars {
    gap: 10px;
  }
  
  .newsletter-container .star {
    font-size: 25px;
  }
}

@media (max-width: 576px) {
  .newsletter-container {
    padding: 15px;
    margin-top: 20px;
  }
  
  .newsletter-title {
    font-size: 1.25rem;
  }
  
  .newsletter-container .rating-stars {
    gap: 8px;
  }
  
  .newsletter-container .star {
    font-size: 22px;
  }
}