/* General Pricing Section Styles */
.pricing {
    padding: 3rem 1rem;
    text-align: center;
    color: #ccc;
}

.pricing .section-header {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.pricing .section-intro {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
}

/* Tier and Option Cards */
.complexity-tiers, .payment-options .options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.complexity-tiers .highlight-tier {
    border: 2px solid #6a1b9a; /* Purple border */
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(106, 27, 154, 0.4); /* Purple drop shadow */
    background: #222; /* Keeps consistency with your dark theme */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.complexity-tiers .highlight-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(106, 27, 154, 0.6); /* Stronger on hover */
}


.tier, .option {
    background: #222;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    flex: 1 1 300px;
    max-width: 300px;
    text-align: center;
}

.tier h3, .option h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    color: #6a1b9a;
    margin-bottom: 1rem;
}

/* List Styling for Features */
.features {
    list-style: none;
    padding: 0;
    margin: 1rem auto;
    text-align: left;
    max-width: 240px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.features li:hover {
    background: rgba(255, 255, 255, 0.1);
}

.features li::before {
    content: "✓";
    font-size: 2rem;
    color: #6a1b9a;
}

/* Button Styling */
.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #6a1b9a;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #8e24aa;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.features-list i {
    font-size: 2rem;
    color: #6a1b9a;
}

.features-list li {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #222;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
}

.features-list li::before {
    font-size: 2rem;
    content: "✓";
    color: #6a1b9a;
    font-weight: bold;
}

.section-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #bbb;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Addons */
.add-ons {
    padding: 2rem 1rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
    text-align: center;
}

.add-ons h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 2px solid #6a1b9a;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.add-ons ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 800px;
}

.add-ons li {
    background: #222;
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 1rem;
    color: #ccc;
    font-size: 1rem;
    text-align: left;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.add-ons li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-color: #6a1b9a;
}

.add-ons li strong {
    color: #6a1b9a;
}

.add-ons li::before {
    content: "✔";
    font-size: 1.5rem;
    color: #6a1b9a;
    margin-right: 0.5rem;
    vertical-align: middle;
}


/* Hosting styles */
.hosting-tiers {
  padding: 2rem 0;
  text-align: center;
}

.hosting-plans {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.plan {
  background: #1d1d1f;
  color: #ccc;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  max-width: 300px;
  flex: 1 1 300px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

.plan.highlight {
  border: 2px solid #6a1b9a;
  box-shadow: 0 6px 12px rgba(106, 27, 154, 0.4);
}

.plan h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff;
}

.plan .price {
  font-size: 1.25rem;
  font-weight: bold;
  color: #6ECEF1;
  margin-bottom: 1rem;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #ccc;
}

@media (max-width: 500px) {
    .add-ons ul {
        flex-direction: column;
        gap: 1rem;
    }

    .add-ons li {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .services-main {
        padding: 0.33rem;
    }
}