/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Cursor Styles */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #60a5fa;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(96, 165, 250, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #1f2937;
  z-index: 1000;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #60a5fa, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  position: relative;
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #60a5fa;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #a855f7);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(75, 85, 99, 0.3);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem;
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: #60a5fa;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #6d28d9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #d1d5db;
  border: 1px solid rgba(107, 114, 128, 0.5);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #60a5fa;
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #1f2937;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.w-full {
  width: 100%;
}

/* Magnetic Button Effect */
.magnetic-btn {
  transition: transform 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111827, #1e3a8a, #581c87);
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  transition: all 0.3s ease;
}

.shape-1 {
  top: 5rem;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  opacity: 0.3;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}

.shape-2 {
  top: 10rem;
  right: 5rem;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  opacity: 0.35;
  border-radius: 0.5rem;
  transform: rotate(45deg);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.shape-3 {
  bottom: 10rem;
  left: 5rem;
  width: 6rem;
  height: 3rem;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  opacity: 0.3;
  border-radius: 0.75rem;
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.5);
}

.shape-4 {
  bottom: 5rem;
  right: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  opacity: 0.25;
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
}

.shape-5 {
  top: 50%;
  left: 25%;
  width: 1.5rem;
  height: 1.5rem;
  background: #60a5fa;
  opacity: 0.4;
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
}

