/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #1e3a8a 0%,
    #1e40af 100%
  );
}

/* Video Background */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Fallback Image */
.hero-fallback-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.62) 0%,
    rgba(30, 64, 175, 0.48) 50%,
    rgba(30, 58, 138, 0.45) 100%
  );
  z-index: 2;
}

@keyframes patternMove {
  0% {
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  }
  100% {
    background-position: 80px 140px, 80px 140px, 120px 210px,
      120px 210px;
  }
}

/* Content */
.hero-content {
  margin-top: 5rem;
  position: relative;
  z-index: 4;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-title .highlight {
  background: linear-gradient(
    135deg,
    #fbbf24 0%,
    var(--secondary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
  /* max-width: 600px; */
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-hero-primary {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    #ea580c 100%
  );
  border: none;
  color: white;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.5);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: white;
}

.hero-note {
  margin-top: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--secondary-color);
  border-radius: 8px;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.hero-note p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-note i {
  color: var(--secondary-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

/* Stats Section */
.hero-stats {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  z-index: 4;
  animation: fadeInUp 0.8s ease-out 1s backwards;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-number-day {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  color: white;
  font-size: 2rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.scroll-indicator a:hover {
  opacity: 1;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1300px) {
  .hero-content {
    margin-top: 2rem;
  }
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    margin-top: 3rem;
  }

  .stat-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .hero-buttons {
    width: 100%;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.875rem;
  }

  .hero-badge {
    font-size: 0.813rem;
    padding: 0.375rem 1rem;
  }
}

/* Section Styling */
.products-section {
  padding: 5rem 0;
  background: linear-gradient(
    180deg,
    white 0%,
    var(--bg-light) 100%
  );
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #e5e7eb 50%,
    transparent 100%
  );
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-badge {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    #ea580c 100%
  );
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-block: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color) 0%,
    #fbbf24 100%
  );
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 2rem auto 0;
  line-height: 1.7;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
  border-color: var(--primary-color);
}

/* Icon Container */
.product-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    #eff6ff 0%,
    #dbeafe 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover .product-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  transform: scale(1.1) rotate(-5deg);
}

.product-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.product-card:hover .product-icon i {
  color: white;
}

/* Badge for Featured/Popular */
.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    #ea580c 100%
  );
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Product Content */
.product-card h5 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.875rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.product-card:hover h5 {
  color: var(--primary-color);
}

.product-card p {
  font-size: 0.938rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Learn More Link */
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.938rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.product-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.product-link:hover {
  color: var(--secondary-color);
  gap: 0.75rem;
}

.product-link:hover::after {
  width: 100%;
}

.product-link i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.product-link:hover i {
  transform: translateX(4px);
}

/* No Link Card Styling */
.product-card.no-link {
  cursor: default;
}

.product-card.no-link:hover {
  transform: translateY(-5px);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.product-card:nth-child(1) {
  animation-delay: 0.1s;
}
.product-card:nth-child(2) {
  animation-delay: 0.2s;
}
.product-card:nth-child(3) {
  animation-delay: 0.3s;
}
.product-card:nth-child(4) {
  animation-delay: 0.4s;
}
.product-card:nth-child(5) {
  animation-delay: 0.5s;
}
.product-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* View All Button */
.view-all-container {
  text-align: center;
  margin-top: 3rem;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(30, 64, 175, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .products-section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .product-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .product-icon {
    width: 60px;
    height: 60px;
  }

  .product-icon i {
    font-size: 1.75rem;
  }

  .product-card h5 {
    font-size: 1.25rem;
  }
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: white;
  position: relative;
}

.about-content {
  background: linear-gradient(
    135deg,
    #eff6ff 0%,
    #dbeafe 100%
  );
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #bfdbfe;
}

.about-content::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(30, 64, 175, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.about-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
}

.about-icon i {
  font-size: 2.5rem;
  color: white;
}

.about-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.about-content h3 {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 1fr)
  );
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1);
}

.feature-icon i {
  color: var(--secondary-color);
  font-size: 1.125rem;
}

.feature-text h3 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.feature-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.about-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-about-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  border: none;
  color: white;
  padding: 0.875rem 2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-about-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(30, 64, 175, 0.4);
  color: white;
}

.btn-about-secondary {
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.875rem 2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-about-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(30, 64, 175, 0.3);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(
    180deg,
    var(--bg-light) 0%,
    white 100%
  );
}

.section-title-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-center h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title-center p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.contact-card h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-card h4 i {
  color: var(--secondary-color);
}

