/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: #ffffff;
  --foreground: #111827;
  --lime-button: #a0d423;
  --primary: #4f46e5;
  --border: #e5e7eb;
  --radius: 0.625rem;
  --purple: #9e90f8;
  --green: #A0D423;
  --dark-bg: #252525;
}

body {
  font-family: "Tajawal", sans-serif;
  background-color: #fafafa;
  color: var(--foreground);
  line-height: 1.6;
  direction: rtl;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 640px) {
  .container {
    padding: 0 0.75rem;
  }
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: 90%;
  max-width: 1400px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar.hidden {
  transform: translateX(-50%) translateY(-100%);
  opacity: 0;
}

.navbar-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 2rem;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--lime-button);
  font-weight: 700;
}

.navbar-button {
  padding: 0.5rem 1.25rem;
  border: 1px solid #1E1E1E;
  color: #1E1E1E;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.navbar-button:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.mobile-menu-toggle {
  display: none;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #374151;
  z-index: 10000;
  position: relative;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Mobile Menu Off-Canvas */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #E5E5E5;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1;
}

.mobile-menu-logo {
  height: 2rem;
  width: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #374151;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 0.5rem;
}

.mobile-menu-close:hover {
  background: #f3f4f6;
  color: #111827;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0.75rem;
  flex: 1;
}

.mobile-nav-link {
  color: #111827;
  font-weight: 500;
  text-decoration: none;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  text-align: right;
  font-size: 1.125rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--lime-button);
  background: rgba(160, 212, 35, 0.1);
}

.mobile-nav-button {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid #1E1E1E;
  background: linear-gradient(to left, #B3E144, #C7F262);
  border-radius: 9999px;
  color: #1E1E1E;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
}

.mobile-nav-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(160, 212, 35, 0.3);
}

@media (max-width: 768px) {
  .navbar {
    width: 95%;
    padding: 0.5rem 1rem;
    top: 0.5rem;
  }
  
  .navbar-logo img {
    height: 1.5rem;
  }
  
  .desktop-only {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-content {
    margin-top: 4rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    width: 98%;
    padding: 0.5rem 0.75rem;
  }
  
  .mobile-menu {
    width: 90%;
  }
  
  .mobile-menu-header {
    padding: 1rem;
  }
  
  .mobile-menu-content {
    padding: 1rem;
  }
  
  .mobile-nav-link {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
}

/* Main Content */
.main-content {
  margin-top: 6rem;
}

@media (max-width: 768px) {
  .main-content {
    margin-top: 4rem;
  }
}

@media (max-width: 480px) {
  .main-content {
    margin-top: 3.5rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 3.5rem 0.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 30;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-button {
  position: relative;
  cursor: pointer;
  background: linear-gradient(to left, #B3E144, #C7F262);
  color: #000;
  border-radius: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.5rem 6rem 0.5rem 1.5rem;
  border: none;
  overflow: hidden;
  transition: all 0.3s;
}

.hero-button .button-icon {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
  width: 4rem;
  height: 2rem;
  background: #000;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  z-index: 0;
}

.hero-button:hover .button-icon {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(0);
  border-radius: 1.5rem;
}

.hero-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  height: 100%;
  width: 80%;
  object-fit: contain;
  position: relative;
  z-index: 10;
}

.hero-vectors {
  position: absolute;
  top: 50%;
  right: 60%;
  transform: translate(50%, -50%);
  width: 150%;
  height: 100%;
  z-index: 0;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-button {
    font-size: 1rem;
    padding: 0.5rem 4rem 0.5rem 1.25rem;
  }
  
  .hero-button .button-icon {
    width: 3rem;
    height: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0.5rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 0.875rem;
  }
  
  .hero-button {
    font-size: 0.875rem;
    padding: 0.5rem 3rem 0.5rem 1rem;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-button .button-icon {
    width: 2.5rem;
    height: 1.5rem;
    left: 0.25rem;
  }
  
  .hero-image {
    width: 100%;
    max-width: 100%;
  }
  
  .hero-vectors {
    display: none; /* Hide complex vectors on mobile */
  }
}

/* Section Styles */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: 1rem;
  font-weight: 400;
  max-width: 42rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.25rem;
  }
  
  .section-description {
    font-size: 0.875rem;
    max-width: 100%;
  }
  
  .section-header {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.125rem;
  }
  
  .section-description {
    font-size: 0.75rem;
  }
}

/* Animated Pill Label */
.animated-pill-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  width: fit-content;
}

.pill-bullet {
  width: 6px;
  height: 6px;
  background-color: #000;
  border-radius: 50%;
  animation: scaleIn 0.6s ease-out 0.1s both;
}

.pill-text {
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.2s ease-out 0.15s both;
}

.animated-pill-label::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  height: 70%;
  width: 100%;
  background-color: #C6F466;
  border-radius: 9999px;
  transform: translateX(-100%) scaleX(0);
  transform-origin: right;
  z-index: 0;
  animation: scaleXIn 0.6s ease-out 0.05s both;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleXIn {
  from {
    transform: translateX(-100%) scaleX(0);
  }
  to {
    transform: translateX(-100%) scaleX(1);
  }
}

/* Tutorials Section */
.tutorials-section {
  background: #FAFAFA;
  padding: 3.5rem 0;
}

.tutorials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 90%;
  margin: 0 auto;
  align-items: stretch;
}

.tutorial-card {
  width: 100%;
  padding: 0.25rem;
  display: flex;
  justify-content: center;
  height: 100%;
}

.tutorial-card-content {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid #E5E5E5;
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tutorial-card-content::before {
  content: '';
  position: absolute;
  top: 1.25rem;
  right: 3.75rem;
  width: 12.5rem;
  height: 12.5rem;
  background: rgba(158, 144, 248, 0.2);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  transform: translateY(-33%) translateX(33%);
}

.tutorial-card-content::after {
  content: '';
  position: absolute;
  bottom: 1.25rem;
  left: 3.75rem;
  width: 12.5rem;
  height: 12.5rem;
  background: rgba(160, 212, 35, 0.1);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  transform: translateY(20%) translateX(-33%);
}

.tutorial-card-content:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: rgba(158, 144, 248, 0.3);
}

.tutorial-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 0.75rem 0;
  position: relative;
  flex: 0 0 auto;
  z-index: 1;
}

