/* Reseller Hosting Page Styles */

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

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: 25px;
}

.header-features {
  font-size: 15px;
  color: #333;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

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

.visual-badges .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: 10%;
  color: #4E4FEB;
  animation-delay: 0s;
}

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

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

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

.hero-image {
  position: relative;
  z-index: 0;
  animation: hero-float 6s ease-in-out infinite;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(78, 79, 235, 0.2));
  border-radius: 12px;
}

@keyframes hero-float {
  0%, 100% { 
    transform: translateY(0px) scale(1); 
  }
  50% { 
    transform: translateY(-20px) scale(1.02); 
  }
}

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

.se-title {
  text-align: center;
}

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

/* Reseller Plan Rows */
.reseller-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;
}

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

.reseller-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: 15px;
  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;
}

.billing-note {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-bottom: 20px;
}

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

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

.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: 0 auto 20px;
  padding: 10px;
}

.feature-icon svg {
  stroke: white;
}

.feature-icon img {
  filter: brightness(0) invert(1);
  width: 50px;
  height: 50px;
}

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

/* CTA Section */
.reseller-cta-section {
  background: white;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
}

.cta-text {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}

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

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

  .reseller-plan {
    margin-bottom: 20px;
  }

  .reseller-plan.featured {
    transform: scale(1);
  }

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

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

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

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

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

  .hero-image img {
    max-width: 300px;
  }

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

  .cta-title {
    font-size: 24px;
  }

  .cta-text {
    font-size: 16px;
  }
}

/* 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;
}

