/* WordPress Hosting Page Styles */

/* Header Section */
header {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f8f9fc 0%, #eef2f7 100%);
  position: relative;
  overflow: hidden;
}

/* WordPress + Plesk Combo */
.wp-plesk-combo {
  gap: 15px;
}

.wp-plesk-combo .wp-icon {
  display: inline-block;
  animation: float-wp 3s ease-in-out infinite;
}

.wp-plesk-combo .plesk-icon {
  display: inline-block;
  animation: float-plesk 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.wp-plesk-combo .plesk-icon img {
  display: block;
  width: 70px;
  height: 70px;
}

.wp-plesk-combo .plus-sign {
  display: inline-flex;
  animation: pulse-scale 2s ease-in-out infinite;
}

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

@keyframes float-plesk {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-5deg); }
}

@keyframes pulse-scale {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

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

  header .sub-title {
  font-size: 14px;
  font-weight: 600;
  color: #4E4FEB;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

  header .title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 20px;
}

  header .para {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

/* WordPress Preview Box */
.wp-preview-box {
  position: relative;
  padding: 20px;
}

.wp-feature-badges {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.badge-item {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
    font-size: 14px;
  animation: badge-float 3s ease-in-out infinite;
}

.badge-1 {
  top: 10%;
  left: -5%;
  color: #4E4FEB;
  animation-delay: 0s;
}

.badge-1 svg { stroke: #4E4FEB; }

.badge-2 {
  top: 50%;
  right: -5%;
  color: #10b981;
  animation-delay: 1s;
}

.badge-2 svg { stroke: #10b981; }

.badge-3 {
  bottom: 10%;
  left: 0%;
  color: #f59e0b;
  animation-delay: 2s;
}

.badge-3 svg { stroke: #f59e0b; }

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

/* Pricing Section */
.wp-pricing-section {
  background: #f8f9fc;
}

.se-title {
  text-align: center;
  margin-bottom: 60px;
}

.se-title .sub-title {
  font-size: 14px;
  font-weight: 600;
  color: #4E4FEB;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.se-title .title {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.se-title .para {
  font-size: 16px;
  color: #666;
}

/* WordPress Plan Row */
.wp-plan-row {
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
}

.wp-plan-row:hover {
  box-shadow: 0 8px 30px rgba(78, 79, 235, 0.15);
  transform: translateY(-5px);
}

.wp-plan-row.featured {
  border: 2px solid #4E4FEB;
  box-shadow: 0 8px 30px rgba(78, 79, 235, 0.2);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 40px;
  background: linear-gradient(135deg, #4E4FEB 0%, #6366f1 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(78, 79, 235, 0.4);
}

.plan-header .plan-name {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.plan-header .plan-tagline {
  font-size: 15px;
  color: #666;
  margin: 0;
}

.plan-features {
  padding: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333;
}

.feature-item svg {
  flex-shrink: 0;
}

.plan-action {
  text-align: center;
}

.price-box {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}

.price-box .currency {
  font-size: 24px;
  font-weight: 600;
  color: #4E4FEB;
}

.price-box .amount {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.price-box .period {
  font-size: 16px;
  color: #666;
}

/* Features Section */
.wp-features-section {
  background: white;
}

.feature-box {
  padding: 30px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-box:hover {
  border-color: #4E4FEB;
  box-shadow: 0 8px 30px rgba(78, 79, 235, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4E4FEB 0%, #6366f1 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  stroke: white;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Plesk Toolkit Section */
.plesk-toolkit-section {
  background: #f8f9fc;
}

.toolkit-image img {
  border: 1px solid #e5e7eb;
}

.toolkit-features {
  margin-top: 30px;
}

.toolkit-feature-item .check-icon {
  width: 20px;
  height: 20px;
}

.toolkit-feature-item h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.toolkit-feature-item p {
  font-size: 14px;
  line-height: 1.6;
}

/* Inline Features */
.inline-features {
  background: white;
}

.inline-features .sub-title {
  font-size: 12px;
  font-weight: 600;
  color: #4E4FEB;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.inline-features .box-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.inline-features .item {
  text-align: center;
  padding: 20px;
}

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

.inline-features .icon svg {
  stroke: white;
}

.inline-features .item-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.inline-features .item-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  header .title {
    font-size: 36px;
  }

  .wp-plesk-combo .wp-icon svg {
    width: 60px;
    height: 60px;
  }

  .wp-plesk-combo .plesk-icon img {
    width: 60px;
    height: 60px;
  }

  .wp-plesk-combo .plus-sign svg {
    width: 25px;
    height: 25px;
  }

  .se-title .title {
    font-size: 32px;
  }

  .wp-plan-row {
    padding: 30px 20px;
  }

  .plan-header .plan-name {
    font-size: 24px;
  }

  .price-box .amount {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  header {
    padding: 60px 0 40px;
  }

  header .title {
    font-size: 28px;
  }

  .wp-plesk-combo {
    gap: 10px;
  }

  .wp-plesk-combo .wp-icon svg {
    width: 50px;
    height: 50px;
  }

  .wp-plesk-combo .plesk-icon img {
    width: 50px;
    height: 50px;
  }

  .wp-plesk-combo .plus-sign svg {
  width: 20px;
  height: 20px;
  }

  .wp-plesk-combo .plus-sign {
    margin: 0 5px;
  }

  .badge-item {
    padding: 8px 14px;
  font-size: 12px;
  }

  .wp-plan-row {
    padding: 25px 15px;
  }

  .plan-action {
    margin-top: 20px;
  }
}

/* Utility Classes */
.py-90 {
  padding: 90px 0;
}

.bg-2 {
  background: #f8f9fc;
}

[data-gap-y="30px"] > * {
  margin-bottom: 30px;
}

[data-gap-y="30px"] > *:last-child {
  margin-bottom: 0;
}