.tutorial-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #111827;
  line-height: 1.4;
}

.tutorial-subtitle {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.tutorial-number {
  color: rgba(0, 0, 0, 0.08);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -0.5rem;
}

.tutorial-image-container {
  border-radius: 0.375rem;
  padding: 0 0.75rem 1rem;
  width: 100%;
  margin-top: auto;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.tutorial-bg-gradient {
  width: 100%;
  position: relative;
  height: 300px;
  min-height: 300px;
  background: radial-gradient(50% 50% at 50% 50%, #9E90F8 0%, rgba(158, 144, 248, 0.4) 100%);
  border-radius: 50% 50% 0 0;
  overflow: hidden;
}

.tutorial-bg-split {
  width: 100%;
  position: relative;
  height: 300px;
  min-height: 300px;
  display: flex;
  overflow: hidden;
}

.tutorial-bg-split > div:first-child {
  width: 50%;
  background: radial-gradient(50% 50% at 50% 50%, #9E90F8 0%, rgba(158, 144, 248, 0.4) 100%);
  border-radius: 50% 0 0 0;
  height: 100%;
}

.tutorial-bg-split > div:last-child {
  width: 50%;
  background: linear-gradient(263.34deg, #B3E144 0.59%, #C7F262 101.66%);
  border-radius: 0 50% 0 0;
  height: 100%;
}

.tutorial-img {
  position: absolute;
  animation: fadeInScale 0.6s ease-out both;
  object-fit: contain;
  z-index: 1;
}

.tutorial-img-1 {
  bottom: 0.75rem;
  left: 0.25rem;
  width: 320px;
  max-width: 80%;
  animation-delay: 0.2s;
}

.tutorial-img-2 {
  bottom: 0;
  left: 0;
  width: 170px;
  max-width: 40%;
  animation-delay: 0.4s;
}

.tutorial-img-3 {
  top: 1.75rem;
  right: 0;
  width: 65px;
  max-width: 20%;
  animation-delay: 0.6s;
}

.tutorial-img-4 {
  top: -1rem;
  right: 4rem;
  width: 65px;
  max-width: 20%;
  animation-delay: 0.8s;
}

.tutorial-img-5 {
  top: -1.5rem;
  right: 9rem;
  width: 65px;
  max-width: 20%;
  animation-delay: 1s;
}

.tutorial-img-6 {
  top: 0;
  right: 13rem;
  width: 140px;
  max-width: 35%;
  animation-delay: 1.2s;
}

.tutorial-img-7 {
  top: -1.25rem;
  left: -1rem;
  width: 260px;
  max-width: 90%;
  animation-delay: 0.2s;
}

.tutorial-img-8 {
  bottom: -2.25rem;
  left: 4rem;
  width: 260px;
  max-width: 90%;
  animation-delay: 0.4s;
}

.tutorial-check-icon {
  position: absolute;
  top: 1.75rem;
  right: 0.75rem;
  background: var(--lime-button);
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  animation: fadeInScale 0.6s ease-out 0.6s both;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.tutorial-check-icon svg {
  width: 24px;
  height: 24px;
}

.tutorial-img-9 {
  bottom: 0;
  left: 10%;
  width: 320px;
  max-width: 80%;
  animation-delay: 0.2s;
}

.tutorial-img-10 {
  top: -2.5rem;
  right: 15%;
  width: 144px;
  max-width: 40%;
  z-index: 10;
  animation-delay: 0.4s;
}

.tutorial-img-11 {
  top: 0;
  left: 0;
  width: 250px;
  max-width: 70%;
  animation-delay: 0.6s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 1280px) {
  .tutorials-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 1.5rem;
  }
  
  .tutorial-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .tutorial-card-content {
    min-height: 420px;
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .tutorials-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 90%;
  }
  
  .tutorial-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .tutorials-section {
    padding: 2rem 0.5rem;
  }
  
  .tutorials-grid {
    gap: 1.5rem;
  }
  
  .tutorial-card {
    max-width: 100%;
  }
  
  .tutorial-card-content {
    height: auto;
    min-height: 400px;
  }
  
  .tutorial-header {
    flex-direction: row;
    align-items: flex-start;
    padding: 1rem 0.75rem 0;
  }
  
  .tutorial-number {
    font-size: 4.5rem;
    margin-top: -0.25rem;
  }
  
  .tutorial-title {
    font-size: 1.125rem;
  }
  
  .tutorial-subtitle {
    font-size: 0.9375rem;
  }
  
  .tutorial-bg-gradient,
  .tutorial-bg-split {
    height: 250px;
    min-height: 250px;
  }
  
  .tutorial-img {
    max-width: 100% !important;
  }
  
  .tutorial-img-1,
  .tutorial-img-9 {
    width: 85% !important;
    max-width: 85% !important;
    left: 5% !important;
  }
  
  .tutorial-img-2,
  .tutorial-img-3,
  .tutorial-img-4,
  .tutorial-img-5,
  .tutorial-img-6,
  .tutorial-img-10,
  .tutorial-img-11 {
    display: none; /* Hide smaller images on mobile for cleaner look */
  }
  
  .tutorial-img-7,
  .tutorial-img-8 {
    width: 90% !important;
    max-width: 90% !important;
    position: absolute !important;
  }
  
  .tutorial-img-7 {
    top: -1rem !important;
    left: -0.5rem !important;
  }
  
  .tutorial-img-8 {
    bottom: -1.5rem !important;
    left: 1rem !important;
  }
  
  .tutorial-check-icon {
    top: 1rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    padding: 0.375rem;
  }
  
  .tutorial-check-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .tutorials-section {
    padding: 1.5rem 0.5rem;
  }
  
  .tutorials-grid {
    gap: 1.25rem;
  }
  
  .tutorial-card-content {
    min-height: 380px;
  }
  
  .tutorial-header {
    padding: 0.75rem 0.5rem 0;
  }
  
  .tutorial-number {
    font-size: 3.5rem;
  }
  
  .tutorial-title {
    font-size: 1rem;
  }
  
  .tutorial-subtitle {
    font-size: 0.875rem;
  }
  
  .tutorial-image-container {
    padding: 0 0.5rem 0.75rem;
  }
  
  .tutorial-bg-gradient,
  .tutorial-bg-split {
    height: 220px;
    min-height: 220px;
  }
  
  .tutorial-img-1,
  .tutorial-img-9 {
    width: 90% !important;
    max-width: 90% !important;
  }
  
  .tutorial-img-7,
  .tutorial-img-8 {
    width: 85% !important;
    max-width: 85% !important;
  }
}

/* Challenges Section */
.challenges-section {
  background: white;
  width: 100%;
  padding: 3.5rem 0.75rem;
}

.challenges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  min-height: 80vh;
}

.challenges-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenges-image {
  border-radius: 50% 50% 0 0;
  height: 450px;
  width: 400px;
  object-fit: cover;
  z-index: 10;
  position: relative;
}

.challenges-vectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: visible;
}

.challenges-decoration {
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 400px;
  transform: translateX(-50%) rotate(20deg);
  opacity: 0.3;
  z-index: 1000;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}

.challenges-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 30;
}

.challenges-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: right;
  max-width: 42rem;
  width: 100%;
}

.challenge-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.challenge-title {
  font-weight: 700;
  font-size: 1.125rem;
}

.challenge-text {
  font-size: 1rem;
  color: #374151;
}

.separator {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.2), transparent);
  margin: 0.5rem 0;
}

