/* GLOBAL */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #222;
}

/* HEADER */
.awd-header {
  background: #0b1c3d;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.awd-header nav a {
  color: #fff;
  margin-left: 1rem;
  text-decoration: none;
}
.awd-header nav a:hover {
  text-decoration: underline;
}

/* FOOTER */
.awd-footer {
  background: #0b1c3d;
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  margin-top: 3rem;
}
.awd-footer a {
  color: #ffcc66;
  text-decoration: none;
}

/* SECTIONS */
.section {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* CARDS */
.card {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1.5rem;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary {
  background: #ff9900;
  color: #0b1c3d;
}
.btn-secondary {
  background: transparent;
  border: 1px solid #0b1c3d;
  color: #0b1c3d;
}
.btn-secondary.light {
  border-color: #fff;
  color: #fff;
}

/* CONTACT FORM */
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact-form button {
  padding: 0.75rem 1.5rem;
  background: #ff9900;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: #0b1c3d;
}

/* DESKTOP: FORCE 4 COLUMNS */
@media (min-width: 1025px) {
  .hosting-grid,
  .hosting-plans .grid,
  .grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}



/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Phone: 1 column */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}





/* Phone: 1 column */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


/* Accordion FAQ */
.accordion-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.accordion-title {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 0;
  color: #0b1c3d;
}

.accordion-item input {
  display: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item input:checked ~ .accordion-content {
  max-height: 200px;
  margin-top: 0.5rem;
}

/* Centered badge above card */
.centered-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 0.85rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.value-card.popular {
  position: relative;
  padding-top: 15px; /* perfect height */
}

/* Ensure card allows absolute positioning */
.value-card.popular {
  padding-top: 10px; /* instead of 30px */
}

.hosting-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.card.popular {
  position: relative;
  padding-top: 25px;
}

.centered-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 0.85rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
/* PayPal Buttons */
.pp-HU3SXAMJ6S74A,
.pp-LGNZFUF83D7DJ,
.pp-2LR295283L453115RNJKHVEI,
.pp-YOUR_OTHER_BUTTON_IDS {
  text-align: center;
  border: none;
  border-radius: 0.25rem;
  min-width: 11.625rem;
  padding: 0 2rem;
  height: 2.625rem;
  font-weight: bold;
  background-color: #FFD140;
  color: #000000;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  cursor: pointer;
}
