﻿.make-a-claim section {
    margin: 0; /* Clearing */
}

.make-a-claim .direct-deposit-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(var(--bs-primary-rgb), 0.03);
    border-radius: 0 1rem 1rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

    .make-a-claim .direct-deposit-banner::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 6px;
        background: var(--bs-primary);
        z-index: 1;
    }

    .make-a-claim .direct-deposit-banner .dd-icon {
        width: 48px;
        height: 48px;
        background: rgba(var(--bs-primary-rgb), 0.1);
        color: var(--bs-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .make-a-claim .direct-deposit-banner .dd-content {
        flex: 1;
    }

        .make-a-claim .direct-deposit-banner .dd-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: var(--bs-gray-900);
        }

        .make-a-claim .direct-deposit-banner .dd-content p {
            margin-bottom: 0;
            color: var(--bs-gray-600);
            line-height: 1.5;
            font-size: 0.95rem;
        }

    .make-a-claim .direct-deposit-banner .dd-action {
        flex-shrink: 0;
    }

        .make-a-claim .direct-deposit-banner .dd-action .btn {
            padding: 0.5rem 1.25rem;
            font-size: 0.95rem;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.25);
            transition: all 0.3s ease;
        }

            .make-a-claim .direct-deposit-banner .dd-action .btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(var(--bs-primary-rgb), 0.35);
            }

@media (max-width: 991px) {
    .make-a-claim .direct-deposit-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

        .make-a-claim .direct-deposit-banner::before {
            width: 100%;
            height: 6px;
            bottom: auto;
        }

        .make-a-claim .direct-deposit-banner .dd-action {
            width: 100%;
        }

            .make-a-claim .direct-deposit-banner .dd-action .btn {
                width: 100%;
            }
}

.make-a-claim .hover-bg-light {
    transition: background-color 0.2s ease;
}

    .make-a-claim .hover-bg-light:hover {
        background-color: #f8f9fa;
    }

.make-a-claim .quick-links .quick-link-card {
    background: transparent;
    border-radius: 8px;
    height: 100%;
    text-decoration: none;
    color: #171717;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    z-index: 1;
    border: 1px solid #eaeaea;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .make-a-claim .quick-links .quick-link-card::before {
        content: "";
        position: absolute;
        width: 250%;
        height: 250%;
        top: 50%;
        left: 50%;
        background: conic-gradient(transparent 0deg, transparent 270deg, rgba(var(--bs-primary-rgb), 0.3) 360deg);
        transform: translate(-50%, -50%);
        z-index: -2;
        opacity: 0;
    }

    .make-a-claim .quick-links .quick-link-card::after {
        content: "";
        position: absolute;
        inset: 2px;
        background: #fff;
        border-radius: 6px;
        z-index: -1;
    }

    .make-a-claim .quick-links .quick-link-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(var(--bs-primary-rgb), 0.15);
        border-color: transparent;
    }

        .make-a-claim .quick-links .quick-link-card:hover::before {
            opacity: 1;
            animation: rotate-border 1.2s ease-out forwards;
        }

    .make-a-claim .quick-links .quick-link-card:active {
        transform: scale(0.98);
    }

    .make-a-claim .quick-links .quick-link-card .icon-wrapper,
    .make-a-claim .quick-links .quick-link-card h3 {
        position: relative;
        z-index: 2;
    }

    .make-a-claim .quick-links .quick-link-card .icon-wrapper {
        width: 72px;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: #e9ecef;
        font-size: 1.75rem;
        color: #666;
        margin-bottom: 1.25rem;
        transition: all 0.3s ease-out;
    }

    .make-a-claim .quick-links .quick-link-card:hover .icon-wrapper {
        background: var(--bs-primary);
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 8px 16px rgba(var(--bs-primary-rgb), 0.2);
    }

    .make-a-claim .quick-links .quick-link-card h3 {
        margin-bottom: 0;
        font-weight: 700;
        font-size: 1.1rem;
        letter-spacing: -0.02em;
        transition: color 0.3s ease;
    }

    .make-a-claim .quick-links .quick-link-card:hover h3 {
        color: var(--bs-primary);
    }

@keyframes rotate-border {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(450deg);
    }
}

.registration-flow {
    margin: 2rem 0;
}

    .registration-flow .flow-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 2rem 1rem;
        background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.03) 0%, rgba(var(--bs-primary-rgb), 0.01) 100%);
        border-radius: 1rem;
        position: relative;
    }

