/* ================================================================
   research-report.css  |  Prop News Time
   ================================================================ */

/* ── Page wrapper ─────────────────────────────────────────────── */
.research-wrapper {
    padding: 30px 15px 60px;
}

.page-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
}

/* ── Filters bar ──────────────────────────────────────────────── */
.filters-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 8px;
}

.clear-filters {
    font-size: 13px;
    color: #5d5fef;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 500;
    text-decoration: underline;
    transition: color .2s;
}

.clear-filters:hover {
    color: #3a3cc4;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}

.filter-select {
    height: 36px;
    padding: 0 12px;
    border: 1px solid #dde0f0;
    border-radius: 6px;
    font-size: 13px;
    color: #444;
    background: #fff;
    min-width: 130px;
    cursor: pointer;
    outline: none;
    transition: border-color .2s;
}

.filter-select:focus {
    border-color: #5d5fef;
}

.search-wrap {
    position: relative;
    margin-left: auto;
}

.search-wrap input {
    height: 36px;
    padding: 0 36px 0 12px;
    border: 1px solid #dde0f0;
    border-radius: 6px;
    font-size: 13px;
    color: #444;
    width: 200px;
    outline: none;
    transition: border-color .2s, width .3s;
}

.search-wrap input:focus {
    border-color: #5d5fef;
    width: 240px;
}

.search-wrap .fa-search {
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 13px;
    pointer-events: none;
}

/* ── Report Card ──────────────────────────────────────────────── */
.report-card {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.report-card:hover {
    box-shadow: 0 8px 24px rgba(93, 95, 239, 0.1);
    transform: translateY(-3px);
}

/* Thumbnail + hover overlay */
.card-img-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.card-img-wrap {
    width: 100%;
    height: 170px;
    overflow: hidden;
    background: #f5f5f5;
}

.report-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}

.report-card:hover .report-img {
    transform: scale(1.04);
}

/* Hover overlay — short description */
.card-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity .3s ease;
}

.report-card:hover .card-hover-overlay {
    opacity: 1;
}

.card-hover-overlay p {
    color: #fff;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    text-align: center;
}

/* Card body */
.report-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.report-meta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.meta-sep {
    margin: 0 4px;
    color: #ccc;
}

.report-title-link {
    text-decoration: none;
    color: inherit;
}

.report-title-link:hover {
    color: #5d5fef;
}

.report-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.45;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Actions row */
.report-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #5d5fef;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
}

.download-btn:hover {
    background: #4345d4;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0f0;
    border-radius: 6px;
    background: #fff;
    color: #5d5fef;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    font-size: 13px;
}

.share-btn:hover {
    background: #f0f0ff;
    border-color: #5d5fef;
}

/* ── No results ───────────────────────────────────────────────── */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}

.no-results .fa {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.no-results p {
    font-size: 15px;
}

/* ── Pagination ───────────────────────────────────────────────── */
.pagination-wrap {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.pagination-wrap .pagination {
    gap: 4px;
}

.pagination-wrap .page-item .page-link {
    border-radius: 6px !important;
    color: #5d5fef;
    border-color: #dde0f0;
    font-size: 13px;
    padding: 6px 12px;
}

.pagination-wrap .page-item.active .page-link {
    background: #5d5fef;
    border-color: #5d5fef;
    color: #fff;
}

/* ── Download Modal ───────────────────────────────────────────── */
.download-modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.download-modal-content .modal-header {
    border-bottom: 1px solid #f0f0f8;
    padding: 20px 24px 16px;
}

.download-modal-content .modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
}

.download-modal-content .modal-body {
    padding: 20px 24px 28px;
}

.modal-report-name {
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
    font-style: italic;
}

.modal-field label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 5px;
    display: block;
}

.modal-field .form-control {
    border-radius: 6px;
    border: 1px solid #dde0f0;
    font-size: 13.5px;
    height: 40px;
    transition: border-color .2s;
}

.modal-field .form-control:focus {
    border-color: #5d5fef;
    box-shadow: 0 0 0 3px rgba(93,95,239,.1);
}

.req {
    color: #e53935;
}

.optional {
    color: #aaa;
    font-weight: 400;
}

/* Mobile number row */
.mobile-wrap {
    display: flex;
    gap: 6px;
}

.country-code-select {
    width: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    border: 1px solid #dde0f0;
    font-size: 13px;
    height: 40px;
    padding: 0 6px;
    outline: none;
    cursor: pointer;
}

.mobile-wrap .form-control {
    flex: 1;
}

