:root {
    --primary: #002147;
    --secondary: #004080;
    --accent: #f0f4ff;
    --light: #ffffff;
    --dark: #1e1e1e;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: #f3f6fb;
    color: #333;
    line-height: 1.6;
}

/* ---------------- HERO ---------------- */
.hero {
    background: linear-gradient(135deg, #002147, #004080);
    color: white;
    padding: 50px 20px 60px;
    text-align: center;
}

.hero h1 {
    margin: 0;
    font-size: 28px;
}

.hero h2 {
    margin: 8px 0;
    font-size: 22px;
    font-weight: 500;
}

.hero p {
    margin-top: 15px;
    font-size: 14px;
}

/* ---------------- CONTAINER ---------------- */
.container {
    max-width: 1200px;
    margin: -40px auto 60px;
    padding: 0 20px;
}

/* ---------------- INFO GRID ---------------- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: white;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    margin-top: 0;
    color: var(--primary);
}

/* ---------------- SECTIONS ---------------- */
.section {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.section h3 {
    margin-top: 0;
    color: var(--primary);
    font-size: 22px;
    border-left: 5px solid var(--secondary);
    padding-left: 12px;
}

.section p {
    font-size: 14.5px;
    line-height: 1.75;
    text-align: justify;
    margin-bottom: 14px;
}

/* ---------------- FEATURES ---------------- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-box {
    background: var(--accent);
    padding: 18px;
    border-radius: 8px;
    font-size: 14px;
}

/* ---------------- FORM CARD ---------------- */
.form-card {
    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.form-card h3 {
    text-align: center;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 25px;
}

/* ---------------- FORM GRID ---------------- */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* make scheduling full width */
.scheduling-group {
    grid-column: 1 / -1;
}

/* ---------------- FORM GROUP ---------------- */
.form-group label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: 0.2s;
}

.form-group input:focus {
    border-color: var(--secondary);
    outline: none;
}

/* ---------------- BUTTON ---------------- */
.submit-wrapper {
    text-align: center;
    margin-top: 30px;
}

button {
    background: linear-gradient(135deg, #004080, #002147);
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    opacity: 0.9;
}

/* ---------------- FOOTER ---------------- */
.footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 13px;
}

/* =======================================================
   ✅ COMPACT MODERN RADIO BUTTON (SCHEDULING UI FIX)
   ======================================================= */

.radio-group {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

/* hide radio */
.radio-item input {
    display: none;
}

/* compact pill style */
.radio-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1.5px solid #ccc;
    border-radius: 25px;
    cursor: pointer;
    background: white;
    font-size: 14px;
    font-weight: 500;
    transition: 0.25s ease;
    min-width: 160px;
}

/* hover */
.radio-card:hover {
    border-color: var(--secondary);
    transform: translateY(-1px);
}

/* selected */
.radio-item input:checked + label {
    background: linear-gradient(135deg, #004080, #002147);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}