/* Base Styles */
:root {
    --primary-color:#010080; /* Example: dark brown*/
    --secondary-color: #464646; /* Example: black */
    --background-light: #e2efff; /* Example: light brown */
    --background-white: #ffffff; /* Example: light brown */
    --primary-font:"Raleway", sans-serif !important;
    --font-heading: 'Montserrat', sans-serif;
}

body, html {
    font-family: var(--primary-font);
    background: #010080;
    background: radial-gradient(at left top, #010080, #5F9BDC);
    background: #010080 url('img/bg-03.png') 750px 100px repeat-x;
    color: #333;
    transition: background-color 0.3s ease-in-out;
}

/* Card */
.subscription-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 2rem;
}

/* Header */
.subscription-card h2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: #2b2e35;
}


.billing-toggle input {
  display: none;
}
.billing-toggle label {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 500;
  color: #6c757d;
  border-radius: 16px;
  transition: background-color .2s, color .2s;
}
.billing-toggle input:checked + label {
  background:var(--primary-color);
  color: #fff;
}

/* Plan cards */
.plans {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.plan {
  flex: 1;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.plan.selected {
  border-color: var(--primary-color);
  background:var(--background-light);
  box-shadow: 0 4px 12px rgba(80,158,227,0.2);
}
.plan .plan-name {
  font-size: 1.25rem;
  margin-bottom: .5rem;
  color: #2b2e35;
}
.plan .price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: .25rem;
  color: #2b2e35;
}
.plan .period {
  color: #6c757d;
  margin-bottom: 1rem;
}
.plan .features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: #6c757d;
  font-size: .9rem;
  line-height: 1.4;
}

/* Buttons */
.wizard-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.wizard-buttons .btn {
  min-width: 120px;
}



body, .subscription-card {
  font-family: 'Montserrat', sans-serif;
}

.billing-toggle input {
  display: none;
}
.billing-toggle label {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 500;
  color: #6c757d;
  border-radius: 16px;
  transition: background-color .2s, color .2s;
}
.billing-toggle input:checked + label {
  background: var(--primary-color);
  color: #fff;
}

/* Tabs */
.plan-tabs .nav-link {
  font-weight: 600;
  color: #495057;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-bottom: none;
  font-size: 1rem;
}
.plan-tabs .nav-link.active {
  color: var(--primary-color);
  background-color: #fff;
  border-color: var(--primary-color) var(--primary-color) #fff;
}
.plan-tabs .nav-link:not(.active):hover {
  color: var(--primary-color);
}
.tab-content {
  border: 1px solid #dee2e6;
  border-top: none;
  padding: 1.5rem;
  background: #fff;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #4f4f4f;
}
.feature-list li .bi-check-circle-fill {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* Price styling */
.price-large {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #2b2e35;
}
.period {
  font-size: 1rem;
  color: #6c757d;
}

/* Select button */
.btn-select {
  margin-top: 1rem;
  font-weight: 600;
  width: 100%;
}
