/* Template: Refund Policy Styles */

:root {
    --vbbk-luxury-gold: #B88E2F;
    --vbbk-brand-navy: #132a4a;
    --vbbk-text-dark: #222222;
    --vbbk-text-muted: #676767;
    --vbbk-bg-light: #f9f9f9;
}

.template-refund-page {
    padding-bottom: 80px;
}

/* Hero Section (About Style) */
.refund-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 !important; /* Managed by flex and height */
}

.refund-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.refund-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.refund-hero .vbbk-breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.refund-hero .vbbk-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.refund-hero .vbbk-breadcrumb .sep {
    margin: 0 10px;
}

.refund-hero .page-title {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.refund-hero .hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Intro Section */
.refund-intro {
    padding: 0 0 60px;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--vbbk-text-dark);
    margin-bottom: 25px;
}

.commitment-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #FFFAF0;
    border: 1px solid #FFE4B5;
    border-radius: 999px;
    color: #8B4513;
    font-size: 14px;
    font-weight: 600;
}

.commitment-badge i {
    font-size: 20px;
    color: var(--vbbk-luxury-gold);
}

/* General Section Styles */
.refund-section {
    padding-bottom: 40px; /* Reduced gap between sections */
}

.section-title {
    font-family: var(--font-heading), serif;
    font-size: 32px;
    color: var(--vbbk-brand-navy);
    margin-bottom: 10px;
}

.section-desc {
    font-size: 16px;
    color: var(--vbbk-text-muted);
    margin-bottom: 30px;
}

/* List Styles */
.refund-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.refund-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--vbbk-text-dark);
}

.refund-list li i {
    font-size: 20px;
    margin-top: 2px;
}

.check-list li i { color: #2ecc71; }
.x-list li i { color: #e74c3c; }

/* Note Box */
.refund-note-box {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: #FFF9E6;
    border-radius: 8px;
    border-left: 4px solid var(--vbbk-luxury-gold);
}

.refund-note-box i {
    font-size: 24px;
    color: var(--vbbk-luxury-gold);
}

.refund-note-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.white-note {
    background: #fdfdfd;
    border: 1px solid #eeeeee;
}

/* Timeline Cards */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.timeline-card {
    padding: 35px 30px;
    background: #fbfbfb;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    border-color: var(--vbbk-luxury-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-label {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--vbbk-text-muted);
    font-weight: 700;
}

.card-value {
    font-size: 42px;
    color: var(--vbbk-brand-navy);
    margin: 10px 0;
}

.card-desc {
    font-size: 14px;
    color: var(--vbbk-text-muted);
    margin: 0;
}

/* Process Stepper */
.refund-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
    margin-bottom: 50px;
    background: #ffffff;
    border: 1px solid #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.step-line {
    position: absolute;
    top: 65px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    background: inherit;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 22px;
    color: var(--vbbk-luxury-gold);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    background: var(--vbbk-luxury-gold);
    color: #fff;
    border-color: var(--vbbk-luxury-gold);
}

.step-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--vbbk-text-muted);
    margin-bottom: 5px;
}

.step-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--vbbk-brand-navy);
}

/* Process Details */
.process-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.process-item {
    display: flex;
    gap: 20px;
}

.process-item .num {
    width: 32px;
    height: 32px;
    background: var(--vbbk-luxury-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
}

.process-item h4 {
    margin: 0 0 10px;
    font-size: 16px;
    color: var(--vbbk-brand-navy);
}

.process-item p {
    margin: 0;
    font-size: 14px;
    color: var(--vbbk-text-muted);
    line-height: 1.6;
}

/* Methods Grid */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.method-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    text-align: center;
}

