/* ================================================
   PILATES SOCIAL CLUB — PRE-LAUNCH REGISTRATION
   STEP WIZARD LAYOUT
   ================================================ */

/* ========== RESET & VARIABLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brown: #8c4a34;
    --blue: #7fa6b8;
    --cream: #faf5ef;
    --cream1: #ebe6df;
    --cream-light: #fff6ea;
    --beige: #dfcdbb;
    --white: #ffffff;
    --dark-charcoal: #2f2f2f;
    --soft-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.25);
    --green: #4a8c5e;
    --header-h: 58px;
}

body {
    background: var(--cream);
    font-family: 'Questrial', sans-serif;
    overflow-x: hidden;
    width: 100%;
}

/* ========== HEADER ========== */
.header {
    width: 100%;
    height: var(--header-h);
    background: #ECE2D8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(140, 74, 52, 0.08);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.back-link {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--brown);
    transition: all 0.3s ease;
    padding: 8px 0;
}

.back-link:hover {
    color: var(--blue);
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    text-decoration: none;
}

.logo1 { height: 38px; width: auto; }

.logo-x {
    font-size: 20px;
    color: var(--brown);
    font-weight: 300;
    opacity: 0.5;
    margin: 0 2px;
    line-height: 1;
}

.logo2 {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.logo3 {
    height: 60px;
    width: auto;
}

.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.header-buttons a {
    font-family: 'Raleway', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 22px;
}

.header-buttons .btn-buy {
    background: var(--blue);
    color: var(--white);
}

.header-buttons .btn-buy:hover {
    background: #6a94a6;
}

/* ========== SPLIT LAYOUT ========== */
.split-layout {
    display: flex;
    min-height: calc(100vh - var(--header-h));
}

.split-left {
    width: 48%;
    position: sticky;
    top: var(--header-h);
    height: calc(100vh - var(--header-h));
    overflow: hidden;
    flex-shrink: 0;
}

.split-left-bg {
    position: absolute;
    inset: 0;
}

.split-left-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(140, 74, 52, 0.82) 0%, rgba(47, 47, 47, 0.92) 100%);
    z-index: 2;
}

.split-left-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 50px 48px;
    color: var(--white);
}

.split-brand {
    margin-bottom: 24px;
}

.split-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.split-tagline {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 12px;
    padding: 5px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.split-left-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 14px;
}

.split-left-content h2 em {
    font-style: italic;
    color: var(--cream);
}

.split-left-content > p {
    font-family: 'Questrial', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 340px;
}

.split-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.split-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sf-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--cream);
    flex-shrink: 0;
}

.split-feature span:last-child {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
}

.split-cta-note {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.5;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding-top: 16px;
}

.split-right {
    flex: 1;
    min-width: 0;
    background: var(--cream);
}

/* ========== PROGRESS BAR ========== */
.progress-bar-section {
    background: var(--white);
    padding: 30px 6%;
    border-bottom: 1px solid rgba(140, 74, 52, 0.08);
}

.progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid rgba(140, 74, 52, 0.2);
    color: rgba(140, 74, 52, 0.3);
    background: var(--white);
    transition: all 0.4s ease;
}

.progress-step.active .step-circle {
    background: var(--brown);
    color: var(--white);
    border-color: var(--brown);
}

.progress-step.completed .step-circle {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.step-text {
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(140, 74, 52, 0.3);
    transition: color 0.4s ease;
    white-space: nowrap;
}

.progress-step.active .step-text {
    color: var(--brown);
}

.progress-step.completed .step-text {
    color: var(--green);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: rgba(140, 74, 52, 0.12);
    margin: 0 12px;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
}

.progress-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--green);
    transition: width 0.5s ease;
}

.progress-line-fill.filled {
    width: 100%;
}

/* ========== WIZARD MAIN ========== */
.registration-main {
    padding: 30px 28px 60px;
}

.wizard-container {
    max-width: 760px;
    margin: 0 auto;
}

/* ========== WIZARD STEP ========== */
.wizard-step {
    margin-bottom: 0;
}

/* The full card (form content) */
.wizard-step .step-card {
    display: none;
    background: var(--white);
    padding: 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    animation: fadeSlideIn 0.4s ease;
}

