/* © 2025 ByteWebster. All Rights Reserved.  */
/*Unauthorized copying, modification, distribution, or use of this code in any form is strictly prohibited and may result in legal action.*/

/* Bank Details Section */
#bank-details {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

#bank-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffc107, #ffd700);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Bank Details Card */
.bank-details-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.bank-details-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 8px 25px rgba(253, 80, 86, 0.2);
    border-color: rgba(253, 80, 86, 0.2);
}

.bank-details-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 80, 86, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.bank-details-card:hover::before {
    opacity: 1;
}

/* Bank Header */
.bank-header {
    position: relative;
    z-index: 1;
}

.bank-header .section-icon {
    transition: all 0.3s ease;
}

.bank-details-card:hover .section-icon {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.bank-header h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #ffffff;
}

/* Bank Details List */
.bank-details-card ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.bank-details-card ul li:hover {
    transform: translateX(5px);
    color: #ffffff;
}

.bank-details-card ul li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.bank-details-card ul li:hover i {
    color: #ffd700;
    transform: scale(1.2);
}

.bank-details-card ul li strong {
    color: #ffffff;
}

.bank-details-card ul li small {
    font-size: 0.75rem;
}

/* Bank Footer */
.bank-footer p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.bank-footer a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bank-footer a:hover {
    color: #fd5056;
    text-decoration: underline;
}

/* Floating Om Symbol */
.floating-om {
    font-family: 'Noto Serif Devanagari', serif;
    animation: omFloat 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes omFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .bank-details-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .bank-header h3 {
        font-size: 1.25rem;
    }

    .bank-details-card ul li {
        font-size: 0.85rem;
    }

    .bank-details-card ul li i {
        font-size: 0.75rem;
    }

    .bank-footer p {
        font-size: 0.8rem;
    }

    .floating-om {
        font-size: 4rem;
        top: 5%;
        right: 3%;
    }
}

@media (max-width: 768px) {
    .bank-details-card {
        padding: 1.25rem;
        border-radius: 10px;
    }

    .bank-header .section-icon {
        width: 50px;
        height: 50px;
    }

    .bank-header h3 {
        font-size: 1.1rem;
    }

    .bank-details-card ul li {
        font-size: 0.8rem;
        padding-left: 1.25rem;
    }

    .bank-details-card ul li i {
        font-size: 0.7rem;
        top: 0.2rem;
    }

    .bank-details-card ul li small {
        font-size: 0.7rem;
    }

    .bank-footer p {
        font-size: 0.75rem;
    }

    .floating-om {
        font-size: 3rem;
        top: 3%;
        right: 2%;
    }
}

@media (max-width: 576px) {
    #bank-details {
        padding: 2rem 0;
    }

    .bank-details-card {
        padding: 1rem;
        border-radius: 8px;
    }

    .bank-header .section-icon {
        width: 40px;
        height: 40px;
    }

    .bank-header h3 {
        font-size: 1rem;
    }

    .bank-details-card ul li {
        font-size: 0.75rem;
        padding-left: 1rem;
    }

    .bank-details-card ul li i {
        font-size: 0.65rem;
        top: 0.15rem;
    }

    .bank-details-card ul li small {
        font-size: 0.65rem;
    }

    .bank-footer p {
        font-size: 0.7rem;
    }

    .floating-om {
        display: none;
    }
}

/* Print Styles */
@media print {
    #bank-details {
        background: #fff !important;
    }

    .bank-details-card {
        background: #fff !important;
        box-shadow: none;
        border: 1px solid #dee2e6;
        color: #000 !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }

    .bank-header .section-icon {
        background: #fff !important;
        color: #000 !important;
        border: 1px solid #000;
    }

    .bank-header h3,
    .bank-details-card ul li,
    .bank-details-card ul li strong,
    .bank-footer p {
        color: #000 !important;
    }

    .bank-details-card ul li i,
    .bank-details-card ul li small,
    .bank-footer a {
        color: #000 !important;
    }

    .floating-om {
        display: none;
    }

    .bank-details-card hr {
        border-color: #000;
    }
}

