/* CSS Variables - Theme */
:root {
    --theme-primary: #1A509F;
    --theme-primary-hover: #154080;
    --theme-dark: #303030;
    --theme-dark-light: #3e3e3e;
    --theme-bg-light: #f5f5f5;
    --theme-text-light: #ffffff;
    --theme-text-dark: #333333;
    --theme-text-gray: #dddddd;
    --theme-text-dark-gray: #666666;
    --theme-border: #e0e0e0;
    --theme-accent: #50aeb3;
    --theme-accent-hover: #409499;
}

/* Animation Keyframes */
@keyframes reportsFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes reportsPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Scroll-reveal animation (FOUC-safe: only activates when JS adds body class) */
body.reports-animations-ready .reports-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--animation-delay, 0s);
}

body.reports-animations-ready .reports-animate.reports-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Single page hero/sidebar entrance animations (CSS-only, play on load) */
body.reports-animations-ready .report-grid-col-1-hero .report-inner {
    animation: reportsFadeInUp 0.7s ease-out both;
}

body.reports-animations-ready .report-grid-sidebar .report-inner {
    animation: reportsFadeInUp 0.7s ease-out 0.2s both;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Hide Sidebar, Page Title, and Reset Main padding */
#pxl-main,
.reports-no-sidebar #pxl-main {
    padding: 0 !important;
    background-color: #fff;
}

body.reports-no-sidebar #pxl-page-title-elementor,
body.reports-no-sidebar #secondary,
body.reports-no-sidebar .widget-area,
body.reports-no-sidebar #sidebar,
body.reports-no-sidebar .sidebar,
body.reports-no-sidebar aside {
    display: none !important;
}

body.reports-no-sidebar #primary,
body.reports-no-sidebar #content,
body.reports-no-sidebar .content-area,
body.reports-no-sidebar main {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

.reports-container * {
    box-sizing: border-box;
}

.reports-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: var(--theme-text-dark);
    line-height: 1.6;
}

/* Hero Section (Archive) */
.reports-hero-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
}

.reports-term-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--theme-text-dark);
}

.reports-term-title span {
    font-size: 16px;
    color: var(--theme-text-dark-gray);
    font-weight: normal;
}

/* Archive Wrapper */
.reports-archive-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Intro Text */
.reports-intro-text {
    margin: 0 auto 40px auto;
    text-align: center;
}

.reports-intro-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--theme-text-dark);
}

/* Category Filters - Horizontal Scrollable Slider */
.reports-category-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 8px;
    scroll-behavior: smooth;
    cursor: grab;
}

.reports-category-filters:active {
    cursor: grabbing;
}

.reports-category-filters::-webkit-scrollbar {
    height: 6px;
}

.reports-category-filters::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.reports-category-filters::-webkit-scrollbar-thumb {
    background: var(--theme-border);
    border-radius: 3px;
}

.reports-category-filters::-webkit-scrollbar-thumb:hover {
    background: #cccccc;
}

.category-filter-btn {
    display: inline-flex;
    padding: 8px 20px;
    background: #ffffff;
    border: 1px solid var(--theme-border);
    color: var(--theme-text-dark);
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    user-select: none;
}

.category-filter-btn:hover {
    background: var(--theme-bg-light);
    border-color: #cccccc;
    color: var(--theme-text-dark);
}

.category-filter-btn.active {
    background: var(--theme-text-dark);
    color: #ffffff;
    border-color: var(--theme-text-dark);
}

/* Header Row (Title + Search) */
.reports-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.reports-header-row .reports-term-title {
    margin-bottom: 0;
}

/* Filter Bar (Breadcrumbs + Search) */
.reports-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    background: var(--theme-bg-light);
    padding: 15px 20px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.reports-breadcrumbs {
    font-size: 14px;
    color: var(--theme-text-dark-gray);
    margin: 0;
}