/* Submit button */
.download-submit-btn {
    background: #5d5fef;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 36px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    min-width: 160px;
}

.download-submit-btn:hover {
    background: #4345d4;
    color: #fff;
}

/* ── Toast notifications ──────────────────────────────────────── */
.share-toast,
.download-success-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1a2e;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13.5px;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    z-index: 9999;
    pointer-events: none;
    white-space: nowrap;
}

.share-toast.show,
.download-success-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.download-success-toast .fa-check-circle {
    color: #4caf50;
    margin-right: 6px;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 767px) {

    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        flex-direction: column;
    }

    .filter-select,
    .search-wrap input,
    .search-wrap {
        width: 100%;
        min-width: unset;
    }

    .search-wrap input:focus {
        width: 100%;
    }

    .card-img-wrap {
        height: 150px;
    }
}

/* ================================================================
   research-report.css  |  Prop News Time
   ================================================================ */

/* ── Page wrapper ─────────────────────────────────────────────── */
.research-wrapper {
    padding: 30px 15px 60px;
}

.page-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
}

/* ── Filters bar ──────────────────────────────────────────────── */
.filters-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 8px;
}

.clear-filters {
    font-size: 13px;
    color: #5d5fef;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 500;
    text-decoration: underline;
    transition: color .2s;
}

.clear-filters:hover {
    color: #3a3cc4;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}

.filter-select {
    height: 36px;
    padding: 0 12px;
    border: 1px solid #dde0f0;
    border-radius: 6px;
    font-size: 13px;
    color: #444;
    background: #fff;
    min-width: 130px;
    cursor: pointer;
    outline: none;
    transition: border-color .2s;
}

.filter-select:focus {
    border-color: #5d5fef;
}

.search-wrap {
    position: relative;
    margin-left: auto;
}

.search-wrap input {
    height: 36px;
    padding: 0 36px 0 12px;
    border: 1px solid #dde0f0;
    border-radius: 6px;
    font-size: 13px;
    color: #444;
    width: 200px;
    outline: none;
    transition: border-color .2s, width .3s;
}

.search-wrap input:focus {
    border-color: #5d5fef;
    width: 240px;
}

.search-wrap .fa-search {
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 13px;
    pointer-events: none;
}

/* ── Report Card ──────────────────────────────────────────────── */
.report-card {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.report-card:hover {
    box-shadow: 0 8px 24px rgba(93, 95, 239, 0.1);
    transform: translateY(-3px);
}

/* Thumbnail + hover overlay */
.card-img-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.card-img-wrap {
    width: 100%;
    height: 170px;
    overflow: hidden;
    background: #f5f5f5;
}

.report-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}

.report-card:hover .report-img {
    transform: scale(1.04);
}

/* Hover overlay — short description */
.card-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity .3s ease;
}

.report-card:hover .card-hover-overlay {
    opacity: 1;
}

.card-hover-overlay p {
    color: #fff;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    text-align: center;
}

/* Card body */
.report-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.report-meta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.meta-sep {
    margin: 0 4px;
    color: #ccc;
}

.report-title-link {
    text-decoration: none;
    color: inherit;
}

.report-title-link:hover {
    color: #5d5fef;
}

.report-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.45;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Actions row */
.report-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #5d5fef;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
}

.download-btn:hover {
    background: #4345d4;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0f0;
    border-radius: 6px;
    background: #fff;
    color: #5d5fef;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    font-size: 13px;
}

.share-btn:hover {
    background: #f0f0ff;
    border-color: #5d5fef;
}

/* ── No results ───────────────────────────────────────────────── */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}

.no-results .fa {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.no-results p {
    font-size: 15px;
}

/* ── Pagination ───────────────────────────────────────────────── */
.pagination-wrap {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.pagination-wrap .pagination {
    gap: 4px;
}

.pagination-wrap .page-item .page-link {
    border-radius: 6px !important;
    color: #5d5fef;
    border-color: #dde0f0;
    font-size: 13px;
    padding: 6px 12px;
}

.pagination-wrap .page-item.active .page-link {
    background: #5d5fef;
    border-color: #5d5fef;
    color: #fff;
}

/* ── Download Modal ───────────────────────────────────────────── */
.download-modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.download-modal-content .modal-header {
    border-bottom: 1px solid #f0f0f8;
    padding: 20px 24px 16px;
}

.download-modal-content .modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
}

.download-modal-content .modal-body {
    padding: 20px 24px 28px;
}

.modal-report-name {
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
    font-style: italic;
}

.modal-field label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 5px;
    display: block;
}

