/* Hero Section - Modern Design */
.hero-modern {
  position: relative;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 60px 0 40px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(252, 192, 27, 0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.min-vh-80 {
  min-height: 80vh;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(252, 192, 27, 0.1);
  border: 1px solid rgba(252, 192, 27, 0.3);
  border-radius: 50px;
  color: #fcc01b;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin: 20px 0;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-cta-group {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 16px 40px;
  background: linear-gradient(135deg, #fcc01b 0%, #e6a800 100%);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(252, 192, 27, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(252, 192, 27, 0.4);
  color: white;
}

.btn-hero-secondary {
  padding: 16px 40px;
  background: rgba(0, 136, 184, 0.15);
  border: 2px solid #0088b8;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: #0088b8;
  border-color: #0088b8;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 136, 184, 0.3);
}

.trust-badges {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.badge-item i {
  font-size: 1.2rem;
  color: #fcc01b;
}

.hero-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-image {
  width: 100%;
  border-radius: 20px;
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.badge-rating {
  top: 30px;
  right: -20px;
}

.rating-stars i {
  color: #fbbf24;
  font-size: 0.9rem;
}

.rating-score {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1f2937;
}

.rating-text {
  font-size: 0.75rem;
  color: #6b7280;
}

.badge-experience {
  bottom: 30px;
  left: -20px;
  text-align: center;
}

.experience-years {
  font-size: 2rem;
  font-weight: 800;
  color: #fcc01b;
  line-height: 1;
}

.experience-text {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 5px;
}

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

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(252, 192, 27, 0.1);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 15%;
  animation-delay: 4s;
}

/* Why Choose Modern */
.why-choose-modern {
  background: #f9fafb;
}

.feature-card-modern {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
  border: 1px solid #e5e7eb;
}

.feature-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: #fcc01b;
}

.feature-icon-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
}

.feature-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fcc01b 0%, #e6a800 100%);
  border-radius: 50%;
  opacity: 0.15;
  transition: all 0.3s;
  z-index: 0;
}

.feature-card-modern:hover .feature-icon-bg {
  transform: scale(1.15);
  opacity: 0.25;
}

.feature-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #fcc01b;
  z-index: 2;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.feature-description {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* Services Modern */
.services-modern {
  background: white;
}

.service-card-modern {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card-modern:hover .service-bg-image {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 136, 184, 0.92) 0%, rgba(0, 108, 146, 0.95) 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.service-card-modern:hover .service-overlay {
  opacity: 0.3;
}

.service-icon-float {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fcc01b;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 10;
}

.service-card-modern:hover .service-icon-float {
  transform: translateY(0);
  opacity: 1;
}

.service-icon-float i {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content {
  padding: 30px 25px;
}

.service-title a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
  transition: color 0.3s;
}

.service-title a:hover {
  color: #fcc01b;
}

.service-description {
  color: #6b7280;
  margin: 15px 0;
  line-height: 1.7;
}

.service-link {
  color: #0088b8;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.service-link:hover {
  gap: 8px;
  color: #006c92;
}

.btn-explore-services {
  padding: 15px 40px;
  background: linear-gradient(135deg, #fcc01b 0%, #e6a800 100%);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(252, 192, 27, 0.3);
}

.btn-explore-services:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(252, 192, 27, 0.4);
  color: white;
}

/* How It Works */
.how-it-works {
  background: white;
}

.process-card {
  position: relative;
  text-align: center;
  padding: 40px 25px;
  background: #f9fafb;
  border-radius: 15px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s;
}

.process-card:hover {
  border-color: #fcc01b;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.process-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fcc01b 0%, #e6a800 100%);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(252, 192, 27, 0.3);
}

.process-icon {
  width: 80px;
  height: 80px;
  background: rgba(252, 192, 27, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 20px;
}

.process-icon i {
  font-size: 2.5rem;
  color: #fcc01b;
}

.process-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.process-description {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* Info Sections */
.info-section {
  background: white;
}

.info-content {
  padding: 20px 0;
}

.info-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1f2937;
  margin: 15px 0 20px;
}

.info-description {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 25px;
}

.info-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}

.info-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1f2937;
  font-weight: 500;
}

.info-feature-item i {
  color: #fcc01b;
  font-size: 1.3rem;
}

.info-image-wrapper img {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: #fcc01b;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 25px;
  transition: all 0.3s;
}

.btn-learn-more:hover {
  background: #e6a800;
  transform: translateX(5px);
  color: white;
}

/* Testimonials Modern */
.testimonials-modern {
  background: #f9fafb;
}

.testimonials-swiper {
  padding: 40px 10px 60px;
}

.testimonial-card-modern {
  background: white;
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  height: auto;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 4rem;
  color: rgba(252, 192, 27, 0.1);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-right: 3px;
}

.testimonial-text {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 25px;
}

.testimonial-author-wrapper {
  padding-top: 20px;
  border-top: 2px solid #f3f4f6;
}

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

.testimonial-avatar {
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fcc01b;
  box-shadow: 0 4px 12px rgba(252, 192, 27, 0.2);
}

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

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 5px;
}

.author-location,
.author-source {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

.testimonials-wrapper {
  position: relative;
}

.swiper-pagination {
  position: relative !important;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d1d5db;
  opacity: 1;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: #fcc01b;
  width: 30px;
  border-radius: 6px;
}

/* CTA Modern */
.cta-modern {
  position: relative;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 100px 0;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(252, 192, 27, 0.15)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-cta-primary {
  padding: 18px 45px;
  background: linear-gradient(135deg, #fcc01b 0%, #e6a800 100%);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(252, 192, 27, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(252, 192, 27, 0.5);
  color: white;
}

.btn-cta-secondary {
  padding: 18px 45px;
  background: rgba(0, 136, 184, 0.2);
  border: 2px solid #0088b8;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  background: #0088b8;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 136, 184, 0.4);
}

.cta-info {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.cta-info-item i {
  font-size: 1.3rem;
  color: #fcc01b;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .badge-rating,
  .badge-experience {
    position: static;
    margin: 15px auto;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding: 40px 0 30px;
  }

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


  .stat-number {
    font-size: 2rem;
  }

  .hero-cta-group,
  .cta-buttons {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}