@media (max-width: 768px) {
    .registration-flow .flow-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem 0.5rem;
    }
}

.registration-flow .flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
    flex: 1;
}

@media (max-width: 768px) {
    .registration-flow .flow-step {
        width: 100%;
    }

        .registration-flow .flow-step::before {
            content: "";
            position: absolute;
            left: -1rem;
            top: 50%;
            width: 1rem;
            height: 3px;
            background: linear-gradient(90deg, var(--bs-primary) 0%, transparent 100%);
            opacity: 0.3;
            z-index: -1;
        }

        .registration-flow .flow-step:first-child::before {
            display: none;
        }
}

.registration-flow .step-circle-compact {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(from var(--bs-primary) h s calc(l * 1.3)) 100%);
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: white;
    font-weight: 600;
    position: relative;
    box-shadow: 0 8px 24px rgba(var(--bs-primary-rgb), 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

    .registration-flow .step-circle-compact:hover {
        transform: translateY(-8px) scale(1.08);
        box-shadow: 0 16px 48px rgba(var(--bs-primary-rgb), 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.4);
        background: linear-gradient(135deg, hsl(from var(--bs-primary) h s calc(l * 0.95)) 0%, var(--bs-primary) 100%);
    }

@media (max-width: 768px) {
    .registration-flow .step-circle-compact {
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }
}

.registration-flow .step-number {
    font-size: 1.5rem;
    line-height: 1;
}

.registration-flow .step-icon-small {
    font-size: 1rem;
    opacity: 0.9;
}

.registration-flow .step-label {
    text-align: center;
    max-width: 120px;
}

    .registration-flow .step-label strong {
        display: block;
        color: var(--bs-body-color);
        font-weight: 600;
        margin-bottom: 0.25rem;
        font-size: 0.95rem;
    }

    .registration-flow .step-label small {
        color: var(--bs-gray-600);
        font-size: 0.8rem;
        line-height: 1.3;
    }

@media (max-width: 768px) {
    .registration-flow .step-label {
        max-width: 100%;
    }
}

.registration-flow .flow-connector {
    flex: 1;
    height: 3px;
    position: relative;
    display: flex;
    align-items: center;
    min-width: 60px;
}

@media (max-width: 768px) {
    .registration-flow .flow-connector {
        display: none;
    }
}

.registration-flow .dotted-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-primary) 48%, transparent 48%, transparent 52%, var(--bs-primary) 52%, var(--bs-primary) 100%);
    background-size: 20px 100%;
    animation: flowLineAnimation 8s linear infinite;
    border-radius: 2px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.registration-flow .flow-connector:hover .dotted-line {
    opacity: 0.8;
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-primary) 100%);
    animation: none;
}

.registration-flow .flow-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(from var(--bs-primary) h s calc(l * 1.2)) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.3);
    z-index: 3;
    animation: arrowSlide 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

    .registration-flow .flow-arrow i {
        animation: arrowPulse 2s ease-in-out infinite;
    }

.registration-flow .flow-connector:hover .flow-arrow {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 20px rgba(var(--bs-primary-rgb), 0.5);
}

@keyframes flowLineAnimation {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 20px 0;
    }
}

