/* ðŸŒ Location Selector Section */
.location-selector-section {
  position: relative;
  z-index: 1;
  width: 100%;
  background: transparent;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  margin: 3px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  background: #fff;
  color: #495057;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  min-width: 140px;
}

.location-btn i {
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.location-btn:hover i {
  color: #d13a4a !important;
}

.location-btn.active {
  background: linear-gradient(135deg, #ec5362 0%, #d13a4a 100%);
  color: #fff !important;
  border-color: #ec5362;
  box-shadow: 0 2px 8px rgba(236, 83, 98, 0.2);
}

.location-btn.active i {
  color: #fff !important;
}

.location-btn:hover:not(.active) {
  background: #fff0f1;
  border-color: #f5b9be;
  color: #d13a4a;
}

.location-btn .badge {
  position: relative;
  top: -1px;
  font-size: 0.7em;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 500;
  background-color: #ec5362;
  color: #fff;
  margin-left: 8px;
  line-height: 1.2;
}

.location-btn.active .badge {
  background-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
}

.location-buttons {
  margin-top: 15px;
}

/* ðŸ’° Plan Item + Pricing */
.plan-item {
  position: relative;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.plan-item.hidden {
  opacity: 0;
  transform: translateY(10px);
  position: absolute;
  visibility: hidden;
}

.discount-badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background: #ff4444;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(255, 68, 68, 0.3);
}

.price-display {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.original-price-display {
  display: flex;
  align-items: center;
  gap: 8px;
}

.original-amount {
  font-size: 1.2rem;
  color: #6c757d;
  text-decoration: line-through;
}

.discount-amount {
  background: #ffebee;
  color: #d32f2f;
  font-size: 0.8rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

.final-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: flex-end;
  line-height: 1;
}

.final-price .currency {
  font-size: 1.2rem;
  margin-right: 2px;
  position: relative;
  top: -5px;
}

.final-price .period {
  font-size: 1rem;
  color: #6c757d;
  margin-left: 4px;
  font-weight: 400;
}

.billing-text {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 2px;
}

/* âš™ï¸ VPS Type Toggle */
.vps-type-toggle .btn-group {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  display: inline-flex;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}

.vps-type-btn {
  background: #fff;
  color: #666;
  border: none;
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0;
  border-radius: 0 !important;
  position: relative;
}

.vps-type-btn:first-child {
  border-top-left-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
}

.vps-type-btn:last-child {
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

.vps-type-btn:hover {
  background: #f5f5f5;
  color: #333;
}

.vps-type-btn.active {
  background: #ec5362;
  color: #fff;
  box-shadow: none;
}

/* ðŸŒŠ Offshore Graphic */
.offshore-graphic {
  position: relative;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.offshore-graphic svg {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(74, 108, 247, 0.15));
}

/* ðŸ¤ Partnership Hero Section */
.partnership-hero {
  padding: 130px 0 70px;
  color: #fff;
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  background-attachment: fixed;
  background-color: #052c65;
  background-size: cover;
  background-position: center;
  margin-top: 0;
}

/* ðŸ›ï¸ Product Slider */
.products-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: transparent;
}

.products-slider {
  display: flex;
  width: max-content;
}

.products-slide-track {
  display: flex;
  animation: scroll-left 35s linear infinite;
}

.products-slide {
  flex: 0 0 auto;
  width: 150px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ðŸ–¥ï¸ Server Feature Cards */
.server-features-card {
  border-radius: 15px;
  border-left: 5px solid #0d6efd;
  transition: all 0.3s ease;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  gap: 10px;
  transition: all 0.3s ease;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border-radius: 50%;
  font-size: 1.2rem;
}

.feature-text {
  flex: 1;
  font-size: 0.9rem;
}

/* ðŸŽ€ Ribbon */
.ribbon {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  width: 100px;
  height: 100px;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 10px 0;
  background-color: #ff5722;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(45deg);
  top: 30px;
  left: -55px;
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}