.modal-field .form-control {
    border-radius: 6px;
    border: 1px solid #dde0f0;
    font-size: 13.5px;
    height: 40px;
    transition: border-color .2s;
}

.modal-field .form-control:focus {
    border-color: #5d5fef;
    box-shadow: 0 0 0 3px rgba(93,95,239,.1);
}

.req {
    color: #e53935;
}

.optional {
    color: #aaa;
    font-weight: 400;
}

/* Mobile number row */
.mobile-wrap {
    display: flex;
    gap: 6px;
}

.country-code-select {
    width: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    border: 1px solid #dde0f0;
    font-size: 13px;
    height: 40px;
    padding: 0 6px;
    outline: none;
    cursor: pointer;
}

.mobile-wrap .form-control {
    flex: 1;
}

/* Submit button */
.download-submit-btn {
    background: #5d5fef;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 36px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    min-width: 160px;
}

.download-submit-btn:hover {
    background: #4345d4;
    color: #fff;
}

/* ── Toast notifications ──────────────────────────────────────── */
.share-toast,
.download-success-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1a2e;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13.5px;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    z-index: 9999;
    pointer-events: none;
    white-space: nowrap;
}

.share-toast.show,
.download-success-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.download-success-toast .fa-check-circle {
    color: #4caf50;
    margin-right: 6px;
}

/* ================================================================
   LANDING PAGE
   ================================================================ */

.landing-wrapper {
    padding: 24px 15px 60px;
}

/* ── Back link ────────────────────────────────────────────────── */
.landing-back {
    margin-bottom: 20px;
}

.landing-back a {
    font-size: 13px;
    color: #5d5fef;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

.landing-back a:hover {
    color: #3a3cc4;
}

.landing-back .fa {
    font-size: 11px;
    margin-right: 4px;
}

/* ── Detail row (thumb + info side by side) ───────────────────── */
.landing-detail-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 36px;
}

.landing-thumb-wrap {
    flex-shrink: 0;
    width: 300px;
}

.landing-thumb {
    width: 100%;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

.landing-thumb-placeholder {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 40px;
}

/* ── Landing info ─────────────────────────────────────────────── */
.landing-info {
    flex: 1;
}

.landing-meta {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.landing-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    margin-bottom: 14px;
}

.landing-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 22px;
}

.landing-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-download-btn {
    padding: 10px 24px;
    font-size: 14px;
}

.landing-divider {
    border: none;
    border-top: 1px solid #efefef;
    margin: 0 0 40px;
}

/* ── Contact section ──────────────────────────────────────────── */
.landing-contact-section {
    max-width: 860px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.contact-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 30px;
}

.contact-field label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 5px;
    display: block;
}

.contact-field .form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 6px 0;
    font-size: 13.5px;
    box-shadow: none;
    background: transparent;
    transition: border-color .2s;
}

.contact-field .form-control:focus {
    border-bottom-color: #5d5fef;
    box-shadow: none;
    outline: none;
    background: transparent;
}

.contact-submit-btn {
    background: #5d5fef;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    min-width: 160px;
}

.contact-submit-btn:hover {
    background: #4345d4;
    color: #fff;
}

/* ── Landing Page ─────────────────────────────────────────────── */

.landing-wrapper {
    padding: 24px 15px 60px;
}

.landing-breadcrumb {
    margin-bottom: 24px;
}

.landing-breadcrumb a {
    font-size: 13.5px;
    color: #5d5fef;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

.landing-breadcrumb a:hover {
    color: #3a3cc4;
}

.landing-breadcrumb .fa {
    font-size: 11px;
    margin-right: 4px;
}

/* Detail row */
.landing-detail-row {
    align-items: flex-start;
    margin-bottom: 10px;
}

.landing-thumb-wrap {
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 20px;
}

.landing-thumb {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.landing-meta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.landing-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 14px;
}

.landing-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.landing-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-btn-lg {
    padding: 10px 24px;
    font-size: 14px;
}

.share-btn-lg {
    width: 40px;
    height: 40px;
    font-size: 15px;
}

.landing-divider {
    border-color: #efefef;
    margin: 40px 0;
}

/* Contact section */
.landing-contact-section {
    max-width: 860px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.contact-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 32px;
}

.contact-field label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 5px;
    display: block;
}

.contact-field .form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 6px 0;
    font-size: 13.5px;
    color: #333;
    background: transparent;
    box-shadow: none;
    transition: border-color .2s;
}