@media (max-width: 1024px) {
  .challenges-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .challenges-image {
    height: 350px;
    width: 300px;
  }
}

@media (max-width: 768px) {
  .challenges-section {
    padding: 2rem 0.5rem;
  }
  
  .challenges-grid {
    gap: 1.5rem;
    min-height: auto;
  }
  
  .challenges-image {
    height: 300px;
    width: 100%;
    max-width: 280px;
  }
  
  .challenges-decoration {
    width: 200px !important;
    left: 50% !important;
  }
  
  .challenges-vectors {
    display: none; /* Hide complex vectors on mobile */
  }
  
  .challenge-title {
    font-size: 1rem;
  }
  
  .challenge-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .challenges-image {
    height: 250px;
    max-width: 100%;
  }
}

/* Services Section */
.services-section {
  position: relative;
  padding: 5rem 1rem;
  overflow: hidden;
  direction: rtl;
}

/* SVG Decorations */
.services-svg-top-left {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  z-index: 5;
}

.services-path-1,
.services-path-2 {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 1.5s ease-in-out forwards;
}

.services-path-2 {
  animation-delay: 0.2s;
}

.services-svg-star {
  position: absolute;
  right: 0;
  top: 33.333%;
  transform: translateX(33.333%);
  z-index: 0;
  opacity: 0.7;
}

