 :root {
        --abt-gold: #D4AF37;
        --abt-maroon: #6B003E;
        --abt-black: #111111;
        --text-gray: #4a5568;
    }

    .abt-hero-section {
        background-color: #FFEEC6;
        padding: 80px 0;
        overflow: hidden;
        font-family: 'Inter', sans-serif;
    }

    .abt-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

    .hero-text-col {
        flex: 1;
        max-width: 550px;
    }

    .hero-title {
        font-family: 'Playfair Display', serif;
        /* Font match */
        font-size: 3.5rem;
        line-height: 1.1;
        color: var(--abt-black);
        margin: 0 0 25px 0;
        font-weight: 700;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.6;
        color: var(--text-gray);
        margin-bottom: 35px;
    }

    .hero-buttons {
        display: flex;
        gap: 15px;
    }

    .btn-primary {
        background-color: var(--abt-maroon);
        color: #fff;
        border: 2px solid var(--abt-maroon);
        padding: 14px 35px;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        background-color: #4a002b;
        border-color: #4a002b;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(107, 0, 62, 0.3);
    }

    .btn-secondary {
        background-color: transparent;
        color: var(--abt-black);
        border: 2px solid var(--abt-black);
        padding: 14px 35px;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        background-color: var(--abt-black);
        color: #fff;
    }

    .hero-img-col {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .img-wrapper img {
        width: 100%;
        max-width: 600px;
        border-radius: 20px;
        box-shadow: 20px 20px 0px var(--abt-gold);
        display: block;
    }

    @media (max-width: 992px) {
        .hero-row {
            flex-direction: column-reverse;
            /* Text neechay, Image upar */
            text-align: center;
        }

        .hero-text-col {
            margin-top: 20px;
        }

        .hero-title {
            font-size: 2.4rem;
        }

        .hero-buttons {
            justify-content: center;
        }

        .img-wrapper img {
            box-shadow: 10px 10px 0px var(--abt-gold);
        }
    }

    .section-heading {
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        color: var(--abt-black);
        margin-bottom: 40px;
        font-weight: 700;
    }

    @media (max-width: 768px) {
        .section-heading {
            font-size: 1.8rem;
        }
    }

    .abt-pricing-section {
        background-color: var(--abt-gold);
        padding: 80px 0;
        font-family: 'Inter', sans-serif;
        box-shadow: 0 18px 35px 25px rgb(0 0 0 / .2);
    }

    .section-heading {
        text-align: center;
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: var(--abt-black);
        margin-bottom: 50px;
        font-weight: 700;
    }

    .pricing-grid {
        display: flex;
        justify-content: center;
        gap: 30px;
        /* Space between cards */
        flex-wrap: wrap;
        align-items: stretch;
    }

    .price-card {
        background-color: #fff;
        border: 1px solid #b0b0b0;
        border-radius: 8px;
        width: 400px;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 32px 36px 0px rgb(0 0 0 / .2);
    }

    .price-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border-color: var(--abt-black);
    }

    .pc-header {
        padding: 15px;
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--abt-black);
        border-bottom: 1px solid #e0e0e0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background-color: #fff;
    }

    .featured-card {
        border-top: 6px solid var(--abt-maroon);
        border-color: #999;
    }

    .featured-header {
        background-color: #fdf2f8;
        color: var(--abt-black);
    }

    .pc-body {
        padding: 30px;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .pc-title {
        font-size: 1.4rem;
        color: var(--abt-black);
        margin-bottom: 10px;
        font-weight: 700;
        line-height: 1.3;
    }

    .limited-offer {
        color: #d93025;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.85rem;
        margin-bottom: 5px;
        letter-spacing: 0.5px;
    }

    .pc-price-box {
        color: var(--abt-black);
        font-weight: 800;
        font-size: 3.5rem;
        line-height: 1;
        margin: 15px 0 5px 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .currency {
        font-size: 1.8rem;
        margin-top: 5px;
    }

    .range {
        font-size: 1.5rem;
        color: #555;
        font-weight: 400;
        margin-left: 5px;
        margin-top: 15px;
    }

    .pc-sub {
        color: #333;
        font-size: 1rem;
        margin-bottom: 30px;
        font-weight: 600;
    }

    .pc-btn {
        width: 100%;
        margin-bottom: 10px;
        padding: 16px;
        font-size: 1.1rem;
        background-color: var(--abt-maroon);
        border: none;
        color: white;
    }

    .pc-btn:hover {
        background-color: #eb80be;
        transform: none;
        color: black;
    }

    .pc-note {
        font-size: 0.85rem;
        color: #666;
        margin-bottom: 30px;
    }

    .pc-features {
        text-align: left;
        margin-top: auto;
        border-top: 1px solid #e0e0e0;
        padding-top: 25px;
    }

    .feat-desc {
        font-size: 0.9rem;
        color: #444;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .pc-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pc-features li {
        font-size: 0.95rem;
        color: #222;
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        line-height: 1.5;
    }

    .pc-features i {
        color: var(--abt-maroon);
        margin-right: 12px;
        margin-top: 4px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    @media (max-width: 900px) {
        .pricing-grid {
            flex-direction: column;
            align-items: center;
        }

        .price-card {
            width: 100%;
            max-width: 450px;
        }
    }

    .abt-features-section {
        background-color: #FFEEC6;
        padding-bottom: 100px;
        font-family: 'Inter', sans-serif;
    }

    .switch-banner {
        background-color: #760044;
        color: #fff;
        padding: 50px 0;
        margin-bottom: 80px;
    }

    .banner-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .sb-img {
        width: 130px;
        height: 130px;
        border-radius: 15px;
        object-fit: cover;
        border: 4px solid var(--abt-gold);
    }

    .sb-text h3 {
        font-family: 'Inter', sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 10px;
        color: #fff;
    }

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

    .sb-text p {
        font-size: 1.1rem;
        color: #ccc;
        max-width: 450px;
        margin: 0;
    }

    .btn-banner {
        background-color: #fff;
        color: #000;
        padding: 14px 35px;
        border-radius: 50px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        transition: 0.3s;
    }

    .btn-banner:hover {
        background-color: var(--abt-gold);
    }

    .features-heading {
        text-align: center;
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: #000;
        margin-bottom: 60px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    @media (max-width: 992px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 600px) {
        .features-grid {
            grid-template-columns: 1fr;
        }
    }

    .feat-card {
        text-align: left;
    }

    .feat-img-box {
        overflow: hidden;
        border-radius: 12px;
        margin-bottom: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        height: 220px;
        background: #f0f0f0;
    }

    .feat-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .feat-card:hover .feat-img-box img {
        transform: scale(1.05);
    }

    .feat-card h4 {
        font-family: 'Inter', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: #000;
        margin-bottom: 12px;
    }

    .feat-card p {
        font-size: 0.95rem;
        color: #444;
        line-height: 1.6;
    }

    @media (max-width: 900px) {
        .banner-content {
            flex-direction: column;
            text-align: center;
        }
    }





    .abt-support-section {
        background-color: #ffffff;
        padding: 100px 0;
        font-family: 'Inter', sans-serif;
    }

    .support-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 80px;
    }

    .support-img-col {
        flex: 1;
        max-width: 500px;
        position: relative;
    }

    .img-frame img {
        width: 100%;
        border-radius: 20px 20px 20px 0;
        box-shadow: -15px 15px 0px var(--abt-maroon);
        display: block;
        object-fit: cover;
    }

    .support-text-col {
        flex: 1;
        max-width: 500px;
        text-align: left;
    }

    .support-heading {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        color: var(--abt-black);
        margin-bottom: 40px;
        font-weight: 700;
        line-height: 1.1;
    }

    .info-block {
        margin-bottom: 30px;
    }

    .info-label {
        font-size: 1rem;
        font-weight: 700;
        color: var(--abt-black);
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .info-value {
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 5px;
    }

    .text-bold {
        font-weight: 600;
        color: var(--abt-maroon);
    }

    .hours-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 5px;
        color: #555;
        font-size: 1rem;
    }

    .hours-row i {
        color: var(--abt-gold);
    }

    .extended-link {
        display: inline-block;
        margin-top: 10px;
        color: var(--abt-maroon);
        font-weight: 700;
        text-decoration: underline;
        font-size: 1rem;
        transition: color 0.2s;
    }

    .extended-link:hover {
        color: var(--abt-black);
    }

    @media (max-width: 900px) {
        .support-wrapper {
            flex-direction: column;
            text-align: left;
            gap: 40px;
        }

        .support-img-col {
            width: 100%;
            max-width: 100%;
        }

        .img-frame img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 10px 10px 0px var(--abt-maroon);
        }

        .support-heading {
            font-size: 2.5rem;
        }
    }

    .abt-details-section {
        background-color: #FFEEC6;
        padding: 60px 0 80px 0;
        font-family: 'Inter', sans-serif;
        border-top: 1px solid #e0e0e0;
    }

    .details-content {
        max-width: 900px;
        margin: 0 auto;
    }

    .details-heading {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        color: var(--abt-black);
        margin-bottom: 20px;
        font-weight: 700;
    }

    .details-intro {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .lists-row {
        display: flex;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
    }

    .list-col {
        flex: 1;
        background: #fff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 32px 36px 0px rgb(0 0 0 / .2);
        border: 1px solid #eee;
        min-width: 280px;
    }

    .list-title {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .included-col .list-title i {
        color: #28a745;
    }

    .excluded-col .list-title i {
        color: #d93025;
    }

    .list-col ul {
        margin: 0;
        padding-left: 20px;
    }

    .list-col li {
        margin-bottom: 10px;
        color: #444;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    @media (max-width: 768px) {
        .lists-row {
            flex-direction: column;
        }

        .details-heading {
            font-size: 1.5rem;
        }
    }

    .grid-row-3 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    /* Mobile Responsive Fix */
    @media (max-width: 768px) {
        .grid-row-3 {
            grid-template-columns: 1fr;
        }
    }

    .est-footer {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 10px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .est-guaranteed-right {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 4px;
        white-space: nowrap;
    }

    .toast-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 99999;
        display: flex;
        flex-direction: column;
        gap: 10px;
        pointer-events: none;
    }
    .toast {
        pointer-events: auto;
        padding: 14px 20px;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 500;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        animation: toastIn 0.3s ease;
        max-width: 360px;
        line-height: 1.4;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .toast-warning { background: #fff3cd; color: #856404; border-left: 4px solid #ffc107; }
    .toast-info { background: #cce5ff; color: #004085; border-left: 4px solid #0d6efd; }
    .toast-error { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }
    @keyframes toastIn {
        from { opacity: 0; transform: translateX(20px); }
        to { opacity: 1; transform: translateX(0); }
    }

     #policyModal {
        z-index: 10000 !important;
    }

    .custom-grid-3 {
        display: grid;
        gap: 20px;
        /* Beech ka space */
        width: 100%;
        align-items: end;
        /* Labels aur Input bottom align rahenge */
        margin-bottom: 20px;
    }

    /* VARIANT A: Names ke liye (Beech wala column chota) */
    .layout-names {
        grid-template-columns: 1fr 0.6fr 1fr;
    }

    /* VARIANT B: Options ke liye (Teeno barabar) */
    .layout-equal {
        grid-template-columns: 1fr 1fr 1fr;
    }

    /* People + States chote, Filing Method zyada bada */
    .layout-filing-row {
        grid-template-columns: 0.55fr 0.55fr 1.9fr;
    }

    .custom-input-box {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative;
    }

    .custom-input-box label {
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 14px;
        white-space: nowrap;
        color: #333;
    }

    .custom-input-box .form-control {
        width: 100%;
        height: 45px;
        border-radius: 5px;
        border: 1px solid #ccc;
        padding: 10px;
    }

    .number-spinner-wrap {
        display: flex;
        align-items: center;
        gap: 0;
        width: 100%;
        height: 45px;
        border-radius: 5px;
        overflow: hidden;
        border: 1px solid #ccc;
        background: #fff;
    }
    .number-spinner-wrap:focus-within {
        border-width: 2px;
        border-color: #800040;
        box-shadow: 0 0 0 4px rgba(128, 0, 64, 0.2);
    }
    .spinner-btn {
        flex-shrink: 0;
        width: 48px;
        height: 100%;
        min-width: 48px;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        font-weight: 700;
        line-height: 1;
        transition: transform 0.15s ease, opacity 0.15s ease;
        -webkit-tap-highlight-color: transparent;
    }
    .spinner-btn span {
        display: block;
        margin-top: -2px;
    }
    .spinner-btn:hover {
        opacity: 0.9;
        transform: scale(1.05);
    }
    .spinner-btn:active {
        transform: scale(0.98);
    }
    .spinner-minus {
        background: #dc3545;
        color: #fff;
        border-right: 1px solid #ccc;
    }
    .spinner-plus {
        background: #28a745;
        color: #fff;
        border-left: 1px solid #ccc;
    }
    .number-spinner-input {
        flex: 1;
        width: 0;
        min-width: 0;
        height: 100%;
        border: none !important;
        border-radius: 0 !important;
        text-align: center;
        font-size: 1.25rem;
        font-weight: 600;
        padding: 0 8px;
        margin: 0;
        box-shadow: none !important;
    }
    .number-spinner-input:focus {
        outline: none;
        border: none !important;
    }
    .number-spinner-input::-webkit-inner-spin-button,
    .number-spinner-input::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
        opacity: 0;
    }
    .number-spinner-input[type=number] {
        -moz-appearance: textfield;
        appearance: textfield;
    }

    .toggle-container {
        display: flex;
        width: 100%;
        height: 45px;
    }

    .toggle-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #ccc;
        background: #fff;
        cursor: pointer;
        transition: 0.3s;
        font-weight: bold;
    }

    .toggle-btn:first-child {
        border-radius: 5px 0 0 5px;
    }

    .toggle-btn:last-child {
        border-radius: 0 5px 5px 0;
        border-left: none;
    }

    .toggle-btn.active {
        background-color: #800040;
        color: white;
        border-color: #800040;
    }

    .toggle-btn input {
        display: none;
    }

    .filing-method-bracket {
        font-size: 0.9rem;
        color: #228B22;
        font-weight: 500;
    }

    .filing-method-toggle {
        height: auto;
        min-height: 44px;
    }
    .filing-method-toggle .toggle-btn {
        font-size: 0.7rem;
        padding: 6px 4px;
        line-height: 1.25;
        white-space: normal;
        text-align: center;
    }

    @media (max-width: 768px) {
        .custom-grid-3 {
            grid-template-columns: 1fr;
        }
    }

    .error-field {
        border: 2px solid #d93025 !important;
        background-color: #fff8f8 !important;
        animation: shake 0.4s ease-in-out;
    }

    .error-text-msg {
        color: #d93025;
        font-size: 0.85rem;
        font-weight: 600;
        margin-top: 5px;
        display: block;
    }

    .plan-error-border {
        border: 2px solid #d93025 !important;
        box-shadow: 0 0 10px rgba(217, 48, 37, 0.2);
        animation: shake 0.4s ease-in-out;
        border-radius: 12px;
    }

    @keyframes shake {
        0% {
            transform: translateX(0);
        }

        25% {
            transform: translateX(-5px);
        }

        50% {
            transform: translateX(5px);
        }

        75% {
            transform: translateX(-5px);
        }

        100% {
            transform: translateX(0);
        }
    }

    .req {
        color: red;
    }

    .inline-input-box {
        display: none;
        /* Hidden by default */
        padding: 0 15px 15px 15px;
        /* Spacing inside dropdown */
        background: #fff;
        border-bottom: 1px solid #eee;
    }

    .inline-input-box input {
        width: 100%;
        padding: 10px;
        border: 1px solid #800040;
        /* Highlight border */
        border-radius: 6px;
        background: #fff5f8;
    }

    .inline-input-box input:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(128, 0, 64, 0.1);
    }

    .dropdown-body {
        max-height: 300px;
        overflow-y: auto;
    }

    .plan-selection-row {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }

    .plan-radio-box {
        flex: 1;
        background: #fff;
        border: 2px solid #e5e7eb;
        /* Light Gray Border */
        border-radius: 12px;
        padding: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: all 0.2s ease-in-out;
        position: relative;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    }

    .plan-radio-box input {
        display: none;
        /* Hide default radio */
    }

    /* Hover Effect */
    .plan-radio-box:hover {
        border-color: #d1d5db;
        transform: translateY(-3px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    }

    /* SELECTED STATE (Maroon & Light BG) */
    .plan-radio-box.selected {
        border-color: #800040;
        background-color: #fffbfd;
        /* Very light pink/maroon tint */
        box-shadow: 0 10px 20px rgba(128, 0, 64, 0.1);
    }

    /* --- THE VISUAL CHECKBOX --- */
    .select-indicator {
        width: 24px;
        height: 24px;
        border: 2px solid #ccc;
        border-radius: 50%;
        /* Make it circular like a radio */
        display: flex;
        align-items: center;
        justify-content: center;
        color: transparent;
        /* Hide tick initially */
        background: #fff;
        transition: 0.2s;
        flex-shrink: 0;
    }

    /* When Selected */
    .plan-radio-box.selected .select-indicator {
        background-color: #800040;
        border-color: #800040;
        color: #fff;
        /* Show tick */
    }

    /* Content Layout */
    .plan-content {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .plan-icon-circle {
        width: 45px;
        height: 45px;
        background: #f3f4f6;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: #6b7280;
        transition: 0.2s;
    }

    .plan-radio-box.selected .plan-icon-circle {
        background: #800040;
        color: #fff;
    }

    .text-box {
        display: flex;
        flex-direction: column;
    }

    .plan-name {
        font-size: 1.05rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 2px;
    }

    .plan-desc {
        font-size: 0.85rem;
        /*            color: #6b7280;*/
        font-weight: 500;
    }

    .plan-all-other-link {
        color: #2563eb;
        text-decoration: none;
        cursor: pointer;
        font-weight: 600;
        pointer-events: auto; /* parent label has pointer-events:none, so link clickable rahe */
    }
    .plan-all-other-link:hover {
        text-decoration: underline;
    }

    /* Mobile Fix */
    @media (max-width: 768px) {
        .plan-selection-row {
            flex-direction: column;
            gap: 15px;
        }
    }

    /* --- 1. PREMIUM BOX STYLING --- */
    .premium-box {
        background: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 16px;
        padding: 30px;
        margin-bottom: 30px;
        position: relative;
        /* Z-index kaam karne ke liye jaruri hai */
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
        overflow: visible !important;
        /* IMPORTAMT: Taki dropdown bahar dikh sake */
    }

    /* Animation on Hover */
    .premium-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(128, 0, 64, 0.1);
        /* Maroon Tint Shadow */
        border-color: #D4AF37;
        /* Gold Border */
    }

    /* Header Styling */
    .box-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 15px;
    }

    .header-icon {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #fff, #f9f9f9);
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: #800040;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .gold-icon {
        color: #D4AF37;
    }

    /* For Discount Box */

    .header-text h3 {
        font-size: 1.1rem;
        font-weight: 800;
        color: #1a1a1a;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .header-text span {
        font-size: 0.85rem;
        color: #666;
        font-weight: 500;
    }

    /* Input Icon Styling */
    .input-with-icon {
        position: relative;
    }

    .input-with-icon i {
        position: absolute;
        left: 15px;
        top: 14px;
        color: #999;
        transition: 0.3s;
    }

    .form-control.pl-icon {
        padding-left: 45px;
    }

    .form-control:focus+i {
        color: #800040;
    }

    /* Focus Logic needs JS or CSS hack, keeping simple */

    /* Discount Theme Specifics */
    .discount-theme {
        background: #fdfdfd;
        border-style: dashed;
    }

    .check-box-card:hover {
        border-color: #D4AF37;
        background: #fffcf0;
    }

    /* --- 2. DEPOSIT BOX & POPUP TRIGGER --- */
    .deposit-info-box {
        background: #fff8e1;
        border-left: 5px solid black;
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .dib-left {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .dib-left i {
        font-size: 1.2rem;
        color: #e0a800;
    }

    .policy-link-btn {
        background: transparent;
        border: 2px solid black;
        color: #53410a;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        cursor: pointer;
        font-size: 0.85rem;
        transition: 0.2s;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .policy-link-btn:hover {
        background: #e0a800;
        color: #fff;
    }

    /* --- 3. POPUP MODAL STYLES --- */
    .abt-modal-overlay {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        animation: fadeIn 0.3s;
    }

    .abt-modal-content {
        background-color: #fefefe;
        margin: 10% auto;
        padding: 0;
        border: 1px solid #888;
        width: 90%;
        max-width: 600px;
        border-radius: 12px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        animation: slideDown 0.4s;
    }

    .modal-header {
        background: linear-gradient(135deg, #1a1a1a, #333);
        color: #D4AF37;
        padding: 20px;
        border-radius: 12px 12px 0 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .modal-header h2 {
        margin: 0;
        font-size: 1.2rem;
        color: #53410a!important;
    }

    .close-modal {
        color: #922626;
        float: right;
        font-size: 56px;
        font-weight: bold;
        cursor: pointer;
        margin-left: auto;
    }

    .modal-body {
        padding: 30px;
    }

    .policy-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .policy-list li {
        margin-bottom: 15px;
        font-size: 0.95rem;
        line-height: 1.5;
        padding-left: 20px;
        position: relative;
        color: #333;
    }

    .policy-list li::before {
        content: '✓';
        color: #D4AF37;
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    .modal-footer {
        padding: 15px;
        text-align: center;
        border-top: 1px solid #eee;
        background: #f9f9f9;
        border-radius: 0 0 12px 12px;
    }

    .modal-btn {
        background: #800040;
        color: #fff;
        border: none;
        padding: 10px 25px;
        border-radius: 20px;
        cursor: pointer;
        font-weight: bold;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes slideDown {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Mobile Adjustments */
    @media (max-width: 600px) {
        .premium-box {
            padding: 20px;
        }

        .deposit-info-box {
            flex-direction: column;
            text-align: center;
        }

        .policy-link-btn {
            width: 100%;
            justify-content: center;
        }
        .secure-footer-link{
            font-size: 1rem!important;
        }
    }

    .section-head-premium {
        display: flex;
        align-items: center;
        gap: 3px;
        margin-bottom: 25px;
        position: relative;
    }

    .mt-large {
        margin-top: 40px;
    }

    /* Icon Circle */
    .shp-icon {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, #fff, #f9f9f9);
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: #800040;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .shp-text h3 {
        font-size: 1.1rem;
        font-weight: 800;
        color: #1a1a1a;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }

    .shp-sub {
        font-size: 0.8rem;
        color: #6b7280;
        font-weight: 500;
    }

    .shp-line {
        flex: 1;
        height: 1px;
        background: linear-gradient(to right, #e5e7eb, rgba(255, 255, 255, 0));
        margin-left: 10px;
        margin-top: 5px;
    }

    @media (max-width: 600px) {
        .section-head-premium {
            flex-wrap: wrap;
            gap: 3px;
        }

        .shp-line {
            display: none;
        }

        .shp-text h3 {
            font-size: 1rem;
        }
    }

    /* --- HERO ESTIMATE BOX STYLES --- */
    .hero-estimate-box {
        background: linear-gradient(135deg, #1a1a1e 0%, #252530 50%, #1e2228 100%);
        border-radius: 16px;
        padding: 6px 10px;
        text-align: center;
        overflow: hidden;
        border: 2px solid #FFC107;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        animation: borderPulse 3s infinite alternate;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 9999;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-estimate-box.is-sticky {
        transform: scale(0.9);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        border: 1px solid #D4AF37;
    }
    .hero-estimate-box.is-sticky .price-display-one-line .big-amount {
        font-size: 2.75rem;
    }
    .hero-estimate-box.is-sticky .price-display-one-line .currency-symbol {
        font-size: 1.55rem;
    }

    @media (max-width: 768px) {
        .hero-estimate-box {
            position: sticky;
            width: 100%;
            max-width: 100%;
            padding: 6px 8px;
            top: 10px;
            margin: 10px 0;
            box-sizing: border-box;
        }
        .price-display-one-line {
            flex-wrap: nowrap;
            gap: 8px 10px;
            margin: 6px 0 4px;
        }
        .price-display-one-line .big-amount {
            font-size: 1.85rem;
        }
        .price-display-one-line .currency-symbol {
            font-size: 1.1rem;
        }
        .price-part-left .price-tag,
        .price-part-right .price-tag {
            font-size: 0.65rem;
        }
        .price-sep {
            height: 1.2em;
        }
        .hero-estimate-box.is-sticky .price-display-one-line .big-amount {
            font-size: 1.85rem;
        }
        .hero-estimate-box.is-sticky .price-display-one-line .currency-symbol {
            font-size: 1.1rem;
        }
    }

    @keyframes borderPulse {
        0% {
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.1);
            border-color: #bfa15f;
        }

        100% {
            box-shadow: 0 15px 50px rgba(255, 193, 7, 0.4);
            border-color: #FFC107;
        }
    }

    .est-one-line {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px 10px;
    }
    .live-tag {
        background: rgba(255, 0, 0, 0.2);
        color: #ff4d4d;
        font-size: 0.75rem;
        font-weight: 800;
        padding: 3px 8px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 6px;
        border: 1px solid rgba(255, 0, 0, 0.3);
        letter-spacing: 1px;
        margin-top: 0;
    }

    .blink-dot {
        width: 8px;
        height: 8px;
        background: #ff4d4d;
        border-radius: 50%;
        animation: blinker 1s linear infinite;
    }

    @keyframes blinker {
        50% {
            opacity: 0;
        }
    }

    .secure-tag {
        background: rgba(40, 167, 69, 0.2);
        color: #28a745;
        font-size: 0.9rem;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 20px;
        border: 1px solid rgba(40, 167, 69, 0.3);
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 0;
    }

    .price-display-one-line {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px 16px;
        margin: 8px 0 4px;
        position: relative;
        z-index: 2;
    }
    .price-part {
        display: inline-flex;
        align-items: baseline;
        gap: 2px;
    }
    .price-part-left {
        color: #FFC107;
    }
    .price-part-left .price-tag {
        color: rgba(255, 193, 7, 0.9);
        font-size: 0.7rem;
        margin-left: 4px;
    }
    .price-sep {
        width: 1px;
        height: 1.4em;
        background: rgba(255,255,255,0.35);
    }
    .price-part-right {
        color: #b8d4b8;
    }
    .price-part-right .currency-symbol,
    .price-part-right .big-amount {
        color: #b8d4b8;
    }
    .price-part-right .price-tag {
        color: rgba(184, 212, 184, 0.95);
        font-size: 0.7rem;
        margin-left: 4px;
    }
    .price-display-one-line .big-amount {
        font-size: 2.75rem;
        font-weight: 700;
    }
    .price-display-one-line .currency-symbol {
        font-size: 1.55rem;
        font-weight: 700;
    }
    .price-display {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin: 0;
        margin-top: 4px;
        position: relative;
        z-index: 2;
    }

    .currency-symbol {
        font-size: 1.2rem;
        color: #FFC107;
        font-weight: 700;
        margin-top: 6px;
    }

    .efile-fee-suffix {
        font-size: 0.95rem;
        color: #FFC107;
        margin-left: 6px;
        align-self: center;
        font-weight: 600;
    }

    @keyframes continuousVibration {
        0% {
            transform: translate(0, 0) scale(1);
        }

        10% {
            transform: translate(-1px, -1px) rotate(-0.5deg);
        }

        20% {
            transform: translate(1px, 1px) rotate(0.5deg);
        }

        30% {
            transform: translate(-1px, 1px) rotate(-0.5deg);
        }

        40% {
            transform: translate(1px, -1px) rotate(0.5deg);
        }

        50% {
            transform: translate(-1px, -1px) scale(1.02);
        }

        60% {
            transform: translate(1px, 1px) rotate(-0.5deg);
        }

        70% {
            transform: translate(-1px, 1px) rotate(0.5deg);
        }

        80% {
            transform: translate(1px, -1px) rotate(-0.5deg);
        }

        90% {
            transform: translate(-1px, -1px) rotate(0.5deg);
        }

        100% {
            transform: translate(0, 0) scale(1);
        }
    }

    #est_val {
        color: yellow !important;
    }

    .big-amount {
        font-size: 3rem;
        display: inline-block;
        animation: continuousVibration 1.5s infinite linear;
        color: #fff;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        transition: color 0.3s ease;
        font-family: 'Inter', sans-serif;
    }

    .big-amount:hover {
        animation: continuousVibration 0.3s infinite linear;
        color: #D4AF37;
    }

    .est-label-main {
        font-size: 1.2rem;
        color: #ccc;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .glow-effect {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
        z-index: 1;
        pointer-events: none;
    }

    @media (max-width: 600px) {
        .big-amount {
            font-size: 2.5rem;
        }

        .currency-symbol {
            font-size: 1.5rem;
        }

        .hero-estimate-box {
            padding: 6px 8px;
        }
        .est-one-line {
            gap: 4px 8px;
        }
        .est-guaranteed-right {
            font-size: 0.65rem;
        }
    }

    @media (max-width: 380px) {
    .big-amount {
        font-size: 2rem;
    }
    .hero-estimate-box {
        padding: 6px 8px;
    }
}

    /* Main Styles */
    #quote_form_view {
        background-color: #D4AF37;
        min-height: 100vh;
        padding-bottom: 80px;
        font-family: 'Inter', sans-serif;
    }

    .form-nav-bar {
        background: #D4AF37;
        padding: 15px 0;
        border-bottom: 1px solid #ddd;
        margin-bottom: 40px;
    }

    .back-link {
        background: none;
        border: none;
        font-weight: 700;
        color: #333;
        cursor: pointer;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .form-card {
        background: #fff;
        margin: 0 auto;
        padding: 50px;
        border-radius: 10px;
        box-shadow: 0 19px 12px 20px rgb(0 0 0 / .2);
        border: 1px solid #e0e0e0;
    }

    .form-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .main-hl {
        font-size: 3rem;
        font-weight: 900;
        margin: 5px 0;
        color: #000;
    }

    .sub-hl {
        font-size: 1.3rem;
        font-weight: 800;
        color: #800040;
        letter-spacing: 1px;
    }

    /* Plans */
    .plan-selection-row {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }

    .plan-radio-box {
        flex: 1;
        border: 2px solid #ccc;
        padding: 20px;
        border-radius: 8px;
        display: flex;
        gap: 15px;
        align-items: center;
        cursor: pointer;
        transition: 0.2s;
        position: relative;
        background: #fff;
    }

    .plan-radio-box.selected {
        border-color: #800040;
        background: #fff5f8;
    }

    .plan-radio-box.selected .select-indicator,
    .plan-radio-box.selected .plan-icon-circle {
        color: #800040;
    }

    .icon-box {
        font-size: 1.8rem;
        color: #777;
    }

    .text-box {
        display: flex;
        flex-direction: column;
    }

    .plan-name {
        font-size: 1.1rem;
        color: #000;
        font-weight: 700;
    }

    .plan-desc {
        font-size: 0.9rem;
        color: black;
    }

    .check-icon {
        position: absolute;
        top: 10px;
        right: 10px;
        color: transparent;
        font-size: 1.2rem;
    }

    .plan-radio-box input {
        display: none;
    }

    /* Estimate */
    .est-bar-container {
        text-align: center;
        margin-bottom: 20px;
        font-size: 1.2rem;
        font-weight: 700;
        color: #000;
    }

    .est-amount {
        color: #d93025;
        font-size: 1.5rem;
        font-weight: 800;
    }

    .est-badge {
        background: #FFD700;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 0.9rem;
        margin-left: 5px;
        border: 1px solid #daa520;
    }

    .divider-line {
        border: 0;
        border-top: 1px solid #eee;
        margin: 30px 0;
    }

    /* Inputs & Grid */
    .grid-row-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 20px;
    }

    .grid-row-3 {
        display: grid;
        grid-template-columns: 2fr 2fr 1fr;
        gap: 30px;
        margin-bottom: 20px;
    }

    .input-group {
        display: flex;
        flex-direction: column;
    }

    .full-width {
        width: 100%;
        margin-bottom: 20px;
    }

    .form-control {
        width: 100%;
        padding: 12px 15px;
        font-size: 1rem;
        border: 1px solid #aaa;
        border-radius: 6px;
        outline: none;
        background: #fff;
        box-sizing: border-box;
    }

    .form-control:focus {
        border-color: #800040;
        box-shadow: 0 0 0 3px rgba(128, 0, 64, 0.1);
    }

    .section-label {
        font-size: 1.2rem;
        font-weight: 700;
        color: #000;
        margin-bottom: 20px;
        border-bottom: 2px solid #eee;
        padding-bottom: 10px;
    }

    label {
        font-weight: 700;
        color: #333;
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

    /* Smart Dropdown */
    .custom-dropdown {
        position: relative;
        border: 1px solid #aaa;
        border-radius: 6px;
        background: #fff;
        cursor: pointer;
        outline: none;
    }

    .dropdown-header {
        padding: 12px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-body {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border: 1px solid #800040;
        border-top: none;
        max-height: 250px;
        overflow-y: auto;
        z-index: 9999 !important;
        /* Sabse upar dikhne ke liye */
        border-radius: 0 0 6px 6px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        /* Shadow badha di taki alag dikhe */
    }

    .custom-dropdown.open .dropdown-body {
        display: block;
    }

    .custom-dropdown.open {
        border-color: #800040;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    /* --- DROPDOWN OPTION ALIGNMENT FIX --- */
    .dd-option {
        display: flex;
        /* Checkbox aur Text ko ek line me lata h */
        align-items: center;
        /* Vertically center karta h (Upar-Niche fix) */
        padding: 8px 12px;
        /* Thoda space andar */
        cursor: pointer;
        width: 100%;
        margin-bottom: 0;
        /* Bootstrap ka default margin hatata h */
        font-weight: normal;
        /* Text ko bold hone se rokta h */
        border-bottom: 1px solid #f1f1f1;
        /* Optional: Divider line */
    }

    .dd-option:hover {
        background-color: #fff5f8;
        /* Hover effect */
    }

    /* Checkbox Styling Fix */
    .dd-option input[type="checkbox"] {
        margin-top: 0;
        /* Checkbox ka upar ka margin hataya */
        margin-right: 10px;
        /* Checkbox aur Text ke beech gap */
        width: 16px;
        /* Checkbox ka size fix kiya */
        height: 16px;
        flex-shrink: 0;
        /* Mobile pe checkbox ko pichakne se rokta h */
        cursor: pointer;
    }

    /* "None" option styling (Optional) */
    .special-opt {
        background-color: #f9f9f9;
        font-weight: 600;
    }

    .dd-option input {
        margin-right: 10px;
        accent-color: #800040;
        transform: scale(1.2);
    }

    /* Toggles */
    .toggle-container {
        display: flex;
        width: 100%;
        max-width: 300px;
        border: 1px solid #ccc;
        border-radius: 6px;
        overflow: hidden;
        background: #fff;
    }

    .toggle-btn {
        flex: 1;
        padding: 12px 0;
        text-align: center;
        cursor: pointer;
        font-weight: 600;
        color: #555;
        background: #fff;
        border-right: 1px solid #ccc;
        display: block;
        margin: 0;
        transition: 0.2s;
    }

    .toggle-btn:last-child {
        border-right: none;
    }

    .toggle-btn.active {
        background-color: #800040;
        color: #fff;
    }

    .hidden-input-box {
        display: none;
        margin-top: 15px;
        background: #f9f9f9;
        padding: 15px;
        border-radius: 6px;
        border-left: 3px solid #800040;
    }

    /* Discount & Footer */
    .discount-box {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        margin-bottom: 30px;
    }

    .check-box-card {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
        cursor: pointer;
        font-size: 0.9rem;
    }

    .check-box-card input {
        width: 18px;
        height: 18px;
        accent-color: #800040;
    }

    .deposit-info-box {
        background: #fff8e1;
        border-left: 5px solid black;
        padding: 20px;
        display: flex;
        gap: 15px;
        border-radius: 5px;
        margin-bottom: 30px;
        color: #333;
    }

    .submit-action-btn {
        width: 100%;
        padding: 18px;
        background: #800040;
        color: #fff;
        font-size: 1.3rem;
        font-weight: 800;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(128, 0, 64, 0.3);
        transition: 0.3s;
    }

    .submit-action-btn:hover {
        background: #5a002d;
        transform: translateY(-2px);
    }

    .secure-footer-link {
        text-align: center;
        margin-top: 25px;
        /*            color: #666;*/
        font-size: 1.3rem;
    }

    .secure-footer-link a {
        color: #800040;
        font-weight: 700;
    }

    @media(max-width: 768px) {
        .form-card {
            padding: 20px;
        }

        .grid-row-2,
        .grid-row-3,
        .plan-selection-row {
            grid-template-columns: 1fr;
            gap: 20px;
            display: grid;
        }

        .main-hl {
            font-size: 2.2rem;
        }
    }

    /* --- DISABLED PLAN STYLING --- */
    .plan-disabled {
        opacity: 0.5;
        cursor: not-allowed !important;
        pointer-events: none;
        /* Mouse click kaam nahi karega CSS se bhi */
        background-color: #f0f0f0;
    }

    /* --- PREMIUM MODAL STYLES --- */
    .premium-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
        /* Glass Blur Effect */
        z-index: 9999;
        display: none;
        /* Default Hidden */
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .premium-modal-overlay.active {
        display: flex;
        opacity: 1;
    }

    .premium-modal-card {
        background: #fff;
        width: 90%;
        max-width: 400px;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        border-top: 5px solid #D4AF37;
        /* Gold Border */
        transform: translateY(20px);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

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

    .premium-modal-card h2 {
        color: #6B003E;
        /* ABT Maroon */
        font-size: 28px;
        margin: 20px 0 5px;
        font-weight: 800;
        font-family: 'Playfair Display', serif;
    }

    .premium-modal-card .sub-text {
        color: #666;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .divider-small {
        height: 2px;
        width: 50px;
        background: #D4AF37;
        margin: 0 auto 20px;
    }

    .redirect-msg {
        font-size: 14px;
        color: #444;
        font-weight: 600;
    }

    .redirect-msg span {
        color: #D4AF37;
        font-size: 22px;
        font-weight: bold;
    }

    /* --- ANIMATED CHECKMARK --- */
    .checkmark__circle {
        stroke-dasharray: 166;
        stroke-dashoffset: 166;
        stroke-width: 2;
        stroke-miterlimit: 10;
        stroke: #D4AF37;
        /* Gold */
        fill: none;
        animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    }

    .checkmark {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: block;
        stroke-width: 3;
        stroke: #6B003E;
        /* Maroon Check */
        stroke-miterlimit: 10;
        margin: 0 auto;
        box-shadow: inset 0px 0px 0px #D4AF37;
        animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    }

    .checkmark__check {
        transform-origin: 50% 50%;
        stroke-dasharray: 48;
        stroke-dashoffset: 48;
        animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    }

    @keyframes stroke {
        100% {
            stroke-dashoffset: 0;
        }
    }

    @keyframes scale {

        0%,
        100% {
            transform: none;
        }

        50% {
            transform: scale3d(1.1, 1.1, 1);
        }
    }

    @keyframes fill {
        100% {
            box-shadow: inset 0px 0px 0px 50px #D4AF37;
        }
    }

    /* --- PROGRESS BAR --- */
    .progress-container {
        width: 100%;
        background-color: #f1f1f1;
        border-radius: 10px;
        height: 6px;
        margin-top: 20px;
        overflow: hidden;
    }

    .progress-bar {
        width: 0%;
        height: 100%;
        background: linear-gradient(90deg, #6B003E, #D4AF37);
        transition: width 1s linear;
    }