/* ===================================
   ENHANCED HOME PAGE STYLES
   =================================== */

/* Enhanced Hero Section */
.hero-enhanced {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 2rem;
}

.hero-content-enhanced {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out 0.2s both;
}

.hero-title-enhanced {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.gradient-text {
  background: linear-gradient(90deg, #ffd89b, #19547b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Animated Gradient Text for "Starts Here" */
.gradient-text-animated {
  background: linear-gradient(
    120deg,
    #FFD700 0%,
    #FFEAA7 20%,
    #74B9FF 40%,
    #A29BFE 60%,
    #FD79A8 80%,
    #FFD700 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  font-weight: 900;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  letter-spacing: 2px;
}

.gradient-text-animated::before {
  content: 'Starts Here';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(120deg, #FFD700, #FFEAA7, #74B9FF, #A29BFE, #FD79A8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(20px);
  opacity: 0.6;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero-subtitle-enhanced {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

.hero-buttons-enhanced {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary-enhanced {
  padding: 1rem 2rem;
  background: white;
  color: var(--primary);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary-enhanced {
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-enhanced:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Hero Image with Floating Cards */
.hero-image-enhanced {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.hero-image-enhanced img {
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: auto;
}

.hero-floating-card {
  position: absolute;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  bottom: 30%;
  left: -10%;
  animation-delay: 1s;
}

.hero-floating-card.card-3 {
  bottom: 10%;
  right: 5%;
  animation-delay: 2s;
}

.card-icon {
  font-size: 1.5rem;
}

.card-text {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.875rem;
}

/* Who We Are Enhanced */
.who-we-are-enhanced {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.section-header-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-large {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
}

.founder-intro-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  align-items: center;
}

.founder-image-wrapper {
  position: relative;
}

.founder-image {
  border-radius: 16px;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.founder-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.founder-story h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.founder-quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--primary);
}

.founder-story p {
  color: var(--text-dark);
  line-height: 1.7;
}

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

.difference-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.difference-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.difference-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.difference-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.difference-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Services Grid - 6 Items */
.services-enhanced {
  padding: 6rem 0;
  background: white;
}

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

.service-card-enhanced {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.service-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
  background: white;
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-icon-wrapper.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.service-icon-wrapper.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.service-icon-wrapper.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.service-icon-wrapper.orange {
  background: rgba(251, 146, 60, 0.1);
  color: #fb923c;
}

.service-icon-wrapper.red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.service-icon-wrapper.teal {
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
}

.service-card-enhanced:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.service-card-enhanced h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-card-enhanced p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Enhanced Testimonials Section */
.testimonials-enhanced {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.subsection-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.video-testimonials-section {
  margin-bottom: 5rem;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.video-testimonial-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.video-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-testimonial-info {
  padding: 1.5rem;
}

.video-testimonial-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.score-badge {
  display: inline-block;
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.video-testimonial-info p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Text Testimonials */
.text-testimonials-section {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-carousel-enhanced {
  position: relative;
  overflow: hidden;
}

.testimonial-slide-enhanced {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.testimonial-slide-enhanced.active {
  display: block;
}

.testimonial-content-enhanced {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.testimonial-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  flex: 1;
}

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

.testimonial-text blockquote p {
  font-size: 1.125rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author cite {
  font-size: 1.125rem;
  color: var(--text-dark);
  font-style: normal;
}

.testimonial-score {
  color: var(--text-light);
  font-size: 0.95rem;
}

.carousel-controls-enhanced {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-btn-enhanced {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border-light);
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: relative;
}

.carousel-btn-enhanced:active {
  transform: scale(0.95);
}

.carousel-btn-enhanced:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.1);
}

/* Footer Logo Section */
.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: white;
  padding: 0.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-logo-section h4 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

/* Enhanced Newsletter */
.newsletter-enhanced {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.newsletter-content-enhanced {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.newsletter-content-enhanced h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.newsletter-content-enhanced > p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form-enhanced {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1rem;
}

.newsletter-form-enhanced input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter-form-enhanced input:focus {
  outline: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-form-enhanced button {
  padding: 1rem 2rem;
  background: white;
  color: var(--primary);
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter-form-enhanced button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-disclaimer {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-image-enhanced {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-buttons-enhanced {
    justify-content: center;
  }
  
  .founder-intro-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .video-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title-enhanced {
    font-size: 2.5rem;
  }
  
  .section-title-large {
    font-size: 2rem;
  }
  
  .difference-grid,
  .services-grid-6 {
    grid-template-columns: 1fr;
  }
  
  .hero-floating-card {
    display: none;
  }
  
  .founder-intro-card {
    padding: 2rem;
  }
  
  .testimonial-content-enhanced {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .newsletter-form-enhanced {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-wrap: wrap;
  }
}