.method-card h4 {
    color: var(--vbbk-luxury-gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.method-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Support CTA Section */
.refund-support-cta {
    padding: var(--section-padding);
    background: #fdfdfd;
}

.support-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.support-text {
    flex: 1;
}

.support-text h2 {
    font-family: var(--font-heading), serif;
    font-size: 42px;
    color: var(--brand-navy);
    margin-bottom: 20px;
}

.support-text p {
    font-size: 16px;
    color: var(--vbbk-text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.support-badges {
    display: flex;
    gap: 30px;
}

.support-badges .badge {
    text-align: center;
    font-weight: 700;
    color: var(--vbbk-brand-navy);
    font-size: 18px;
}

.support-badges .badge span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--vbbk-text-muted);
    margin-top: 5px;
}

.support-card {
    flex: 0 0 450px;
    background: #fff;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border-radius: 20px;
}

.support-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-list {
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: #f4f7fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--vbbk-luxury-gold);
}

.c-info span {
    display: block;
    font-size: 12px;
    color: var(--vbbk-text-muted);
}

.c-info strong {
    font-size: 15px;
}

.btn-contact-now {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--vbbk-luxury-gold);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-contact-now:hover {
    background: var(--vbbk-brand-navy);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .support-flex {
        flex-direction: column;
        text-align: center;
    }
    .support-card {
        flex: none;
        width: 100%;
        max-width: 500px;
    }
    .support-badges {
        justify-content: center;
    }
    .refund-stepper {
        flex-wrap: wrap;
    }
    .step-item {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
    .step-line { display: none; }
}

@media (max-width: 767px) {
    .page-title { font-size: 32px; }
    .timeline-grid, .process-details, .methods-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    html,
    body {
        overflow-x: hidden;
    }

    .template-refund-page {
        padding-bottom: 44px;
        overflow-x: hidden;
    }

    .refund-hero {
        height: auto;
        min-height: 280px;
        padding: 56px 0 42px !important;
    }

    .refund-hero .container {
        padding: 0 16px;
    }

    .refund-hero .vbbk-breadcrumb {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .refund-hero .vbbk-breadcrumb .sep {
        margin: 0 6px;
    }

    .refund-hero .page-title,
    .page-title {
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 10px;
        word-break: break-word;
    }

    .refund-hero .hero-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .refund-content-wrapper {
        padding-top: 24px;
    }

    .refund-section {
        padding-bottom: 26px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .section-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .refund-list {
        margin-bottom: 22px;
    }

    .refund-list li {
        gap: 10px;
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.5;
    }

    .refund-list li i {
        font-size: 18px;
        margin-top: 1px;
    }

    .refund-note-box {
        gap: 10px;
        padding: 14px;
        border-left-width: 3px;
    }

    .refund-note-box i {
        font-size: 20px;
    }

    .refund-note-box p {
        font-size: 13px;
        line-height: 1.55;
    }

    .timeline-grid {
        gap: 12px;
        margin-bottom: 20px;
    }

    .timeline-card {
        padding: 20px 14px;
    }

    .card-label {
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .card-value {
        font-size: 32px;
        margin: 6px 0;
    }

    .card-desc {
        font-size: 13px;
    }

    .refund-stepper {
        padding: 16px 8px;
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .step-item {
        flex: 0 0 50%;
        margin-bottom: 14px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 8px;
        font-size: 17px;
    }

    .step-label {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .step-name {
        display: block;
        font-size: 12px;
        line-height: 1.35;
        padding: 0 6px;
        word-break: break-word;
    }

    .process-details {
        gap: 14px;
    }

    .process-item {
        gap: 10px;
    }

    .process-item .num {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .process-item h4 {
        font-size: 14px;
        margin: 0 0 6px;
    }

    .process-item p {
        font-size: 13px;
        line-height: 1.55;
    }

    .methods-grid {
        gap: 12px;
    }

    .method-card {
        padding: 18px 14px;
    }

    .method-card h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .method-card p {
        font-size: 13px;
        line-height: 1.55;
    }

    .refund-support-cta {
        padding: 42px 0;
    }

    .support-flex {
        gap: 22px;
        text-align: left;
    }

    .support-text h2 {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 1.25;
    }

    .support-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .support-badges {
        gap: 16px;
        justify-content: flex-start;
    }

    .support-badges .badge {
        font-size: 15px;
    }

    .support-badges .badge span {
        font-size: 11px;
        margin-top: 2px;
    }

    .support-card {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .support-card h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .contact-list {
        margin-bottom: 16px;
    }

    .contact-item {
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 14px;
    }

    .contact-item i {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .c-info span {
        font-size: 11px;
    }

    .c-info strong {
        font-size: 14px;
        line-height: 1.45;
        word-break: break-word;
    }
}
