:root {
  --primary: hsl(262, 83%, 58%);
  --secondary: hsl(190, 95%, 45%);
  --accent: hsl(330, 85%, 60%);
  --foreground: hsl(220, 20%, 15%);
  --muted: hsl(220, 15%, 95%);
  --muted-foreground: hsl(220, 10%, 50%);
  --card: hsl(0, 0%, 100%);
  --header-bg: rgba(255, 255, 255, 0.764);
  --border: hsl(220, 15%, 88%);
}

[data-theme="dark"] {
  --primary: hsl(262, 83%, 68%);
  --secondary: hsl(190, 95%, 55%);
  --accent: hsl(330, 85%, 70%);
  --foreground: hsl(220, 15%, 95%);
  --muted: hsl(220, 15%, 20%);
  --muted-foreground: hsl(220, 10%, 65%);
  --card: hsl(219, 16%, 17%);
  --header-bg: rgba(28, 31, 34, 0.75);
  --border: hsl(220, 15%, 25%);

  /* Dark mode specific overrides */
  --dark-body-bg: linear-gradient(-45deg, hsl(260, 40%, 10%), hsl(280, 30%, 12%), hsl(240, 30%, 10%), hsl(260, 35%, 12%));
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--foreground);
  line-height: 1.6;
  scroll-behavior: smooth;
  background: linear-gradient(-45deg, #ffe0fa, #fed2ff, #ecd6ff, #ffe0f0); /* Light mode background */
  background-size: 400% 400%;
  animation: gradientMove 20s ease infinite;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] body {
    background: var(--dark-body-bg);
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Smooth Hierarchical Animations */
@keyframes fade-in-up {
  from { 
    opacity: 0; 
    transform: translateY(60px);
  }
  to { 
    opacity: 1; 
    transform: translateY(0);
  }
}

@keyframes scale-in-gentle {
  from { 
    opacity: 0; 
    transform: scale(0.85);
  }
  to { 
    opacity: 1; 
    transform: scale(1);
  }
}

@keyframes float-gentle {
  0%, 100% { 
    transform: translateY(0) rotate(0deg);
  }
  50% { 
    transform: translateY(-30px) rotate(5deg);
  }
}

@keyframes pulse-glow-slow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(169, 85, 247, 0.3);
  }
  50% { 
    box-shadow: 0 0 50px rgba(169, 85, 247, 0.6);
  }
}

@keyframes slideDown-smooth {
  from { 
    transform: translateY(-100px); 
    opacity: 0;
  }
  to { 
    transform: translateY(0); 
    opacity: 1;
  }
}

@keyframes fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.container { 
  max-width: 1280px; 
  margin: 0 auto; 
  padding: 0 1rem; 
}

.fade-in-up { 
  opacity: 0;
  animation: fade-in-up 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; 
}

.scale-in-gentle { 
  opacity: 0;
  animation: scale-in-gentle 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; 
}