.reports-breadcrumbs a {
    color: var(--theme-text-dark-gray);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.reports-breadcrumbs a:hover {
    color: var(--theme-primary);
}

/* Search Box */
.reports-search-box {
    margin: 0;
}

.reports-search-box form {
    display: inline-flex;
    position: relative;
    max-width: 100%;
    width: 100%;
}

.reports-search-box input[type="text"] {
    padding: 12px 20px;
    width: 300px;
    max-width: calc(100% - 80px);
    border: 1px solid var(--theme-border);
    border-radius: 4px;
    font-size: 16px;
    flex: 1;
}

.reports-search-box button {
    padding: 12px 25px;
    background: var(--theme-primary);
    color: var(--theme-text-light);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
    margin-left: -4px;
    transition: background 0.25s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.reports-search-box button:hover {
    background: var(--theme-primary-hover);
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (min-width: 992px) {
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Report Card styling (Dark Theme) */
.report-card {
    background: var(--theme-dark);
    color: var(--theme-text-light);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.report-card-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.report-card-image img,
.report-placeholder-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.report-card:hover .report-card-image img,
.report-card:hover .report-placeholder-image {
    transform: scale(1.05);
}

.report-placeholder-image {
    background: linear-gradient(135deg, #1e1e1e 0%, #3a3a3a 100%);
}

.report-card-category-ribbon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffffff;
    color: var(--theme-primary);
    padding: 6px 15px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: padding 0.3s ease, background 0.3s ease;
}

.report-card:hover .report-card-category-ribbon {
    padding: 6px 20px;
    background: var(--theme-bg-light);
}

.report-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.report-category-label {
    color: var(--theme-text-light);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.report-date {
    display: inline-block;
    color: var(--theme-text-gray);
    font-size: 13px;
    margin-bottom: 10px;
}

.report-title {
    margin: 0 0 15px 0;
    font-size: 22px;
    line-height: 1.3;
}

.report-title a {
    color: var(--theme-text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.report-title a:hover {
    color: var(--theme-primary);
}

.report-excerpt {
    color: var(--theme-text-gray);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.report-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.report-date-footer {
    color: var(--theme-text-gray);
    font-size: 13px;
    font-weight: 500;
}

.report-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme-text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.report-read-more-btn svg {
    transition: transform 0.3s ease;
}

.report-read-more-btn:hover {
    border-color: var(--theme-primary);
    color: var(--theme-text-light);
    background: var(--theme-primary);
}

.report-read-more-btn:hover svg {
    transform: translate(3px, -3px);
}

/* Pagination */
.reports-pagination {
    margin-top: 50px;
    text-align: center;
}

.reports-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #fff;
    border: 1px solid var(--theme-border);
    text-decoration: none;
    color: var(--theme-text-dark);
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.reports-pagination .page-numbers:hover {
    transform: translateY(-2px);
}

.reports-pagination .page-numbers:hover,
.reports-pagination .page-numbers.current {
    background: var(--theme-dark);
    color: var(--theme-text-light);
    border-color: var(--theme-dark);
}

/* Single Report Layout */
.reports-single-page-wrapper {
    display: grid;
    grid-template-columns: 65% 35%;
    grid-template-rows: auto 1fr;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: var(--theme-text-dark);
    line-height: 1.6;
}

.reports-single-page-wrapper * {
    box-sizing: border-box;
}

.report-grid-col-1-hero {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    color: var(--theme-text-light);
    display: flex;
    justify-content: flex-end;
    padding-top: 100px;
    padding-bottom: 60px;
    padding-inline-end: 80px;
    padding-inline-start: 20px;
    z-index: 2;
    position: relative;
}

.report-grid-col-1-hero .report-inner {
    width: 100%;
    max-width: 800px;
}

.report-single-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 70px 0 20px 0;
    text-transform: capitalize;
    color: #fff;
    font-weight: 800;
}

.report-single-meta {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.report-single-meta a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.report-single-meta a:hover {
    text-decoration: underline;
}

.report-hero-image-stack img,
.report-placeholder-image-large {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); */
    margin-top: 20px;
    background-color: transparent;

}

.report-placeholder-image-large {
    height: 350px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    border-radius: 6px;
}

.report-grid-col-2-bg {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    background: linear-gradient(135deg, #1a509fa8 0%, #1a509f 40%, #569f5f 100%);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.report-grid-sidebar {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    display: flex;
    justify-content: flex-start;
    padding-top: 300px;
    padding-bottom: 60px;
    /* padding-inline-start: 80px; */
    padding-inline-end: 20px;
    z-index: 10;
}

.report-grid-sidebar .report-inner {
    width: 100%;
    max-width: 500px;
}

.report-sticky-form {
    position: sticky;
    top: 160px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select,
.pxl-select-higthlight,
.nice-select {
    height: 50px;
}

.report-form-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px 20px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border: 1px solid var(--theme-border);
}

.report-form-box h3 {
    text-align: center;
    color: var(--theme-text-dark);
    font-size: 18px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.report-form-box h3 span {
    color: var(--theme-primary);
}

.report-download-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row {
    display: flex;
    gap: 8px;
}

.form-group {
    width: 100%;
}

.form-group.half {
    flex: 1;
}

.report-download-form input[type="text"],
.report-download-form input[type="email"],
.report-download-form input[type="tel"],
.report-download-form select {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px;
    background: #ffffff;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.report-download-form input:focus,
.report-download-form select:focus {
    outline: none;
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(26, 80, 159, 0.15);
}

.form-checkbox {
    margin: 5px 0;
}

.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
}

/* reCAPTCHA Styles */
.form-recaptcha {
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

.form-recaptcha.has-error {
    margin-bottom: 5px;
}

.form-recaptcha .recaptcha-error {
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

@media (max-width: 480px) {
    .form-recaptcha {
        justify-content: center;
    }
    
    .form-recaptcha > div {
        transform: scale(0.9);
        transform-origin: center;
    }
}

.form-submit-row {
    text-align: center;
    margin-top: 2px;
}

.report-submit-btn {
    background: var(--theme-primary);
    color: #ffffff;
    border: none;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
}

.report-submit-btn:hover {
    background: var(--theme-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 80, 159, 0.3);
}

.report-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(26, 80, 159, 0.2);
}

.form-disclaimer {
    font-size: 10px;
    color: #888;
    text-align: center;
    margin-top: 10px;
    line-height: 1.3;
}

.field-error {
    color: #d63638;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.report-download-error {
    background: #fee;
    color: #d63638;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.report-grid-col-1-body {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background: #ffffff;
    display: flex;
    justify-content: flex-end;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-inline-end: 80px;
    padding-inline-start: 20px;
}

.report-grid-col-1-body .report-inner {
    width: 100%;
    max-width: 800px;
}

.report-single-abstract-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.report-single-abstract-content p {
    margin-bottom: 20px;
}

.report-single-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--theme-border);
}

.report-tags {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.report-single-tags a {
    color: var(--theme-primary);
    text-decoration: none;
    margin-left: 5px;
}

.report-single-tags a:hover {
    text-decoration: underline;
}

/* Submission success state */
.report-form-success {
    text-align: center;
}

.report-form-success .dashicons-yes-alt {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: var(--theme-primary);
    margin-bottom: 20px;
    animation: reportsPulse 0.6s ease-in-out;
}

.report-form-success h3 {
    margin-bottom: 10px;
    color: var(--theme-text-dark);
}

.report-form-success p {
    color: #666;
    margin-bottom: 30px;
}

.report-download-btn {
    background: var(--theme-primary);
    color: var(--theme-text-light);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    transition: background 0.3s;
}

.report-download-btn:hover {
    background: var(--theme-primary-hover);
}

.report-email-note {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

.report-resend-btn {
    background: transparent;
    color: var(--theme-primary);
    border: 2px solid var(--theme-primary);
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.report-resend-btn:hover:not(:disabled) {
    background: var(--theme-primary);
    color: var(--theme-text-light);
}

.report-resend-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.report-resend-btn.sent {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
    opacity: 1;
    cursor: default;
}

/* Vertical stacking for screens between 1000px and 1200px */
@media (min-width: 1000px) and (max-width: 1200px) {
    .reports-single-page-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }

    .report-grid-col-1-hero {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        justify-content: center;
        padding-inline-end: 20px;
        padding-inline-start: 20px;
    }

    .report-grid-col-2-bg {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        position: relative;
        min-height: 400px;
    }

    .report-grid-sidebar {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        justify-content: center;
        padding-top: 60px;
        padding-inline-end: 20px;
        padding-inline-start: 20px;
    }

    .report-grid-col-1-body {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        justify-content: center;
        padding-inline-end: 20px;
        padding-inline-start: 20px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {

    .reports-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .reports-single-page-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        position: relative;
    }

    .report-grid-col-1-hero {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        justify-content: center;
        padding-inline-end: 20px;
        padding-inline-start: 20px;
        position: relative;
        z-index: 2;
    }

    .report-grid-col-2-bg {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .report-grid-sidebar {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        justify-content: center;
        padding-inline-start: 20px;
        padding-inline-end: 20px;
        position: relative;
        z-index: 2;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .report-grid-col-1-body {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        justify-content: center;
        padding-inline-end: 20px;
        padding-inline-start: 20px;
        position: relative;
        z-index: 2;
    }

    .report-sticky-form {
        position: static;
    }
}

@media (max-width: 768px) {
    .reports-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .reports-search-box input[type="text"] {
        width: 100%;
        max-width: none;
    }

    .reports-search-box form {
        width: 100%;
    }

    .reports-category-filters {
        margin-bottom: 30px;
        padding-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .reports-archive-wrapper {
        padding: 0 15px;
    }

    .reports-search-box button {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* Custom Research CTA Banner */
.reports-custom-research-cta {
    background: linear-gradient(135deg, #1a509fa8 0%, #1a509f 40%, #569f5f 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    border-top: 3px solid #3F51B5;
    position: relative;
    overflow: hidden;
}

.reports-custom-research-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 184, 75, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.reports-custom-research-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
    text-align: left;
}

@media (max-width: 991px) {
    .reports-custom-research-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

.reports-custom-research-inner h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #fff;
    position: relative;
    line-height: 1.2;
}

.reports-custom-research-inner p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Form 7 Styles */
.reports-contact-form .row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.reports-contact-form .input-filled {
    padding: 10px;
}

.reports-contact-form .col-xl-6,
.reports-contact-form .col-lg-6,
.reports-contact-form .col-md-6,
.reports-contact-form .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 10px;
    box-sizing: border-box;
}

.reports-contact-form .col-xl-12,
.reports-contact-form .col-md-12,
.reports-contact-form .col-sm-12,
.reports-contact-form .col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.reports-contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.reports-contact-form input[type="text"],
.reports-contact-form input[type="email"],
.reports-contact-form input[type="tel"],
.reports-contact-form select,
.reports-contact-form textarea {
    width: 100%;
    padding: 16px 24px;
    border-radius: 30px;
    border: none;
    background: #ffffff;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.reports-contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.reports-contact-form .pxl-select-higthlight {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0 24px;
    border-radius: 30px;
    border: none;
    background: #ffffff;
    font-size: 14px;
    color: #444;
    cursor: pointer;
}

.reports-contact-form .pxl-select {
    position: relative;
    width: 100%;
}

.reports-contact-form .pxl-select::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
}

.reports-contact-form .pxl-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    margin-top: 5px;
}

.reports-contact-form textarea {
    border-radius: 20px;
    resize: none;
    min-height: 140px;
    padding: 20px 24px;
}

.reports-contact-form .wpcf7-submit {
    background: #1a509f;
    color: #ffffff;
    border: none;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.reports-contact-form .wpcf7-submit svg path {
    fill: #ffffff !important;
}

.reports-contact-form .wpcf7-submit:hover {
    background: #143e7c;
}
@media (max-width:1200px) {
    #pxl-header-elementor #pxl-header-mobile{
        background-color: #fff;
    }
}
/* Responsive Contact Form */
@media (max-width: 991px) {
    .reports-custom-research-inner {
        padding: 0 20px;
    }

    .reports-contact-form .col-xl-6,
    .reports-contact-form .col-lg-6,
    .reports-contact-form .col-md-6,
    .reports-contact-form .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .reports-contact-form input[type="text"],
    .reports-contact-form input[type="email"],
    .reports-contact-form input[type="tel"],
    .reports-contact-form select,
    .reports-contact-form textarea {
        padding: 14px 20px;
        font-size: 15px;
    }

    .reports-contact-form .wpcf7-submit {
        padding: 14px 28px;
    }
}

@media (max-width: 767px) {
    .reports-custom-research-cta {
        padding: 60px 15px;
    }

    .reports-custom-research-inner {
        padding: 0 15px;
    }

    .reports-custom-research-inner h2 {
        font-size: 32px;
    }

    .reports-custom-research-inner p {
        font-size: 15px;
    }

    .reports-contact-form .row {
        margin: 0;
    }

    .reports-contact-form .input-filled {
        padding: 8px 0;
    }

    .reports-contact-form .col-xl-6,
    .reports-contact-form .col-lg-6,
    .reports-contact-form .col-md-6,
    .reports-contact-form .col-sm-6,
    .reports-contact-form .col-xl-12,
    .reports-contact-form .col-md-12,
    .reports-contact-form .col-sm-12,
    .reports-contact-form .col-xs-12 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 8px 0;
    }

    .reports-contact-form input[type="text"],
    .reports-contact-form input[type="email"],
    .reports-contact-form input[type="tel"],
    .reports-contact-form select,
    .reports-contact-form textarea {
        padding: 12px 18px;
        font-size: 14px;
    }

    .reports-contact-form textarea {
        min-height: 120px;
    }

    .reports-contact-form .wpcf7-submit {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .reports-custom-research-cta {
        padding: 40px 15px;
    }

    .reports-custom-research-inner h2 {
        font-size: 26px;
    }

    .reports-custom-research-inner p {
        font-size: 14px;
    }

    .reports-contact-form input[type="text"],
    .reports-contact-form input[type="email"],
    .reports-contact-form input[type="tel"],
    .reports-contact-form select,
    .reports-contact-form textarea {
        padding: 11px 16px;
        font-size: 13px;
    }

    .reports-contact-form .wpcf7-submit {
        padding: 12px 20px;
        font-size: 14px;
    }
}