.services-star-path {
  animation: rotateStar 20s linear infinite, scaleStar 6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes rotateStar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scaleStar {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.services-svg-bottom-right {
  position: absolute;
  bottom: 2.5rem;
  right: 1.5rem;
  z-index: 0;
}

.services-path-3 {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 1.5s ease-in-out forwards;
}

.services-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  justify-items: center;
  align-items: center;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  height: 350px;
  width: 250px;
  max-width: 250px;
  border-radius: 9999px;
  transition: all 0.3s;
  border: 1px solid #E5E5E5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  align-self: center;
}

.service-card:hover {
  transform: translateY(-0.5rem) scale(1.05);
}

.service-icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleInIcon 0.6s ease-out forwards;
  animation-delay: calc(var(--index) * 0.1s);
}

@keyframes scaleInIcon {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.service-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.5;
  transition: color 0.3s;
  color: #000;
}

.service-card:hover .service-title {
  color: #6D5CD9;
}

.service-description {
  color: #000;
  line-height: 1.5;
  font-size: 1rem;
  text-align: center;
}

.services-waves {
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  z-index: 0;
  height: 450px;
}

.services-wave-purple {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.services-wave-green {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.services-wave-path-purple {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawPath 2s ease-in-out forwards;
}

@media (max-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
  }
  
  .services-svg-top-left {
    display: none;
  }
  
  .services-svg-star {
    opacity: 0.5;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 3rem 0.5rem;
  }
  
  .services-content {
    gap: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    justify-items: center;
    align-items: center;
  }
  
  .service-card {
    max-width: 180px;
    width: 180px;
    height: 270px;
    padding: 1rem;
    margin: 0 auto;
  }
  
  .service-icon {
    margin-bottom: 1rem;
  }
  
  .service-icon img {
    width: 60px;
    height: 60px;
  }
  
  .service-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .service-description {
    font-size: 0.75rem;
  }
  
  .services-waves {
    height: 400px;
  }
  
  .services-svg-star {
    display: none;
  }
  
  .services-svg-bottom-right {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
    align-items: center;
  }
  
  .service-card {
    max-width: 180px;
    width: 180px;
    min-height: 250px;
    margin: 0 auto;
  }
  
  .services-waves {
    height: 350px;
  }
}

@media (max-width: 420px) {
  .services-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
  }
  
  .service-card {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}

/* Why Us Section */
.why-us-section {
  min-height: 100vh;
  background: white;
  padding: 4rem 1rem;
}

.why-us-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: auto;
  margin: 0 auto;
}