.contact-field .form-control:focus {
    border-bottom-color: #5d5fef;
    outline: none;
    box-shadow: none;
    background: transparent;
}

.contact-field .mobile-wrap .form-control {
    border-radius: 0;
}

.contact-submit-btn {
    background: #5d5fef;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    min-width: 160px;
}

.contact-submit-btn:hover {
    background: #4345d4;
    color: #fff;
}

/* ── Landing Page ─────────────────────────────────────────────── */

.landing-wrapper {
    padding: 24px 15px 60px;
}

.landing-breadcrumb {
    margin-bottom: 20px;
}

.landing-breadcrumb a {
    font-size: 13px;
    color: #5d5fef;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}

.landing-breadcrumb a:hover {
    color: #3a3cc4;
}

.landing-detail-row {
    margin-bottom: 10px;
}

/* Thumbnail */
.landing-thumb-wrap {
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #efefef;
}

.landing-thumb {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.landing-thumb-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 48px;
}

/* Meta + title */
.landing-meta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}

.landing-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 14px;
}

.landing-description {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.landing-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.landing-download-btn {
    padding: 9px 24px;
    font-size: 14px;
}

.landing-divider {
    border: none;
    border-top: 1px solid #f0f0f8;
    margin: 36px 0;
}

/* ── Contact Section ──────────────────────────────────────────── */

.landing-contact-section {
    max-width: 860px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.contact-heading {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 32px;
}

.contact-field label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 5px;
    display: block;
}

.contact-field .form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ccc;
    padding-left: 0;
    font-size: 13.5px;
    height: 38px;
    box-shadow: none;
    transition: border-color .2s;
    background: transparent;
}

.contact-field .form-control:focus {
    border-bottom-color: #5d5fef;
    box-shadow: none;
    background: transparent;
}

.contact-field .mobile-wrap .country-code-select {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    height: 38px;
    font-size: 13px;
    padding: 0 4px;
    background: transparent;
    width: 70px;
    flex-shrink: 0;
}

.contact-submit-btn {
    background: #5d5fef;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    min-width: 160px;
}

.contact-submit-btn:hover {
    background: #4345d4;
    color: #fff;
}

/* ================================================================
   LANDING PAGE
   ================================================================ */

.landing-wrapper {
    padding: 24px 15px 60px;
}

/* ── Back link ────────────────────────────────────────────────── */
.landing-back {
    margin-bottom: 20px;
}

.landing-back a {
    font-size: 14px;
    color: #5d5fef;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}

.landing-back a:hover {
    color: #3a3cc4;
}

/* ── Report detail row ────────────────────────────────────────── */
.landing-detail {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 36px;
}

/* Left: thumbnail */
.landing-thumb {
    flex-shrink: 0;
    width: 300px;
}

.landing-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    border: 1px solid #eee;
}

/* Right: info */
.landing-info {
    flex: 1;
}

.landing-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin: 10px 0 14px;
}

.landing-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* Action buttons */
.landing-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-btn-lg {
    padding: 10px 24px;
    font-size: 14px;
}

.share-btn-lg {
    width: 40px;
    height: 40px;
    font-size: 15px;
}

/* ── Divider ──────────────────────────────────────────────────── */
.landing-divider {
    border: none;
    border-top: 1px solid #eef0f8;
    margin: 0 0 40px;
}

/* ── Contact section ──────────────────────────────────────────── */
.landing-contact {
    /* max-width: 900px; */
    margin: 0 auto 20px;
}

.contact-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 30px;
}

.contact-field label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 5px;
    display: block;
}

.contact-field .form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 8px 0;
    font-size: 14px;
    box-shadow: none;
    background: transparent;
    transition: border-color .2s;
}

.contact-field .form-control:focus {
    border-bottom-color: #5d5fef;
    box-shadow: none;
    background: transparent;
}

/* Mobile wrap inside contact form */
.contact-field .mobile-wrap .country-code-select {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    background: transparent;
    height: 38px;
    font-size: 14px;
    padding: 0 4px;
    transition: border-color .2s;
}

.contact-field .mobile-wrap .country-code-select:focus {
    border-bottom-color: #5d5fef;
    outline: none;
}

/* reCAPTCHA + submit alignment */
.contact-submit-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.contact-submit-btn {
    background: #5d5fef;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    min-width: 160px;
}

.contact-submit-btn:hover {
    background: #4345d4;
    color: #fff;
}

