
/* Base */
:root {
  --edukai-purple: #9b87f5;
  --edukai-purple-dark: #7E69AB;
  --edukai-purple-light: #D6BCFA;
  --edukai-blue: #7188FE;
  --edukai-blue-light: #C7D2FE;
  --edukai-green: #48BB78;
  --edukai-green-light: #C6F6D5;
  --edukai-orange: #F6AD55;
  --edukai-orange-light: #FEEBC8;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #FFFFFF;
  --background-light: #FFFFFF;
  --background-gray: #F7F7F9;
  --border-color: #E5E7EB;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 0.5rem;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

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

.section-padding {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 0;
  }
}

.hidden {
  display: none;
}

/* Typography */
.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(to right, var(--edukai-purple), var(--edukai-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.text-primary {
  color: var(--edukai-purple);
}

.text-blue {
  color: var(--edukai-blue);
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--edukai-purple);
  color: white;
}

.btn-primary:hover {
  background-color: var(--edukai-purple-dark);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--edukai-purple);
  color: var(--edukai-purple);
}

.btn-outline:hover {
  background-color: var(--edukai-purple-light);
}

.btn-white {
  background-color: white;
  color: var(--edukai-purple);
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
}

.full-width {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.25rem 0;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--edukai-purple);
}

.desktop-menu {
  display: none;
}

.mobile-menu-button {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
}

.menu-icon, .close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--text-primary);
}

.nav-link:hover {
  color: var(--edukai-purple);
}

@media (min-width: 768px) {
  .desktop-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .mobile-menu-button {
    display: none;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.clients-count {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-group {
  display: flex;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--edukai-purple), var(--edukai-blue));
  border: 2px solid white;
  margin-left: -0.75rem;
  box-shadow: var(--shadow-sm);
}

.avatar:first-child {
  margin-left: 0;
}

.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid white;
}

.image-container img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.feature-card {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--edukai-purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-card h3 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.feature-card p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.accent-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  z-index: -1;
}

.accent-circle-1 {
  bottom: -3rem;
  right: -3rem;
  width: 8rem;
  height: 8rem;
  background-color: var(--edukai-blue-light);
}

.accent-circle-2 {
  top: -3rem;
  left: -3rem;
  width: 6rem;
  height: 6rem;
  background-color: var(--edukai-orange-light);
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to top, var(--background-light), transparent);
  z-index: 1;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
  
  .hero-content {
    flex-direction: row;
    align-items: center;
  }
  
  .hero-text {
    flex: 1;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .hero-image {
    flex: 1;
  }
}

/* Features Section */
.features {
  background-color: var(--background-light);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

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

.feature-item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-item-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-item-description {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.feature-item-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, var(--edukai-purple), var(--edukai-blue));
  transition: width 0.3s ease;
}

.feature-item:hover .feature-item-border {
  width: 100%;
}

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

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

/* How It Works Section */
.how-it-works {
  background-color: var(--background-gray);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step-content {
  order: 2;
}

.step-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--edukai-purple);
  opacity: 0.3;
}

.step-title {
  font-size: 1.5rem;
}

.step-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.step-image-container {
  order: 1;
  position: relative;
}

.step-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-image::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to bottom right, var(--edukai-purple-light), var(--edukai-blue-light));
  z-index: -1;
  border-radius: calc(var(--radius) + 0.5rem);
  opacity: 0.5;
  filter: blur(15px);
}

.step-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .step {
    flex-direction: row;
    align-items: center;
  }
  
  .step-content, .step-image-container {
    flex: 1;
  }
  
  .step:nth-child(even) .step-content {
    order: 2;
  }
  
  .step:nth-child(even) .step-image-container {
    order: 1;
  }
  
  .step:nth-child(odd) .step-content {
    order: 1;
  }
  
  .step:nth-child(odd) .step-image-container {
    order: 2;
  }
}

