/* Refund Page Styles */
:root {
    --primary-color: #1a237e;
    --primary-light: #534bae;
    --primary-dark: #000051;
    --accent-color: #4caf50;
    --accent-light: #80e27e;
    --accent-dark: #087f23;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-muted: #666666;
    --background-light: #ffffff;
    --background-gray: #f8f9fa;
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --container-width: 1200px;
    --border-radius-sm: 10px;
    --border-radius-md: 20px;
    --border-radius-lg: 30px;
}

/* Refund Hero Section */
.refund-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: 6rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.refund-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 150%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% -50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.refund-hero .container {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.refund-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp var(--transition-smooth) forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp var(--transition-smooth) forwards 0.2s;
}

/* Quick Links */
.quick-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp var(--transition-smooth) forwards 0.4s;
}

.quick-link {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Refund Content */
.refund-content {
    padding: 4rem 0;
    background: var(--background-light);
}

.refund-content .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Overview Grid */
.refund-overview {
    margin-bottom: 4rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.overview-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: all var(--transition-fast);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.overview-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.overview-card p {
    color: var(--text-muted);
}

/* Conditions Section */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.condition-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-fast);
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.condition-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    flex-grow: 1;
    transition: all var(--transition-fast);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--card-shadow-hover);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    margin: 0;
}

/* Timeline Cards */
.timeline-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.timeline-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-fast);
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.time-badge {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee-section {
    background: var(--background-gray);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-text {
    padding-right: 2rem;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.guarantee-list {
    list-style: none;
    padding: 0;
}

.guarantee-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guarantee-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.guarantee-detail {
    display: flex;
    flex-direction: column;
}

.guarantee-detail strong {
    color: var(--text-dark);
}

.guarantee-detail span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.guarantee-badge {
    background: var(--primary-color);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.badge-content {
    text-align: center;
    color: var(--text-light);
}

.badge-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.badge-content h3 {
    font-size: 2.5rem;
    margin: 0;
}

/* FAQ Section */
.refund-faq {
    margin-top: 4rem;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--background-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--background-gray);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-muted);
}

.faq-item.active .faq-question {
    background: var(--primary-color);
    color: var(--text-light);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* CTA Section */
.refund-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 4rem 2rem;
    background: var(--background-gray);
    border-radius: var(--border-radius-lg);
}

.refund-cta h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.cta-button.primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.cta-button.primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.cta-button.secondary {
    background: var(--background-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

