* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.inv-page {
    font-family: 'Segoe UI', Arial, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 100px;

    color: #1a2a4a;
}



/* HERO */
.inv-hero {
    background: linear-gradient(135deg, #1a2a4a 0%, #2d4a7a 100%);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 30px;
}

.inv-badge {
    display: inline-block;
    background: #F5A623;
    color: #1a2a4a;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.inv-hero h1 {
    color: #F5A623;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.inv-hero p {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* INFO CARDS */
.inv-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.inv-info-card {
    background: #f8f9fa;
    border-left: 4px solid #F5A623;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.inv-info-card .icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.inv-info-card h3 {
    color: #1a2a4a;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.inv-info-card p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* FORM CARD */
.form-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
}

.form-card-header {
    background: #fff8ed;
    border-left: 5px solid #F5A623;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-card-header:hover {
    background: #ffefd4;
}

.form-card-header h2 {
    color: #1a2a4a;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.form-card-header .arrow {
    color: #F5A623;
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.form-card-header.active .arrow {
    transform: rotate(180deg);
}

.form-card-body {
    display: none;
    border-top: 1px solid #eeeeee;
}

.form-card-body.open {
    display: block;
}

/* ABOUT & FEES */
.inv-wrap {
    padding: 20px;
}

.about-box {
    background: #f8f9fa;
    border-left: 4px solid #F5A623;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 14px;
    color: #444;
}

.about-box h3 {
    color: #1a2a4a;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.fees-box {
    background: #fff8ed;
    border: 2px solid #F5A623;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.fees-box h3 {
    color: #1a2a4a;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e0c07a;
    flex-wrap: wrap;
    gap: 5px;
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-label {
    font-size: 13px;
    color: #444;
}

.fee-amount {
    font-size: 15px;
    font-weight: 700;
    color: #F5A623;
}

.fee-notes {
    margin-top: 15px;
    padding-left: 0;
}

.fee-notes li {
    font-size: 13px;
    color: #666;
    padding: 4px 0 4px 15px;
    position: relative;
    list-style: none;
    line-height: 1.5;
}

.fee-notes li::before {
    content: "•";
    color: #F5A623;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FORM */
.inv-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* SECTION HEADER */
.sec-header {
    background: linear-gradient(135deg, #1a2a4a, #2d4a7a);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sec-header .sec-num {
    background: #F5A623;
    color: #1a2a4a;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}

.sec-header h2 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* SECTION BODY */
.sec-body {
    padding: 20px 15px;
    border-bottom: 1px solid #f0f0f0;
}

/* FIELDS */
.field-group {
    margin-bottom: 18px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.field-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

label .req {
    color: #e74c3c;
    margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    transition: all 0.3s ease;
    font-family: inherit;
    -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #F5A623;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

textarea {
    resize: vertical;
    min-height: 90px;
}

/* OPTIONS */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.id-type-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #444 !important;
    background: #fafafa;
    line-height: 1.4;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.option-item:hover {
    border-color: #F5A623;
    background: #fff8ed;
}

.option-item input[type="radio"],
.option-item input[type="checkbox"] {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    accent-color: #F5A623;
    cursor: pointer;
    flex-shrink: 0;
}

/* NOTICE */
.notice-box {
    background: #fff8ed;
    border-left: 4px solid #F5A623;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 13px;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}

/* DECLARATION */
.declaration-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
    color: #444;
    line-height: 1.6;
}

.declaration-item:last-child {
    border-bottom: none;
}

.declaration-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: #F5A623;
    cursor: pointer;
    flex-shrink: 0;
}

/* DISCLAIMER */
.disclaimer-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 18px;
    font-size: 13px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.disclaimer-box p {
    margin-bottom: 10px;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

/* SUBMIT */
.submit-section {
    padding: 25px 20px;
    background: #f8f9fa;
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #F5A623, #e09010);
    color: #1a2a4a;
    border: none;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    width: 100%;
    max-width: 400px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}

.submit-note {
    font-size: 12px;
    color: #888;
    margin-top: 12px;
    line-height: 1.5;
}

/* SUCCESS */
.success-msg {
    display: none;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #155724;
    font-weight: 600;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 600px) {
    .inv-page {
        padding: 10px;
    }

    .inv-hero {
        padding: 25px 15px;
    }

    .inv-hero h1 {
        font-size: 22px;
    }

    .inv-info-grid {
        grid-template-columns: 1fr;
    }

    .field-row,
    .field-row-3 {
        grid-template-columns: 1fr !important;
    }

    .options-grid {
        grid-template-columns: 1fr !important;
    }

    .sec-body {
        padding: 15px 12px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="time"],
    textarea {
        font-size: 16px;
        padding: 12px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 15px 20px;
    }

    .form-card-header h2 {
        font-size: 14px;
    }
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #ddd;
    border-radius: 14px;
    padding: 18px;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
}

.payment-card:hover {
    border-color: #f5a623;
}

.payment-card input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #f5a623;
    flex-shrink: 0;
}

.payment-content h4 {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #0d2d63;
    line-height: 1.3;
}

.payment-content p {
    margin: 5px 0 0;
    font-size: 14px;
    font-weight: 600;
    color: #f5a623;
}

/* MOBILE VIEW */
@media (max-width: 767px) {
    .payment-grid {
        grid-template-columns: 1fr;
        /* ek ke niche ek */
        gap: 15px;
    }

    .payment-card {
        padding: 15px;
        gap: 10px;
    }

    .payment-card input[type="radio"] {
        width: 18px;
        height: 18px;
    }

    .payment-content h4 {
        font-size: 14px;
    }

    .payment-content p {
        font-size: 13px;
    }
}



/* SUBMIT SECTION MOBILE FIX */
.submit-section {
    padding: 20px 15px;
    background: #f8f9fa;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.submit-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 40px;

    box-sizing: border-box;
    line-height: 1.4;
    white-space: normal;
    transition: all 0.3s ease;
}

.submit-note {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 12px;
    padding: 0 10px;
}

@media (max-width: 600px) {
    .submit-section {
        padding: 15px 10px;
    }

    .submit-btn {
        width: 100%;
        font-size: 13px;
        padding: 14px 16px;
    }

    .submit-note {
        font-size: 11px;
    }
}




/* =========================================
   WEIGHT MANAGEMENT COACHING PROGRAMMES
========================================= */

.weight-program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 15px;
    width: 100%;
}

.weight-program-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    background: #fff;
    border: 1.5px solid #e5e5e5;
    border-radius: 18px;
    padding: 28px 25px;
    min-height: 320px;

    cursor: pointer;
    transition: all 0.3s ease;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.weight-program-card:hover {
    border-color: #F5A623;
    background: #fffaf3;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.15);
}

.weight-program-card input[type="radio"] {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    accent-color: #F5A623;
    margin-top: 6px;
    cursor: pointer;
}

.weight-program-content {
    flex: 1;
}

.weight-program-content strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #0d2d63;
    margin-bottom: 18px;
    line-height: 1.4;
}

.weight-program-content p {
    font-size: 15px;
    color: #555;
    line-height: 2;
    margin: 0;
}

/* Selected Card Effect */
.weight-program-card:has(input[type="radio"]:checked) {
    border: 2px solid #F5A623;
    background: linear-gradient(135deg, #fffdf8, #fff8ed);
    box-shadow: 0 12px 35px rgba(245, 166, 35, 0.20);
}

.weight-program-card:has(input[type="radio"]:checked) .weight-program-content strong {
    color: #F5A623;
}

/* Notice Box */
.notice-box {
    background: #fff8ed;
    border-left: 5px solid #F5A623;
    border-radius: 10px;
    padding: 15px 18px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* ==========================
   TABLET VIEW
========================== */

@media (max-width: 1024px) {

    .weight-program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .weight-program-card {
        min-height: 280px;
    }
}

/* ==========================
   MOBILE VIEW
========================== */

@media (max-width: 768px) {

    .weight-program-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .weight-program-card {
        min-height: auto;
        padding: 20px;
    }

    .weight-program-card input[type="radio"] {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
    }

    .weight-program-content strong {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .weight-program-content p {
        font-size: 14px;
        line-height: 1.8;
    }
}