/* Hero Section */
.warranty-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.95)), 
                var(--bg-image);
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    padding-top: 100px;
}

.hero-title {
    color: #F0F2F5;
}

/* Peace of Mind Section */
.peace-content {
    padding-right: 3rem;
}

.peace-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.peace-feature {
    display: flex;
    gap: 1.5rem;
}

.feature-check {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.feature-text h5 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.peace-image-wrapper {
    position: relative;
}

.peace-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.peace-image img {
    width: 100%;
    height: auto;
    display: block;
}

.peace-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 30px rgba(211, 47, 47, 0.4);
    z-index: 2;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
    color: white;
    font-weight: 600;
}

.badge-text span:first-child {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.badge-text span:last-child {
    font-size: 1.2rem;
    font-weight: 800;
}

/* Coverage Cards */
.coverage-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.coverage-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.coverage-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.coverage-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.coverage-description {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.coverage-details .accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.coverage-details .accordion-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.coverage-details .accordion-button:not(.collapsed) {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.coverage-details .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.coverage-details .accordion-body {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
}

.coverage-details .accordion-body h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.coverage-details .accordion-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.coverage-details .accordion-body li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Exclusions Grid */
.exclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.exclusion-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.exclusion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.exclusion-icon {
    width: 70px;
    height: 70px;
    background: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.exclusion-title {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.exclusion-description {
    color: var(--text-light);
    margin: 0;
}

.exclusion-note .alert {
    border-radius: 15px;
    border: none;
    background: rgba(255, 193, 7, 0.1);
    color: var(--text-color);
}

.exclusion-note .alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 3px;
    height: 100%;
    background: var(--border-color);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    z-index: 1;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.step-content {
    flex: 1;
    padding-top: 1rem;
}

.step-title {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-light);
    margin: 0;
}

.process-support {
    max-width: 800px;
    margin: 0 auto;
}

.support-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.support-card h5 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.support-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.support-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Extended Plans */
.extended-plans {
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.plan-card-basic {
    border-color: var(--border-color);
}

.plan-card-premium {
    border-color: var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.plan-card-premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-card-ultimate {
    border-color: #FF9800;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-title {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.plan-card-ultimate .plan-price {
    color: #FF9800;
}

.plan-features {
    margin-bottom: 2.5rem;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    transition: var(--transition);
}

.plan-feature:hover {
    background: var(--bg-light);
}

.plan-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.plan-feature.disabled i {
    color: var(--text-light);
}

.plan-feature span {
    color: var(--text-color);
    font-weight: 500;
}

.plan-feature.disabled span {
    color: var(--text-light);
    text-decoration: line-through;
}

.btn-plan {
    background: var(--gradient-primary);
    color: white;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.plan-card-ultimate .btn-plan {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
}

.extended-cta .cta-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3rem;
    color: white;
}

.cta-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 1rem 3rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: var(--transition);
}

.btn-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Notes Grid */
.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.note-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.note-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.note-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.note-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.note-description {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.notes-disclaimer .disclaimer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.disclaimer-header i {
    color: #17a2b8;
    font-size: 1.8rem;
}

.disclaimer-header h5 {
    color: white;
    margin: 0;
    font-size: 1.3rem;
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.disclaimer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Contact Section */
.contact-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-method {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    transition: var(--transition);
    height: 100%;
}

.contact-method:hover {
    background: var(--bg-light);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-method h5 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-method small {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Dark Theme Adjustments */
.theme-dark .peace-feature .feature-text h5 {
    color: #F5F5F5;
}

.theme-dark .feature-text p {
    color: #AAAAAA;
}

.theme-dark .exclusion-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

.theme-dark .exclusion-title {
    color: #F5F5F5;
}

.theme-dark .exclusion-description {
    color: #AAAAAA;
}

.theme-dark .process-timeline::before {
    background: #333333;
}

.theme-dark .step-title {
    color: #F5F5F5;
}

.theme-dark .step-description {
    color: #AAAAAA;
}

.theme-dark .support-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

.theme-dark .support-card h5 {
    color: #F5F5F5;
}

.theme-dark .support-card p {
    color: #AAAAAA;
}

.theme-dark .plan-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

.theme-dark .plan-title {
    color: #F5F5F5;
}

.theme-dark .plan-feature span {
    color: #F5F5F5;
}

.theme-dark .plan-feature.disabled span {
    color: #666666;
}

.theme-dark .plan-feature:hover {
    background: rgba(255, 255, 255, 0.05);
}

.theme-dark .contact-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

.theme-dark .contact-method h5 {
    color: #F5F5F5;
}

.theme-dark .contact-method p {
    color: #F5F5F5;
}

.theme-dark .contact-method small {
    color: #AAAAAA;
}

.theme-dark .contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .peace-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .peace-image-badge {
        bottom: -15px;
        right: -15px;
        padding: 1rem;
    }
    
    .plan-card-premium {
        transform: none;
    }
    
    .plan-card-premium:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .warranty-hero-section {
        min-height: 60vh;
    }
    
    .peace-image-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .disclaimer-actions {
        flex-direction: column;
    }
    
    .disclaimer-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .exclusions-grid,
    .notes-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-header {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .plan-price {
        font-size: 2.5rem;
    }
}