/* Accessibility */
.bank-details-card:focus-within {
    outline: 2px solid #fd5056;
    outline-offset: 2px;
}

.bank-footer a:focus {
    outline: 2px solid #fd5056;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .bank-details-card,
    .bank-details-card ul li,
    .bank-details-card ul li i,
    .bank-header .section-icon,
    .bank-footer a {
        transition: none;
        animation: none;
    }

    .bank-details-card::before,
    #bank-details::before {
        display: none;
    }
}
#registration-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

#registration-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.registration-info-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.registration-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(253, 80, 86, 0.1);
    border-color: rgba(253, 80, 86, 0.15);
}

.registration-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.registration-info-card:hover::before {
    opacity: 1;
}

.info-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

.info-image-container .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.registration-info-card:hover .card-image {
    transform: scale(1.1);
}

.info-image-container .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.registration-info-card:hover .image-overlay {
    opacity: 1;
}

.info-content h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    color: #1a202c;
}

.info-content p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.btn-outline-primary {
    border-color: #fd5056;
    color: #fd5056;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #fd5056 0%, #e63946 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 80, 86, 0.3);
}

/* Registration Card (Right Column) */
.registration-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.registration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(253, 80, 86, 0.1);
    border-color: rgba(253, 80, 86, 0.15);
}