/* ── Responsive ───────────────────────────────────────────────── */
/* ================================================================
   LANDING PAGE
   ================================================================ */

.landing-wrapper {
    padding: 24px 15px 60px;
}

/* ── Back link ────────────────────────────────────────────────── */
.landing-back {
    margin-bottom: 20px;
}

.landing-back a {
    font-size: 13px;
    color: #5d5fef;
    text-decoration: none;
    font-weight: 500;
}

.landing-back a:hover {
    text-decoration: underline;
}

/* ── Detail row ───────────────────────────────────────────────── */
.landing-detail-row {
    margin-bottom: 10px;
    align-items: flex-start;
}

/* ── Thumbnail ────────────────────────────────────────────────── */
.landing-thumb-wrap {
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    width: 100%;
}

.landing-thumb {
    width: 30rem;
    height: auto;
    display: block;
    border-radius: 10px;
}

.landing-thumb-placeholder {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f8;
    border-radius: 10px;
    color: #bbb;
    font-size: 48px;
}

/* ── Report meta + title ──────────────────────────────────────── */
.landing-meta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    color: #888;
    margin-bottom: 12px;
    margin-top: 4px;
}

.landing-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 14px;
}

.landing-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 22px;
}

/* ── Landing action buttons ───────────────────────────────────── */
.landing-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-btn-lg {
    padding: 10px 24px;
    font-size: 14px;
}

.share-btn-lg {
    width: 40px;
    height: 40px;
    font-size: 15px;
}

/* ── Divider ──────────────────────────────────────────────────── */
.landing-divider {
    margin: 36px 0;
    border-color: #eeeef8;
}

/* ── Contact section ──────────────────────────────────────────── */
.landing-contact-section {
    max-width: 860px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.contact-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 28px;
}

.contact-field label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 5px;
    display: block;
}

.contact-field .form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 6px 0;
    font-size: 13.5px;
    height: 38px;
    background: transparent;
    box-shadow: none;
    transition: border-color .2s;
}

.contact-field .form-control:focus {
    border-bottom-color: #5d5fef;
    box-shadow: none;
    background: transparent;
}

/* Mobile field on contact form */
.contact-field .mobile-wrap .country-code-select {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    background: transparent;
    height: 38px;
    padding: 0 4px;
    font-size: 13px;
    width: 72px;
    outline: none;
}

.contact-field .mobile-wrap .country-code-select:focus {
    border-bottom-color: #5d5fef;
}

/* reCAPTCHA */
.recaptcha-wrap {
    display: flex;
    justify-content: center;
    margin: 20px 0 8px;
}

/* Contact submit */
.contact-submit-btn {
    background: #5d5fef;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    min-width: 160px;
}

.contact-submit-btn:hover {
    background: #4345d4;
    color: #fff;
}

/* ── Landing responsive ───────────────────────────────────────── */
@media (max-width: 767px) {

    .landing-title {
        font-size: 18px;
        margin-top: 16px;
    }

    .landing-thumb-wrap {
        margin-bottom: 4px;
    }

}

/* ================================================================
   RESPONSIVE (shared)
   ================================================================ */
@media (max-width: 767px) {

    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        flex-direction: column;
    }

    .filter-select,
    .search-wrap input,
    .search-wrap {
        width: 100%;
        min-width: unset;
    }

    .search-wrap input:focus {
        width: 100%;
    }

    .card-img-wrap {
        height: 150px;
    }
}

/* ── Landing page responsive ────────────────────────────────── */
@media (max-width: 767px) {
    .landing-detail {
        flex-direction: column;
        gap: 20px;
    }

    .landing-thumb {
        width: 100%;
    }

    .landing-title {
        font-size: 18px;
    }

    .contact-heading {
        font-size: 20px;
    }
}

/* ── Share popover ────────────────────────────────────────────── */
.share-popover {
    position: fixed;   /* ← was this already? confirm this is set */
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e0e0f0;
    border-radius: 30px;
    padding: 8px 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}

.share-popover.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.share-popover a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    text-decoration: none;
    transition: background .15s, color .15s;
    color: #555;
}

.share-popover a:hover { background: #f0f0ff; color: #5d5fef; }
.share-popover a .fa-facebook:hover  { color: #1877f2; }
.share-popover a .fa-twitter:hover   { color: #1da1f2; }
.share-popover a .fa-whatsapp:hover  { color: #25d366; }
.share-popover a .fa-linkedin:hover  { color: #0a66c2; }
.share-popover a .fa-envelope:hover  { color: #ea4335; }