/* ===== Damage Reports Page Styles ===== */

/* Page Hero Section */
.dr-hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--header-top-bg);
    overflow: hidden;
    text-align: center;
}

.dr-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.15)"/></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
}

.dr-hero .container {
    position: relative;
    z-index: 1;
}

.dr-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dr-hero h1 {
    font-family: "Manrope", sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.dr-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.dr-hero .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.dr-hero .hero-buttons .btn {
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.dr-hero .hero-buttons .btn-light {
    background: #fff;
    color: #d7942e;
    border: 2px solid #fff;
}

.dr-hero .hero-buttons .btn-light:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.dr-hero .hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    background: transparent;
}

.dr-hero .hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: #d7942e;
    border-color: #fff;
}

.dr-hero-image {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.dr-hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Section Common */
.dr-section {
    padding: 80px 0;
}

.dr-section-alt {
    padding: 80px 0;
    background: var(--pricing-bg);
}

.dr-section-dark {
    padding: 80px 0;
    background: #ffffff;
    color: #1a1a1a;
}

[data-theme="dark"] .dr-section-dark {
    background: var(--features-dark-bg);
    color: #ffffff;
}

.dr-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.dr-section-title h6 {
    font-size: 14px;
    font-weight: 700;
    color: #d7942e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

[data-theme="dark"] .dr-section-title h6 {
    color: #e8b923;
}

.dr-section-title h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 16px;
}

.dr-section-title p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* What Is Section */
.dr-what-is {
    display: flex;
    align-items: center;
    gap: 60px;
}

.dr-what-is-content {
    flex: 1;
}

.dr-what-is-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.dr-what-is-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.dr-what-is-image {
    flex: 1;
}

.dr-what-is-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .dr-what-is-image img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Why Section - Cards */
.dr-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dr-why-card {
    background: var(--pricing-card-bg);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid var(--card-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dr-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d7942e, #e8b923);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.dr-why-card:hover::before {
    transform: scaleX(1);
}

.dr-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--card-hover-shadow);
}

.dr-why-card .card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(215, 148, 46, 0.15), rgba(232, 185, 35, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #d7942e;
    transition: all 0.3s ease;
}

[data-theme="dark"] .dr-why-card .card-icon {
    color: #e8b923;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.2), rgba(215, 148, 46, 0.1));
}

.dr-why-card:hover .card-icon {
    background: linear-gradient(135deg, #d7942e, #e8b923);
    color: #fff;
    transform: scale(1.1);
}

.dr-why-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.dr-why-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Benefits Section */
.dr-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.dr-benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--pricing-card-bg);
    padding: 30px;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.dr-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--card-hover-shadow);
    border-color: #d7942e;
}

.dr-benefit-item .benefit-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(215, 148, 46, 0.15), rgba(232, 185, 35, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #d7942e;
}

[data-theme="dark"] .dr-benefit-item .benefit-icon {
    color: #e8b923;
}

.dr-benefit-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.dr-benefit-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Features List Section */
.dr-features-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.dr-features-row.reverse {
    flex-direction: row-reverse;
}

.dr-features-content {
    flex: 1;
}

.dr-features-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

[data-theme="dark"] .dr-section-dark .dr-features-content h3 {
    color: #ffffff;
}

.dr-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dr-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

[data-theme="dark"] .dr-section-dark .dr-features-list li {
    color: #d1d1d1;
}

.dr-features-list li i {
    color: #d7942e;
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px;
}

[data-theme="dark"] .dr-features-list li i {
    color: #e8b923;
}

.dr-features-image {
    flex: 1;
}

.dr-features-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .dr-features-image img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* How It Works Section */
.dr-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.dr-steps-grid::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d7942e, #e8b923, transparent);
    z-index: 0;
}

.dr-step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.dr-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d7942e, #e8b923);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(215, 148, 46, 0.4);
}

.dr-step-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.dr-step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Section */
.dr-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.dr-stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    color: #d7942e;
    margin-bottom: 8px;
    font-family: "Manrope", sans-serif;
}

[data-theme="dark"] .dr-stat-item h3 {
    color: #e8b923;
}

.dr-stat-item p {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Damage Types Section */
.dr-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dr-type-card {
    background: var(--pricing-card-bg);
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid var(--card-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dr-type-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d7942e, #e8b923);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.dr-type-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.dr-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--card-hover-shadow);
}

.dr-type-card .type-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(215, 148, 46, 0.15), rgba(232, 185, 35, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
    color: #d7942e;
    transition: all 0.3s ease;
}

[data-theme="dark"] .dr-type-card .type-icon {
    color: #e8b923;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.2), rgba(215, 148, 46, 0.1));
}

.dr-type-card:hover .type-icon {
    background: linear-gradient(135deg, #d7942e, #e8b923);
    color: #fff;
    transform: scale(1.1);
}

.dr-type-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.dr-type-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.dr-cta {
    padding: 80px 0;
    background: var(--cta-bg);
    text-align: center;
    color: #fff;
}

.dr-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.dr-cta p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
    color: #fff;
}

.dr-cta .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.dr-cta .cta-buttons .btn {
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.dr-cta .cta-buttons .btn-light {
    background: #fff;
    color: #d7942e;
    border: 2px solid #fff;
}

.dr-cta .cta-buttons .btn-light:hover {
    background: transparent;
    color: #fff;
}

.dr-cta .cta-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    background: transparent;
}

.dr-cta .cta-buttons .btn-outline-light:hover {
    background: #fff;
    color: #d7942e;
    border-color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .dr-hero {
        padding: 120px 0 60px;
    }

    .dr-hero h1 {
        font-size: 38px;
    }

    .dr-what-is {
        flex-direction: column;
        gap: 40px;
    }

    .dr-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dr-features-row,
    .dr-features-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .dr-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dr-steps-grid::before {
        display: none;
    }

    .dr-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .dr-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dr-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .dr-hero {
        padding: 100px 0 50px;
    }

    .dr-hero h1 {
        font-size: 32px;
    }

    .dr-hero p {
        font-size: 16px;
    }

    .dr-section,
    .dr-section-alt,
    .dr-section-dark {
        padding: 60px 0;
    }

    .dr-section-title h2 {
        font-size: 28px;
    }

    .dr-why-grid {
        grid-template-columns: 1fr;
    }

    .dr-benefits-grid {
        grid-template-columns: 1fr;
    }

    .dr-steps-grid {
        grid-template-columns: 1fr;
    }

    .dr-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .dr-stat-item h3 {
        font-size: 32px;
    }

    .dr-types-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .dr-hero h1 {
        font-size: 28px;
    }

    .dr-section-title h2 {
        font-size: 24px;
    }

    .dr-what-is-content h3,
    .dr-features-content h3 {
        font-size: 22px;
    }

    .dr-cta h2 {
        font-size: 28px;
    }
}