/* Header Section */
.refund-header-section {
    /* background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); */
    padding: 80px 0 100px;
    text-align: center;
    /* color: #ffffff; */
}

.refund-header-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.refund-header-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content Wrapper */
.refund-main-wrapper {
    margin-top: -50px; /* Overlaps the header slightly for a premium look */
    padding-bottom: 80px;
}

/* Custom Accordion Styling */
.refund-accordion {
    --bs-accordion-bg: #ffffff;
    --bs-accordion-border-color: transparent;
}

.refund-accordion .accordion-item {
    border: none;
    border-radius: 16px !important;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
}

.refund-accordion .accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.refund-accordion .accordion-button {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: #1e3a8a; /* Professional Blue */
    padding: 20px 25px;
    background-color: #ffffff;
    border-radius: 16px !important;
    box-shadow: none !important; /* Removes Bootstrap focus glow */
    display: flex;
    align-items: center;
}

.refund-accordion .accordion-button:not(.collapsed) {
    color: #059669; /* Trustworthy Green when open */
    background-color: #f0fdf4; /* Very light green tint */
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/* Customizing the accordion arrow color */
.refund-accordion .accordion-button::after {
    transition: transform 0.3s ease-in-out;
}

/* Icon styling inside accordion button */
.refund-acc-icon {
    width: 35px;
    color: #3b82f6; /* Blue icon */
    font-size: 1.2rem;
    text-align: center;
    margin-right: 15px;
    transition: color 0.3s;
}

.refund-accordion .accordion-button:not(.collapsed) .refund-acc-icon {
    color: #059669; /* Icon turns green when open */
}

.refund-accordion .accordion-body {
    padding: 25px;
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

/* Highlighted Contact Box */
.refund-cta-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(11, 94, 215, 0.08);
    border-top: 5px solid #059669; /* Green accent border */
    margin-top: 40px;
}

.refund-cta-heading {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.refund-cta-text {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* Buttons */
.refund-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.refund-btn {
    font-family: "Poppins", sans-serif;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: none;
}

.refund-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.refund-btn-wa {
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.refund-btn-wa:hover {
    background-color: #1da851;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.refund-btn-call {
    background-color: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.refund-btn-call:hover {
    background-color: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.btn-call {
    background-color: #0b5ed7;
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    border: none;
}

.btn-call:hover {
    background-color: #0a4ebd;
    color: white;
    box-shadow: 0 4px 12px rgba(11, 94, 215, 0.3);
    transform: translateY(-2px);
}

.btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .refund-header-section {
        padding: 60px 20px 80px;
    }
    .refund-header-title {
        font-size: 2.1rem;
    }
    .refund-accordion .accordion-button {
        font-size: 1.05rem;
        padding: 15px 20px;
    }
    .refund-cta-box {
        padding: 35px 20px;
    }
    .refund-btn {
        width: 100%;
        justify-content: center;
    }
}
