/* Web Hosting page styles */

.web-hosting-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.web-hosting-section:before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.1);
}

.web-hosting-section:after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(198, 40, 40, 0.1);
}

.hosting-logo {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.hostinger-logo {
  max-width: 300px;
  height: auto;
}

.web-hosting-section h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  color: var(--heading-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.web-hosting-section h1:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.price-tag {
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  color: var(--text-color);
}

.price-tag .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 5px;
}

.hero-description {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: var(--text-color);
  line-height: 1.8;
}

.partnership-notice {
  background: #e3f2fd;
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px auto 30px;
  max-width: 800px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.partnership-notice p {
  margin: 0;
  font-weight: 500;
  color: var(--primary-dark);
}

.money-back {
  background: #e8f5e9;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  color: var(--accent-dark);
}

.money-back i {
  margin-right: 8px;
}

.web-hosting-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

.hosting-features {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
}

.feature-column {
  text-align: left;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.feature-column h3 {
  margin-top: 0;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.feature-column h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.feature-column ul {
  list-style: none;
  padding: 0;
}

.feature-column ul li {
  margin-bottom: 20px;
  padding-left: 35px;
  position: relative;
  font-weight: 500;
}

.feature-column ul li:before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 20px;
  top: -2px;
}

.cta-section {
  margin: 30px 0;
  position: relative;
  z-index: 2;
}

.cta-section .button {
  font-size: 1.3rem;
  padding: 18px 45px;
  font-weight: 700;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.cta-section .button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.4);
}

/* Trust Section */
.trust-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 50px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.trust-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 200px;
  text-align: center;
}

.rating {
  margin-bottom: 15px;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.rating-text {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--heading-color);
}

.source {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.reviews {
  color: #64748b;
  font-size: 0.9rem;
}

/* Special Offer Section */
.special-offer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 50px;
  border-radius: 12px;
  margin: 50px 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.special-offer h2 {
  color: white;
  margin-top: 0;
  font-size: 2rem;
  margin-bottom: 30px;
}

.offer-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.offer-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
}

.offer-feature i {
  color: #34D399;
  font-size: 1.3rem;
}

.offer-note {
  margin: 0 0 30px;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
}

.exclusive-offer {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 20px;
  border-left: 3px solid white;
}

.exclusive-offer p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.exclusive-offer i {
  margin-right: 10px;
}

@media (max-width: 992px) {
  .web-hosting-section h1 {
    font-size: 2.2rem;
  }
  
  .hostinger-logo {
    max-width: 250px;
  }
  
  .hosting-features {
    gap: 40px;
  }
  
  .feature-column {
    padding: 25px;
  }
  
  .trust-section {
    gap: 20px;
  }
  
  .trust-item {
    padding: 20px;
    min-width: 160px;
  }
  
  .special-offer {
    padding: 40px 30px;
  }
  
  .special-offer h2 {
    font-size: 1.7rem;
  }
  
  .offer-features {
    gap: 20px;
  }
  
  .partnership-notice {
    margin: 20px 10px 30px;
  }
}

@media (max-width: 768px) {
  .web-hosting-section {
    padding: 40px 0;
  }
  
  .web-hosting-section h1 {
    font-size: 1.8rem;
  }
  
  .hostinger-logo {
    max-width: 200px;
  }
  
  .price-tag .price {
    font-size: 2.5rem;
  }
  
  .hosting-features {
    flex-direction: column;
    gap: 30px;
  }
  
  .feature-column {
    padding: 20px;
  }
  
  .feature-column ul li {
    padding-left: 30px;
  }
  
  .trust-section {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-item {
    width: 100%;
    max-width: 300px;
  }
  
  .special-offer {
    padding: 30px 20px;
    margin: 30px 0;
  }
  
  .special-offer h2 {
    font-size: 1.5rem;
  }
  
  .offer-features {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .partnership-notice {
    padding: 15px;
  }
  
  .exclusive-offer {
    padding: 15px;
  }
}