﻿
.offer-detail-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 0 0 100px;
    position: relative;
}

/* Bouton favori animé */
.btn.favorited {
    background: #fee2e2 !important;
    color: #dc2626 !important;
    border-color: #dc2626 !important;
}

.btn.favorited:hover {
    background: #fecaca !important;
    transform: translateY(-2px);
}

.btn.favorited i {
    animation: heartBeat 0.5s ease;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1.1); }
    75% { transform: scale(1.2); }
}

/* Effet hover sur les boutons d'action */
.offer-actions-bar .btn {
    transition: all 0.3s ease;
}

.offer-actions-bar .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.offer-actions-bar .btn:active {
    transform: translateY(0);
}

/* Bouton succès pour candidature envoyée */
.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    cursor: not-allowed;
}

.btn-success:hover {
    transform: none !important;
}

.offer-detail-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(8, 145, 178, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.breadcrumb-section {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    padding: 15px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 500;
    white-space: nowrap;
}

.breadcrumb a:hover {
    background: #f1f5f9;
    color: #1e40af;
    transform: translateX(2px);
}

.breadcrumb .separator {
    color: #cbd5e1;
    font-weight: 300;
    flex-shrink: 0;
}

.breadcrumb .current {
    color: #1e293b;
    font-weight: 700;
    max-width: none;
    padding: 6px 12px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 8px;
    line-height: 1.4;
}

.offer-detail-single-column {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.offer-detail-header {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    border-radius: 24px;
    margin: 40px 0 30px;
    box-shadow: 
        0 20px 60px rgba(30, 64, 175, 0.4),
        inset 0 -2px 20px rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.offer-detail-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float-slow 20s ease-in-out infinite;
}

.offer-detail-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: float-slow 25s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -30px) scale(1.05); }
}

.offer-company-logo-large {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.offer-company-logo-large i {
    font-size: 64px;
    color: white;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
}

.offer-header-content {
    position: relative;
    z-index: 1;
}

.offer-detail-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.5px;
}

.offer-company-name {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.offer-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.meta-item i {
    color: rgba(255, 255, 255, 1);
    font-size: 15px;
}

.offer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
}

.badge:hover {
    transform: scale(1.05);
}

.badge-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: rgba(255, 255, 255, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% { 
        box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
    }
}

/* === ACTIONS BAR MODERNISÉE === */
.offer-actions-bar {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

/* Style pour le bloc SEO intro avec transition */
.seo-intro-text {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.offer-actions-bar .btn {
    padding: 18px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.offer-actions-bar .btn-large {
    font-size: 18px;
    padding: 20px 32px;
}

.offer-actions-bar .btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
    position: relative;
    overflow: hidden;
}

.offer-actions-bar .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.offer-actions-bar .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.offer-actions-bar .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(30, 64, 175, 0.5);
}

.offer-actions-bar .btn-outline {
    background: white;
    border: 2px solid #e2e8f0;
    color: #475569;
}

.offer-actions-bar .btn-outline:hover {
    border-color: #1e40af;
    color: #1e40af;
    background: #f8fafc;
    transform: translateY(-4px);
}

/* === SECTION BLOCK AMÉLIORÉE === */
.section-block {
    background: white;
    border-radius: 20px;
    padding: 45px;
    margin-bottom: 25px;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s;
}

.section-block:hover {
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.section-block h2 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f1f5f9;
    font-weight: 800;
}

.section-block h2 i {
    color: #1e40af;
    font-size: 30px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.info-mini-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 16px 14px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1e40af, #0891b2);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.info-mini-card:hover {
    border-color: #1e40af;
    background: white;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.15);
}

.info-mini-card:hover::before {
    transform: scaleX(1);
}

.info-mini-card i {
    font-size: 40px;
    color: #1e40af;
    margin-bottom: 16px;
    transition: all 0.4s;
}

.info-mini-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.info-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 700;
}

.info-value {
    font-size: 19px;
    color: #1e293b;
    font-weight: 800;
}

.offer-description-content {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
}

.offer-description-content p {
    margin-bottom: 20px;
}