.fade-in-left {
  opacity: 0;
  animation: fade-in-left 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.fade-in-right {
  opacity: 0;
  animation: fade-in-right 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hidden { display: none !important; }
.w-full { width: 100%; }
.mb-4 { margin-bottom: 1rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons with smooth interactions */
.btn {
  padding: 0.68rem 1.68rem;
  border-radius: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  margin-left: 1.75rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 1s ease, height 1s ease;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 10px 25px rgba(169, 85, 247, 0.2);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(169, 85, 247, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: #d9adff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(169, 85, 247, 0.4);
}

.btn-danger {
  background: hsl(350, 70%, 55%);
  color: white;
  box-shadow: 0 10px 25px hsl(350 70% 55% / 0.2);
}

.btn-danger:hover {
  background: hsl(350, 75%, 60%);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px hsl(350 70% 55% / 0.4);
}


.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.learn-more-btn {
  padding: 0.7rem 2rem;
  background-color: transparent;
  border: 2px solid #4c1d65a7;
  animation: fade-in-up 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  box-shadow: 0 10px 25px rgba(169, 85, 247, 0.2);
}

.learn-more-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(169, 85, 247, 0.5);
}

.glow {
  animation: pulse-glow-slow 3s ease-in-out infinite;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  animation: slideDown-smooth 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 6rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Tilt Neon', cursive;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: inline-block;
}

.logo-text:hover {
  transform: scale(1.08);
  filter: brightness(1.3);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: var(--foreground);
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  font-size: 0.875rem;
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: translateX(-50%);
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav-link:hover::before {
  width: 80%;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--muted);
  transform: translateY(-3px);
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  color: var(--foreground);
  margin-left: 0.5rem;
}

.theme-toggle:hover {
  background: var(--muted);
  transform: rotate(15deg) scale(1.1);
}

.profile-link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  color: var(--foreground);
  margin-left: 0.5rem;
}
.profile-link:hover {
  background: var(--muted);
  transform: scale(1.1);
}
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.4s ease;
}

.menu-toggle:hover {
  background: var(--muted);
  transform: rotate(90deg);
}

.nav-mobile {
  display: none;
  padding: 1rem 0;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--card);
  position: absolute;
  top: 6rem;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.nav-mobile.active {
  display: flex;
  animation: fade-in-up 0.8s ease;
}

.nav-mobile-link {
  padding: 0.75rem 1rem;
  color: var(--foreground);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.5s ease;
}

.nav-mobile-link:hover {
  color: var(--primary);
  background: var(--muted);
  transform: translateX(10px);
}

.nav-mobile-controls {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .logo-text { font-size: 2rem; }
  .nav-link { font-size: 1.15rem; }
}

/* Hero */
.hero {
  position: relative; 
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.gradient-circle {
  position: absolute;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  filter: blur(60px);
  animation: float-gentle 10s ease-in-out infinite;
  opacity: 0.6;
}

.gradient-circle-1 {
  top: 0;
  right: 0;
  background: rgba(169, 85, 247, 0.332);
  [data-theme="dark"] & {
    background: rgba(169, 85, 247, 0.2);
  }
  animation-duration: 12s;
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

[data-theme="dark"] .hero-text1 {
    color: var(--foreground);
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Tilt Neon', cursive;
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: fade-in-up 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hero-text1 {
  margin-top:23px;
  color: #2e0c33;
  font-family: 'Roboto', sans-serif;
  display: inline-block;
  [data-theme="dark"] & {
    color: var(--foreground);
  }
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-delay: 0.6s;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero { padding: 10rem 0 6rem; }
  .gradient-circle { width: 24rem; height: 24rem; }
  .hero-title { font-size: 3.75rem; }
  .hero-subtitle { font-size: 1.25rem; }
  .hero-buttons { flex-direction: row; justify-content: center; }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  transition: all 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(169, 85, 247, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  opacity: 0;
}

.stat-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(169, 85, 247, 0.4);
}

.stat-icon {
  margin: 0 auto 0.75rem;
  color: var(--primary);
  transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.stat-card:hover .stat-icon {
  transform: scale(1.3) rotateY(360deg);
}

.stat-value {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.stat-card:hover .stat-value {
  transform: scale(1.15);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: all 0.6s ease;
}

.stat-card:hover .stat-label {
  color: var(--primary);
}

@media (min-width: 640px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }
  .stat-card { padding: 2rem; }
}

.bg-muted {
    background: rgba(220, 230, 240, 0.3);
    [data-theme="dark"] & { background: transparent; }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 4.5rem;
}

/* Sections */
#why-choose,
#how-it-works {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  z-index: 5;
}

#why-choose {
  margin-bottom: 100px;
} 

.gradient-circle-3 {
  z-index: -1;
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  filter: blur(60px);
  background: rgba(255, 0, 85, 0.303);
  [data-theme="dark"] & {
    background: rgba(255, 0, 85, 0.2);
  }
  animation: float-gentle 14s ease-in-out infinite;
  animation-delay: 0.5s;
}

.gradient-circle-4 {
  z-index: -1;
  position: absolute;
  bottom: -10rem;
  right: -10rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  filter: blur(60px);
  background: rgba(0, 34, 255, 0.316);
  [data-theme="dark"] & {
    background: rgba(0, 34, 255, 0.2);
  }
  animation: float-gentle 16s ease-in-out infinite;
  animation-delay: 1.5s;
}

.gradient-circle-5 {
  z-index: -1;
  position: absolute;
  top: 40%;
  left: -12rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  filter: blur(60px);
  background: rgba(255, 0, 170, 0.318);
  [data-theme="dark"] & {
    background: rgba(255, 0, 170, 0.2);
  }
  animation: float-gentle 13s ease-in-out infinite;
  animation-delay: 0.75s;
}

.gradient-circle-6 {
  z-index: -1;
  position: absolute;
  bottom: 40%;
  right: -12rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  filter: blur(60px);
  background: rgba(0, 38, 255, 0.316);
  [data-theme="dark"] & {
    background: rgba(0, 38, 255, 0.2);
  }
  animation: float-gentle 15s ease-in-out infinite;
  animation-delay: 2s;
}

.gradient-circle-7 {
  z-index: -1;
  position: absolute;
  bottom: 30%;
  left: -9rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  filter: blur(60px);
  background: rgba(0, 38, 255, 0.316);
  [data-theme="dark"] & {
    background: rgba(0, 38, 255, 0.2);
  }
  animation: float-gentle 15s ease-in-out infinite;
  animation-delay: 2s;
}

section h2 {
  font-size: 36px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-in-up 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

#why-choose h2 span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Tilt Neon', cursive;
}

section p {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
  [data-theme="dark"] & {
    color: var(--muted-foreground);
  }
  line-height: 1.6;
}

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

.feature-box {
  background: var(--card);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: scale-in-gentle 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.feature-box:nth-child(1) { animation-delay: 0.2s; }
.feature-box:nth-child(2) { animation-delay: 0.4s; }
.feature-box:nth-child(3) { animation-delay: 0.6s; }

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(169, 85, 247, 0.15), transparent);
  transition: left 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.feature-box:hover::before {
  left: 100%;
}

.feature-box:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 45px rgba(169, 85, 247, 0.25);
}

.feature-box span {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-box h3 {
  margin-bottom: 10px;
  color: #2d7a2d;
  [data-theme="dark"] & {
    color: var(--secondary);
  }
  transition: color 0.6s ease;
}

.feature-box:hover h3 {
  color: var(--primary);
}

.feature-box p {
  transition: transform 0.6s ease;
}

.feature-box:hover p {
  transform: scale(1.02);
}

/* Testimonials Section */
#testimonials {
  padding: 4rem 0;
  padding-top:0;
  position: relative;
  overflow: hidden;
}

.testimonial-carousel-wrapper {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 2rem;
  background: var(--card);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
  text-align: center;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.8;
  position: relative;
  padding: 0 1rem;
}

.testimonial-quote::before,
.testimonial-quote::after {
  content: '“';
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.1;
  position: absolute;
  line-height: 1;
}

.testimonial-quote::before {
  content: '“';
  top: -1.5rem;
  left: -0.5rem;
}

.testimonial-quote::after {
  content: '”';
  bottom: -3rem;
  right: -1rem;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-photo {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--card);
  box-shadow: 0 0 0 3px var(--primary);
  transition: transform 0.5s ease;
}
.testimonial-card:hover .testimonial-photo {
  transform: scale(1.1) rotate(5deg);
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: bold;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.carousel-nav {
  text-align: center;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* Footer */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  position: relative;
  z-index: 100;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.6s ease;
}

.social-link svg {
  position: relative;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover {
  color: white;
  transform: translateY(-8px) scale(1.15) rotate(360deg);
  box-shadow: 0 15px 35px rgba(169, 85, 247, 0.5);
}

.social-link:hover svg {
  transform: scale(1.3);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: inline-block;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(8px);
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  transition: all 0.5s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item svg {
  color: var(--primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
  transition: transform 0.6s ease;
}

.contact-item:hover svg {
  transform: scale(1.2) rotate(10deg);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}