.shape-6 {
  top: 33%;
  right: 33%;
  width: 2rem;
  height: 2rem;
  background: #a855f7;
  opacity: 0.4;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

.shape-7 {
  top: 25%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  opacity: 0.25;
  border-radius: 0.5rem;
  transform: rotate(12deg);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.shape-8 {
  bottom: 33%;
  left: 33%;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #f97316, #ef4444);
  opacity: 0.3;
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #cbd5e1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(50px);
}

.gradient-text-purple {
  background: linear-gradient(135deg, #60a5fa, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(50px);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
}

.cta-pulse {
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #9ca3af;
  max-width: 42rem;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Business Plans Section */
.business-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.plan-card {
  position: relative;
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(75, 85, 99, 0.3);
  transition: all 0.5s ease;
  cursor: pointer;
  /* Remove the initial hidden state - let JavaScript handle it */
}

.plan-card.featured {
  border: 2px solid #8b5cf6;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.plan-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.plan-card:hover .plan-icon {
  transform: scale(1.1) rotate(6deg);
}

.plan-card[data-gradient="blue-cyan"] .plan-icon {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.plan-card[data-gradient="purple-pink"] .plan-icon {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.plan-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.plan-card:hover h3 {
  color: #60a5fa;
}

.plan-description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.plan-price {
  margin-bottom: 1rem;
}

.price-label {
  display: block;
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
}

.price-note {
  display: block;
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.plan-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #d1d5db;
}

.feature-item i {
  font-size: 1rem;
}

/* Included Features */
.included-features {
  margin-top: 4rem;
  text-align: center;
}

.included-features h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(31, 41, 55, 0.3);
  border-radius: 1rem;
  border: 1px solid rgba(75, 85, 99, 0.2);
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(96, 165, 250, 0.3);
}

.feature-highlight i {
  font-size: 2rem;
  color: #60a5fa;
}

.feature-highlight span {
  color: #d1d5db;
  font-weight: 500;
}

/* Agency Section */
.agency-content {
  margin-top: 4rem;
}

.agency-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.agency-feature-card {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(75, 85, 99, 0.3);
  transition: all 0.5s ease;
  cursor: pointer;
  /* Remove the initial hidden state - let JavaScript handle it */
}

.agency-feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.agency-feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(6deg);
}

.agency-feature-card h4 {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.agency-feature-card:hover h4 {
  color: #60a5fa;
}

.agency-feature-card p {
  color: #9ca3af;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.agency-feature-card:hover p {
  color: #d1d5db;
}

/* Ideal For Section */
.ideal-for {
  text-align: center;
  margin-bottom: 4rem;
}

.ideal-for h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 2rem;
}

.ideal-for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.ideal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(31, 41, 55, 0.3);
  border-radius: 1rem;
  border: 1px solid rgba(75, 85, 99, 0.2);
  transition: all 0.3s ease;
}

.ideal-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(96, 165, 250, 0.3);
}

.ideal-item i {
  font-size: 2rem;
  color: #60a5fa;
}

.ideal-item span {
  color: #d1d5db;
  font-weight: 500;
}

/* Agency Pricing */
.agency-pricing {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.pricing-card {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(75, 85, 99, 0.3);
  text-align: center;
  max-width: 400px;
  transition: all 0.5s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.pricing-amount {
  margin-bottom: 1rem;
}

.price-from {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-right: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
}

.price-period {
  color: #9ca3af;
  font-size: 1rem;
}

.pricing-card p {
  color: #9ca3af;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.project-card {
  position: relative;
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(75, 85, 99, 0.3);
  transition: all 0.5s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100px) scale(0.8);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.project-image {
  position: relative;
  overflow: hidden;
  height: 12rem;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 0.8;
}

.project-actions {
  display: flex;
  gap: 1rem;
}

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.project-card:hover .project-content h3 {
  color: #60a5fa;
}

.project-content p {
  color: #9ca3af;
  margin-bottom: 1rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.project-card:hover .project-content p {
  color: #d1d5db;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  background: rgba(75, 85, 99, 0.5);
  color: #d1d5db;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.project-card:hover .tag {
  background: rgba(37, 99, 235, 0.5);
  color: #93c5fd;
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.team-card {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(75, 85, 99, 0.3);
  transition: all 0.5s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100px) scale(0.8);
}

.team-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-image {
  position: relative;
  margin-bottom: 1.5rem;
}

.team-image img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(75, 85, 99, 0.5);
  transition: all 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
  border-color: #60a5fa;
}

.team-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.team-card:hover h3 {
  color: #60a5fa;
}

.team-role {
  color: #60a5fa;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-bio {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.team-card:hover .team-bio {
  color: #d1d5db;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-social {
  opacity: 1;
}

.team-social a {
  padding: 0.5rem;
  background: rgba(75, 85, 99, 0.5);
  border-radius: 50%;
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.2s ease;
}

.team-social a:hover {
  background: #2563eb;
  color: white;
}

/* Testimonials Section */
.testimonials-container {
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
}

.testimonials-carousel {
  overflow: hidden;
  border-radius: 1rem;
}

.testimonial-slide {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
  border: 1px solid rgba(75, 85, 99, 0.3);
  text-align: center;
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars i {
  color: #fbbf24;
  font-size: 1.5rem;
}

.testimonial-slide blockquote {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(75, 85, 99, 0.5);
}

.author-name {
  font-weight: bold;
  color: white;
}

.author-role {
  color: #60a5fa;
}

.author-company {
  color: #9ca3af;
  font-size: 0.875rem;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-btn {
  background: rgba(31, 41, 55, 0.8);
  border: 1px solid rgba(75, 85, 99, 0.5);
  color: #d1d5db;
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-btn:hover {
  background: rgba(75, 85, 99, 0.8);
  color: white;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(75, 85, 99, 0.5);
  cursor: pointer;
  transition: background 0.2s ease;
}

.dot.active {
  background: #3b82f6;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 96rem;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-label {
  font-weight: 600;
  color: white;
}

.contact-value {
  color: #9ca3af;
}

.contact-form-container {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(75, 85, 99, 0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: rgba(75, 85, 99, 0.5);
  border: 1px solid rgba(107, 114, 128, 0.5);
  border-radius: 0.5rem;
  color: white;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-loading,
.btn-success {
  display: none;
}

.btn-loading.active,
.btn-success.active {
  display: inline-flex;
}

.btn-text.hidden,
.btn-loading.hidden,
.btn-success.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .business-plans-grid {
    grid-template-columns: 1fr;
  }

  .agency-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .projects-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .section-cta .btn-lg {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-up.animated {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
}

.scale-in.animated {
  opacity: 1;
  transform: scale(1);
  transition: all 0.6s ease;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Utility Classes */
.hidden {
  display: none;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-4 {
  margin-right: 1rem;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Fallback for when JavaScript is disabled */
.no-js .plan-card,
.no-js .agency-feature-card,
.no-js .team-card,
.no-js .project-card {
  opacity: 1;
  transform: none;
}

/* Error Section with 33 Animated Boxes */
#error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.error-boxes-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.error-box {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  opacity: 0.7;
  animation: float-error 6s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
}

/* Individual box positioning and colors */
.box-1 {
  top: 10%;
  left: 5%;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  animation-delay: 0s;
}
.box-2 {
  top: 20%;
  left: 15%;
  background: linear-gradient(135deg, #4ecdc4, #44bd87);
  animation-delay: 0.5s;
}
.box-3 {
  top: 15%;
  left: 25%;
  background: linear-gradient(135deg, #45b7d1, #96ceb4);
  animation-delay: 1s;
}
.box-4 {
  top: 30%;
  left: 8%;
  background: linear-gradient(135deg, #f9ca24, #f0932b);
  animation-delay: 1.5s;
}
.box-5 {
  top: 25%;
  left: 35%;
  background: linear-gradient(135deg, #eb4d4b, #6639b6);
  animation-delay: 2s;
}
.box-6 {
  top: 40%;
  left: 12%;
  background: linear-gradient(135deg, #a55eea, #26de81);
  animation-delay: 2.5s;
}
.box-7 {
  top: 35%;
  left: 45%;
  background: linear-gradient(135deg, #fd79a8, #fdcb6e);
  animation-delay: 3s;
}
.box-8 {
  top: 50%;
  left: 20%;
  background: linear-gradient(135deg, #00b894, #00cec9);
  animation-delay: 3.5s;
}
.box-9 {
  top: 45%;
  left: 55%;
  background: linear-gradient(135deg, #e17055, #81ecec);
  animation-delay: 4s;
}
.box-10 {
  top: 60%;
  left: 10%;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  animation-delay: 4.5s;
}
.box-11 {
  top: 55%;
  left: 65%;
  background: linear-gradient(135deg, #a29bfe, #6c5ce7);
  animation-delay: 5s;
}
.box-12 {
  top: 70%;
  left: 25%;
  background: linear-gradient(135deg, #fd63a3, #fc427b);
  animation-delay: 0.2s;
}
.box-13 {
  top: 65%;
  left: 75%;
  background: linear-gradient(135deg, #1dd1a1, #55a3ff);
  animation-delay: 0.7s;
}
.box-14 {
  top: 80%;
  left: 15%;
  background: linear-gradient(135deg, #feca57, #ff9ff3);
  animation-delay: 1.2s;
}
.box-15 {
  top: 75%;
  left: 85%;
  background: linear-gradient(135deg, #48dbfb, #0abde3);
  animation-delay: 1.7s;
}
.box-16 {
  top: 90%;
  left: 30%;
  background: linear-gradient(135deg, #ff9f43, #feca57);
  animation-delay: 2.2s;
}
.box-17 {
  top: 85%;
  left: 95%;
  background: linear-gradient(135deg, #ff6348, #ff4757);
  animation-delay: 2.7s;
}
.box-18 {
  top: 5%;
  left: 40%;
  background: linear-gradient(135deg, #7bed9f, #70a1ff);
  animation-delay: 3.2s;
}
.box-19 {
  top: 12%;
  left: 60%;
  background: linear-gradient(135deg, #5352ed, #3742fa);
  animation-delay: 3.7s;
}
.box-20 {
  top: 8%;
  left: 80%;
  background: linear-gradient(135deg, #ff5722, #ff9800);
  animation-delay: 4.2s;
}
.box-21 {
  top: 22%;
  left: 70%;
  background: linear-gradient(135deg, #2ed573, #1e90ff);
  animation-delay: 4.7s;
}
.box-22 {
  top: 18%;
  left: 90%;
  background: linear-gradient(135deg, #ff4081, #e91e63);
  animation-delay: 5.2s;
}
.box-23 {
  top: 32%;
  left: 85%;
  background: linear-gradient(135deg, #00e676, #00bcd4);
  animation-delay: 0.3s;
}
.box-24 {
  top: 28%;
  left: 95%;
  background: linear-gradient(135deg, #ffeb3b, #ffc107);
  animation-delay: 0.8s;
}
.box-25 {
  top: 42%;
  left: 75%;
  background: linear-gradient(135deg, #9c27b0, #673ab7);
  animation-delay: 1.3s;
}
.box-26 {
  top: 38%;
  left: 95%;
  background: linear-gradient(135deg, #ff5722, #795548);
  animation-delay: 1.8s;
}
.box-27 {
  top: 52%;
  left: 85%;
  background: linear-gradient(135deg, #607d8b, #455a64);
  animation-delay: 2.3s;
}
.box-28 {
  top: 48%;
  left: 95%;
  background: linear-gradient(135deg, #f44336, #d32f2f);
  animation-delay: 2.8s;
}
.box-29 {
  top: 62%;
  left: 90%;
  background: linear-gradient(135deg, #4caf50, #388e3c);
  animation-delay: 3.3s;
}
.box-30 {
  top: 58%;
  left: 5%;
  background: linear-gradient(135deg, #2196f3, #1976d2);
  animation-delay: 3.8s;
}
.box-31 {
  top: 72%;
  left: 5%;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  animation-delay: 4.3s;
}
.box-32 {
  top: 68%;
  left: 50%;
  background: linear-gradient(135deg, #e91e63, #c2185b);
  animation-delay: 4.8s;
}
.box-33 {
  top: 82%;
  left: 60%;
  background: linear-gradient(135deg, #9e9e9e, #616161);
  animation-delay: 5.3s;
}

/* Error box animations */
@keyframes float-error {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-20px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translateY(-40px) rotate(180deg) scale(0.9);
  }
  75% {
    transform: translateY(-20px) rotate(270deg) scale(1.1);
  }
}

/* Mouse interaction effects for error boxes */
.error-box:hover {
  transform: scale(1.5) !important;
  opacity: 1 !important;
  z-index: 10;
  transition: all 0.3s ease;
}

/* Glowing effect for some boxes */
.box-1,
.box-5,
.box-10,
.box-15,
.box-20,
.box-25,
.box-30 {
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
  animation: glow-pulse 3s ease-in-out infinite alternate;
}

.box-3,
.box-8,
.box-13,
.box-18,
.box-23,
.box-28,
.box-33 {
  box-shadow: 0 0 20px rgba(116, 185, 255, 0.6);
  animation: glow-pulse 3s ease-in-out infinite alternate;
  animation-delay: 1.5s;
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 5px currentColor;
  }
  100% {
    box-shadow: 0 0 25px currentColor, 0 0 35px currentColor;
  }
}

/* Responsive adjustments for error boxes */
@media (max-width: 768px) {
  .error-box {
    width: 30px;
    height: 30px;
  }

  #error-section .section-title {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  .error-box {
    width: 25px;
    height: 25px;
  }

  #error-section .section-title {
    font-size: 3rem;
  }
}
