/* =====================================================
   ORDERS PAGE – WEBPOT THEME
   ===================================================== */

/* ---------- GENERAL ---------- */
.order-hero,
.plans-section,
.comparison-section,
.order-form-section {
  padding: 100px 20px;
}

h1, h2, h3 {
  color: #020617;
}

.section-subtitle,
.hero-sub {
  max-width: 800px;
  margin: 16px auto 0;
  color: #475569;
  line-height: 1.7;
}

/* ---------- HERO ---------- */
.order-hero {
  margin-top: 120px;
  text-align: center;
}

.order-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.order-hero .btn-primary {
  margin-top: 30px;
}

/* ---------- PLANS SECTION ---------- */
.plans-section {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* PLAN CARD */
.plan-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

/* FEATURED PLAN */
.plan-card.featured {
  border: 2px solid #1e3a8a;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* BADGES */
.plan-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: #1e3a8a;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
}

.plan-badge.premium {
  background: linear-gradient(135deg, #a8b2dd, #020617);
}

/* PLAN TEXT */
.plan-card h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.plan-desc {
  color: #475569;
  margin-bottom: 22px;
  line-height: 1.6;
}

/* FEATURES LIST */
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.plan-list li {
  margin-bottom: 10px;
  color: #fcfdff;
  font-size: 0.95rem;
}

/* PRICE */
.plan-price {
  font-size: 2rem;
  font-weight: 600;
  margin-top: auto;
}

.plan-price span {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ACTION BUTTONS */
.plan-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 1px solid #ffffff;
  color: #f0f4ff;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
.btn-outline1{
   color: white;
   border: 1px solid #ffffff;
   padding: 12px 20px;
   border-radius: 30px;
   text-decoration: none;
   text-align: center;
   transition: all 0.3s ease;
   font-weight: 600;
}
.btn-outline:hover,
.btn-outline1:hover {
  background: #1e3a8a;
  color: #ffffff;
}

/* ---------- COMPARISON TABLE ---------- */
.comparison-section {
  background: #f8fafc;
  text-align: center;
}

.comparison-table {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table table {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border: 1px solid #e2e8f0;
  font-size: 0.95rem;
}

.comparison-table thead {
  background: #ffffff;
  font-weight: 600;
}

.comparison-table tbody tr:nth-child(even) {
  background: #ffffff;
}

/* ---------- ORDER FORM ---------- */
.order-form-section {
  max-width: 900px;
  margin: auto;
}

.order-form-container {
  background: #ffffff;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.order-form-container h2 {
  text-align: center;
}

.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.order-form select,
.order-form input,
.order-form textarea {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}

.order-form textarea {
  grid-column: span 2;
  resize: vertical;
}

.order-form button {
  grid-column: span 2;
  margin-top: 10px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .order-hero h1 {
    font-size: 2.2rem;
  }

  .plans-section {
    grid-template-columns: 1fr;
  }

  .order-form {
    grid-template-columns: 1fr;
  }

  .order-form textarea,
  .order-form button {
    grid-column: span 1;
  }
}
