:root {
  --blue-main: #0b5ed7;
  --blue-dark: #1e3a8a;
  --blue-light: #e7f0ff;
  --yellow-main: #fbbf24;
  --yellow-light: #fff7da;
  --white-main: #ffffff;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
}

/* GLOBAL */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(135deg, var(--blue-light), var(--white-main));
  color: var(--text-dark);
  margin: 0;
}

/* CONTAINER */
.page-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* HERO */
.hero {
  background: linear-gradient(120deg, var(--blue-main), var(--blue-dark));
  color: white;
  padding: 50px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(11, 94, 215, 0.25);
}

.hero h1 {
  font-size: 2.3rem;
  font-weight: 800;
  margin: 0;
}

.hero p {
  margin-top: 14px;
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 720px;
  margin-inline: auto;
}

/* CARD */
.card {
  background: var(--white-main);
  border-radius: 22px;
  padding: 30px;
  margin-top: 40px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* TITLES */
.section-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--blue-main);
  margin-bottom: 14px;
}

/* SERVICE OPTIONS */
.service {
  display: block;
  background: linear-gradient(135deg, white, var(--blue-light));
  padding: 22px;
  border-radius: 18px;
  border: 2px solid transparent;
  border-top: 6px solid var(--blue-main);
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 15px;
}



/* SERVICES CONTAINER */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 700px) {
  .services {
    grid-template-columns: 1fr;
  }
}

.service:hover {
  background: linear-gradient(135deg, var(--yellow-light), white);
  border-color: var(--yellow-main);
  transform: translateY(-2px);
}

.service input[type="radio"] {
  margin-right: 10px;
  transform: scale(1.1);
}

/* FORM GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 650px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* FORM ELEMENTS */
label span {
  font-weight: 600;
  font-size: 0.9rem;
}

form input,
form textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  margin-top: 6px;
  font-size: 0.95rem;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--blue-main);
  box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.15);
}

/* CHECKBOX */
.terms {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.terms a {
  color: var(--blue-main);
  font-weight: 600;
  text-decoration: underline;
}

/* ERROR */
.error-text {
  color: #dc2626;
  font-weight: 600;
  margin-top: 10px;
}

/* BUTTON */
.submit-btn {
  background: linear-gradient(90deg, var(--blue-main), var(--blue-dark));
  color: white;
  padding: 16px;
  border-radius: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.submit-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* WARNING */
.warning-box {
  background: var(--yellow-light);
  border-left: 6px solid var(--yellow-main);
  padding: 18px;
  border-radius: 16px;
  margin-top: 30px;
  font-weight: 600;
}

/* PAYMENT INFO */
.payment-info {
  margin-top: 35px;
}

.payment-info ul {
  list-style: disc;
  margin-left: 20px;
  font-weight: 600;
}

/* FOOTER */
.footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
