/* =============================================
   HOME PAGE SPECIFIC STYLES
   ============================================= */

/* Home Hero Section */
.home-hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.home-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.home-hero .hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: floatHome 20s ease-in-out infinite;
}

.home-hero .hero-shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, #f59e0b, #eab308);
  top: -200px;
  right: -200px;
}

.home-hero .hero-shape-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  bottom: -175px;
  left: -175px;
  animation-delay: -10s;
}

.home-hero .hero-shape-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  top: 50%;
  right: -150px;
  animation-delay: -5s;
}

.home-hero .hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMoveHome 25s linear infinite;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.home-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
  animation: slideDown 1s ease-out;
}

.home-hero .hero-badge-text {
  color: #60a5fa;
  font-weight: 600;
  font-size: 1rem;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: slideUp 1s ease-out 0.3s both;
}

.title-main {
  display: block;
  color: white;
}

.title-accent {
  display: block;
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.5rem;
}

.hero-description {
  font-size: 1.4rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: slideUp 1s ease-out 0.6s both;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: slideUp 1s ease-out 0.9s both;
}

.hero-btn {
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s ease;
  white-space: nowrap;
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
  gap: 1.25rem;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}



/* Interactive Services Explorer */
.services-explorer {
  padding: 8rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.section-header h2 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-tabs-container {
  margin: 4rem 0;
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), #2a3f7a);
  transition: left 0.4s ease;
  z-index: 1;
}

.tab-btn.active::before {
  left: 0;
}

.tab-btn * {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.tab-btn:hover,
.tab-btn.active {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(31, 45, 93, 0.2);
}

.tab-btn.active * {
  color: white;
}

.tab-icon {
  font-size: 1.5rem;
}

.tab-label {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.tab-count {
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

.tab-btn.active .tab-count {
  background: white;
  color: var(--primary-color);
}

.tab-content-wrapper {
  position: relative;
  min-height: 600px;
}

.tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.tab-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.tab-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.tab-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.tab-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-explorer-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  border: 2px solid #f1f5f9;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease forwards;
}

.service-explorer-card:nth-child(2) {
  animation-delay: 0.1s;
}

.service-explorer-card:nth-child(3) {
  animation-delay: 0.2s;
}

.service-explorer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.service-icon-wrapper {
  flex-shrink: 0;
}

.service-explorer-card .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), #2a3f7a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(31, 45, 93, 0.2);
}

.service-explorer-card .service-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.service-explorer-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.3);
}

.service-badge {
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-content .service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-content .service-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.feature-tag {
  background: #f1f5f9;
  color: var(--text-light);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}

.service-explore-btn {
  background: linear-gradient(135deg, var(--primary-color), #2a3f7a);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(31, 45, 93, 0.2);
}

.service-explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(31, 45, 93, 0.3);
  gap: 0.75rem;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.service-explore-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.services-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 24px;
  border: 1px solid #e2e8f0;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.services-view-all-btn {
  background: linear-gradient(135deg, var(--primary-color), #2a3f7a);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(31, 45, 93, 0.3);
}

.services-view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(31, 45, 93, 0.4);
  gap: 1rem;
}

.services-view-all-btn .btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.services-view-all-btn:hover .btn-icon {
  transform: translateX(4px);
}

.contact-consultant-btn {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--primary-color);
  transition: all 0.4s ease;
}

.contact-consultant-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(31, 45, 93, 0.3);
}

/* How We Work Section */
.how-we-work {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 4rem 0;
}

.process-step {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.process-step.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.process-step:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.3);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 30px;
  background: linear-gradient(135deg, var(--primary-color), #2a3f7a);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(31, 45, 93, 0.3);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.step-content > p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.step-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

.process-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.process-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), #e6a420);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.process-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
  gap: 1rem;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.process-btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonials-wrapper {
  overflow: hidden;
  border-radius: 20px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.quote-icon {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.quote-icon svg {
  width: 40px;
  height: 40px;
}

.testimonial-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.author-position {
  color: var(--text-light);
  font-size: 0.95rem;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.testimonial-btn:hover {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.testimonial-btn svg {
  width: 20px;
  height: 20px;
}

.testimonials-dots {
  display: flex;
  gap: 0.75rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
}

/* Animations */
@keyframes floatHome {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(3deg); }
  66% { transform: translateY(15px) rotate(-2deg); }
}

@keyframes gridMoveHome {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
  }
  

  
  .benefits-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  

  
  .services-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .tab-btn {
    padding: 1rem 1.5rem;
    min-width: 280px;
    justify-content: center;
  }
  
  .tab-header {
    padding: 1.5rem;
  }
  
  .tab-header h3 {
    font-size: 1.7rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-explorer-card {
    padding: 2rem;
  }
  
  .service-card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .services-view-all-btn,
  .contact-consultant-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .process-step {
    padding: 2rem;
  }
  
  .step-number {
    top: -12px;
    left: 25px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .step-content h3 {
    font-size: 1.3rem;
  }
  
  .process-cta {
    padding: 2rem;
    margin-top: 3rem;
  }
  
  .cta-content h3 {
    font-size: 1.7rem;
  }
  
  .process-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .benefit-card {
    padding: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
  }
  
  .testimonials-controls {
    gap: 1rem;
  }
  
  .testimonial-btn {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .home-hero {
    min-height: 70vh;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .tab-btn {
    padding: 0.8rem 1.2rem;
    min-width: 250px;
  }
  
  .tab-header {
    padding: 1rem;
  }
  
  .tab-header h3 {
    font-size: 1.5rem;
  }
  
  .service-explorer-card {
    padding: 1.5rem;
  }
  
  .service-features {
    gap: 0.3rem;
  }
  
  .feature-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  
  .services-cta {
    padding: 2rem 1rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .benefit-card {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .process-step {
    padding: 1.5rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .step-icon {
    font-size: 2rem;
  }
  
  .process-cta {
    padding: 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .services-explorer {
    padding: 5rem 0;
  }
  
  .how-we-work {
    padding: 5rem 0;
  }
  
  .testimonials {
    padding: 5rem 0;
  }
} 