.offer-description-content strong {
    color: #1e293b;
    font-weight: 700;
}

.offer-description-content ul,
.offer-description-content ol {
    margin: 25px 0;
    padding-left: 25px;
}

.offer-description-content li {
    margin-bottom: 12px;
    padding-left: 12px;
    position: relative;
}

.offer-description-content li::before {
    content: '→';
    position: absolute;
    left: -15px;
    color: #1e40af;
    font-weight: bold;
}

.accordion-section {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-section:hover {
    border-color: #cbd5e1;
}

.accordion-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.accordion-header:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.accordion-header.active {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    color: white;
}

.accordion-header h3 {
    font-size: 17px;
    color: inherit;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-icon {
    font-size: 22px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.active {
    padding: 28px;
    max-height: 3000px;
}

/* === SKILLS TAGS MODERNISÉES === */
.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    padding: 12px 20px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    color: #1e40af;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid #bfdbfe;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s;
}

.skill-tag:hover::before {
    left: 100%;
}

.skill-tag:hover {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    color: white;
    border-color: #1e40af;
    transform: translateY(-3px) scale(1.05);
}

.company-offers-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.company-offer-item {
    display: block;
    padding: 22px 26px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s;
    border-left: 4px solid transparent;
}

.company-offer-item:hover {
    border-left-color: #1e40af;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.15);
}

.company-offer-title {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.company-offer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

.company-offer-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.company-offer-meta i {
    color: #1e40af;
    font-size: 0.9em;
}

.offer-cta-final {
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.4);
    position: relative;
    overflow: hidden;
}

.offer-cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 900;
}

.cta-content p {
    font-size: 17px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.offer-cta-final .btn {
    background: white;
    color: #1e40af;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.offer-cta-final .btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.report-section-modern {
    margin-top: 3rem;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.report-section-modern.report-active {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Trigger Button (collapsed state) */
.report-collapsed {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.report-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.report-trigger:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.report-trigger-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.report-trigger:hover .report-trigger-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    transform: scale(1.05);
}

.report-trigger-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.report-trigger-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.report-trigger-subtitle {
    font-size: 0.85rem;
    color: #64748b;
}

.report-chevron {
    color: #94a3b8;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.report-trigger:hover .report-chevron {
    transform: translateY(3px);
    color: #f97316;
}

/* Expanded state */
.report-expanded {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    animation: reportSlideDown 0.3s ease;
}

@keyframes reportSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-bottom: 1px solid #fbbf24;
}

.report-header-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.report-header-title i {
    color: #f59e0b;
}

.report-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #78350f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.report-close:hover {
    background: white;
    transform: scale(1.1);
    color: #dc2626;
}

/* Form */
.report-form {
    padding: 1.5rem;
}

.report-reasons {
    margin-bottom: 1.5rem;
}

.report-reason-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.75rem;
}

.report-reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.report-reason-option {
    cursor: pointer;
}

.report-reason-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.report-reason-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s ease;
    text-align: center;
}

.report-reason-card i {
    font-size: 1.5rem;
    color: #64748b;
    transition: all 0.2s ease;
}

.report-reason-card span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
}

.report-reason-option:hover .report-reason-card {
    border-color: #f97316;
    background: #fff7ed;
}

.report-reason-option:hover .report-reason-card i {
    color: #f97316;
}

.report-reason-option input[type="radio"]:checked + .report-reason-card {
    border-color: #f97316;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15);
}

.report-reason-option input[type="radio"]:checked + .report-reason-card i {
    color: #ea580c;
}

.report-reason-option input[type="radio"]:checked + .report-reason-card span {
    color: #c2410c;
    font-weight: 600;
}

/* Details textarea */
.report-details {
    margin-bottom: 1.5rem;
}

.report-details label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
}

.report-details textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #1e293b;
    resize: vertical;
    transition: all 0.2s ease;
    font-family: inherit;
}

.report-details textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.report-details textarea::placeholder {
    color: #94a3b8;
}