/* AI Features Section */
.ai-features {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.ai-features-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.chat-demo {
  order: 2;
}

.chat-window {
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.chat-header {
  background-color: #f1f1f1;
  padding: 0.75rem;
}

.chat-controls {
  display: flex;
  gap: 0.5rem;
}

.control {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.control.red {
  background-color: #ff5f57;
}

.control.yellow {
  background-color: #febc2e;
}

.control.green {
  background-color: #28c840;
}

.chat-messages {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  max-width: 80%;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
}

.message.user {
  align-self: flex-start;
  background-color: #f1f1f1;
  border-top-left-radius: 0;
}

.message.bot {
  align-self: flex-end;
  background-color: var(--edukai-purple-light);
  border-bottom-right-radius: 0;
}

.message p {
  margin-bottom: 0;
}

.ai-features-list {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ai-feature {
  display: flex;
  gap: 1rem;
}

.ai-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.ai-feature-icon.purple {
  background-color: var(--edukai-purple-light);
  color: var(--edukai-purple);
}

.ai-feature-icon.blue {
  background-color: var(--edukai-blue-light);
  color: var(--edukai-blue);
}

.ai-feature-icon.green {
  background-color: var(--edukai-green-light);
  color: var(--edukai-green);
}

.ai-feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.ai-feature-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.accent-circle-3 {
  bottom: -6rem;
  left: -6rem;
  width: 12rem;
  height: 12rem;
  background-color: var(--edukai-purple-light);
}

.accent-circle-4 {
  top: -6rem;
  right: -6rem;
  width: 12rem;
  height: 12rem;
  background-color: var(--edukai-blue-light);
}

@media (min-width: 768px) {
  .ai-features-content {
    flex-direction: row;
    align-items: center;
  }
  
  .chat-demo, .ai-features-list {
    flex: 1;
  }
  
  .chat-demo {
    order: 1;
  }
  
  .ai-features-list {
    order: 2;
  }
}

/* Pricing Section */
.pricing {
  background-color: var(--background-gray);
}

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

.pricing-plan {
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.pricing-plan.highlighted {
  transform: translateY(-1rem);
  border: 2px solid var(--edukai-purple);
}

.pricing-plan-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--edukai-purple);
  color: white;
  padding: 0.25rem 1rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.pricing-plan-content {
  padding: 2rem;
}

.pricing-plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-plan.highlighted .pricing-plan-header {
  padding-top: 1rem;
}

.pricing-plan-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-plan-description {
  color: var(--text-secondary);
  height: 3rem;
}

.pricing-plan-price {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-plan-amount {
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
}

.pricing-plan-unit {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-left: 0.25rem;
}

.pricing-plan-additional {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.pricing-plan-features {
  margin-bottom: 2rem;
}

.pricing-plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-check {
  color: var(--edukai-purple);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-check svg {
  width: 1.25rem;
  height: 1.25rem;
}

.pricing-plan-feature-text {
  color: var(--text-secondary);
}

.pricing-note {
  text-align: center;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .pricing-plans {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Testimonials Section */
.testimonials {
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial:hover {
  box-shadow: var(--shadow);
}

.testimonial-quote {
  color: var(--edukai-purple);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-quote svg {
  width: 2rem;
  height: 2rem;
}

.testimonial-content {
  font-style: italic;
  color: var(--text-secondary);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--edukai-purple-light);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  margin-left: 1rem;
}

.testimonial-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.testimonial-position {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CTA Section */
.cta {
  background: linear-gradient(to bottom right, var(--edukai-purple), var(--edukai-blue));
  color: white;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: row;
  }
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info {
  order: 2;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-icon.purple {
  background-color: var(--edukai-purple-light);
  color: var(--edukai-purple);
}

.contact-icon.blue {
  background-color: var(--edukai-blue-light);
  color: var(--edukai-blue);
}

.contact-icon.green {
  background-color: var(--edukai-green-light);
  color: var(--edukai-green);
}

.contact-details h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--background-gray);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--edukai-purple);
  color: white;
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-form-container {
  order: 1;
  background-color: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background-color: white;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--edukai-purple);
  box-shadow: 0 0 0 2px var(--edukai-purple-light);
}

.form-group textarea {
  resize: vertical;
}

@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .contact-info, .contact-form-container {
    flex: 1;
  }
  
  .contact-info {
    order: 1;
  }
  
  .contact-form-container {
    order: 2;
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

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

.footer-info {
  max-width: 20rem;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--edukai-purple);
}

.footer-social-link svg {
  width: 1rem;
  height: 1rem;
}

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

.footer-column-title {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

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

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu a {
  color: #9ca3af;
  transition: var(--transition);
}

.footer-menu a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal a {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: white;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.font-semibold {
  font-weight: 600;
}