@keyframes arrowSlide {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(4px);
    }
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .registration-flow .flow-container {
        flex-direction: column;
        align-items: stretch;
    }

    .registration-flow .flow-step {
        width: 100%;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(var(--bs-primary-rgb), 0.15);
        border-radius: 0.75rem;
        transition: all 0.3s ease;
    }

        .registration-flow .flow-step:hover {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(var(--bs-primary-rgb), 0.3);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .registration-flow .flow-step::after {
            content: "";
            position: absolute;
            left: 33px;
            top: 100%;
            width: 2px;
            height: 2rem;
            background: linear-gradient(180deg, var(--bs-primary) 0%, transparent 100%);
            opacity: 0.3;
        }

        .registration-flow .flow-step:last-child::after {
            display: none;
        }

    .registration-flow .step-circle-compact {
        width: 50px;
        height: 50px;
        box-shadow: 0 4px 16px rgba(var(--bs-primary-rgb), 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    }

    .registration-flow .step-number {
        font-size: 1.25rem;
    }

    .registration-flow .step-icon-small {
        font-size: 0.8rem;
    }
}

.claims-submission .accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .claims-submission .accordion .accordion-item {
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 1rem;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
        transition: all 0.3s ease;
    }

        .claims-submission .accordion .accordion-item:hover {
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
            border-color: rgba(var(--bs-primary-rgb), 0.2);
        }

        .claims-submission .accordion .accordion-item .accordion-header .accordion-button {
            background: transparent;
            color: var(--bs-body-color);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1.25rem 1.5rem;
            box-shadow: none;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }

            .claims-submission .accordion .accordion-item .accordion-header .accordion-button::after {
                background-size: 1.25rem;
                transition: transform 0.3s ease;
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
                filter: none !important;
            }

            .claims-submission .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
                color: var(--bs-primary);
                background: rgba(var(--bs-primary-rgb), 0.03);
                border-bottom-color: rgba(var(--bs-primary-rgb), 0.1);
            }

                .claims-submission .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
                    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
                    transform: rotate(-180deg);
                    filter: none !important;
                }

            .claims-submission .accordion .accordion-item .accordion-header .accordion-button i {
                color: var(--bs-primary);
                opacity: 0.8;
                transition: all 0.3s ease;
            }

            .claims-submission .accordion .accordion-item .accordion-header .accordion-button:hover {
                background: rgba(var(--bs-primary-rgb), 0.02);
            }

                .claims-submission .accordion .accordion-item .accordion-header .accordion-button:hover i {
                    transform: scale(1.1);
                    opacity: 1;
                }

        .claims-submission .accordion .accordion-item .accordion-body {
            padding: 1.5rem;
            color: var(--bs-gray-700);
            line-height: 1.6;
            background: #fff;
        }

.claims-submission .col-lg-4 .card {
    border: none;
    border-radius: 1rem;
    background: #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

    .claims-submission .col-lg-4 .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    }

    .claims-submission .col-lg-4 .card .card-body {
        padding: 1.75rem;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .claims-submission .col-lg-4 .card .card-title {
        font-weight: 700;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        color: var(--bs-gray-900);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .claims-submission .col-lg-4 .card .card-title::before {
            content: "";
            display: block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--bs-primary);
        }

    .claims-submission .col-lg-4 .card .card-text {
        color: var(--bs-gray-600);
        margin-bottom: 1.5rem;
        flex-grow: 1;
        line-height: 1.5;
    }

    .claims-submission .col-lg-4 .card .btn {
        align-self: flex-start;
        padding: 0.6rem 1.25rem;
        font-weight: 600;
        border-radius: 0.5rem;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
    }

        .claims-submission .col-lg-4 .card .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.2);
        }

.claims-submission .claim-videos .video-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .claims-submission .claim-videos .video-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08) !important;
        border: none;
    }

.travel-claims-modal {
    border: none;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

    .travel-claims-modal .modal-header {
        padding: 0 !important;
        border: none !important;
    }

.travel-claims-header {
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(from var(--bs-primary) h s calc(l * 0.85)) 100%);
    padding: 2rem !important;
    color: white;
    position: relative;
    overflow: hidden;
}

    .travel-claims-header::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        pointer-events: none;
    }

    .travel-claims-header .header-content {
        display: flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        z-index: 2;
        flex: 1;
    }

    .travel-claims-header .header-icon {
        font-size: 2.5rem;
        opacity: 0.95;
    }

    .travel-claims-header .modal-title {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        letter-spacing: -0.5px;
    }

    .travel-claims-header .header-subtitle {
        font-size: 0.95rem;
        opacity: 0.9;
        margin-bottom: 0;
        font-weight: 400;
    }

    .travel-claims-header .btn-close {
        opacity: 0.7;
        transition: all 0.2s ease;
    }

        .travel-claims-header .btn-close:hover {
            opacity: 1;
            transform: scale(1.1);
        }

.travel-claims-body {
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(var(--bs-primary-rgb), 0.02) 0%, transparent 100%);
}

