/* Front Page Styles */

/* Global Section Styles */
section {
  width: 100%;
  padding: 5rem 1rem;
  box-sizing: border-box;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Learn More Link */
.learn-more-link {
  display: inline-block;
  margin-top: 1rem;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.learn-more-link:hover {
  color: #1e40af;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5rem 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  text-align: left;
}

#hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

#hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-subtext {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.btn-primary {
  background-color: white;
  color: #2563eb;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #f3f4f6;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  position: relative;
}

.placeholder-circle {
  width: 320px;
  height: 320px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.placeholder-icon {
  width: 128px;
  height: 128px;
  color: white;
  opacity: 0.6;
}

/* Services Section */
.services-section {
  background-color: #f9fafb;
  padding: 5rem 1rem;
}

.section-gray {
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.icon-blue {
  background-color: #dbeafe;
  color: #2563eb;
}

.icon-green {
  background-color: #d1fae5;
  color: #059669;
}

.icon-purple {
  background-color: #e9d5ff;
  color: #7c3aed;
}

.icon-orange {
  background-color: #fed7aa;
  color: #ea580c;
}

.icon-red {
  background-color: #fecaca;
  color: #dc2626;
}

.icon-indigo {
  background-color: #c7d2fe;
  color: #4f46e5;
}

/* .icon-yellow {
  background-color: #fef3c7;
  color: #d97706;
} */

.icon-teal {
  background-color: #ccfbf1;
  color: #0d9488;
}

/* .icon-pink {
  background-color: #fce7f3;
  color: #db2777;
} */

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Clients Section */
.clients-section {
  background-color: white;
  padding: 5rem 1rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.client-card {
  text-align: center;
}

.client-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.client-icon svg {
  width: 40px;
  height: 40px;
}

.client-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.client-card p {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Opinions Section */
.opinions-section {
  background-color: #f9fafb;
  padding: 5rem 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-text {
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
}

.avatar-blue {
  background-color: #3b82f6;
}

.avatar-green {
  background-color: #10b981;
}

.avatar-purple {
  background-color: #8b5cf6;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.author-position {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

/* Strategy Section */
.strategy-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.strategy-card:hover {
  transform: translateY(-5px);
}

.strategy-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.strategy-icon svg {
  width: 32px;
  height: 32px;
}

.strategy-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
}

.strategy-text {
  color: #6b7280;
  line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
  background-color: white;
  padding: 5rem 1rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-us-card {
  text-align: center;
  padding: 1.5rem;
  background-color: #f9fafb;
  border-radius: 0.5rem;
}

.why-us-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.why-us-icon svg {
  width: 32px;
  height: 32px;
}

.why-us-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.why-us-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid,
  .testimonials-grid,
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  #hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 1rem;
  }

  #hero-title {
    font-size: 2rem;
  }

  #hero-subtitle {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.875rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .placeholder-circle {
    width: 240px;
    height: 240px;
  }

  .placeholder-icon {
    width: 96px;
    height: 96px;
  }
}