/* Actions */
.report-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-report-cancel {
    padding: 0.75rem 1.5rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-report-cancel:hover {
    background: #e2e8f0;
    color: #475569;
}

.btn-report-submit {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-report-submit:hover {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-report-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success state */
.report-success {
    padding: 3rem 2rem;
    text-align: center;
    animation: reportSlideDown 0.3s ease;
}

.report-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.report-success-icon i {
    font-size: 2.5rem;
    color: #16a34a;
}

.report-success h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 0.5rem;
}

.report-success p {
    font-size: 0.95rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .report-reason-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .report-trigger {
        padding: 1rem;
    }
    
    .report-trigger-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .report-trigger-title {
        font-size: 0.9rem;
    }
    
    .report-trigger-subtitle {
        font-size: 0.8rem;
    }
    
    .report-actions {
        flex-direction: column;
    }
    
    .btn-report-cancel,
    .btn-report-submit {
        width: 100%;
        justify-content: center;
    }
    
    .report-reason-card {
        padding: 0.75rem 0.5rem;
    }
    
    .report-reason-card i {
        font-size: 1.25rem;
    }
    
    .report-reason-card span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .report-reason-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

/* Legacy - keep for backward compatibility */
.report-section {
    text-align: center;
    padding: 35px;
    border-top: 2px solid #f1f5f9;
    margin-top: 40px;
}

.btn-report {
    background: transparent;
    border: 2px solid #ef4444;
    color: #ef4444;
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-report:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

.report-section small {
    display: block;
    margin-top: 16px;
    color: #94a3b8;
    font-size: 13px;
}

.similar-offers-section {
    margin-top: 70px;
}

.similar-offers-section .section-title {
    font-size: 30px;
    margin-bottom: 35px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 900;
}

.similar-offers-section .section-title i {
    color: #1e40af;
}

/* === RESPONSIVE ULTRA-OPTIMISÉ === */
@media (max-width: 1024px) {
    .offer-detail-header {
        grid-template-columns: 120px 1fr;
        padding: 50px;
    }

    .offer-company-logo-large {
        width: 120px;
        height: 120px;
    }

    .offer-company-logo-large i {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .offer-detail-page {
        padding: 0 0 60px;
    }

    .offer-detail-header {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
        margin: 20px 0 20px;
    }

    .offer-company-logo-large {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .offer-company-logo-large i {
        font-size: 48px;
    }

    .offer-detail-title {
        font-size: 28px;
    }

    .offer-company-name {
        justify-content: center;
    }

    .offer-meta-info {
        flex-direction: column;
        align-items: center;
    }

    .offer-badges {
        justify-content: center;
    }

    .offer-actions-bar {
        grid-template-columns: 1fr;
    }

    .section-block {
        padding: 30px 25px;
    }

    .section-block h2 {
        font-size: 22px;
        flex-direction: column;
        align-items: flex-start;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .offer-cta-final {
        padding: 35px 25px;
    }

    .cta-content h3 {
        font-size: 24px;
    }

    .breadcrumb .current {
        max-width: 200px;
    }

    .accordion-header {
        padding: 18px 22px;
    }

    .accordion-content.active {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .offer-detail-header {
        padding: 30px 20px;
    }

    .offer-detail-title {
        font-size: 24px;
    }

    .offer-company-name {
        font-size: 16px;
    }

    .meta-item {
        font-size: 13px;
        padding: 8px 14px;
    }

    .section-block {
        padding: 25px 20px;
    }

    .section-block h2 {
        font-size: 20px;
    }

    .info-mini-card {
        padding: 24px 18px;
    }

    .breadcrumb {
        font-size: 11px;
        gap: 6px;
    }
    
    .breadcrumb .current {
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
        padding: 4px 8px;
    }
    
    .company-offer-item {
        padding: 16px 18px;
    }
    
    .company-offer-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .company-offer-meta {
        gap: 8px;
        font-size: 11px;
        line-height: 1.6;
    }
    
    .company-offer-meta i {
        font-size: 0.85em;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-block {
    animation: fadeInUp 0.6s ease-out;
}

.section-block:nth-child(2) { animation-delay: 0.1s; }
.section-block:nth-child(3) { animation-delay: 0.2s; }
.section-block:nth-child(4) { animation-delay: 0.3s; }