.registration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.registration-card:hover::before {
    opacity: 1;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control,
.form-select {
    border: 1px solid #e9ecef;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-control:focus,
.form-select:focus {
    border-color: #fd5056;
    box-shadow: 0 0 8px rgba(253, 80, 86, 0.3);
    outline: none;
    background: #ffffff;
}

.form-control::placeholder {
    color: #adb5bd;
    font-size: 0.9rem;
}

.form-control[type="file"] {
    padding: 0.5rem 1rem;
}

.form-group small {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
    display: block;
}

.form-group:hover .form-control,
.form-group:hover .form-select {
    border-color: #fd5056;
    background: #ffffff;
}

.package-toggle {
    justify-content: normal !important;
    background: transparent;
    border-radius: 10px;
    padding: 0.75rem;
}

.form-check-input {
    display: none;
}

.form-check-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fd5056;
    border: 1px solid #fd5056;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check-label:hover {
    background: linear-gradient(135deg, #fd5056 0%, #e63946 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(253, 80, 86, 0.3);
}

.form-check-input:checked + .form-check-label {
    background: linear-gradient(135deg, #fd5056 0%, #e63946 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(253, 80, 86, 0.3);
}

/* Image Preview Area */
.preview-area {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.preview-area h4 {
    font-size: 1.1rem;
    color: #1a202c;
}

.preview-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.preview-card img {
    max-height: 150px;
    object-fit: contain;
    width: 100%;
}

.remove-preview {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    transition: all 0.3s ease;
}

.remove-preview:hover {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}

/* Submit Button */
.btn-primary {
    background: linear-gradient(135deg, #fd5056 0%, #e63946 100%);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(253, 80, 86, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 80, 86, 0.4);
    background: linear-gradient(135deg, #e63946 0%, #d63031 100%);
    color: white;
}

.btn-primary .btn-wave {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.btn-primary:hover .btn-wave {
    left: 100%;
}

.btn-primary .btn-text {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .registration-info-card,
    .registration-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .info-image-container {
        height: 180px;
    }

    .info-content h3 {
        font-size: 1.1rem;
    }

    .info-content p {
        font-size: 0.85rem;
    }

    .form-control,
    .form-select {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .form-group small {
        font-size: 0.7rem;
    }

    .package-toggle {
        flex-direction: column;
        align-items: stretch;
    }

    .form-check-label {
        font-size: 0.85rem;
        padding: 0.65rem 1rem;
    }

    .preview-card img {
        max-height: 120px;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .registration-info-card,
    .registration-card {
        margin-bottom: 2rem;
        padding: 1.25rem;
        border-radius: 10px;
    }

    .info-image-container {
        height: 160px;
    }

    .info-content h3 {
        font-size: 1rem;
    }

    .info-content p {
        font-size: 0.8rem;
    }

    .form-control,
    .form-select {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .form-label {
        font-size: 0.8rem;
    }

    .form-group small {
        font-size: 0.65rem;
    }

    .package-toggle {
        padding: 0.5rem;
    }

    .form-check-label {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .preview-card img {
        max-height: 100px;
    }

    .remove-preview {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .btn-primary {
        font-size: 0.85rem;
        padding: 0.65rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .registration-info-card,
    .registration-card {
        padding: 1rem;
        border-radius: 8px;
    }

    .info-image-container {
        height: 140px;
    }

    .info-content h3 {
        font-size: 0.95rem;
    }

    .info-content p {
        font-size: 0.75rem;
    }

    .form-control,
    .form-select {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .form-label {
        font-size: 0.75rem;
    }

    .form-group small {
        font-size: 0.6rem;
    }

    .package-toggle {
        padding: 0.4rem;
    }

    .form-check-label {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .preview-card img {
        max-height: 80px;
    }

    .remove-preview {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }

    .btn-primary {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
}

@media print {
    #registration-form {
        background: #fff !important;
    }

    .registration-info-card,
    .registration-card {
        box-shadow: none;
        border: 1px solid #dee2e6;
        background: #fff;
        color: #000;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }

    .info-image-container .card-image {
        max-height: 150px;
    }

    .form-control,
    .form-select {
        border: 1px solid #000;
        background: #fff;
        color: #000;
    }

    .package-toggle {
        background: #fff;
    }

    .form-check-label {
        border: 1px solid #000;
        color: #000;
    }

    .form-check-input:checked + .form-check-label {
        background: #000;
        color: #fff;
    }

    .preview-area {
        display: none;
    }

    .btn-primary,
    .btn-outline-primary {
        background: #fff !important;
        color: #000 !important;
        border: 1px solid #000 !important;
    }
}

.registration-info-card:focus-within,
.registration-card:focus-within {
    outline: 2px solid #fd5056;
    outline-offset: 2px;
}

.form-control:focus,
.form-check-label:focus,
.btn-primary:focus,
.btn-outline-primary:focus,
.remove-preview:focus {
    outline: 2px solid #fd5056;
    outline-offset: 2px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .registration-info-card,
    .registration-card,
    .form-control,
    .form-check-label,
    .btn-primary,
    .btn-outline-primary,
    .preview-card,
    .remove-preview {
        transition: none;
        animation: none;
    }

    .registration-info-card::before,
    .registration-card::before,
    #registration-form::before {
        display: none;
    }
}

.form-control[type="file"] {
    padding: 1.1rem 1rem;
}
/* Payment Terms Section */
#payment-terms {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

#payment-terms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fd5056, #e63946, #fd5056);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Payment Terms Card */
.payment-terms-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.payment-terms-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(253, 80, 86, 0.1);
    border-color: rgba(253, 80, 86, 0.15);
}

.payment-terms-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 80, 86, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.payment-terms-card:hover::before {
    opacity: 1;
}

/* Terms Header */
.terms-header {
    position: relative;
    z-index: 1;
}

.terms-header .section-icon {
    transition: all 0.3s ease;
}

.payment-terms-card:hover .section-icon {
    background: rgba(253, 80, 86, 0.2);
    transform: scale(1.1);
}

.terms-header h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    color: #1a202c;
}

/* Payment Terms List */
.payment-terms-card ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.payment-terms-card ul li:hover {
    transform: translateX(5px);
    color: #1a202c;
}

.payment-terms-card ul li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.payment-terms-card ul li:hover i {
    color: #28a745;
    transform: scale(1.2);
}

.payment-terms-card ul li strong {
    color: #1a202c;
}

/* Terms Footer */
.terms-footer p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Contact Info */
.contact-info h5 {
    font-size: 1.25rem;
    color: #1a202c;
}

.contact-info ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.contact-info ul li:hover {
    transform: translateX(5px);
    color: #1a202c;
}

.contact-info ul li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.contact-info ul li:hover i {
    color: #fd5056;
    transform: scale(1.2);
}

.contact-info ul li strong {
    color: #1a202c;
}

.contact-info a {
    color: #fd5056;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #e63946;
    text-decoration: underline;
}

/* Floating Om Symbol */
.floating-om {
    font-family: 'Noto Serif Devanagari', serif;
    animation: omFloat 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes omFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .payment-terms-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .terms-header h3 {
        font-size: 1.25rem;
    }

    .payment-terms-card ul li,
    .contact-info ul li {
        font-size: 0.85rem;
    }

    .payment-terms-card ul li i,
    .contact-info ul li i {
        font-size: 0.75rem;
    }

    .terms-footer p {
        font-size: 0.8rem;
    }

    .contact-info h5 {
        font-size: 1.1rem;
    }

    .floating-om {
        font-size: 4rem;
        top: 5%;
        right: 3%;
    }
}

@media (max-width: 768px) {
    .payment-terms-card {
        padding: 1.25rem;
        border-radius: 10px;
    }

    .terms-header .section-icon {
        width: 50px;
        height: 50px;
    }

    .terms-header h3 {
        font-size: 1.1rem;
    }

    .payment-terms-card ul li,
    .contact-info ul li {
        font-size: 0.8rem;
        padding-left: 1.25rem;
    }

    .payment-terms-card ul li i,
    .contact-info ul li i {
        font-size: 0.7rem;
        top: 0.2rem;
    }

    .terms-footer p {
        font-size: 0.75rem;
    }

    .contact-info h5 {
        font-size: 1rem;
    }

    .floating-om {
        font-size: 3rem;
        top: 3%;
        right: 2%;
    }
}

@media (max-width: 576px) {
    #payment-terms {
        padding: 2rem 0;
    }

    .payment-terms-card {
        padding: 1rem;
        border-radius: 8px;
    }

    .terms-header .section-icon {
        width: 40px;
        height: 40px;
    }

    .terms-header h3 {
        font-size: 1rem;
    }

    .payment-terms-card ul li,
    .contact-info ul li {
        font-size: 0.75rem;
        padding-left: 1rem;
    }

    .payment-terms-card ul li i,
    .contact-info ul li i {
        font-size: 0.65rem;
        top: 0.15rem;
    }

    .terms-footer p {
        font-size: 0.7rem;
    }

    .contact-info h5 {
        font-size: 0.95rem;
    }

    .floating-om {
        display: none;
    }
}

/* Print Styles */
@media print {
    #payment-terms {
        background: #fff !important;
    }

    .payment-terms-card {
        background: #fff !important;
        box-shadow: none;
        border: 1px solid #dee2e6;
        color: #000 !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }

    .terms-header .section-icon {
        background: #fff !important;
        color: #000 !important;
        border: 1px solid #000;
    }

    .terms-header h3,
    .payment-terms-card ul li,
    .payment-terms-card ul li strong,
    .terms-footer p,
    .contact-info h5,
    .contact-info ul li,
    .contact-info ul li strong {
        color: #000 !important;
    }

    .payment-terms-card ul li i,
    .contact-info ul li i,
    .contact-info a {
        color: #000 !important;
    }

    .floating-om {
        display: none;
    }

    .payment-terms-card hr {
        border-color: #000;
    }
}

/* Accessibility */
.payment-terms-card:focus-within {
    outline: 2px solid #fd5056;
    outline-offset: 2px;
}

.contact-info a:focus {
    outline: 2px solid #fd5056;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .payment-terms-card,
    .payment-terms-card ul li,
    .payment-terms-card ul li i,
    .terms-header .section-icon,
    .contact-info ul li,
    .contact-info ul li i,
    .contact-info a {
        transition: none;
        animation: none;
    }

    .payment-terms-card::before,
    #payment-terms::before {
        display: none;
    }
}