:root {
    --gold: #c9a227;
    --gold-dark: #a8861f;
    --gold-light: #f5ecd3;
    --text-dark: #1f1f1f;
    --text-muted: #666666;
    --card-border: #e8e8e8;
    --page-bg: #f7f7f7;
}

body.registration-page {
    background: var(--page-bg);
    color: var(--text-dark);
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.registration-hero {
    background: linear-gradient(135deg, #111 0%, #2a2418 100%);
    color: #fff;
    padding: 3rem 0 2rem;
}

.registration-hero h1 {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.registration-hero p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 720px;
}

.admin-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
}

.admin-link:hover {
    color: var(--gold);
}

.edit-details-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
}

.edit-details-link:hover {
    color: var(--gold);
}

.edit-details-bar {
    padding-top: 0.75rem;
}

.pricing-section,
.registration-form-section {
    padding: 2.5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-top: 5px solid var(--gold);
    border-radius: 0.75rem;
    padding: 1.5rem 1.25rem 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.pricing-card:hover,
.pricing-card.selected {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.pricing-card.selected {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.plan-name {
    color: var(--gold);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.plan-price {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.plan-access,
.plan-timings {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.plan-timings {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

.plan-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.btn-buy-now {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    width: 100%;
}

.btn-buy-now:hover,
.pricing-card.selected .btn-buy-now {
    background: var(--gold);
    color: #fff;
}

.gst-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.registration-contact-note {
    margin-top: 0.35rem;
}

.registration-contact-note a {
    color: inherit;
    text-decoration: underline;
}

.registration-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.registration-card .card-header {
    background: #fff;
    border-bottom: 1px solid var(--gold);
    padding: 1.25rem 1.5rem;
}

.required-mark {
    color: var(--gold-dark);
    font-weight: 700;
}

.registration-page .form-control,
.registration-page .form-select {
    border: 1px solid var(--gold);
}

.registration-page .form-control:focus,
.registration-page .form-select:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.25);
}

.registration-page textarea.form-control {
    border: 1px solid var(--gold);
}

.selected-plan-summary {
    background: var(--gold-light);
    border: 1px solid #e6d7a1;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.selected-plan-summary strong {
    color: var(--gold-dark);
}

.btn-pay {
    background: var(--gold);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 0.85rem 1.25rem;
}

.btn-pay:hover:not(:disabled) {
    background: var(--gold-dark);
    color: #fff;
}

.btn-pay:disabled {
    opacity: 0.65;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.text-gold {
    color: var(--gold-dark);
}

.thank-you-card {
    max-width: 640px;
    margin: 4rem auto;
    background: #fff;
    border-radius: 0.75rem;
    border-top: 5px solid var(--gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    text-align: center;
}

.thank-you-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.detail-row:last-child {
    border-bottom: none;
}

@media (max-width: 1199px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pricing-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 0.75rem;
        margin-inline: -0.75rem;
        padding-inline: 0.75rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .pricing-grid::-webkit-scrollbar {
        height: 6px;
    }

    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 999px;
    }

    .pricing-card {
        flex: 0 0 85%;
        min-width: 280px;
        max-width: 300px;
        scroll-snap-align: start;
        height: auto;
    }

    .registration-hero {
        padding: 2rem 0 1.5rem;
    }

    .edit-details-bar {
        margin-top: 0.75rem;
        padding-top: 1.25rem;
    }
}

.mobile-input-group.has-validation {
    flex-wrap: wrap;
}

.mobile-input-group.has-validation .invalid-feedback {
    width: 100%;
}
    border: 1px solid var(--gold);
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 14px;
}

.mobile-input-group .form-control {
    border: 1px solid var(--gold);
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.mobile-input-group .form-select:focus,
.mobile-input-group .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.2);
}

.mobile-input-group .form-select:focus + .form-control,
.mobile-input-group:focus-within .form-select,
.mobile-input-group:focus-within .form-control {
    border-color: var(--gold);
}

.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-top: 3px solid var(--gold);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    padding: 0.5rem 0;
}

.site-footer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
}

.site-footer-partner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.site-footer-partner:hover,
.site-footer-partner:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

.site-footer-label {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.site-footer-partner:hover .site-footer-label,
.site-footer-partner:focus-visible .site-footer-label {
    color: var(--gold);
    letter-spacing: 0.1em;
}

.site-footer-label::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 1.25rem;
    margin-left: 0.5rem;
    background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.85), transparent);
    vertical-align: middle;
    transition: background 0.2s ease, height 0.2s ease;
}

.site-footer-partner:hover .site-footer-label::after,
.site-footer-partner:focus-visible .site-footer-label::after {
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    height: 1.4rem;
}

.site-footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.45rem;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 0.4rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.site-footer-partner:hover .site-footer-logo-wrap,
.site-footer-partner:focus-visible .site-footer-logo-wrap {
    background: #fff;
    box-shadow: 0 3px 14px rgba(201, 162, 39, 0.35);
    transform: scale(1.04);
}

.site-footer-logo {
    display: block;
    max-height: 40px;
    width: auto;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.site-footer-partner:hover .site-footer-logo,
.site-footer-partner:focus-visible .site-footer-logo {
    transform: scale(1.03);
    filter: brightness(1.03);
}

.sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

@media (max-width: 576px) {
    .site-footer-label {
        font-size: 0.72rem;
        letter-spacing: 0.06em;
    }

    .site-footer-logo {
        max-height: 36px;
    }
}
