/* Hosting 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 20% 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));
}

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

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

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

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

.feature-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;
}

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

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

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

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

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

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 41, 76, 0.08);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  border: 3px solid transparent;
}

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

.pricing-card.featured {
  border-color: #FFB506;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  color: white;
  padding: 8px 25px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.plan-header h3 {
  font-size: 2rem;
  color: #01366C;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.plan-features li {
  padding: 12px 0;
  color: #333;
  font-size: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features i {
  color: #FFB506;
  margin-right: 10px;
  font-size: 1.1rem;
}

.plan-button {
  display: block;
  background: linear-gradient(135deg, #01366C 0%, #00294C 100%);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.plan-button:hover {
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 181, 6, 0.4);
}

.pricing-card.featured .plan-button {
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
}

.pricing-card.featured .plan-button:hover {
  background: linear-gradient(135deg, #01366C 0%, #00294C 100%);
}

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

.tech-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 50px;
}

.tech-logo {
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.tech-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.tech-logo img {
  max-width: 150px;
  height: auto;
}

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

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

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@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;
  }

  .amount {
    font-size: 3rem;
  }

  .tech-logos {
    gap: 40px;
  }

  .tech-logo img {
    max-width: 100px;
  }
}