.wizard-step.active .step-card {
    display: block;
}

/* Frozen summary (collapsed after completion) */
.frozen-summary {
    display: none;
    background: var(--white);
    padding: 10px 16px;
    margin-bottom: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
    border-left: 3px solid var(--green);
}

.wizard-step.completed .step-card {
    display: none;
}

.wizard-step.completed .frozen-summary {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== STEP HEADER ========== */
.step-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(140, 74, 52, 0.12);
}

.form-label {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brown);
    border: 1.5px solid rgba(140, 74, 52, 0.35);
    padding: 6px 16px;
    margin-bottom: 14px;
}

.step-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 4px;
}

.step-header p {
    color: #7a6e64;
    font-size: 11px;
    line-height: 1.4;
}

/* ========== FORM ELEMENTS ========== */
.reg-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group { flex: 1; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark-charcoal);
}

.form-group label .required {
    color: var(--brown);
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: 'Questrial', sans-serif;
    font-size: 14px;
    color: var(--dark-charcoal);
    background: var(--cream);
    border: 1.5px solid rgba(140, 74, 52, 0.15);
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brown);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(140, 74, 52, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b5a99e;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238c4a34' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* CHECKBOX */
.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    color: #5e5550;
    line-height: 1.5;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    padding: 0;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--brown);
}

.checkbox-label a {
    color: var(--brown);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--blue);
}

/* ========== STEP ACTION BUTTONS ========== */
.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(140, 74, 52, 0.1);
}

.btn-next {
    padding: 14px 36px;
    background: var(--brown);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--brown);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next:hover {
    background: transparent;
    color: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 74, 52, 0.15);
}

.btn-back {
    padding: 14px 28px;
    background: transparent;
    color: var(--brown);
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1.5px solid rgba(140, 74, 52, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    border-color: var(--brown);
    background: rgba(140, 74, 52, 0.04);
}

/* ========== FROZEN SUMMARY ========== */
.frozen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.frozen-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.frozen-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    flex-shrink: 0;
}

.frozen-header h4 {
    font-family: 'Questrial', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 0;
}

.frozen-detail {
    font-size: 10px;
    color: #7a6e64;
    line-height: 1.3;
}

.btn-edit {
    padding: 4px 12px;
    background: transparent;
    color: var(--brown);
    font-family: 'Raleway', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(140, 74, 52, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-edit:hover {
    border-color: var(--brown);
    background: rgba(140, 74, 52, 0.05);
}

/* ========== PACKAGES (STEP 2) ========== */
.packages-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-item {
    border: 1.5px solid rgba(140, 74, 52, 0.12);
    padding: 14px 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.package-item:hover {
    border-color: rgba(140, 74, 52, 0.35);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.package-item.selected {
    border-color: var(--brown);
    background: rgba(140, 74, 52, 0.03);
    box-shadow: 0 2px 12px rgba(140, 74, 52, 0.1);
}

.package-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--brown);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
}

.package-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.package-info { flex: 1; }

.package-info h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 2px;
}

.package-info p {
    font-size: 11px;
    color: #7a6e64;
    line-height: 1.4;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.price-original {
    font-family: 'Questrial', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #b5a99e;
    text-decoration: line-through;
}

.price-current {
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--brown);
    line-height: 1;
}

.price-period {
    font-family: 'Raleway', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7a6e64;
    margin-top: 1px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(140, 74, 52, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
}

.package-features li {
    font-size: 11px;
    color: #5e5550;
    padding: 2px 0;
    padding-left: 14px;
    position: relative;
    line-height: 1.4;
}

.package-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--brown);
    font-weight: 700;
    font-size: 10px;
}

/* ========== PACKAGE TABS ========== */
.pkg-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border: 1.5px solid rgba(140, 74, 52, 0.15);
    overflow-x: auto;
}

