/* =========================================================
   Shivir Registration — Premium Traditional Design
   Palette: ivory + deep maroon + gold
   ========================================================= */

:root {
    /* Palette derived from JAINISM THINKER logo: navy + saffron + sky-blue */
    --maroon: #0b2a4a;          /* primary navy (was maroon) */
    --maroon-dark: #06182e;     /* deep navy */
    --maroon-light: #18467a;    /* lighter navy */
    --gold: #f2731c;            /* saffron / orange accent (was gold) */
    --gold-dark: #d65f10;
    --gold-light: #ff9d52;
    --blue: #00a8f0;            /* sky-blue accent from logo cloud */
    --blue-dark: #0089c7;
    --blue-light: #8ad6f6;
    --ivory: #f2f7fc;           /* cool light background */
    --ivory-dark: #e4eef7;
    --cream: #f3f8fd;
    --charcoal: #16243a;
    --text: #1f2d40;
    --text-soft: #51627a;
    --text-mute: #8a97a8;
    --border: #cfe0ef;
    --border-soft: #e4eef7;
    --white: #fff;
    --success: #0b6b3c;
    --success-bg: #e6f5eb;
    --error: #c2371c;
    --error-bg: #fdeee8;
    --shadow-xs: 0 1px 3px rgba(11, 42, 74, 0.08);
    --shadow: 0 4px 14px rgba(11, 42, 74, 0.10);
    --shadow-lg: 0 12px 30px rgba(11, 42, 74, 0.14);
    --radius: 12px;
    --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans Devanagari', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--ivory);
    background-image:
        radial-gradient(ellipse at top, rgba(0, 168, 240, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(242, 115, 28, 0.05) 0%, transparent 60%);
    background-attachment: fixed;
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 1.6;
}

.wrap {
    max-width: 580px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

/* ============ SPLASH SCREEN ============ */
.splash {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, var(--ivory), var(--ivory-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
    animation: splashFadeIn 0.4s ease-out;
}
.splash-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.splash-inner {
    text-align: center;
    animation: splashScaleIn 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.splash-logo {
    width: min(280px, 65vw);
    height: auto;
    display: block;
    margin: 0 auto 20px;
    filter: drop-shadow(0 12px 30px rgba(122, 30, 30, 0.25));
    animation: splashGlow 1.6s ease-in-out 0.5s infinite alternate;
}
.splash-text {
    font-family: 'Poppins', 'Noto Sans Devanagari', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--maroon-dark);
    letter-spacing: 2px;
    animation: splashTextFade 1.2s ease-out 0.6s backwards;
}
@keyframes splashFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes splashScaleIn {
    from { transform: scale(0.3) translateY(30px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes splashGlow {
    from { filter: drop-shadow(0 12px 30px rgba(122, 30, 30, 0.20)); }
    to { filter: drop-shadow(0 18px 40px rgba(201, 162, 39, 0.45)); }
}
@keyframes splashTextFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Page slides up behind splash */
.page-content {
    animation: pageEnter 0.8s ease-out 2.2s backwards;
}
@keyframes pageEnter {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ HERO LOGO ============ */
.hero-logo {
    width: 110px;
    height: 110px;
    margin: 0 auto 16px;
    display: block;
    border-radius: 50%;
    filter: drop-shadow(0 8px 20px rgba(122, 30, 30, 0.20));
    animation: heroLogoFly 1.2s cubic-bezier(0.22, 1, 0.36, 1) 2.3s backwards;
}
.hero-logo-sm {
    width: 88px;
    height: 88px;
    margin-bottom: 10px;
}
@keyframes heroLogoFly {
    0% {
        transform: scale(2.5) translateY(40vh);
        opacity: 0;
    }
    60% {
        transform: scale(1.1) translateY(-4px);
        opacity: 1;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* =========== HERO =========== */
.hero {
    text-align: center;
    padding: 20px 16px 28px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: var(--maroon);
    color: #fff5e0;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(122, 30, 30, 0.25);
    margin-bottom: 16px;
    border: 1px solid var(--gold);
}

.hero-title {
    font-family: 'Poppins', 'Noto Sans Devanagari', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--maroon-dark);
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.hero-title .hero-sub {
    display: block;
    font-size: 19px;
    font-weight: 500;
    color: var(--maroon);
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px auto;
    color: var(--gold);
}
.hero-ornament .line {
    height: 1px;
    width: 50px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-ornament .line.right {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-ornament .diamond {
    font-size: 10px;
    color: var(--blue);
}
.hero-ornament .line.right {
    background: linear-gradient(90deg, var(--blue), transparent);
}

.hero-title-en {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text-soft);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-success .success-check {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    box-shadow: 0 8px 22px rgba(122, 30, 30, 0.3);
    border: 3px solid var(--gold);
}

/* =========== CARD =========== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 28px 24px;
    margin-bottom: 18px;
    border: 1px solid var(--border-soft);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
    border-radius: 0 0 3px 3px;
}

.section-title {
    text-align: center;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.section-title-text {
    font-family: 'Poppins', 'Noto Sans Devanagari', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--maroon-dark);
    letter-spacing: 0.4px;
}

/* =========== KEY INFO TABLE =========== */
.key-info { padding: 0; overflow: hidden; }
.key-info::before { display: none; }

.key-info table {
    width: 100%;
    border-collapse: collapse;
}
.key-info td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-soft);
    vertical-align: top;
}
.key-info tr:last-child td { border-bottom: none; }
.key-info tr:nth-child(odd) td { background: var(--cream); }

.key-info td.k {
    width: 100px;
    font-family: 'Poppins', serif;
    font-weight: 600;
    color: var(--maroon);
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.key-info td.v {
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.55;
    font-weight: 500;
}

/* =========== FORM =========== */
.form-card { padding: 28px 22px; }

.field { margin-bottom: 18px; }

label {
    display: block;
    font-weight: 600;
    font-size: 13.5px;
    margin-bottom: 8px;
    color: var(--charcoal);
    letter-spacing: 0.2px;
}
label .req { color: var(--maroon); margin-left: 3px; font-weight: 700; }

input[type=text], input[type=tel], input[type=email], input[type=number],
input[type=password], textarea, select {
    width: 100%;
    padding: 13px 14px;
    font-size: 15.5px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--cream);
    font-family: inherit;
    color: var(--text);
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--maroon);
    background: #fff;
    box-shadow: 0 0 0 3.5px rgba(122, 30, 30, 0.08);
}
input::placeholder, textarea::placeholder { color: #a89a85; font-weight: 400; }
textarea { min-height: 82px; resize: vertical; }
textarea.tall { min-height: 220px; font-family: 'Courier New', monospace; font-size: 13px; }

.radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-group label {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--cream);
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.15s;
    user-select: none;
}
.radio-group input[type=radio] { accent-color: var(--maroon); width: 18px; height: 18px; }
.radio-group label.sel,
.radio-group label:has(input:checked) {
    border-color: var(--maroon);
    background: #fff;
    color: var(--maroon-dark);
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(122, 30, 30, 0.10);
}

.hint { font-size: 12px; color: var(--text-mute); margin-top: 5px; font-style: italic; }

/* =========== BUTTONS =========== */
.btn {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    background: var(--gold);
    color: #fff;
    border: 1px solid var(--gold-dark);
    border-radius: var(--radius);
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(242, 115, 28, 0.32);
    transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
    text-decoration: none;
    text-align: center;
    font-family: inherit;
    margin-top: 8px;
}
.btn:hover { background: var(--gold-dark); box-shadow: 0 10px 24px rgba(242, 115, 28, 0.45); }
.btn:active { transform: translateY(1px); }
.btn.secondary {
    background: #fff;
    color: var(--maroon-dark);
    border: 1.5px solid var(--maroon);
    box-shadow: none;
}

.top-link {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: var(--maroon-dark);
    border: 1.5px solid var(--maroon);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.15s;
}
.top-link:hover { background: var(--maroon); color: #fff; }

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 14px 26px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.30);
}
.wa-btn:hover { background: #1fb157; }

/* =========== ALERTS =========== */
.alert {
    padding: 12px 14px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}
.alert.error { background: var(--error-bg); color: var(--error); border: 1px solid #f5b3b3; }
.alert.success { background: var(--success-bg); color: var(--success); border: 1px solid #a9e0bf; }

/* =========== FOOTER CARD =========== */
.footer-card { padding: 28px 22px; }

.footer-block { padding: 0; }
.footer-heading {
    font-family: 'Poppins', 'Noto Sans Devanagari', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--maroon);
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-heading::before,
.footer-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-body {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}
.footer-divider {
    height: 24px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.contact-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    transition: all 0.15s;
}
.contact-list a:hover {
    border-color: var(--maroon);
    background: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-xs);
}
.contact-name { font-weight: 600; color: var(--text); }
.contact-num {
    font-family: 'Poppins', 'Courier New', monospace;
    font-weight: 700;
    color: var(--maroon);
    font-size: 13.5px;
    letter-spacing: 0.3px;
}

.note-box {
    margin-top: 20px;
    padding: 16px 18px;
    background: #fff4ea;
    border: 1px solid var(--gold);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    font-size: 13.5px;
    color: var(--maroon-dark);
    line-height: 1.6;
}
.note-label {
    display: inline-block;
    font-weight: 800;
    background: var(--maroon);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-right: 10px;
    vertical-align: middle;
}

/* =========== ADMIN =========== */
.admin-wrap { max-width: 100%; padding: 18px; }
.admin-top {
    display: flex; gap: 12px; flex-wrap: wrap;
    align-items: center; justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
}
.admin-top h1 {
    font-family: 'Poppins', serif;
    font-size: 22px;
    color: var(--maroon-dark);
    font-weight: 700;
}
.admin-nav { display: flex; gap: 6px; flex-wrap: wrap; }
.admin-nav a {
    padding: 8px 14px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.15s;
}
.admin-nav a.active, .admin-nav a:hover {
    background: var(--maroon); color: #fff; border-color: var(--maroon);
}
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}
.stat {
    background: #fff;
    padding: 16px;
    border-radius: var(--radius);
    border-left: 4px solid var(--maroon);
    box-shadow: var(--shadow-xs);
}
.stat .v {
    font-family: 'Poppins', serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--maroon-dark);
}
.stat .l { font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 600; margin-top: 2px; }

.table-wrap {
    background: #fff;
    border-radius: var(--radius);
    padding: 10px;
    overflow-x: auto;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border-soft);
}
table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
th, td { padding: 10px; border-bottom: 1px solid var(--border-soft); text-align: left; }
th {
    background: var(--cream);
    color: var(--maroon-dark);
    font-weight: 700;
    font-size: 11.5px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
td { vertical-align: top; }

.badge { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.badge.ok { background: #d4f5e1; color: var(--success); }
.badge.pend { background: #fff0dc; color: var(--maroon); }
.badge.no { background: #f0ede5; color: #888; }

.search {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    width: 280px;
    max-width: 100%;
    background: #fff;
}

pre.log {
    background: var(--cream);
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border-soft);
    white-space: pre-wrap;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    line-height: 1.5;
}

/* =========== BRAND FOOTER =========== */
.brand-footer {
    text-align: center;
    padding: 24px 16px 8px;
    opacity: 0.85;
}
.brand-footer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 8px;
    opacity: 0.55;
    filter: grayscale(0.3);
    transition: opacity 0.2s, filter 0.2s;
}
.brand-footer:hover img {
    opacity: 1;
    filter: none;
}
.brand-footer .brand-text {
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}
.brand-footer .brand-sub {
    font-size: 10.5px;
    color: var(--text-mute);
    margin-top: 3px;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Subtle logo watermark on form card background */
.form-card {
    position: relative;
    overflow: hidden;
}
.form-card::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    background-image: url('/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}
.form-card > * { position: relative; z-index: 1; }

/* =========== INVITATION ============ */
.invite { text-align: center; }
.invite-vitrag {
    font-family: 'Poppins', 'Noto Sans Devanagari', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--maroon-dark);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.invite-amantran {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 16px;
}
.invite-call {
    font-family: 'Poppins', 'Noto Sans Devanagari', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--maroon);
    line-height: 1.35;
    margin: 6px 0 10px;
}
.invite-para {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 12px;
}
.invite-photo {
    margin: 12px 0;
    text-align: center;
}
.invite-photo img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: var(--radius-lg);
    border: 3px solid var(--gold);
    box-shadow: var(--shadow);
    display: block;
    margin: 0 auto;
}
.invite-photo.round img {
    width: 130px;
    height: 130px;
    max-width: 130px;
    object-fit: cover;
    border-radius: 50%;
}
.invite-photo figcaption {
    margin-top: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--maroon);
    line-height: 1.45;
}
.invite-highlight {
    background: #fff4ea;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 12px 14px;
    font-size: 13px;
    color: var(--maroon-dark);
    line-height: 1.6;
    margin: 12px 0;
}
.invite-eventname {
    font-family: 'Poppins', 'Noto Sans Devanagari', serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--maroon-dark);
    line-height: 1.35;
    margin: 12px 0 4px;
    padding: 2px 4px;
}

/* =========== PEOPLE / FEATURE LISTS =========== */
.people-list, .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.people-list li {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.people-list .city {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--maroon);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 3px 12px;
    white-space: nowrap;
}
.feature-list li {
    position: relative;
    background: var(--cream);
    border: 1px solid var(--border-soft);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 12px 14px 12px 40px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}
.feature-list li::before {
    content: '🔅';
    position: absolute;
    left: 12px;
    top: 11px;
    font-size: 15px;
}

/* =========== CONTACT (multi-number) =========== */
.contact-list li.contact-two {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
}
.contact-list li.contact-two .contact-name { font-weight: 600; color: var(--text); }
.num-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.num-pills a {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 13px;
    font-family: 'Poppins', 'Courier New', monospace;
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 13px;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.15s;
}
.num-pills a:hover { border-color: var(--gold); background: #fff8f2; }

/* =========== REG BANNER =========== */
.reg-banner {
    background: var(--maroon);
    color: #fff5e0;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    text-align: center;
    padding: 13px 16px;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 16px rgba(122, 30, 30, 0.22);
    margin-bottom: 12px;
}
.fee-banner {
    background: #fff4ea;
    color: var(--maroon-dark);
    border: 1px solid var(--gold);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    text-align: center;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}
.fee-banner .fee-refund {
    color: var(--success);
    font-size: 13px;
    font-weight: 600;
}

/* =========== AADHAAR / TRAVEL / MEMBERS =========== */
.radio-group.radio-3 { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.radio-group.radio-3 label { padding: 12px 8px; justify-content: center; font-size: 13.5px; }
.opt { color: var(--text-mute); font-weight: 500; font-size: 12px; }

.file-input {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px dashed var(--border);
    border-radius: var(--radius);
    background: var(--cream);
    font-size: 13px;
    color: var(--text-soft);
    cursor: pointer;
}
.file-input::file-selector-button {
    margin-right: 12px;
    border: none;
    background: var(--maroon);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.travel-block {
    background: var(--cream);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 16px 14px 4px;
    margin-bottom: 18px;
}
.dt-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.members-section {
    border-top: 2px dashed var(--border);
    margin: 8px 0 18px;
    padding-top: 18px;
}
.members-title {
    font-family: 'Poppins', 'Noto Sans Devanagari', serif;
    font-weight: 700;
    color: var(--maroon-dark);
    font-size: 15px;
    margin-bottom: 4px;
}
.members-hint { font-size: 12.5px; color: var(--text-mute); margin-bottom: 14px; }
.member-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-xs);
}
.member-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border-soft);
}
.member-tag {
    font-weight: 700; font-size: 12px; color: var(--blue-dark);
    background: #e8f6fd; border: 1px solid var(--blue-light);
    padding: 4px 12px; border-radius: 100px; letter-spacing: 0.5px;
}
.remove-btn {
    background: #fdeee8; color: var(--error); border: 1px solid #f3c1b3;
    padding: 6px 12px; border-radius: 8px; font-size: 12.5px; font-weight: 700;
    cursor: pointer; font-family: inherit;
}
.remove-btn:hover { background: var(--error); color: #fff; }
.add-member-btn {
    width: 100%; padding: 13px; background: #fff; color: var(--maroon-dark);
    border: 1.5px dashed var(--maroon); border-radius: var(--radius);
    font-weight: 700; font-size: 14.5px; cursor: pointer; font-family: inherit;
    transition: all 0.15s;
}
.add-member-btn:hover { background: var(--maroon); color: #fff; border-style: solid; }

/* =========== RESPONSIVE =========== */
@media (max-width: 600px) {
    .radio-group.radio-3 label { font-size: 12.5px; padding: 11px 4px; }
    .invite-call { font-size: 17px; }
    .invite-eventname { font-size: 17px; }
    .invite-photo.round img { width: 150px; height: 150px; }
    .people-list li, .feature-list li { font-size: 13.5px; }
    .wrap { padding: 16px 14px 36px; }
    .hero { padding: 22px 12px 24px; }
    .hero-title { font-size: 28px; }
    .hero-title .hero-sub { font-size: 17px; }
    .hero-title-en { font-size: 14px; }
    .hero-badge { font-size: 12px; padding: 7px 14px; }
    .card { padding: 22px 18px; }
    .form-card, .footer-card { padding: 22px 18px; }
    .key-info td { padding: 12px 14px; }
    .key-info td.k { width: 80px; font-size: 11px; }
    .key-info td.v { font-size: 13.5px; }
    .contact-list a { padding: 11px 14px; font-size: 13px; }
    .contact-num { font-size: 12.5px; }
    th, td { padding: 8px 6px; font-size: 12px; }
    .admin-top h1 { font-size: 18px; }
}