.contact-info-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: #eff6ff;
  transform: translateX(5px);
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: white;
  font-size: 1.125rem;
}

.contact-info-text strong {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-size: 0.938rem;
}

.contact-info-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-info-text a:hover {
  color: var(--secondary-color);
}

.contact-info-text span {
  color: var(--text-muted);
}

.contact-note {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.contact-note i {
  color: #f59e0b;
  margin-right: 0.75rem;
}

.contact-note p {
  margin: 0;
  font-size: 0.938rem;
  color: #92400e;
  line-height: 1.6;
}

/* Form Styling */
.quote-form {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.quote-form h5 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-form h5 i {
  color: var(--secondary-color);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.938rem;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  font-size: 0.938rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.btn-submit {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    #ea580c 100%
  );
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.4);
}

/* Service Card Styles */
.services-section {
  padding: 5rem 0;
  background: white;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
  border-color: var(--primary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    #eff6ff 0%,
    #dbeafe 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover .service-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  transform: scale(1.1) rotate(-5deg);
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
  color: white;
}

.service-card h5 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.875rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.service-card:hover h5 {
  color: var(--primary-color);
}

.service-card p {
  font-size: 0.938rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.938rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.service-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.service-link:hover {
  color: var(--secondary-color);
  gap: 0.75rem;
}

.service-link:hover::after {
  width: 100%;
}

.service-link i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: linear-gradient(
    180deg,
    var(--bg-light) 0%,
    white 100%
  );
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
}

.process-step h6 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.938rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    #eff6ff 0%,
    #dbeafe 100%
  );
  border-radius: 24px;
  padding: 3rem;
  margin: 3rem 0;
  border: 1px solid #bfdbfe;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(30, 64, 175, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
}

.cta-icon i {
  font-size: 2.5rem;
  color: white;
}

.cta-content h4 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0;
}

.cta-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.cta-content a:hover {
  color: var(--secondary-color);
}

/* Active Navigation State */
.main-nav .nav-link.active {
  color: var(--primary-color);
  position: relative;
}

.main-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 70%;
  height: 2px;
  background: var(--secondary-color);
  transform: translateX(-50%);
}

.mobile-menu-nav .nav-link.active {
  background: #f3f4f6;
  color: var(--primary-color);
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .page-header {
    padding: 3rem 0 2rem;
  }

  .page-title {
    font-size: 2.25rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .services-section,
  .process-section {
    padding: 3rem 0;
  }

  .service-card,
  .process-step {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .service-icon,
  .cta-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 1.75rem;
  }

  .cta-icon i {
    font-size: 2rem;
  }

  .service-card h5,
  .process-step h6 {
    font-size: 1.25rem;
  }

  .cta-section {
    padding: 2rem;
    margin: 2rem 0;
  }

  .cta-content h4 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 5rem 0;
  background: linear-gradient(
    180deg,
    white 0%,
    var(--bg-light) 100%
  );
}

.why-choose-header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-choose-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.why-choose-section .subtitle {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.why-choose-section .intro-text {
  font-size: 1.063rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(320px, 1fr)
  );
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(30, 64, 175, 0.15);
  border-color: var(--primary-color);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    #eff6ff 0%,
    #dbeafe 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  transform: scale(1.1) rotate(-5deg);
}

.feature-icon i {
  font-size: 1.75rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.938rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 3rem 0;
  }

  .why-choose-section h2 {
    font-size: 2rem;
  }

  .why-choose-section .subtitle {
    font-size: 1.125rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* FAQ tweaks — add at end of main.css */
.faq-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.faq-section .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: white;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-section .accordion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(30, 64, 175, 0.06);
}

.faq-section .accordion-button {
  font-weight: 700;
  color: var(--text-dark);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.6)
  );
  padding: 1.25rem 1.5rem;
  gap: 1rem;
}

.faq-section .accordion-button::after {
  filter: none;
  color: var(--primary-color);
  font-weight: 900;
}

.faq-section .accordion-button:not(.collapsed) {
  background: linear-gradient(
    90deg,
    rgba(30, 64, 175, 0.04),
    rgba(255, 255, 255, 0.04)
  );
  color: var(--primary-color);
}

.faq-section .accordion-body {
  padding: 1rem 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.99rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .faq-section .accordion-button {
    padding: 1rem;
    font-size: 0.95rem;
  }
  .faq-section {
    padding: 2.5rem 0;
  }
}