.pkg-tab {
    flex: 1;
    padding: 12px 10px;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(140, 74, 52, 0.1);
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7a6e64;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pkg-tab:last-child {
    border-right: none;
}

.pkg-tab:hover {
    background: rgba(140, 74, 52, 0.04);
    color: var(--brown);
}

.pkg-tab.active {
    background: var(--brown);
    color: var(--white);
}

/* CATEGORY SECTIONS */
.pkg-cat {
    display: none;
}

.pkg-cat.active {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cat-note {
    padding: 8px 14px;
    background: rgba(140, 74, 52, 0.04);
    border: 1px solid rgba(140, 74, 52, 0.1);
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 4px;
}

/* ========== PAYMENT (STEP 3) ========== */
.order-summary {
    background: var(--cream);
    padding: 20px;
    margin-bottom: 28px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    color: var(--dark-charcoal);
}

.summary-row .discount {
    color: var(--green);
    font-weight: 600;
}

.summary-row .free {
    color: var(--brown);
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
}

.summary-divider {
    height: 1px;
    background: rgba(140, 74, 52, 0.15);
    margin: 8px 0;
}

.summary-row.total {
    font-weight: 700;
    font-size: 16px;
    color: var(--brown);
    padding-top: 12px;
}

.summary-row.total span:last-child {
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
}

.summary-note {
    font-size: 11px;
    color: #7a6e64;
    margin-top: 10px;
    line-height: 1.5;
}

/* QR CODE PAYMENT */
.qr-payment-section {
    text-align: center;
    padding: 28px 0 24px;
    margin: 0 -30px;
    padding-left: 30px;
    padding-right: 30px;
}

.qr-card {
    background: var(--white);
    border: 1.5px solid rgba(140, 74, 52, 0.1);
    padding: 28px 24px 24px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-to-info {
    font-family: 'Raleway', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 8px;
    opacity: 0.7;
}

.qr-payment-section h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 4px;
}

.qr-subtitle {
    font-size: 12px;
    color: #7a6e64;
    margin-bottom: 20px;
}

.qr-amount-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: var(--brown);
    color: var(--white);
    padding: 12px 36px;
    margin-bottom: 20px;
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
}

.qr-amount-label {
    font-family: 'Raleway', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.75;
}

.qr-amount-badge strong {
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.qr-code-wrapper {
    background: var(--cream);
    border: 2px solid rgba(140, 74, 52, 0.08);
    padding: 16px;
    margin-bottom: 20px;
    display: inline-block;
}

.qr-code-wrapper img {
    width: 200px;
    height: 200px;
    display: block;
    object-fit: contain;
}

.upi-id-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--cream);
    padding: 10px 20px;
    border: 1px solid rgba(140, 74, 52, 0.08);
    width: 100%;
    max-width: 420px;
}

.upi-id-display span {
    font-family: 'Questrial', sans-serif;
    font-size: 12px;
    color: #7a6e64;
    font-weight: 500;
    flex-shrink: 0;
}

.upi-id-display strong {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: 0.3px;
    word-break: break-all;
}

.btn-copy-upi {
    padding: 5px 14px;
    background: var(--brown);
    border: 1px solid var(--brown);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-copy-upi:hover {
    background: transparent;
    color: var(--brown);
}

.qr-instructions {
    max-width: 420px;
    margin: 0 auto;
    background: var(--white);
    padding: 16px 24px;
    border: 1px solid rgba(140, 74, 52, 0.08);
}

.qr-instructions p {
    font-size: 12px;
    color: #7a6e64;
    line-height: 1.6;
    margin-bottom: 6px;
}

.qr-instructions ol {
    text-align: left;
    padding-left: 18px;
    margin: 0;
}

.qr-instructions ol li {
    font-size: 11px;
    color: #5e5550;
    padding: 4px 0;
    line-height: 1.6;
}

/* PAYMENT FORM (for UTR input) */
.payment-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(140, 74, 52, 0.1);
}

.payment-form .form-group label {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark-charcoal);
}

.payment-form .form-group label .required {
    color: var(--brown);
    font-weight: 700;
}

.payment-form .form-group input {
    width: 100%;
    padding: 13px 16px;
    font-family: 'Questrial', sans-serif;
    font-size: 14px;
    color: var(--dark-charcoal);
    background: var(--cream);
    border: 1.5px solid rgba(140, 74, 52, 0.15);
    border-radius: 0;
    outline: none;
    transition: all 0.3s ease;
}