.why-us-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.why-us-card {
  position: relative;
  border: 0;
  box-shadow: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  transition: all 0.3s;
  flex: 1;
  overflow: hidden;
}

.why-us-content {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.why-us-logo {
  flex-shrink: 0;
  align-self: flex-start;
}

.why-us-logo img {
  height: 180px;
  width: auto;
}

.why-us-image-card {
  border: 2px solid;
  padding: 0;
  overflow: hidden;
  border-radius: 1rem;
  flex: 2;
}

.why-us-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.why-us-feature-card {
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background: white;
  border: 1px solid #d1d1d1;
  border-radius: 20px;
}

.why-us-feature-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  padding: 1.5rem 0;
}

.feature-content {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  text-align: right;
  width: 100%;
  justify-content: center;
  gap: 0.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-description {
  color: #000;
  line-height: 1.5;
}

.why-us-highlight-card {
  background: radial-gradient(at 50% 75%, #404040, #252525);
  color: white;
  margin: 2.5rem auto 0;
  z-index: 5;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.why-us-highlight-card::before {
  content: '';
  position: absolute;
  aspect-ratio: 1;
  transform: rotate(45deg);
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  width: 2.5rem;
  height: 2.5rem;
  background: #2c2c2c;
  border-radius: 0.375rem;
  z-index: 0;
}

.highlight-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-align: center;
  position: relative;
  z-index: 5;
}

.highlight-features {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  width: 100%;
}

.highlight-feature {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.highlight-feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.highlight-feature-text {
  color: #d1d5db;
  line-height: 1.5;
  font-size: 1rem;
}

.highlight-features::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-height: 90%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 1024px) {
  .why-us-grid {
    flex-direction: row;
    height: 600px;
  }
  
  .why-us-content {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
  
  .why-us-feature-card {
    flex-direction: row;
  }
  
  .highlight-features::before {
    display: block;
  }
}

@media (max-width: 1024px) {
  .why-us-section {
    padding: 2rem 0.5rem;
  }
  
  .why-us-grid {
    height: auto;
  }
  
  .why-us-content {
    flex-direction: column;
  }
  
  .why-us-logo {
    align-self: center;
  }
  
  .why-us-logo img {
    height: 120px;
  }
  
  .why-us-feature-card {
    flex-direction: column;
    text-align: center;
  }
  
  .why-us-feature-card img {
    width: 90px;
    height: 90px;
  }
  
  .feature-content {
    text-align: center;
  }
  
  .highlight-features {
    grid-template-columns: 1fr;
  }
  
  .highlight-features::before {
    display: none;
  }
  
  .why-us-highlight-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .why-us-image-card img {
    height: 300px;
    object-fit: cover;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .feature-description {
    font-size: 0.875rem;
  }
  
  .highlight-feature-title {
    font-size: 1rem;
  }
  
  .highlight-feature-text {
    font-size: 0.875rem;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 1rem;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-radius: 1.5rem;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  text-align: right;
  border: 1px solid #EEEEEE;
  background: rgba(255, 255, 255, 0.24);
  color: #252525;
}

.pricing-card-premium {
  background: linear-gradient(to right, #252525, #404040, #252525);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-header {
  position: relative;
  padding: 1rem 0;
}

.pricing-title {
  font-size: 2.25rem;
  font-weight: 700;
}

.pricing-highlight {
  position: absolute;
  bottom: 0.25rem;
  right: 0;
  height: 0.5rem;
  max-width: 4.5rem;
  border-radius: 9999px;
  background: var(--lime-button);
  animation: expandWidth 0.6s ease-out;
}

@keyframes expandWidth {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 4.5rem;
    opacity: 1;
  }
}

.pricing-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.2), transparent);
  margin: 1.5rem 0;
}

.pricing-card-premium .pricing-separator {
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.pricing-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-label {
  font-weight: 300;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features img {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.pricing-button {
  position: relative;
  cursor: pointer;
  border-radius: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.5rem 6rem 0.5rem 1.5rem;
  border: 1px solid #020202;
  background: transparent;
  color: #020202;
  margin-top: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
}

.pricing-button-premium {
  background: linear-gradient(to left, #B3E144, #C7F262);
  color: #020202;
  border: none;
}

.pricing-button .button-icon {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
  width: 4rem;
  height: 2rem;
  background: #252525;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  z-index: 0;
}

.pricing-button:hover .button-icon {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(0);
  border-radius: 1.5rem;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 3rem 0.5rem;
  }
  
  .pricing-title {
    font-size: 1.5rem;
  }
  
  .pricing-button {
    font-size: 1rem;
    padding: 0.5rem 4rem 0.5rem 1.25rem;
    width: 100%;
  }
  
  .pricing-button .button-icon {
    width: 3rem;
    height: 1.75rem;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card {
    padding: 1rem;
  }
  
  .pricing-title {
    font-size: 1.25rem;
  }
  
  .pricing-features {
    gap: 0.75rem;
  }
  
  .pricing-features li {
    font-size: 0.875rem;
  }
  
  .pricing-button {
    font-size: 0.875rem;
    padding: 0.5rem 3rem 0.5rem 1rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 3.5rem 0.75rem;
  min-height: 80vh;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 5rem;
  align-items: center;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 100%;
}

.accordion-item {
  background: var(--background);
  border-radius: 0.75rem;
  box-shadow: none;
  padding: 1rem 1.5rem;
  outline: none;
}

.accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  text-align: right;
  font-size: 1.25rem;
  color: #252525;
  font-weight: 700;
  transition: all 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.accordion-trigger:hover {
  text-decoration: none;
}

.accordion-icon {
  flex-shrink: 0;
  opacity: 0.6;
  transition: transform 0.2s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  color: rgba(37, 37, 37, 0.8);
  font-size: 1rem;
  padding-bottom: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 2rem 0.5rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .faq-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .accordion-trigger {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
  
  .accordion-content {
    font-size: 0.875rem;
  }
}

/* Footer */
.footer {
  width: 100%;
  background: #252525;
  color: white;
  margin-top: 2rem;
  padding-top: 3rem;
  position: relative;
  overflow: visible;
}

.footer-cta {
  width: 90%;
  max-width: 1500px;
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  background: #2E2E2E;
  padding: 3.5rem 2rem;
  margin: -5rem auto 0;
  text-align: center;
  position: relative;
  z-index: 10;
  overflow: visible;
}

.footer-cta-content {
  position: relative;
  z-index: 2;
}

.footer-cta-header {
  position: relative;
  width: fit-content;
  margin: 0 auto 1rem;
}

.footer-star-wrapper {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%) translateX(90%);
  z-index: 4;
}

.footer-star {
  animation: starBurst 0.8s ease-out 0.5s both;
}

@keyframes starBurst {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(90%) scale(0) rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(90%) scale(1) rotate(0deg);
  }
}

.footer-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  position: relative;
  z-index: 3;
}

.footer-cta-text {
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  line-height: 1.75;
  position: relative;
  z-index: 3;
}

.footer-cta-button {
  position: relative;
  cursor: pointer;
  background: linear-gradient(to left, #B3E144, #C7F262);
  color: #020202;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 8rem 0.75rem 2rem;
  border: none;
  overflow: hidden;
  transition: all 0.3s;
  z-index: 3;
}

.footer-cta-button .button-icon {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
  width: 3rem;
  height: 2rem;
  background: #252525;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  z-index: 0;
}

.footer-cta-button:hover .button-icon {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateY(0);
  border-radius: 9999px;
}

@media (min-width: 640px) {
  .footer-cta-button {
    font-size: 1.125rem;
    padding: 0.875rem 7rem 0.875rem 1.75rem;
  }
  
  .footer-cta-button .button-icon {
    width: 4rem;
    height: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-cta-button {
    font-size: 1.25rem;
    padding: 1rem 2.5rem 1rem 5rem;
  }
  
  .footer-cta-button .button-icon {
    width: 5rem;
    height: 3rem;
  }
}

.footer-waves {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 2rem;
  gap: 0.5rem;
  position: relative;
  z-index: 3;
}

.footer-wave-path-1,
.footer-wave-path-2 {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 2s ease-in-out forwards;
}

.footer-wave-path-2 {
  animation-delay: 0.2s;
}

/* Footer Decorations */
.footer-decoration-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 350px;
  height: auto;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.3;
  animation: rotateDecoration 60s linear infinite;
  pointer-events: none;
  max-width: 50%;
}

.footer-decoration-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: auto;
  transform: translateX(50%) rotate(20deg);
  z-index: 1;
  opacity: 0.3;
  animation: floatDecoration 4s ease-in-out infinite;
  pointer-events: none;
  max-width: 50%;
}

@keyframes rotateDecoration {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes floatDecoration {
  0%, 100% {
    transform: translateX(50%) rotate(20deg) translateY(0);
  }
  50% {
    transform: translateX(50%) rotate(20deg) translateY(-10px);
  }
}

.footer-content {
  position: relative;
  z-index: 10;
  padding-top: 6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: right;
  padding: 3rem 1rem;
}

.footer-logo {
  height: 100px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s;
  margin-bottom: 1.5rem;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-text {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--lime-button);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(160, 212, 35, 0.8);
  transform: scale(1.1) translateY(-2px);
}

.footer-column-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  display: inline-block;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  height: 0.25rem;
  max-width: 2.5rem;
  border-radius: 9999px;
  background: var(--lime-button);
  animation: expandWidth 0.6s ease-out;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #d1d5db;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--lime-button);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #d1d5db;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  transition: transform 0.3s;
}

.contact-item:hover {
  transform: translateX(-5px);
}

.contact-item img {
  width: 20px;
  height: 20px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  margin-top: 3rem;
  padding: 1.5rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-cta {
    padding: 2rem 1rem;
    margin-top: -8rem;
  }
  
  .footer-cta-title {
    font-size: 1.25rem;
  }
  
  .footer-cta-text {
    font-size: 0.75rem;
  }
  
  .footer-cta-button {
    font-size: 0.875rem;
    padding: 0.75rem 5rem 0.75rem 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  
  .footer-cta-button .button-icon {
    width: 2.5rem;
    height: 1.5rem;
  }
  
  .footer-decoration-left,
  .footer-decoration-right {
    display: none;
  }
  
  .footer-content {
    padding-top: 4rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .footer {
    margin-top: 2rem;
    padding-top: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-cta {
    margin-top: -10rem;
    padding: 1.5rem 0.75rem;
    width: 95%;
  }
  
  .footer-cta-title {
    font-size: 1.125rem;
  }
  
  .footer-cta-text {
    font-size: 0.6875rem;
  }
  
  .footer-star-wrapper {
    transform: translateY(-50%) translateX(80%);
  }
  
  .footer-star svg {
    width: 50px;
    height: 44px;
  }
  
  .footer-logo {
    height: 80px;
  }
  
  .footer-column-title {
    font-size: 1.125rem;
  }
  
  .footer-text,
  .footer-links,
  .footer-contact {
    font-size: 0.75rem;
  }
  
  .footer-waves {
    margin-top: 1.5rem;
  }
  
  .footer-wave-green,
  .footer-wave-purple {
    width: 150px;
    height: 12px;
  }
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.05) translate(20px, -20px);
  }
  70% {
    transform: scale(0.8) translate(-20px, 20px);
  }
}

.animate-float {
  animation: float 15s ease-in-out infinite;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-24 {
  margin-top: 6rem;
}

/* Additional responsive fixes */
@media (max-width: 768px) {
  .animated-pill-label {
    font-size: 1rem;
  }
  
  .pill-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .animated-pill-label {
    font-size: 0.875rem;
  }
  
  .pill-text {
    font-size: 0.875rem;
  }
}

/* Prevent horizontal scroll */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

