/* SEO Page Specific Styles */

.page-header {
  background: linear-gradient(135deg, #00294C 0%, #01366C 100%);
  position: relative;
  overflow: hidden;
}

.page-hero {
  padding: 150px 0 100px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 181, 6, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title .colorized {
  color: #FFB506;
}

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

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 1.1rem;
}

.feature-item i {
  color: #FFB506;
  font-size: 1.5rem;
}

.cta-button {
  display: inline-block;
  background-color: #FFB506;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 181, 6, 0.3);
}

.cta-button:hover {
  background-color: white;
  color: #01366C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 181, 6, 0.4);
}

.hero-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(255, 181, 6, 0.3));
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 41, 76, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 41, 76, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.stat-icon i {
  font-size: 1.8rem;
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #01366C;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #666;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  color: #01366C;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  height: 100%;
}

.service-card:hover {
  border-color: #FFB506;
  box-shadow: 0 10px 40px rgba(0, 41, 76, 0.1);
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

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

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #01366C;
  margin-bottom: 15px;
  font-weight: 600;
}

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

/* Process Section */
.process-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.process-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 41, 76, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FFB506 0%, #FFC940 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 41, 76, 0.15);
}

.process-number {
  font-size: 3rem;
  font-weight: 700;
  color: #FFB506;
  margin-bottom: 15px;
  opacity: 0.3;
}

.process-card h3 {
  font-size: 1.5rem;
  color: #01366C;
  font-weight: 600;
  margin-bottom: 15px;
}

.process-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Why Section */
.why-section {
  padding: 80px 0;
  background: white;
}

.feature-list {
  margin-top: 30px;
}

.feature-list .feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.feature-list .feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list .feature-icon i {
  font-size: 1.2rem;
  color: white;
}

.feature-list h4 {
  font-size: 1.2rem;
  color: #01366C;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-list p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.tools-grid {
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid #f0f0f0;
}

.tools-grid h3 {
  color: #01366C;
  font-weight: 600;
}

.tool-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #01366C;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.tool-badge:hover {
  border-color: #FFB506;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 181, 6, 0.2);
}

.tool-badge i {
  color: #FFB506;
  font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #01366C 0%, #00294C 100%);
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-button-large {
  display: inline-block;
  background-color: #FFB506;
  color: white;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 181, 6, 0.3);
  white-space: nowrap;
}

.cta-button-large:hover {
  background-color: white;
  color: #01366C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 181, 6, 0.4);
}

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

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

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

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

  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  .cta-section h2 {
    font-size: 1.75rem;
  }

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

  .tool-badges {
    gap: 10px;
  }

  .tool-badge {
    font-size: 0.85rem;
    padding: 10px 15px;
  }
}