.payment-form .form-group input:focus {
    border-color: var(--brown);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(140, 74, 52, 0.08);
}

.payment-form .form-group input::placeholder {
    color: #b5a99e;
}

.payment-form .form-row {
    display: flex;
    gap: 16px;
}

.payment-form .form-row .form-group { flex: 1; }

/* SECURE BADGE */
.secure-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(74, 140, 94, 0.06);
    border: 1px solid rgba(74, 140, 94, 0.15);
}

.secure-badge .lock-icon { font-size: 14px; }

.secure-badge span {
    font-size: 12px;
    color: var(--green);
    font-weight: 500;
}

/* PAY BUTTON */
.btn-pay {
    padding: 16px 32px;
    background: var(--brown);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--brown);
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-pay:hover {
    background: transparent;
    color: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 74, 52, 0.2);
}

.payment-actions {
    border-top: none;
    margin-top: 8px;
    padding-top: 0;
}

.payment-note {
    font-size: 11px;
    color: #7a6e64;
    line-height: 1.6;
    text-align: center;
    margin-top: 8px;
}

/* ========== SUCCESS MODAL ========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--white);
    padding: 50px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(74, 140, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--green);
}

.modal-box h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 12px;
}

.modal-box p {
    font-size: 14px;
    color: #7a6e64;
    line-height: 1.6;
    margin-bottom: 28px;
}

.modal-btn {
    padding: 14px 36px;
    background: var(--brown);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: var(--blue);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-charcoal);
    padding: 0 6% 0;
    position: relative;
}

.footer-logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    top: -40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.footer-logo-circle img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-top {
    display: flex;
    gap: 60px;
    padding: 0 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: -10px;
}

.footer-top-left { flex: 1; }

.footer-top-left h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 14px;
}

.footer-top-left p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 400px;
}

.footer-top-right { flex: 1; }

.footer-top-right h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.fc-icon {
    font-size: 16px;
    color: var(--brown);
}

.footer-contact-item span:last-child {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-columns {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col { flex: 1; }

.footer-col h5 {
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--cream); }

.footer-col-social .footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    border-color: var(--brown);
    color: var(--brown);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--cream); }

/* ========== RESPONSIVE ========== */

/* Tablet — hide left panel */
@media (max-width: 1024px) {
    .split-left {
        display: none;
    }

    .split-right {
        width: 100%;
    }

    .registration-main {
        padding: 30px 5% 60px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 1.5rem;
    }

    .progress-bar-section { padding: 20px 4%; }
    .step-text { font-size: 8px; letter-spacing: 1px; }
    .step-circle { width: 34px; height: 34px; font-size: 12px; }

    .registration-main { padding: 30px 4% 60px; }

    .wizard-step .step-card {
        padding: 28px 20px;
    }

    .step-header h2 { font-size: 24px; }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .package-top {
        flex-direction: column;
        gap: 12px;
    }

    .package-price {
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
    }

    .pkg-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pkg-tab {
        font-size: 9px;
        padding: 10px 8px;
        letter-spacing: 1px;
    }

    .step-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .btn-next, .btn-back, .btn-pay {
        width: 100%;
        text-align: center;
    }

    .payment-form .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-columns {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-col { flex: 0 0 45%; }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .qr-code-wrapper img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .header { padding: 0 1rem; }

    .logo1 { height: 28px; }
    .logo2 { height: 32px; width: 32px; }
    .logo3 { height: 55px; }
    .back-link { font-size: 9px; letter-spacing: 1px; }

    .hero-banner { height: 240px; }
    .hero-banner-content h1 .white { font-size: 28px; }
    .hero-banner-content h1 .cream { font-size: 22px; }

    .registration-main { padding: 24px 3% 50px; }

    .wizard-step .step-card {
        padding: 24px 16px;
    }

    .frozen-summary { padding: 16px 14px; }

    .price-current { font-size: 26px; }

    .qr-code-wrapper img {
        width: 180px;
        height: 180px;
    }
}

/* Desktop — hide hero/marquee when split panel is visible */
@media (min-width: 1025px) {
    .hero-banner {
        display: none;
    }
    .marquee-section {
        display: none;
    }
}