.contact-banner {
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1) 0%, rgba(var(--bs-success-rgb), 0.05) 100%);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

    .contact-banner .contact-banner-content {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .contact-banner .banner-icon {
        font-size: 2rem;
        color: var(--bs-primary);
        opacity: 0.8;
    }

    .contact-banner .banner-text {
        flex: 1;
    }

    .contact-banner .banner-title {
        font-weight: 600;
        color: var(--bs-body-color);
        margin-bottom: 0.25rem;
        font-size: 1rem;
    }

    .contact-banner .banner-subtitle {
        color: var(--bs-gray-600);
        font-size: 0.9rem;
        margin-bottom: 0;
    }

.contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 576px) {
    .contact-options {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

    .contact-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--bs-primary) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .contact-card:hover {
        border-color: var(--bs-primary);
        box-shadow: 0 8px 24px rgba(var(--bs-primary-rgb), 0.15);
        transform: translateY(-4px);
    }

        .contact-card:hover::before {
            opacity: 1;
        }

    .contact-card.in-canada {
        border-color: rgba(var(--bs-primary-rgb), 0.15);
        background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.03) 0%, rgba(var(--bs-primary-rgb), 0.01) 100%);
    }

    .contact-card.worldwide {
        border-color: rgba(var(--bs-info-rgb), 0.15);
        background: linear-gradient(135deg, rgba(var(--bs-info-rgb), 0.03) 0%, rgba(var(--bs-info-rgb), 0.01) 100%);
    }

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 0.75rem;
    color: var(--bs-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: var(--bs-primary);
    color: white;
    transform: scale(1.1);
}

.contact-card-content {
    flex: 1;
}

.contact-card-title {
    font-weight: 600;
    color: var(--bs-body-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-phone {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bs-primary);
    text-decoration: none;
    margin-bottom: 0.25rem;
    transition: all 0.2s ease;
}

    .contact-phone:hover {
        color: hsl(from var(--bs-primary) h s calc(l * 0.85));
    }

.contact-card-note {
    color: var(--bs-gray-600);
    font-size: 0.8rem;
    margin-bottom: 0;
    font-weight: 500;
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

    .section-divider::before, .section-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(var(--bs-primary-rgb), 0.3), transparent);
    }

    .section-divider span {
        font-weight: 600;
        color: var(--bs-body-color);
        font-size: 0.95rem;
        white-space: nowrap;
    }

.claims-types {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.claim-type-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

    .claim-type-card:hover {
        border-color: rgba(var(--bs-primary-rgb), 0.3);
        box-shadow: 0 12px 32px rgba(var(--bs-primary-rgb), 0.12);
        transform: translateY(-2px);
    }

.claim-type-header {
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.03) 0%, rgba(var(--bs-primary-rgb), 0.01) 100%);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.claim-type-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.875rem;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

    .claim-type-icon.medical {
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(220, 53, 69, 0.05) 100%);
        color: #dc3545;
    }

    .claim-type-icon.cancellation {
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.05) 100%);
        color: #ffc107;
    }

    .claim-type-icon.baggage {
        background: linear-gradient(135deg, rgba(108, 117, 125, 0.15) 0%, rgba(108, 117, 125, 0.05) 100%);
        color: #6c757d;
    }

.claim-type-card:hover .claim-type-icon {
    transform: scale(1.12);
}

.claim-type-title {
    font-weight: 700;
    color: var(--bs-body-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.claim-type-badge {
    display: block;
    font-size: 0.8rem;
    color: var(--bs-gray-600);
    font-weight: 500;
}

.claim-type-body {
    padding: 1.5rem;
}

.claim-description {
    color: var(--bs-body-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.claim-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

    .claim-steps li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        color: var(--bs-body-color);
        font-size: 0.95rem;
        line-height: 1.5;
    }

        .claim-steps li:last-child {
            margin-bottom: 0;
        }

.step-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bs-primary) 0%, hsl(from var(--bs-primary) h s calc(l * 1.1)) 100%);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.info-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.875rem;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

    .info-card:hover {
        border-color: rgba(var(--bs-primary-rgb), 0.3);
        box-shadow: 0 8px 20px rgba(var(--bs-primary-rgb), 0.1);
        transform: translateY(-2px);
    }

.info-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
    border-radius: 0.75rem;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
    background: var(--bs-primary);
    color: white;
    transform: scale(1.1);
}

.info-card-content h6 {
    font-weight: 600;
    color: var(--bs-body-color);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.info-card-content p {
    color: var(--bs-gray-600);
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.travel-claims-footer {
    background: linear-gradient(to bottom, rgba(var(--bs-primary-rgb), 0.02) 0%, transparent 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
}

    .travel-claims-footer .btn {
        transition: all 0.3s ease;
    }

        .travel-claims-footer .btn:hover {
            transform: translateY(-2px);
        }

@media (max-width: 576px) {
    .travel-claims-header {
        padding: 1.5rem !important;
    }

        .travel-claims-header .header-content {
            flex-direction: column;
            text-align: center;
        }

        .travel-claims-header .header-icon {
            font-size: 2rem;
        }

        .travel-claims-header .modal-title {
            font-size: 1.5rem;
        }

    .travel-claims-body {
        padding: 1.5rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .claim-type-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }
}
