/* public/css/header.css - Pixel Perfect Match */

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:
        "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

/* ========================================
   HEADER MAIN
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-main {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

/* ========================================
   TOP SECTION
   ======================================== */
.header-top-section {
    background: #ffffff;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.header-flex-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 16px;
}

/* ========================================
   LOGO
   ======================================== */
.header-logo-section {
    flex-shrink: 0;
}

.site-logo {
    height: 62px;
    width: auto;
    display: block;
}

@media (min-width: 1024px) {
    .site-logo {
        height: 74px;
    }
}

/* ========================================
   SEARCH BAR - DESKTOP
   ======================================== */
.header-search-section {
    display: none;
    flex: 1;
    max-width: 672px;
    margin: 0 16px;
}

@media (min-width: 768px) {
    .header-search-section {
        display: flex;
    }
}

.search-form-wrapper {
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.main-search-input {
    width: 100%;
    padding: 10px 48px 10px 20px;
    border: none;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    font-size: 16px;
    line-height: 1.5;
    color: #1f2937;
    outline: none;
    transition: box-shadow 0.15s ease;
}

.main-search-input::placeholder {
    color: #9ca3af;
}

.main-search-input:focus {
    box-shadow:
        0 4px 14px 0 rgba(0, 0, 0, 0.1),
        0 0 0 2px rgba(255, 255, 255, 0.5);
}

.main-search-button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: #45a049;
    border: none;
    border-radius: 6px;
    padding: 6px 16px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(69, 160, 73, 0.4);
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-search-button:hover {
    background: #3d8f41;
    box-shadow: 0 4px 12px rgba(69, 160, 73, 0.5);
}

.search-icon {
    width: 16px;
    height: 16px;
}

/* ========================================
   SEARCH BAR - MOBILE
   ======================================== */
.mobile-search-section {
    display: block;
    padding-bottom: 12px;
}

@media (min-width: 768px) {
    .mobile-search-section {
        display: none;
    }
}

.mobile-search-input {
    width: 100%;
    padding: 10px 48px 10px 16px;
    border: none;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 1.5;
    color: #1f2937;
    outline: none;
    transition: box-shadow 0.15s ease;
}

.mobile-search-input::placeholder {
    color: #9ca3af;
}

.mobile-search-input:focus {
    box-shadow:
        0 4px 14px 0 rgba(0, 0, 0, 0.1),
        0 0 0 2px rgba(255, 255, 255, 0.5);
}

.mobile-search-button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: #45a049;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(69, 160, 73, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   HEADER ACTIONS
   ======================================== */
.header-actions-section {
    display: none;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .header-actions-section {
        display: flex;
    }
}

.action-link {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.15s ease;
}

.action-link:hover {
    color: #1e5a96;
}

.action-divider {
    width: 1px;
    height: 16px;
    background: rgba(0, 0, 0, 0.3);
}

.action-link-signin {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    background: transparent;
    transition: background-color 0.15s ease;
}

.action-link-signin:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.action-btn-primary {
    background: #45a049;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 14px 0 rgba(69, 160, 73, 0.4);
    transition: all 0.15s ease;
    white-space: nowrap;
}

.action-btn-primary:hover {
    background: #3d8f41;
    box-shadow: 0 6px 20px rgba(69, 160, 73, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

/* ========================================
   MOBILE MENU BUTTON
   ======================================== */
.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

@media (min-width: 1024px) {
    .mobile-menu-button {
        display: none;
    }
}

.mobile-menu-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-open-icon {
    display: block;
}

.menu-close-icon {
    display: none;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.header-nav-section {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

/* ========================================
   DESKTOP NAVIGATION
   ======================================== */
.desktop-navigation {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 0;
}

@media (min-width: 1024px) {
    .desktop-navigation {
        display: flex;
    }
}

.nav-link-item {
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.nav-link-item:hover {
    color: #1e5a96;
    background: #eff6ff;
}

.nav-link-item.active {
    color: #1e5a96;
    background: #eff6ff;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.chevron-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */
.mobile-menu-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu-collapse.open {
    max-height: 800px;
}

.mobile-nav-wrapper {
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
}

@media (min-width: 1024px) {
    .mobile-menu-collapse {
        display: none !important;
    }
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.mobile-nav-link {
    color: #374151;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 16px;
    border-radius: 4px;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-link:hover {
    color: #1e5a96;
    background: #eff6ff;
}

.mobile-nav-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========================================
   MOBILE ACTIONS
   ======================================== */
.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
}

.mobile-action-help {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.15s ease;
}

.mobile-action-help:hover {
    color: #1e5a96;
}

.mobile-action-signin {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #374151;
    background: transparent;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.mobile-action-signin:hover {
    background: #eff6ff;
    color: #374151;
}

.mobile-action-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #45a049;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 6px;
    box-shadow: 0 4px 14px 0 rgba(69, 160, 73, 0.4);
    transition: all 0.15s ease;
}

.mobile-action-primary:hover {
    background: #3d8f41;
    color: #ffffff;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 767px) {
    .header-flex-wrapper {
        gap: 12px;
    }

    .site-logo {
        height: 50px;
    }
}

@media (max-width: 1023px) {
    .header-container {
        padding: 0 16px;
    }
}

/* public/css/home.css */

/* ========================================
   GLOBAL STYLES
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    /* background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%); */
    background: url("../../../assets/images/home-bg.jpg") center / cover
        no-repeat;
    padding: 48px 0;
}

@media (min-width: 640px) {
    .hero-section {
        padding: 64px 0;
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
}

.hero-content {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 32px;
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #44474e;
    margin-bottom: 24px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 18px;
        margin-bottom: 32px;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 20px;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        gap: 16px;
    }
}

.btn-hero-primary {
    background: #45a049;
    color: #ffffff;
    padding: 20px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 6px 20px 0 rgba(69, 160, 73, 0.4);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    background: #3d8f41;
    box-shadow: 0 8px 25px rgba(69, 160, 73, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-hero-secondary {
    background: transparent;
    color: #1e5a96;
    padding: 16px 32px;
    border: 2px solid #1e5a96;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 14px 0 rgba(30, 90, 150, 0.2);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-hero-secondary:hover {
    background: #eff6ff;
    box-shadow: 0 6px 20px rgba(30, 90, 150, 0.3);
    transform: translateY(-2px);
    /* color: #000000; */
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background: #ffffff;
    padding: 48px 0;
}

@media (min-width: 640px) {
    .stats-section {
        padding: 32px 0;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    /* font-weight: 700; */
    color: #1e5a96;
    margin-bottom: 8px;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 40px;
    }
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 48px;
    }
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 16px;
    }
}

/* ========================================
   COMMON SECTION STYLES
   ======================================== */
.industries-section,
.featured-reports-section,
.trending-news-section,
.trending-news-section-blog {
    padding: 48px 0;
}

@media (min-width: 640px) {
    .industries-section,
    .featured-reports-section,
    .trending-news-section,
    .trending-news-section-blog {
        padding: 32px 0;
    }
}

.industries-section {
    background: #f9fafb;
}

.featured-reports-section {
    background: #ffffff;
}

.trending-news-section {
    background: #f9fafb;
}

.trending-news-section-blog {
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 48px;
    }
}

.section-title {
    font-size: 24px;
    font-weight: 400;
    color: #111827;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 30px;
        margin-bottom: 16px;
    }
}

.section-description {
    font-size: 14px;
    color: #6b7280;
    max-width: 672px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .section-description {
        font-size: 16px;
    }
}

/* ========================================
   INDUSTRIES SECTION
   ======================================== */
.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 32px;
    }
}

@media (min-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.industry-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.industry-image {
    height: 160px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .industry-image {
        height: 192px;
    }
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.05);
}

.industry-content {
    padding: 16px;
}

@media (min-width: 640px) {
    .industry-content {
        padding: 24px;
    }
}

.industry-title {
    font-size: 18px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 8px;
}

@media (min-width: 640px) {
    .industry-title {
        font-size: 20px;
    }
}

.industry-reports {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .industry-reports {
        font-size: 16px;
        margin-bottom: 16px;
    }
}

.industry-link {
    color: #45a049;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

@media (min-width: 640px) {
    .industry-link {
        font-size: 16px;
    }
}

.industry-card:hover .industry-link {
    gap: 12px;
}

.industry-link svg {
    width: 16px;
    height: 16px;
}

.section-cta {
    text-align: center;
    margin-top: 24px;
}

@media (min-width: 640px) {
    .section-cta {
        margin-top: 32px;
    }
}

.btn-secondary {
    background: transparent;
    color: #1e5a96;
    padding: 12px 24px;
    border: 2px solid #1e5a96;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 14px 0 rgba(30, 90, 150, 0.2);
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #eff6ff;
    box-shadow: 0 6px 20px rgba(30, 90, 150, 0.3);
    transform: translateY(-2px);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: #ffffff;
    padding: 48px 0;
}

@media (min-width: 640px) {
    .cta-section {
        padding: 64px 0;
    }
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

.cta-title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 30px;
        margin-bottom: 24px;
    }
}

.cta-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .cta-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

.cta-benefits {
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .cta-benefits {
        margin-bottom: 32px;
    }
}

.benefit-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .benefit-item {
        margin-bottom: 16px;
    }
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: #45a049;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (min-width: 640px) {
    .benefit-icon {
        width: 24px;
        height: 24px;
    }
}

.benefit-item p {
    font-size: 14px;
    color: #374151;
    margin: 0;
}

@media (min-width: 640px) {
    .benefit-item p {
        font-size: 16px;
    }
}

.btn-primary {
    background: #45a049;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 6px 20px 0 rgba(69, 160, 73, 0.4);
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #3d8f41;
    box-shadow: 0 8px 25px rgba(69, 160, 73, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

@media (max-width: 768px) {
    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

.cta-image {
    order: -1;
}

@media (min-width: 1024px) {
    .cta-image {
        order: 0;
    }
}

.cta-image img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 640px) {
    .cta-image img {
        height: 320px;
    }
}

@media (min-width: 1024px) {
    .cta-image img {
        height: 384px;
    }
}

/* ========================================
   FEATURED REPORTS SECTION
   ======================================== */
.section-header-flex {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .section-header-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 48px;
    }
}

.reports-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.report-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.report-card:hover {
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 2px solid #45a049;
    background-color: #eff6ff;
}

.report-icon {
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .report-icon {
        height: 160px;
    }
}

.report-icon.bg-red {
    background: #dc2626;
}

.report-icon.bg-blue {
    background: #2563eb;
}

.report-icon.bg-purple {
    background: #9333ea;
}

.report-icon svg {
    color: rgba(255, 255, 255, 0.8);
}

.report-content {
    padding: 16px;
}

@media (min-width: 640px) {
    .report-content {
        padding: 24px;
    }
}

.report-category {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

@media (min-width: 640px) {
    .report-category {
        font-size: 14px;
    }
}

.report-title {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 12px;
    min-height: 48px;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .report-title {
        font-size: 18px;
        margin-bottom: 16px;
        min-height: 56px;
    }
}

.report-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
}

@media (min-width: 640px) {
    .meta-item {
        font-size: 14px;
    }
}

.meta-item svg {
    width: 12px;
    height: 12px;
}

@media (min-width: 640px) {
    .meta-item svg {
        width: 16px;
        height: 16px;
    }
}

.report-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.report-price {
    font-size: 18px;
    font-weight: 600;
    color: #1e5a96;
}

.btn-buy {
    background: #45a049;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 14px 0 rgba(69, 160, 73, 0.35);
    transition: all 0.2s ease;
}

@media (min-width: 640px) {
    .btn-buy {
        font-size: 16px;
    }
}

.btn-buy:hover {
    background: #3d8f41;
    box-shadow: 0 6px 20px rgba(69, 160, 73, 0.45);
    transform: translateY(-2px);
    color: #ffffff;
}

/* ========================================
   TRENDING NEWS SECTION
   ======================================== */
.news-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
}

.section-title-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #45a049;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
}

@media (min-width: 640px) {
    .news-header {
        margin-bottom: 48px;
    }
}

.trending-icon {
    width: 32px;
    height: 32px;
    color: #fff;
    flex-shrink: 0;
}

.section-title-white {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

body
    > section.trending-news-section
    > div
    > div.news-grid
    > article
    > div.news-content
    > h3
    > a,
body
    > section.trending-news-section-blog
    > div
    > div.news-grid
    > article
    > div.news-content
    > h3
    > a {
    color: #111827;
    text-decoration: none;
}

body
    > section.trending-news-section
    > div
    > div.news-grid
    > article
    > div.news-content
    > h3
    > a:hover,
body
    > section.trending-news-section-blog
    > div
    > div.news-grid
    > article
    > div.news-content
    > h3
    > a:hover {
    color: #1e5a96;
}

@media (min-width: 640px) {
    .section-title-white {
        font-size: 30px;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.news-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.news-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.badge {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-trending {
    background: #45a049;
    color: #ffffff;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.badge-trending svg {
    width: 12px;
    height: 12px;
}

.badge-category {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #111827;
}

.news-content {
    padding: 16px;
}

@media (min-width: 640px) {
    .news-content {
        padding: 20px;
    }
}

.news-title {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 12px;
    min-height: 48px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

@media (min-width: 640px) {
    .news-title {
        font-size: 18px;
    }
}

.news-card:hover .news-title {
    color: #1e5a96;
}

.news-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
}

@media (min-width: 640px) {
    .news-time {
        font-size: 14px;
    }
}

.news-time svg {
    width: 14px;
    height: 14px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    background: linear-gradient(to right, #1e5a96, #45a049);
    color: #ffffff;
    padding: 48px 0;
}

@media (min-width: 640px) {
    .testimonials-section {
        padding: 32px 0;
    }
}

.testimonials-header {
    text-align: center;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .testimonials-header {
        margin-bottom: 32px;
    }
}

.testimonials-badge {
    display: inline-block;
    font-size: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .testimonials-badge {
        font-size: 14px;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 24px;
}

@media (min-width: 640px) {
    .testimonial-card {
        padding: 32px;
    }
}

.quote-icon {
    width: 32px;
    height: 32px;
    opacity: 0.5;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .quote-icon {
        width: 40px;
        height: 40px;
    }
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .testimonial-text {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 16px;
}

.author-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

@media (min-width: 640px) {
    .author-name {
        font-size: 16px;
    }
}

.author-title {
    font-size: 12px;
    opacity: 0.75;
}

@media (min-width: 640px) {
    .author-title {
        font-size: 14px;
    }
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
@media (max-width: 639px) {
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }

    .btn-secondary {
        width: 100%;
    }
}

/* public/css/footer.css */

/* ========================================
   FOOTER MAIN
   ======================================== */
.footer-main {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 40px 32px;
}

/* ========================================
   FOOTER CONTENT - DESKTOP LAYOUT
   ======================================== */
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 320px 1fr;
        /* gap: 80px; */
        align-items: start;
    }
}

/* ========================================
   BRAND SECTION
   ======================================== */
.footer-brand-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    /* height: 90px; */
    width: 55%;
    margin-bottom: 16px;
}

.footer-tagline {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}

/* ========================================
   SOCIAL LINKS
   ======================================== */
.footer-social-links {
    display: flex;
    gap: 16px;
}

.footer-social-links a {
    text-decoration: none;
}

.social-icon {
    color: #6b7280;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon i {
    font-size: 20px;
}

.social-icon[aria-label="Facebook"] i {
    color: #1877f2;
}
.social-icon[aria-label="Twitter"] i {
    color: #1da1f2;
}
.social-icon[aria-label="LinkedIn"] i {
    color: #0077b5;
}
.social-icon[aria-label="Instagram"] i {
    color: #e4405f;
}
.social-icon[aria-label="YouTube"] i {
    color: #ff0000;
}
.social-icon[aria-label="Pinterest"] i {
    color: #bd081c;
}

.social-icon:hover {
    color: #1e5a96;
}

.social-icon:hover {
    color: #1e5a96;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   LINKS WRAPPER - DESKTOP HORIZONTAL
   ======================================== */
.footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .footer-links-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-links-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
    }
}

/* ========================================
   LINKS COLUMNS
   ======================================== */
.footer-links-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    color: #494a4c;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-nav-link:hover {
    color: #092c64;
}

/* Contact Information Column */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.footer-contact-link i {
    color: #1e5a96;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
}

.footer-contact-link span {
    flex: 1;
}

/* Ensure consistent spacing with other columns */
.footer-links-column:last-child {
    min-width: 280px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-links-column:last-child {
        min-width: auto;
    }
}

@media (max-width: 767px) {
    .footer-contact-list {
        gap: 12px;
    }

    .footer-contact-link {
        gap: 10px;
        font-size: 14px;
    }

    .footer-contact-link i {
        font-size: 14px;
    }
}

/* ========================================
   COPYRIGHT SECTION
   ======================================== */
.footer-copyright-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 32px;
    text-align: center;
}

.footer-copyright-text {
    color: #494a4c;
    font-size: 14px;
    margin: 0;
}

/* ========================================
   MOBILE OPTIMIZATIONS
   ======================================== */
@media (max-width: 639px) {
    .footer-container {
        padding: 32px 16px 24px;
    }

    .footer-content {
        gap: 24px;
        margin-bottom: 32px;
        text-align: center;
    }

    .footer-brand-section {
        align-items: center;
    }

    .footer-logo {
        height: 60px;
        width: auto;
        margin-bottom: 12px;
    }

    .footer-tagline {
        font-size: 12px;
        margin-bottom: 16px;
        text-align: center;
    }

    .footer-social-links {
        gap: 12px;
        justify-content: center;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }

    .footer-links-wrapper {
        gap: 24px;
    }

    .footer-links-column {
        align-items: center;
    }

    .footer-column-title {
        font-size: 14px;
        margin-bottom: 12px;
        text-align: center;
    }

    .footer-nav-list {
        gap: 8px;
        align-items: center;
    }

    .footer-nav-link {
        font-size: 12px;
        text-align: center;
    }

    .footer-copyright-section {
        padding-top: 24px;
    }

    .footer-copyright-text {
        font-size: 12px;
        text-align: center;
    }
}

/* ========================================
   TABLET ADJUSTMENTS
   ======================================== */
@media (min-width: 640px) and (max-width: 1023px) {
    .footer-container {
        padding: 40px 24px 28px;
    }

    .footer-content {
        margin-bottom: 36px;
    }

    .footer-links-wrapper {
        gap: 40px;
    }
}

/* ========================================
   BREADCRUMB SECTION
   ======================================== */
/* Custom Breadcrumb CSS */
.breadcrumbs-custom {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e8ecef;
    padding: 16px 0;
    margin-bottom: 0;
}

.breadcrumb-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-custom a {
    color: #1e5a96;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.breadcrumb-custom a:hover {
    color: #45a049;
}

.breadcrumb-custom .separator {
    color: #6c757d;
    font-weight: 400;
    user-select: none;
}

.breadcrumb-custom .current {
    color: #212529;
    font-weight: 600;
}
/* ========================================
   POLICY HERO SECTION
   ======================================== */
.policy-hero {
    background: linear-gradient(to right, #1e5a96, #45a049);
    padding: 40px 0;
    color: #ffffff;
}

.policy-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .policy-hero-container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .policy-hero-container {
        padding: 0 32px;
    }
}

.policy-hero-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.policy-icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 16px;
    flex-shrink: 0;
}

.policy-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.policy-header {
    flex: 1;
}

.policy-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .policy-title {
        font-size: 36px;
    }
}

.policy-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

@media (min-width: 640px) {
    .policy-description {
        font-size: 18px;
    }
}

.policy-updated {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    margin-bottom: 0;
}

/* ========================================
   POLICY CONTENT SECTION
   ======================================== */
.policy-content-section {
    flex: 1;
    background: #f9fafb;
    padding: 48px 0;
}

.policy-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .policy-content-container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .policy-content-container {
        padding: 0 32px;
    }
}

.policy-content-wrapper {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 32px;
}

@media (min-width: 768px) {
    .policy-content-wrapper {
        padding: 48px;
    }
}

/* ========================================
   POLICY SECTIONS
   ======================================== */
.policy-sections {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.policy-section {
    margin-bottom: 0;
}

.section-heading {
    font-size: 18px;
    font-weight: 600;
    color: #1e5a96;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .section-heading {
        font-size: 20px;
    }
}

.subsection-heading {
    font-size: 16px;
    font-weight: 600;
    color: #1e5a96;
    margin-top: 16px;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .subsection-heading {
        font-size: 17px;
    }
}

.section-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(17, 24, 39, 0.8);
    margin-bottom: 16px;
}

.section-text:last-child {
    margin-bottom: 0;
}

.section-text-small {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(17, 24, 39, 0.8);
    margin-bottom: 12px;
}

/* ========================================
   POLICY LISTS
   ======================================== */
.policy-list {
    list-style-type: disc;
    padding-left: 24px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-list li {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(17, 24, 39, 0.8);
}

.policy-list-small {
    list-style-type: disc;
    padding-left: 24px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-list-small li {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(17, 24, 39, 0.8);
}

/* ========================================
   HIGHLIGHT BOX
   ======================================== */
.policy-highlight-box {
    background: rgba(30, 90, 150, 0.05);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 16px;
}

/* ========================================
   PAYMENT GRID
   ======================================== */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.payment-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
}

.payment-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e5a96;
    margin-bottom: 8px;
}

.payment-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(17, 24, 39, 0.8);
    margin-bottom: 0;
}

/* ========================================
   LIABILITY NOTICE
   ======================================== */
.liability-notice {
    background: rgba(249, 250, 251, 0.5);
    border-left: 4px solid #1e5a96;
    border-radius: 4px;
    padding: 24px;
}

.liability-notice .section-text {
    margin-bottom: 16px;
}

.liability-notice .section-text:last-child {
    margin-bottom: 0;
}

/* ========================================
   CONTACT BOX
   ======================================== */
.contact-box {
    background: rgba(30, 90, 150, 0.03);
    border-radius: 8px;
    padding: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e5a96;
    margin-bottom: 8px;
}

.contact-link {
    font-size: 15px;
    color: rgba(17, 24, 39, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #45a049;
    transform: translateY(-2px);
}

.contact-address {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(17, 24, 39, 0.8);
    margin-bottom: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.contact-address:hover {
    color: #45a049;
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 639px) {
    .policy-hero {
        padding: 48px 0;
    }

    .policy-hero-content {
        flex-direction: column;
    }

    .policy-icon-wrapper {
        align-self: flex-start;
    }

    .policy-content-wrapper {
        padding: 24px;
    }

    .policy-sections {
        gap: 24px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .policy-hero {
        background: #1e5a96;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .contact-link:hover,
    .contact-address:hover {
        transform: none;
    }
}

/* ========================================
   CONTACT PAGE - HERO SECTION
   ======================================== */
.contact-hero {
    position: relative;
    background: linear-gradient(to right, #1e5a96, #45a049);
    overflow: hidden;
}

.contact-hero .hero-decorations {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.contact-hero .hero-blob {
    position: absolute;
    background: white;
    border-radius: 50%;
    filter: blur(80px);
}

.contact-hero .hero-blob-1 {
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
}

.contact-hero .hero-blob-2 {
    top: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
}

.contact-hero .hero-content {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 96px 16px;
}

@media (min-width: 768px) {
    .contact-hero .hero-content {
        padding: 40px 16px;
    }
}

.contact-hero .hero-text {
    text-align: center;
}

.contact-hero .hero-title {
    color: white;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .contact-hero .hero-title {
        font-size: 42px;
    }
}

@media (min-width: 768px) {
    .contact-hero .hero-title {
        font-size: 36px;
    }
}

.contact-hero .hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    max-width: 768px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-hero .hero-description {
        font-size: 20px;
    }
}

.contact-hero .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.contact-hero .hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ========================================
   CONTACT PAGE - CONTENT SECTION
   ======================================== */
.contact-content-section {
    padding: 80px 0 40px 0;
}

.contact-content-section .contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.contact-content-section .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .contact-content-section .contact-grid {
        grid-template-columns: 2fr 3fr;
    }
}

/* ========================================
   CONTACT PAGE - INFO COLUMN
   ======================================== */
.contact-content-section .contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-content-section .contact-info-header {
    margin-bottom: 0;
}

.contact-content-section .info-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e5fa8;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .contact-content-section .info-title {
        font-size: 32px;
    }
}

.contact-content-section .info-description {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .contact-content-section .info-description {
        font-size: 18px;
    }
}

/* ========================================
   CONTACT PAGE - CONTACT CARDS
   ======================================== */
.contact-content-section .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-content-section .contact-card {
    border: 2px solid;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.contact-content-section .contact-card.card-email {
    background: linear-gradient(
        135deg,
        rgba(76, 175, 80, 0.05) 0%,
        rgba(76, 175, 80, 0.1) 100%
    );
    border-color: rgba(76, 175, 80, 0.2);
}

.contact-content-section .contact-card.card-email:hover {
    border-color: #4caf50;
}

.contact-content-section .contact-card.card-phone {
    background: linear-gradient(
        135deg,
        rgba(30, 95, 168, 0.05) 0%,
        rgba(30, 95, 168, 0.1) 100%
    );
    border-color: rgba(30, 95, 168, 0.2);
}

.contact-content-section .contact-card.card-phone:hover {
    border-color: #1e5fa8;
}

.contact-content-section .contact-card.card-address {
    background: linear-gradient(
        135deg,
        rgba(76, 175, 80, 0.05) 0%,
        rgba(30, 95, 168, 0.1) 100%
    );
    border-color: rgba(76, 175, 80, 0.2);
}

.contact-content-section .contact-card.card-address:hover {
    border-color: #4caf50;
}

.contact-content-section .contact-card.card-hours {
    background: linear-gradient(
        135deg,
        rgba(30, 95, 168, 0.05) 0%,
        rgba(30, 95, 168, 0.1) 100%
    );
    border-color: rgba(30, 95, 168, 0.2);
}

.contact-content-section .contact-card.card-hours:hover {
    border-color: #1e5fa8;
}

.contact-content-section .card-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-content-section .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: white;
}

.contact-content-section .contact-card:hover .card-icon {
    transform: scale(1.1);
}

.contact-content-section .card-icon.icon-green {
    background: #4caf50;
}

.contact-content-section .card-icon.icon-blue {
    background: #1e5fa8;
}

.contact-content-section .card-icon.icon-gradient {
    background: linear-gradient(135deg, #4caf50 0%, #1e5fa8 100%);
}

.contact-content-section .card-info {
    flex: 1;
}

.contact-content-section .card-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.contact-content-section .card-link {
    color: #374151;
    text-decoration: none;
    word-break: break-all;
    transition: text-decoration 0.2s ease;
}

.contact-content-section .card-link:hover {
    text-decoration: underline;
}

.contact-content-section .card-address-text {
    color: #374151;
    font-style: normal;
    line-height: 1.6;
}

.contact-content-section .hours-text {
    color: #374151;
}

.contact-content-section .hours-text p {
    margin-bottom: 4px;
}

.contact-content-section .hours-text .closed-day {
    color: #6b7280;
}

/* ========================================
   CONTACT PAGE - DECORATIVE IMAGE
   ======================================== */
.contact-content-section .image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-content-section .image-wrapper img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    display: block;
}

.contact-content-section .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(30, 95, 168, 0.5) 50%,
        rgba(30, 95, 168, 0.9) 100%
    );
    display: flex;
    align-items: flex-end;
}

.contact-content-section .overlay-content {
    padding: 24px;
    color: white;
}

.contact-content-section .overlay-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-content-section .overlay-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

/* ========================================
   CONTACT PAGE - FORM
   ======================================== */
.contact-content-section .contact-form-wrapper {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 24px;
    padding: 32px;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .contact-content-section .contact-form-wrapper {
        padding: 40px;
    }
}

.contact-content-section .form-header {
    margin-bottom: 32px;
}

.contact-content-section .form-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

@media (min-width: 640px) {
    .contact-content-section .form-title {
        font-size: 28px;
    }
}

.contact-content-section .form-description {
    color: #6b7280;
    font-size: 15px;
}

.contact-content-section .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-content-section .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .contact-content-section .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-content-section .form-group,
.contact-content-section .form-group-full {
    display: flex;
    flex-direction: column;
}

.contact-content-section .form-label {
    color: #374151;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-content-section .form-label .required {
    color: #4caf50;
}

.contact-content-section .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s ease;
}

.contact-content-section .form-control:focus {
    outline: none;
    border-color: #1e5fa8;
    box-shadow: 0 0 0 3px rgba(30, 95, 168, 0.1);
}

.contact-content-section .form-control::placeholder {
    color: #9ca3af;
}

.contact-content-section textarea.form-control {
    resize: none;
}

.contact-content-section select.form-control {
    background-color: white;
    cursor: pointer;
}

.contact-content-section .other-country-field {
    animation: contactFadeIn 0.3s ease;
}

@keyframes contactFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.contact-content-section .form-submit {
    padding-top: 16px;
}

.contact-content-section .btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #4caf50 0%, #43a047 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.contact-content-section .btn-submit:hover {
    background: linear-gradient(135deg, #43a047 0%, #388e3c 100%);
    box-shadow: 0 20px 25px -5px rgba(76, 175, 80, 0.4);
    transform: scale(1.02);
}

.contact-content-section .btn-submit:active {
    transform: scale(0.98);
}

@media (min-width: 768px) {
    .contact-content-section .btn-submit {
        width: auto;
    }
}

/* ========================================
   CONTACT PAGE - MAP SECTION
   ======================================== */
.contact-map-section {
    padding: 40px 16px 80px 16px;
    background: white;
}

.contact-map-section .map-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-map-section .map-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-map-section .map-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e5fa8;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .contact-map-section .map-title {
        font-size: 32px;
    }
}

.contact-map-section .map-description {
    color: #6b7280;
    font-size: 16px;
}

@media (min-width: 640px) {
    .contact-map-section .map-description {
        font-size: 18px;
    }
}

.contact-map-section .map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
    outline: 2px solid #f3f4f6;
}

.contact-map-section .map-wrapper iframe {
    display: block;
    width: 100%;
}

/* ========================================
   CONTACT PAGE - RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 1023px) {
    .contact-content-section {
        padding: 60px 0 30px 0;
    }

    .contact-map-section {
        padding: 30px 16px 60px 16px;
    }
}

@media (max-width: 767px) {
    .contact-hero .hero-content {
        padding: 64px 16px;
    }

    .contact-content-section .contact-form-wrapper {
        padding: 24px;
    }

    .contact-content-section .card-icon {
        width: 40px;
        height: 40px;
    }

    .contact-map-section .map-wrapper iframe {
        height: 350px;
    }
}

/* Categories Page Styles - Namespaced to prevent conflicts */

.cat-page-wrapper {
    min-height: 100vh;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

/* Hero Section */
.cat-hero-section {
    background: linear-gradient(to right, #1e5a96, #45a049);
    padding: 64px 0;
    color: white;
}

.cat-hero-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cat-hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 768px;
}

/* Categories Section */
.cat-categories-section {
    padding: 64px 0;
}

/* Category Card */
.cat-card {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: block;
    text-decoration: none;
    color: inherit;
}

.cat-card:hover {
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: transparent;
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}

/* Image Container */
.cat-card-image {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.cat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cat-card:hover .cat-card-image img {
    transform: scale(1.1);
}

.cat-card-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.cat-card:hover .cat-card-overlay {
    opacity: 0.7;
}

/* .cat-overlay-blue {
       background: linear-gradient(to top, #1e5a96, #2b7ec4);
   }

   .cat-overlay-green {
       background: linear-gradient(to top, #45a049, #5cb85c);
   } */

/* Badge */
.cat-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
}

.cat-badge-count {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: #1f2937;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

/* Content */
.cat-card-content {
    padding: 24px;
}

.cat-card-title {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.cat-card:hover .cat-card-title {
    color: #1e5a96;
}

.cat-card-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer */
.cat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cat-card-link-text {
    color: #6b7280;
    font-size: 0.875rem;
}

.cat-card-icon {
    color: white;
    padding: 8px;
    border-radius: 9999px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-card:hover .cat-card-icon {
    transform: translateX(4px);
}

.cat-icon-blue {
    background-color: #1e5a96;
}

.cat-icon-green {
    background-color: #45a049;
}

/* Bottom Border */
.cat-card-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.cat-card:hover .cat-card-border {
    transform: scaleX(1);
}

.cat-border-blue {
    background: linear-gradient(to right, #1e5a96, #2b7ec4);
}

.cat-border-green {
    background: linear-gradient(to right, #45a049, #5cb85c);
}

/* CTA Section */
.cat-cta-section {
    background: linear-gradient(to right, #1e5a96, #45a049);
    padding: 64px 0;
}

.cat-cta-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cat-cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.6;
}

.cat-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.cat-btn-primary {
    background-color: white;
    color: #1e5a96;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cat-btn-primary:hover {
    background-color: #f3f4f6;
    color: #1e5a96;
}

.cat-btn-secondary {
    background-color: transparent;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    border: 2px solid white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cat-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
}

/* Responsive Design */
@media (min-width: 576px) {
    .cat-cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .cat-hero-title {
        font-size: 40px;
        font-weight: 500;
    }
}

@media (max-width: 767.98px) {
    .cat-hero-section {
        padding: 48px 0;
    }

    .cat-hero-title {
        font-size: 2rem;
    }

    .cat-hero-description {
        font-size: 1rem;
    }

    .cat-categories-section {
        padding: 48px 0;
    }

    .cat-cta-section {
        padding: 48px 0;
    }

    .cat-cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .cat-card-content {
        padding: 20px;
    }

    .cat-hero-title {
        font-size: 1.75rem;
    }
}

/* public/css/report-detail.css */

/* ========================================
   REPORT DETAIL - BREADCRUMB
   ======================================== */
.report-detail-breadcrumb {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.report-detail-breadcrumb .breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 16px;
}

.report-detail-breadcrumb .breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.report-detail-breadcrumb .breadcrumb-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.report-detail-breadcrumb .breadcrumb-link:hover {
    color: #1e5a96;
}

.report-detail-breadcrumb .breadcrumb-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.report-detail-breadcrumb .breadcrumb-current {
    color: #111827;
}

/* ========================================
   REPORT DETAIL - HERO SECTION
   ======================================== */
.report-detail-hero {
    background: linear-gradient(to right, #1e5a96, #45a049);
    color: white;
}

.report-detail-hero .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 16px;
}

.report-detail-hero .hero-content-wrapper {
    max-width: 1024px;
}

.report-detail-hero .hero-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.report-detail-hero .badge {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
}

.report-detail-hero .badge-green {
    background: #45a049;
    color: white;
    border: none;
}

.report-detail-hero .badge-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.report-detail-hero .hero-title {
    color: white;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .report-detail-hero .hero-title {
        font-size: 36px;
    }
}

.report-detail-hero .hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: whitesmoke;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .report-detail-hero .hero-description {
        font-size: 18px;
        margin-left: 0;
    }
}

.report-detail-hero .hero-actions {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 12px;
}

.report-detail-hero .btn-hero {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.report-detail-hero .btn-primary {
    background: #45a049;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(69, 160, 73, 0.4);
}

.report-detail-hero .btn-primary:hover {
    background: #3d8f41;
    box-shadow: 0 6px 20px rgba(69, 160, 73, 0.5);
    transform: translateY(-2px);
}

.report-detail-hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.report-detail-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.report-detail-hero .btn-ghost {
    background: transparent;
    color: white;
}

.report-detail-hero .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   REPORT DETAIL - SPECIFICATIONS
   ======================================== */
.report-specs-section {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.report-specs-section .specs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 16px;
}

.report-specs-section .specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .report-specs-section .specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .report-specs-section .specs-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.report-specs-section .spec-item {
    text-align: center;
}

.report-specs-section .spec-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eff6ff;
    color: #1e5a96;
    margin-bottom: 8px;
}

.report-specs-section .spec-label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.report-specs-section .spec-value {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

/* ========================================
   REPORT DETAIL - MAIN CONTENT
   ======================================== */
.report-main-content {
    background: #f9fafb;
    padding: 32px 0;
}

.report-main-content .content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.report-main-content .content-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .report-main-content .content-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.report-main-content .content-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.report-main-content .content-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.report-main-content .card-heading {
    font-size: 20px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 16px;
}

.report-main-content .card-text p {
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: justify;
}

.report-main-content .card-text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   REPORT DETAIL - KEY HIGHLIGHTS
   ======================================== */
.report-main-content .highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 768px) {
    .report-main-content .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.report-main-content .highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.report-main-content .highlight-icon {
    width: 20px;
    height: 20px;
    color: #45a049;
    flex-shrink: 0;
    margin-top: 2px;
}

.report-main-content .highlight-item span {
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
}

/* ========================================
   REPORT DETAIL - MARKET INSIGHTS
   ======================================== */
.report-main-content .insights-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.report-main-content .insight-box {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid;
}

.report-main-content .insight-box.insight-blue {
    background: #eff6ff;
    border-color: #dbeafe;
}

.report-main-content .insight-box.insight-green {
    background: #f0fdf4;
    border-color: #dcfce7;
}

.report-main-content .insight-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.report-main-content .insight-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

.report-main-content .insight-box.insight-blue .insight-icon {
    color: #1e5a96;
}

.report-main-content .insight-box.insight-green .insight-icon {
    color: #45a049;
}

.report-main-content .insight-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.report-main-content .insight-box.insight-blue .insight-title {
    color: #1e5a96;
}

.report-main-content .insight-box.insight-green .insight-title {
    color: #45a049;
}

.report-main-content .insight-text {
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   REPORT DETAIL - TABLE OF CONTENTS
   ======================================== */
.report-main-content .toc-accordion {
    display: flex;
    flex-direction: column;
}

.report-main-content .toc-item {
    border-bottom: 1px solid #e5e7eb;
}

.report-main-content .toc-item:last-child {
    border-bottom: none;
}

.report-main-content .toc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.report-main-content .toc-trigger-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.report-main-content .toc-number {
    color: #1e5a96;
    font-weight: 600;
}

.report-main-content .toc-title {
    color: #111827;
    font-size: 15px;
}

.report-main-content .toc-chevron {
    width: 20px;
    height: 20px;
    color: #6b7280;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.report-main-content .toc-trigger[aria-expanded="true"] .toc-chevron {
    transform: rotate(180deg);
}

.report-main-content .toc-content {
    padding: 0 0 16px 32px;
}

.report-main-content .toc-content p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   REPORT DETAIL - METHODOLOGY
   ======================================== */
.report-main-content .methodology-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.report-main-content .methodology-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
}

.report-main-content .method-bullet {
    color: #45a049;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========================================
   REPORT DETAIL - SIDEBAR
   ======================================== */
.report-main-content .sidebar-column {
    /* Grid handles layout */
}

.report-main-content .sidebar-sticky {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.report-main-content .sidebar-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.report-main-content .sidebar-heading {
    font-size: 18px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 16px;
}

.report-main-content .sidebar-heading-white {
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
}

/* ========================================
   REPORT DETAIL - PRICING CARD
   ======================================== */
.report-main-content .pricing-card {
    border: 2px solid #45a049;
}

.report-main-content .pricing-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.report-main-content .pricing-option {
    cursor: pointer;
    display: block;
}

.report-main-content .pricing-option input[type="radio"] {
    display: none;
}

.report-main-content .pricing-option-content {
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.report-main-content
    .pricing-option
    input[type="radio"]:checked
    + .pricing-option-content {
    border-color: #45a049;
    background: #f0fdf4;
}

.report-main-content .pricing-option:hover .pricing-option-content {
    border-color: #d1d5db;
}

.report-main-content .pricing-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.report-main-content .pricing-name {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.report-main-content .pricing-desc {
    font-size: 13px;
    color: #6b7280;
}

.report-main-content .pricing-price {
    font-size: 16px;
    font-weight: 700;
    color: #45a049;
}

.report-main-content .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.report-main-content .pricing-features li {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-main-content .feature-check {
    width: 12px;
    height: 12px;
    color: #45a049;
    flex-shrink: 0;
}

.report-main-content .btn-add-cart {
    width: 48%;
    background: #45a049;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 rgba(69, 160, 73, 0.4);
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.report-main-content .btn-add-cart:hover {
    background: #3d8f41;
    box-shadow: 0 6px 20px rgba(69, 160, 73, 0.5);
    transform: translateY(-2px);
}

.report-main-content .btn-custom-quote {
    width: 100%;
    background: white;
    color: #1e5a96;
    padding: 12px 24px;
    border: 2px solid #1e5a96;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.report-main-content .btn-custom-quote:hover {
    background: #1e5a96;
    color: white;
}

/* ========================================
   REPORT DETAIL - CONTACT CARD
   ======================================== */
.report-main-content .contact-card {
    background: linear-gradient(135deg, #1e5a96 0%, #45a049 100%);
    color: white;
}

.report-main-content .contact-description {
    font-size: 14px;
    color: whitesmoke;
    margin-bottom: 16px;
}

.report-main-content .contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.report-main-content .btn-contact {
    width: 100%;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.report-main-content .btn-white {
    background: white;
    color: #1e5a96;
    border: none;
}

.report-main-content .btn-white:hover {
    background: #f3f4f6;
}

.report-main-content .btn-outline-white {
    background: white;
    color: #1e5a96;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.report-main-content .btn-outline-white:hover {
    background: #f3f4f6;
}

/* ========================================
   REPORT DETAIL - QUICK LINKS CARD
   ======================================== */
.report-main-content .quick-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.report-main-content .quick-link {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.report-main-content .quick-link:hover {
    color: #1e5a96;
    background: #eff6ff;
}

/* ========================================
   REPORT DETAIL - FAQ SECTION
   ======================================== */
.report-faq-section {
    background: #f9fafb;
    padding: 32px 16px;
}

.report-faq-section .faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.report-faq-section .faq-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.report-faq-section .faq-heading {
    font-size: 20px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 24px;
}

.report-faq-section .faq-accordion {
    display: flex;
    flex-direction: column;
}

.report-faq-section .faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.report-faq-section .faq-item:last-child {
    border-bottom: none;
}

.report-faq-section .faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.report-faq-section .faq-question {
    color: #374151;
    font-size: 15px;
    flex: 1;
    padding-right: 16px;
}

.report-faq-section .faq-trigger:hover .faq-question {
    color: #374151;
}

.report-faq-section .faq-chevron {
    width: 20px;
    height: 20px;
    color: #6b7280;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.report-faq-section .faq-trigger[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.report-faq-section .faq-answer {
    padding: 0 0 16px;
}

.report-faq-section .faq-answer p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.report-faq-section .faq-action {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.report-faq-section .btn-view-all-faqs {
    background: white;
    color: #45a049;
    padding: 12px 24px;
    border: 2px solid #45a049;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.report-faq-section .btn-view-all-faqs:hover {
    background: #45a049;
    color: white;
}

/* ========================================
   REPORT DETAIL - MODAL
   ======================================== */
.report-modal-content {
    border: none;
    border-radius: 12px;
}

.report-modal-header {
    background: linear-gradient(135deg, #1e5a96 0%, #45a049 100%);
    color: white;
    padding: 20px 24px;
    border-radius: 12px 12px 0 0;
}

.report-modal-body {
    background: linear-gradient(135deg, #1e5a96 0%, #45a049 100%);
    padding: 24px;
    border-radius: 0 0 12px 12px;
}

.report-modal-body .modal-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.report-modal-body .form-label-white {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.report-modal-body .form-control-white {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #111827;
}

.report-modal-body .form-control-white:focus {
    background: white;
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.report-modal-body .form-control-white::placeholder {
    color: #9ca3af;
}

.report-modal-body .form-check-white {
    padding: 16px 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.report-modal-body .form-check-white .form-check-label {
    color: white;
}

.report-modal-body .modal-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.report-modal-body .btn-modal-submit {
    background: #45a049;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 rgba(69, 160, 73, 0.4);
    transition: all 0.2s ease;
}

.report-modal-body .btn-modal-submit:hover {
    background: #3d8f41;
    box-shadow: 0 6px 20px rgba(69, 160, 73, 0.5);
}

.report-modal-body .btn-modal-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.report-modal-body .btn-modal-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 1023px) {
    .report-main-content .sidebar-sticky {
        position: static;
    }
}

@media (max-width: 767px) {
    .report-detail-hero .hero-container {
        padding: 32px 16px;
    }

    .report-specs-section .specs-container {
        padding: 24px 16px;
    }

    .report-main-content {
        padding: 24px 0;
    }
}

/* ========================================
   About Us Page
   ======================================== */

.about-page-wrapper {
    background: white;
    min-height: 100vh;
}

/* Hero Section */
.about-hero-section {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
    background: linear-gradient(to right, #1e5a96, #45a049);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.about-hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-hero-effect-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: white;
    border-radius: 50%;
    filter: blur(96px);
}

.about-hero-effect-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: #4caf50;
    border-radius: 50%;
    filter: blur(96px);
}

.about-hero-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.about-hero-title {
    color: white;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 768px;
    margin: 0 auto 32px;
}

/* Section Common Styles */
.about-overview-section,
.about-expertise-section,
.about-why-section {
    padding: 70px 0;
    background: white;
}

.about-services-section,
.about-approach-section {
    padding: 70px 0;
    background: linear-gradient(to bottom, #f9fafb, white);
}

.about-journey-section {
    padding: 70px 0;
    background: white;
}

.about-section-header {
    margin-bottom: 64px;
}

.about-section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.about-badge-blue {
    background: rgba(30, 107, 184, 0.1);
    color: #1e5a96;
    border: 1px solid rgba(30, 107, 184, 0.2);
}

.about-badge-green {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.about-section-title {
    color: #111827;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-section-description {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 768px;
    margin: 0 auto;
}

.about-text-paragraph {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text-paragraph-large {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
}

.about-image-glow {
    position: absolute;
    inset: -16px;
    background: linear-gradient(
        135deg,
        rgba(30, 107, 184, 0.2),
        rgba(76, 175, 80, 0.2)
    );
    border-radius: 24px;
    filter: blur(48px);
}

.about-image-glow-alt {
    position: absolute;
    inset: -16px;
    background: linear-gradient(
        135deg,
        rgba(76, 175, 80, 0.2),
        rgba(30, 107, 184, 0.2)
    );
    border-radius: 24px;
    filter: blur(48px);
}

.about-feature-image {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Buttons */
.about-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.about-btn-primary {
    background: #1e5a96;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.about-btn-primary:hover {
    background: #1a5a9e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-btn-outline {
    background: transparent;
    color: #45a049;
    padding: 12px 32px;
    border-radius: 8px;
    border: 1px solid #45a049;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.about-btn-outline:hover {
    background: #45a049;
    color: white;
    transform: translateY(-2px);
}

.about-btn-secondary {
    background: #4caf50;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.about-btn-secondary:hover {
    background: #45a049;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-btn-icon {
    margin-left: 8px;
}

/* Service Cards */
.about-service-card {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.about-service-card:hover {
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.about-service-border {
    height: 8px;
}

.about-border-blue {
    background: linear-gradient(to right, #1e5a96, #2681d4);
}

.about-border-green {
    background: linear-gradient(to right, #4caf50, #45a049);
}

.about-border-mixed {
    background: linear-gradient(to right, #1e5a96, #4caf50);
}

.about-service-content {
    padding: 32px;
}

.about-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.about-service-card:hover .about-service-icon {
    transform: scale(1.1);
}

.about-icon-blue {
    background: rgba(30, 107, 184, 0.1);
    color: #1e5a96;
}

.about-icon-green {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.about-service-title {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

.about-service-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    color: #374151;
    font-size: 0.875rem;
}

.about-check-icon {
    color: #4caf50;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Expertise Cards */
.about-expertise-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.about-expertise-card:hover {
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.about-expertise-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    transition: transform 0.3s ease;
}

.about-expertise-card:hover .about-expertise-icon {
    transform: scale(1.1);
}

.about-expertise-blue {
    background: linear-gradient(135deg, #1e5a96, #2681d4);
}

.about-expertise-green {
    background: linear-gradient(135deg, #4caf50, #45a049);
}

.about-expertise-title {
    color: #111827;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
}

.about-expertise-note {
    color: #6b7280;
    margin-bottom: 24px;
}

/* Approach List */
.about-approach-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-approach-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-approach-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e5a96, #4caf50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.about-approach-content {
    flex: 1;
}

.about-approach-title {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-approach-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Timeline */
.about-timeline {
    position: relative;
}

.about-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #1e5a96, #45a049, #1e5a96);
    transform: translateX(-50%);
}

.about-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
}

.about-timeline-left {
    flex-direction: row;
}

.about-timeline-right {
    flex-direction: row-reverse;
}

.about-timeline-content {
    flex: 1;
}

.about-timeline-left .about-timeline-content {
    text-align: right;
    padding-right: 24px;
}

.about-timeline-right .about-timeline-content {
    text-align: left;
    padding-left: 24px;
}

.about-timeline-card {
    display: inline-block;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-timeline-card:hover {
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
}

.about-timeline-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.about-timeline-year {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-year-blue {
    color: #1e5a96;
}

.about-year-green {
    color: #4caf50;
}

.about-timeline-title {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.about-timeline-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.about-timeline-dot {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 4px solid #1e5a96;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.about-timeline-spacer {
    flex: 1;
}

/* Features List */
.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.about-feature-icon-blue {
    background: linear-gradient(135deg, #1e5a96, #2681d4);
}

.about-feature-icon-green {
    background: linear-gradient(135deg, #4caf50, #45a049);
}

.about-feature-icon-mixed {
    background: linear-gradient(135deg, #1e5a96, #4caf50);
}

.about-feature-icon-alt {
    background: linear-gradient(135deg, #4caf50, #1e5a96);
}

.about-feature-text {
    flex: 1;
}

.about-feature-title {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-feature-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.about-cta-section {
    position: relative;
    padding: 66px 0;
    overflow: hidden;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #1e5a96, #45a049);
}

.about-cta-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-cta-effect-1 {
    position: absolute;
    top: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: #4caf50;
    border-radius: 50%;
    filter: blur(96px);
    opacity: 0.2;
}

.about-cta-effect-2 {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 384px;
    height: 384px;
    background: white;
    border-radius: 50%;
    filter: blur(96px);
    opacity: 0.1;
}

.about-cta-title {
    color: white;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.about-cta-btn-primary {
    background: #4caf50;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-cta-btn-primary:hover {
    background: #45a049;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-cta-btn-secondary {
    background: white;
    color: #1e5a96;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-cta-btn-secondary:hover {
    background: #f3f4f6;
    color: #1e5a96;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-section-title {
        font-size: 2rem;
    }

    .about-timeline-left .about-timeline-content,
    .about-timeline-right .about-timeline-content {
        text-align: center;
        padding: 0;
    }

    .about-timeline-item {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .about-hero-section {
        padding-top: 96px;
        padding-bottom: 64px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-description {
        font-size: 1rem;
    }

    .about-overview-section,
    .about-services-section,
    .about-expertise-section,
    .about-approach-section,
    .about-journey-section,
    .about-why-section,
    .about-cta-section {
        padding: 64px 0;
    }

    .about-section-title {
        font-size: 1.75rem;
    }

    .about-cta-title {
        font-size: 1.75rem;
    }

    .about-button-group,
    .about-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .about-btn-primary,
    .about-btn-outline,
    .about-btn-secondary,
    .about-cta-btn-primary,
    .about-cta-btn-secondary {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .about-hero-title {
        font-size: 1.75rem;
    }

    .about-service-content {
        padding: 24px;
    }

    .about-expertise-card {
        padding: 20px;
    }
}

/* ========================================
   Checkout Page
   ======================================== */
/* ========================================
   JSBMR Checkout Page Styles
   Prefix: jsbmr-checkout-
   All selectors are highly specific to avoid conflicts
   ======================================== */

/* Body & Base */
.jsbmr-checkout-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #f0fdf4 100%);
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
}

/* Header */
.jsbmr-checkout-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.jsbmr-checkout-logo {
    height: 48px;
    object-fit: contain;
}

.jsbmr-checkout-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: transparent;
    border: none;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.jsbmr-checkout-back-btn:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}

/* Progress Bar */
.jsbmr-checkout-progress-section {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
}

.jsbmr-checkout-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (min-width: 640px) {
    .jsbmr-checkout-progress-bar {
        gap: 24px;
    }
}

.jsbmr-checkout-progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jsbmr-checkout-progress-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.jsbmr-checkout-progress-circle-1 {
    background: linear-gradient(135deg, #1e5a96 0%, #1e5a96 100%);
}

.jsbmr-checkout-progress-circle-2 {
    background: linear-gradient(135deg, #1e5a96 0%, #16a34a 100%);
}

.jsbmr-checkout-progress-circle-3 {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.jsbmr-checkout-progress-line {
    width: 48px;
    height: 2px;
}

@media (min-width: 640px) {
    .jsbmr-checkout-progress-line {
        width: 96px;
    }
}

.jsbmr-checkout-progress-line-1 {
    background: linear-gradient(90deg, #1e5a96 0%, #16a34a 100%);
}

.jsbmr-checkout-progress-line-2 {
    background: linear-gradient(90deg, #16a34a 0%, #15803d 100%);
}

.jsbmr-checkout-progress-label {
    font-size: 14px;
    color: #475569;
}

/* Main Content */
.jsbmr-checkout-main {
    padding: 32px 0 48px;
}

@media (min-width: 992px) {
    .jsbmr-checkout-main {
        padding: 48px 0;
    }
}

/* Title Section */
.jsbmr-checkout-title-section {
    text-align: center;
    margin-bottom: 32px;
}

.jsbmr-checkout-sparkle-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: linear-gradient(135deg, #dbeafe 0%, #d1fae5 100%);
    border-radius: 50%;
    margin-bottom: 16px;
}

.jsbmr-checkout-main-title {
    font-size: 36px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 8px;
}

.jsbmr-checkout-main-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 0;
}

/* Cards */
.jsbmr-checkout-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}

.jsbmr-checkout-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.jsbmr-checkout-card-contact {
    border-left: 4px solid #1e5a96;
}

.jsbmr-checkout-card-billing {
    border-left: 4px solid #16a34a;
}

.jsbmr-checkout-card-payment {
    border-left: 4px solid #1e5a96;
}

.jsbmr-checkout-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px;
    padding-bottom: 0;
}

.jsbmr-checkout-step-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.jsbmr-checkout-step-badge-1 {
    background: linear-gradient(135deg, #1e5a96 0%, #1e5a96 100%);
}

.jsbmr-checkout-step-badge-2 {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.jsbmr-checkout-step-badge-3 {
    background: linear-gradient(135deg, #1e5a96 0%, #16a34a 100%);
}

.jsbmr-checkout-card-title-wrapper {
    flex: 1;
}

.jsbmr-checkout-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.jsbmr-checkout-card-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 0;
}

.jsbmr-checkout-card-body {
    padding: 24px;
}

/* Form Inputs */
.jsbmr-checkout-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

.jsbmr-checkout-input {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.jsbmr-checkout-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 90, 150, 0.1);
}

.jsbmr-checkout-input-blue:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.jsbmr-checkout-input-green:focus {
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.jsbmr-checkout-input-card {
    background-color: #ffffff;
}

.jsbmr-checkout-input-card:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Payment Options */
.jsbmr-checkout-payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.jsbmr-checkout-payment-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.jsbmr-checkout-payment-option:hover {
    border-color: #60a5fa;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.jsbmr-checkout-payment-option-active {
    border-color: #1e5a96;
    background-color: #eff6ff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.jsbmr-checkout-radio {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.jsbmr-checkout-radio:checked {
    border-color: #1e5a96;
    accent-color: #1e5a96;
}

.jsbmr-checkout-payment-label {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 500;
    color: #0f172a;
}

.jsbmr-checkout-card-brands {
    display: flex;
    gap: 8px;
}

.jsbmr-checkout-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 24px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
}

.jsbmr-checkout-brand-visa {
    background: linear-gradient(135deg, #1e5a96 0%, #1e5a96 100%);
}

.jsbmr-checkout-brand-mc {
    background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
}

.jsbmr-checkout-brand-amex {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.jsbmr-checkout-paypal-icon {
    width: 20px;
    height: 20px;
    background-color: #1e5a96;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

/* Card Form */
.jsbmr-checkout-card-form {
    padding: 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #d1fae571 100%);
    border-radius: 8px;
    border: 1px solid #bfdbfe;
}

/* Wire Transfer Info */
.jsbmr-checkout-wire-info {
    padding: 16px;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
}

.jsbmr-checkout-wire-text {
    font-size: 14px;
    color: #475569;
    margin-bottom: 0;
}

/* Order Summary */
.jsbmr-checkout-summary-sticky {
    position: sticky;
    top: 32px;
}

.jsbmr-checkout-summary-card {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.jsbmr-checkout-summary-header {
    background: linear-gradient(135deg, #1e5a96 0%, #16a34a 100%);
    padding: 24px;
    color: #ffffff;
}

.jsbmr-checkout-summary-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.jsbmr-checkout-summary-subtitle {
    font-size: 14px;
    color: whitesmoke;
    margin-bottom: 0;
    text-align: center;
}

.jsbmr-checkout-summary-body {
    padding: 24px;
}

/* Order Items */
.jsbmr-checkout-order-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    margin-top: -8px;
}

.jsbmr-checkout-order-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, #eff6ff 0%, #d1fae571 100%);
    border-radius: 8px;
    border: 1px solid #bfdbfe;
}

.jsbmr-checkout-item-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1e5a96 0%, #16a34a 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.jsbmr-checkout-item-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.jsbmr-checkout-item-details {
    flex: 1;
    min-width: 0;
}

.jsbmr-checkout-item-title {
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jsbmr-checkout-item-meta {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 0;
}

.jsbmr-checkout-item-price {
    font-weight: 600;
    color: #0f172a;
    font-size: 16px;
}

/* Dividers */
.jsbmr-checkout-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 16px 0;
}

.jsbmr-checkout-divider-sm {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 12px 0;
}

/* Price Breakdown */
.jsbmr-checkout-price-breakdown {
    padding: 8px 0;
}

.jsbmr-checkout-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}

.jsbmr-checkout-price-row:last-child {
    margin-bottom: 0;
}

.jsbmr-checkout-price-total {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0;
}

.jsbmr-checkout-total-amount {
    text-align: right;
}

.jsbmr-checkout-total-price {
    font-size: 24px;
    font-weight: 500;
    color: #0f172a;
}

.jsbmr-checkout-instant-access {
    font-size: 12px;
    color: #16a34a;
    font-weight: 500;
}

/* Complete Purchase Button */
.jsbmr-checkout-complete-btn {
    width: 100%;
    height: 48px;
    background: #1e5a96;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin-top: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.jsbmr-checkout-complete-btn:hover {
    background: linear-gradient(135deg, #1e5a96 0%, #1e5a96 50%, #15803d 100%);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Security Badge */
.jsbmr-checkout-security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: #64748b;
}

/* Benefits */
.jsbmr-checkout-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jsbmr-checkout-benefit {
    display: flex;
    align-items: start;
    gap: 12px;
}

.jsbmr-checkout-benefit svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.jsbmr-checkout-benefit-content {
    flex: 1;
}

.jsbmr-checkout-benefit-title {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 2px;
}

.jsbmr-checkout-benefit-desc {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 0;
}

/* Trust Section */
.jsbmr-checkout-trust-section {
    margin-top: 48px;
}

.jsbmr-checkout-trust-card {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
}

.jsbmr-checkout-trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.jsbmr-checkout-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jsbmr-checkout-trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.jsbmr-checkout-trust-icon-green {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.jsbmr-checkout-trust-icon-blue {
    background: linear-gradient(135deg, #1e5a96 0%, #1e5a96 100%);
}

.jsbmr-checkout-trust-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.jsbmr-checkout-trust-text {
    text-align: left;
}

.jsbmr-checkout-trust-title {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 2px;
}

.jsbmr-checkout-trust-desc {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 0;
}

/* Icon Sizes */
.jsbmr-checkout-icon-xs {
    width: 20px;
    height: 20px;
}

.jsbmr-checkout-icon-sm {
    width: 20px;
    height: 20px;
}

.jsbmr-checkout-icon-sm.star {
    width: 20px;
    height: 20px;
    color: #1e5a96;
}

.jsbmr-checkout-icon-md {
    width: 24px;
    height: 24px;
}

.jsbmr-checkout-icon-blue {
    color: #1e5a96;
}

.jsbmr-checkout-icon-green {
    color: #16a34a;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .jsbmr-checkout-summary-sticky {
        position: relative;
        top: 0;
    }
}

@media (max-width: 575px) {
    .jsbmr-checkout-main-title {
        font-size: 24px;
    }

    .jsbmr-checkout-card-header {
        padding: 16px;
    }

    .jsbmr-checkout-card-body {
        padding: 16px;
    }

    .jsbmr-checkout-trust-card {
        padding: 24px 16px;
    }

    .jsbmr-checkout-trust-badges {
        flex-direction: column;
        gap: 24px;
    }
}

/* News Page Styles - Namespaced to prevent conflicts */
/* public/css/news-page.css */

/* Base Styles */
.news-page {
    min-height: 100vh;
    background-color: #f9fafb;
}

/* Hero Section */
.news-hero {
    background: linear-gradient(to right, #1e5a96, #45a049);
    color: white;
    position: relative;
    overflow: hidden;
}

.news-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(
        circle at 2px 2px,
        white 1px,
        transparent 0
    );
    background-size: 40px 40px;
}

.news-hero__content {
    margin: 0 auto;
    padding: 48px 0;
    position: relative;
    max-width: 768px;
}

.news-hero__icon {
    width: 28px;
    height: 28px;
    color: #fde047;
}

.news-hero__badge {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.news-hero__badge:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.news-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.news-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 768px;
}

/* Main Content */
.news-content {
    padding: 48px 15px;
}

/* Section Styles */
.news-section {
    margin-bottom: 80px;
}

.news-section__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.news-section__accent {
    height: 32px;
    width: 6px;
    background: linear-gradient(to bottom, #1e5a96, #45a049);
    border-radius: 9999px;
}

.news-section__accent--green {
    background: linear-gradient(to bottom, #45a049, #52b356);
}

.news-section__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-section__icon {
    width: 28px;
    height: 28px;
    color: #45a049;
}

/* News Card Styles */
.news-card {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.news-card__image-wrapper {
    position: relative;
    overflow: hidden;
    height: 224px;
}

.news-card__image-wrapper--featured {
    height: 384px;
}

.news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-card__image {
    transform: scale(1.1);
}

.news-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.news-card:hover .news-card__overlay {
    opacity: 1;
}

.news-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(to right, #45a049, #52b356);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.news-card__content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card__content--featured {
    padding: 32px;
}

.news-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.news-card__title > a {
    color: #111827;
}

.news-card__title--featured {
    font-size: 1.5rem;
}

.news-card:hover .news-card__title {
    color: #1e5a96;
}

.news-card:hover .news-card__title > a {
    color: #1e5a96;
}

.news-card__description {
    color: #4b5563;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.news-card__meta {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 14px;
}

.news-card__clock {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* Category Card Styles */
.category-card {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s;
}

.category-card:hover {
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.category-card__image-wrapper {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-card:hover .category-card__image {
    transform: scale(1.1);
}

.category-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.3),
        transparent
    );
}

.category-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: white;
}

.category-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.category-card__title > a {
    color: white;
}

.category-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-card__count {
    font-size: 14px;
    color: #e5e7eb;
    margin: 0;
}

.category-card__arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.category-card:hover .category-card__arrow {
    transform: translateX(8px);
}

/* Trending Card Styles */
.trending-card {
    display: flex;
    gap: 16px;
    cursor: pointer;
    margin-bottom: 24px;
}

.trending-card:last-child {
    margin-bottom: 0;
}

.trending-card__image-container {
    position: relative;
    flex-shrink: 0;
}

.trending-card__image-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.trending-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.trending-card:hover .trending-card__image {
    transform: scale(1.1);
}

.trending-card__rank {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 28px;
    height: 28px;
    background: linear-gradient(to bottom right, #1e5a96, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.trending-card__content {
    flex: 1;
    min-width: 0;
}

.trending-card__category {
    font-size: 12px;
    color: #45a049;
    margin-bottom: 4px;
    display: inline-block;
}

.trending-card__title {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    transition: color 0.2s;
    margin: 0;
}

.img-card {
    color: #111827;
}

.news-card:hover .img-card {
    color: #1e5a96;
}
.trending-card:hover .img-card {
    color: #1e5a96;
}

.trending-card:hover .trending-card__title {
    color: #1e5a96;
}

/* Sidebar Card Styles */
.news-sidebar-card {
    background-color: white;
    border-radius: 12px;
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px -1px rgba(0, 0, 0, 0.1);
    padding: 24px;
    border: 1px solid #f3f4f6;
    margin-top: 68px;
    margin-bottom: 32px;
}

.news-sidebar-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.news-sidebar-card__icon {
    width: 24px;
    height: 24px;
    color: #ff6b6b;
}

.news-sidebar-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.news-sidebar-card__content {
    /* Content wrapper */
}

@media (max-width: 991px) {
    .news-sidebar-card {
        margin-top: 0;
    }
}

/* Newsletter Styles */
.news-newsletter {
    background: linear-gradient(to bottom right, #1e5a96, #45a049);
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 32px;
    color: white;
    position: relative;
    overflow: hidden;
    position: sticky;
    top: 190px;
}

.news-newsletter__bg {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.news-newsletter__bg--1 {
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    margin-right: -64px;
    margin-top: -64px;
}

.news-newsletter__bg--2 {
    bottom: 0;
    left: 0;
    width: 96px;
    height: 96px;
    margin-left: -48px;
    margin-bottom: -48px;
}

.news-newsletter__content {
    position: relative;
}

.news-newsletter__icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.news-newsletter__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.news-newsletter__text {
    color: whitesmoke;
    font-size: 14px;
    margin-bottom: 16px;
}

.news-newsletter__input {
    width: 100%;
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    margin-bottom: 12px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.news-newsletter__input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.news-newsletter__btn {
    width: 100%;
    padding: 10px 16px;
    background-color: white;
    color: #1e5a96;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.news-newsletter__btn:hover {
    background-color: #f3f4f6;
}

/* Button Styles */
.news-btn {
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
}

.news-btn--outline {
    background: transparent;
    color: #1e5a96;
    padding: 12px 28px;
    border: 2px solid #1e5a96;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 14px 0 rgba(30, 90, 150, 0.2);
    transition: all 0.2s ease;
    align-items: center;
    justify-content: center;
}

.news-btn--outline:hover {
    background: #1e5a96;
    box-shadow: 0 6px 20px rgba(30, 90, 150, 0.3);
    transform: translateY(-2px);
    color: white;
}

.news-btn--gradient {
    background: linear-gradient(to right, #1e5a96, #45a049);
    color: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.news-btn--gradient:hover {
    background: linear-gradient(to right, #1a4d7e, #3d8f41);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.news-btn__icon {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
}

.news-btn:hover .news-btn__icon {
    transform: translateX(4px);
}

/* CTA Section Styles */
.news-cta {
    background-color: white;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 64px 0;
}

.news-cta__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.news-cta__text {
    color: #4b5563;
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.news-cta__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.news-cta__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
}

.news-cta__check {
    width: 20px;
    height: 20px;
    background-color: #45a049;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.news-cta__form {
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}

.news-cta__input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
}

.news-cta__input:focus {
    outline: none;
    border-color: #1e5a96;
    box-shadow: 0 0 0 3px rgba(30, 90, 150, 0.1);
}

.news-cta__btn {
    padding: 10px 24px;
    background: linear-gradient(to right, #1e5a96, #45a049);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.news-cta__btn:hover {
    background: linear-gradient(to right, #1a4d7e, #3d8f41);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.news-cta__disclaimer {
    font-size: 12px;
    color: #6b7280;
    margin-top: 12px;
    margin-bottom: 0;
}

.jsbmr-readers {
    display: grid;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .news-hero__title {
        font-size: 2rem;
    }

    .news-hero__subtitle {
        font-size: 1.125rem;
    }

    .news-content {
        padding: 32px 15px;
    }

    .news-section {
        margin-bottom: 48px;
    }

    .news-newsletter {
        position: relative;
        top: 0;
        margin-bottom: 32px;
    }
}

@media (max-width: 767.98px) {
    .news-hero__content {
        padding: 32px 0;
    }

    .news-hero__title {
        font-size: 1.75rem;
    }

    .news-section__title {
        font-size: 1.5rem;
    }

    .news-card__title {
        font-size: 1.125rem;
    }

    .news-cta__title {
        font-size: 1.5rem;
    }

    .news-cta__input {
        margin-bottom: 12px;
    }
}

@media (max-width: 575.98px) {
    .news-hero__content {
        padding: 24px 0;
    }

    .news-hero__title {
        font-size: 1.5rem;
    }

    .news-hero__subtitle {
        font-size: 1rem;
    }

    .news-card__content,
    .news-card__content--featured {
        padding: 16px;
    }

    .category-card__content {
        padding: 16px;
    }

    .news-newsletter {
        padding: 24px;
    }
}

/* Blog Page Styles - Namespaced to prevent conflicts */
/* public/css/blog-page.css */

/* Base Styles */
.blog-page {
    min-height: 100vh;
    background-color: #f9fafb;
}

/* Hero Section */
.blog-hero {
    background: linear-gradient(to right, #1e5a96, #45a049);
    padding: 64px 0;
    text-align: center;
}

.blog-hero__title {
    color: white;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.blog-hero__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.75;
    margin: 0 auto;
    max-width: 768px;
}

/* Main Content */
.blog-content {
    padding: 48px 15px;
}

/* Blog Card Styles */
.blog-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.blog-card__image-wrapper {
    position: relative;
    overflow: hidden;
    height: 208px;
}

.blog-card__image-wrapper--featured {
    height: 320px;
}

.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-card__image {
    transform: scale(1.1);
}

.blog-card__category {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #45a049;
    color: white;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.blog-card__content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-card__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 12px;
}

.blog-card__icon {
    width: 14px;
    height: 14px;
}

.blog-card__title {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    transition: color 0.2s;
}

.blog-card__title > a {
    color: #111827;
}

.blog-card:hover .blog-card__title > a {
    color: #1e5a96;
}

.blog-card:hover .blog-card__title {
    color: #1e5a96;
}

.blog-card__excerpt {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
    flex: 1;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e5a96;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card__link:hover {
    color: #45a049;
}

.blog-card__arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.blog-card__link:hover .blog-card__arrow {
    transform: translateX(4px);
}

/* Pagination Styles */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.blog-pagination__btn {
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.blog-pagination__btn--outline {
    background-color: white;
    color: #111827;
    border: 1px solid #d1d5db;
}

.blog-pagination__btn--outline:hover {
    background-color: #eff6ff;
    border-color: #1e5a96;
    color: #1e5a96;
}

.blog-pagination__btn--active {
    background-color: #1e5a96;
    color: white;
}

.blog-pagination__btn--active:hover {
    background-color: #2d6eb5;
}

/* Sidebar Card Styles */
.blog-sidebar-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.blog-sidebar-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.blog-sidebar-card__icon {
    width: 20px;
    height: 20px;
    color: #45a049;
}

.blog-sidebar-card__title {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.blog-sidebar-card__content {
    /* Content wrapper */
}

/* Search Widget */
.blog-search {
    position: relative;
}

.blog-search__input {
    width: 100%;
    padding: 10px 44px 10px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.blog-search__input:focus {
    outline: none;
    border-color: #45a049;
    box-shadow: 0 0 0 3px rgba(69, 160, 73, 0.1);
}

.blog-search__btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px;
}

.blog-search__btn:hover {
    color: #45a049;
}

/* Popular Posts */
.blog-popular-post {
    display: flex;
    gap: 12px;
    padding: 8px;
    margin: -8px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
    margin-bottom: 16px;
}

.blog-popular-post:last-child {
    margin-bottom: 0;
}

.blog-popular-post:hover {
    background-color: #f9fafb;
}

.blog-popular-post__image {
    width: 80px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.blog-popular-post__content {
    flex: 1;
    min-width: 0;
}

.blog-popular-post__title {
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    margin: 0 0 4px 0;
    transition: color 0.2s;
}

.blog-popular-post:hover .blog-popular-post__title {
    color: #1e5a96;
}

.blog-popular-post__date {
    color: #6b7280;
    font-size: 12px;
    margin: 0;
}

/* Categories */
.blog-categories {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blog-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
    cursor: default;
}

.blog-category:hover {
    background-color: #eff6ff;
}

.blog-category__name {
    color: #4b5563;
    font-size: 14px;
    transition: color 0.2s;
}

.blog-category:hover .blog-category__name {
    color: #1e5a96;
}

.blog-category__count {
    color: #6b7280;
    font-size: 12px;
    background-color: #f3f4f6;
    padding: 2px 8px;
    border-radius: 9999px;
}

.btn-show-more {
    width: 100%;
    margin-top: 16px;
    padding: 12px 16px;
    background-color: transparent;
    color: #6c757d;
    border: none;
    border-top: 1px solid #e9ecef;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-show-more:hover {
    color: #495057;
    background-color: #f8f9fa;
}

.btn-show-more:active {
    transform: scale(0.98);
}

.btn-show-more svg {
    vertical-align: middle;
}

.btn-show-more.expanded svg {
    transform: rotate(180deg);
}

/* Newsletter */
.blog-newsletter {
    background: linear-gradient(to bottom right, #1e5a96, #45a049);
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 32px;
    color: white;
    position: sticky;
    top: 190px;
    overflow: hidden;
}

.blog-newsletter__bg {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.blog-newsletter__bg--1 {
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    margin-right: -64px;
    margin-top: -64px;
}

.blog-newsletter__bg--2 {
    bottom: 0;
    left: 0;
    width: 96px;
    height: 96px;
    margin-left: -48px;
    margin-bottom: -48px;
}

.blog-newsletter__content {
    position: relative;
}

.blog-newsletter__icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.blog-newsletter__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.blog-newsletter__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-newsletter__input {
    width: 100%;
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    margin-bottom: 12px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    font-size: 14px;
}

.blog-newsletter__input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.blog-newsletter__btn {
    width: 100%;
    padding: 10px 16px;
    background-color: white;
    color: #1e5a96;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 14px;
}

.blog-newsletter__btn:hover {
    background-color: #f3f4f6;
}

.related-article-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .blog-hero {
        padding: 48px 0;
    }

    .blog-hero__title {
        font-size: 2.25rem;
    }

    .blog-content {
        padding: 32px 15px;
    }

    .blog-pagination {
        margin: 32px 0;
    }
}

@media (max-width: 767.98px) {
    .blog-hero {
        padding: 32px 0;
    }

    .blog-hero__title {
        font-size: 1.875rem;
    }

    .blog-hero__subtitle {
        font-size: 1rem;
    }

    .blog-card__image-wrapper {
        height: 180px;
    }

    .blog-card__image-wrapper--featured {
        height: 240px;
    }

    .blog-card__content {
        padding: 20px;
    }

    .blog-card__title {
        font-size: 1rem;
    }

    .blog-pagination__btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .blog-hero {
        padding: 24px 0;
    }

    .blog-hero__title {
        font-size: 1.5rem;
    }

    .blog-card__image-wrapper {
        height: 160px;
    }

    .blog-card__image-wrapper--featured {
        height: 200px;
    }

    .blog-card__content {
        padding: 16px;
    }

    .blog-sidebar-card {
        padding: 16px;
    }

    .blog-newsletter {
        padding: 24px;
    }

    .blog-pagination {
        gap: 4px;
    }

    .blog-pagination__btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* Blog Detail Page Styles - Namespaced to prevent conflicts */
/* public/css/blog-detail.css */

/* Base Styles */
.blog-detail-page {
    min-height: 100vh;
    background-color: #f9fafb;
}

/* Breadcrumb Styles */
/* .blog-breadcrumb {
       background-color: white;
       border-bottom: 1px solid #e5e7eb;
   }

   .blog-breadcrumb__content {
       display: flex;
       align-items: center;
       gap: 8px;
       padding: 12px 0;
       font-size: 14px;
   }

   .blog-breadcrumb__link {
       color: #6b7280;
       text-decoration: none;
       transition: color 0.2s;
   }

   .blog-breadcrumb__link:hover {
       color: #1e5a96;
   }

   .blog-breadcrumb__separator {
       width: 16px;
       height: 16px;
       color: #9ca3af;
   }

   .blog-breadcrumb__current {
       color: #111827;
   } */

/* Main Content */
.blog-main {
    padding: 32px 15px;
}

/* Article Styles */
.blog-article {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 48px;
}

.blog-article__featured-image {
    position: relative;
    height: 400px;
    background-color: #e5e7eb;
}

.blog-article__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #45a049;
    color: white;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.blog-article__content {
    padding: 32px;
}

.blog-article__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.blog-article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.blog-article__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

.blog-article__icon {
    width: 16px;
    height: 16px;
    color: #1e5a96;
}

/* Share Buttons */
.blog-article__share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 32px;
}

.blog-article__share-label {
    font-size: 14px;
    color: #6b7280;
}

.blog-share-btn {
    padding: 8px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.blog-share-btn--facebook {
    background-color: #eff6ff;
    color: #1e5a96;
}

.blog-share-btn--facebook:hover {
    background-color: #dbeafe;
}

.blog-share-btn--twitter {
    background-color: #eff6ff;
    color: #1e5a96;
}

.blog-share-btn--twitter:hover {
    background-color: #dbeafe;
}

.blog-share-btn--linkedin {
    background-color: #eff6ff;
    color: #1e5a96;
}

.blog-share-btn--linkedin:hover {
    background-color: #dbeafe;
}

.blog-share-btn--email {
    background-color: #eff6ff;
    color: #1e5a96;
}

.blog-share-btn--email:hover {
    background-color: #dbeafe;
}

.blog-share-btn--share {
    background-color: #f0fdf4;
    color: #45a049;
    /* margin-left: auto; */
}

.blog-share-btn--share:hover {
    background-color: #dcfce7;
}

/* Article Body */
.blog-article__body {
    max-width: none;
}

.blog-article__body p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 24px;
}

.blog-article__body h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: #111827;
    margin-top: 32px;
    margin-bottom: 16px;
}

.blog-article__body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

/* Highlight Boxes */
.blog-highlight {
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.blog-highlight--blue {
    background-color: #eff6ff;
    border-left: 4px solid #1e5a96;
}

.blog-highlight--green {
    background-color: #f0fdf4;
    border-left: 4px solid #45a049;
}

.blog-highlight h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 12px 0;
}

.blog-highlight p {
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

/* Quote */
.blog-quote {
    background-color: #f3f4f6;
    border-radius: 8px;
    padding: 24px;
    margin-top: 32px;
}

.blog-quote p {
    color: #4b5563;
    line-height: 1.75;
    font-style: italic;
    margin: 0;
}

/* Tags */
.blog-article__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.blog-article__tag-icon {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.blog-tag {
    padding: 6px 12px;
    border: 1px solid #1e5a96;
    color: #1e5a96;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-tag:hover {
    background-color: #1e5a96;
    color: white;
}

/* Author Bio */
.blog-author {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(to right, #eff6ff, #f0fdf4);
    border-radius: 8px;
    display: flex;
    gap: 16px;
}

.blog-author__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #1e5a96;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.blog-author__info {
    flex: 1;
}

.blog-author__name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.blog-author__title {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 12px 0;
}

.blog-author__bio {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Related Posts */
.blog-related {
    margin-top: 48px;
}

.blog-related__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.blog-related-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
    cursor: pointer;
}

.blog-related-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.blog-related-card__image-wrapper {
    position: relative;
    height: 192px;
    background-color: #e5e7eb;
    overflow: hidden;
}

.blog-related-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-related-card:hover .blog-related-card__image {
    transform: scale(1.05);
}

.blog-related-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #45a049;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.blog-related-card__content {
    padding: 16px;
}

.blog-related-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    transition: color 0.2s;
}

.blog-related-card:hover .blog-related-card__title {
    color: #1e5a96;
}

.blog-related-card__excerpt {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-related-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-related-card__meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6b7280;
}

.blog-related-card__meta-item svg {
    width: 12px;
    height: 12px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .blog-main {
        padding: 24px 15px;
    }

    .blog-article__title {
        font-size: 1.875rem;
    }

    .blog-article__featured-image {
        height: 300px;
    }

    .blog-article__content {
        padding: 24px;
    }

    .blog-sidebar-sticky {
        position: relative;
        top: 0;
        margin-top: 32px;
    }
}

@media (max-width: 767.98px) {
    .blog-article__title {
        font-size: 1.5rem;
    }

    .blog-article__featured-image {
        height: 240px;
    }

    .blog-article__content {
        padding: 20px;
    }

    .blog-article__body h2 {
        font-size: 1.5rem;
    }

    .blog-article__body h3 {
        font-size: 1.25rem;
    }

    .blog-author {
        flex-direction: column;
        text-align: center;
    }

    .blog-author__avatar {
        margin: 0 auto;
    }

    .blog-related__title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .blog-breadcrumb__current {
        display: none;
    }

    .blog-article__title {
        font-size: 1.25rem;
    }

    .blog-article__featured-image {
        height: 200px;
    }

    .blog-article__content {
        padding: 16px;
    }

    .blog-article__meta {
        gap: 12px;
    }

    .blog-article__share {
        flex-wrap: wrap;
    }

    .blog-share-btn--share {
        margin-left: 0;
    }

    .blog-highlight,
    .blog-quote {
        padding: 16px;
    }

    .blog-sidebar-card {
        padding: 16px;
    }

    .blog-newsletter {
        padding: 24px;
    }
}

/* ========================================
   JSBMR Celebrity Detail Page Styles
   Prefix: jsbmr-celeb-
   All selectors are highly specific to avoid conflicts
   ======================================== */

/* Body & Base */
.jsbmr-celeb-body {
    margin: 0;
    padding: 0;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f3f4f6;
    color: #1f2937;
}

/* Hero Section */
.jsbmr-celeb-hero {
    position: relative;
    height: 400px;
    background-color: #111827;
}

.jsbmr-celeb-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.jsbmr-celeb-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jsbmr-celeb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(17, 24, 39, 0.6) 0%,
        rgba(17, 24, 39, 0.8) 50%,
        rgba(17, 24, 39, 1) 100%
    );
}

.jsbmr-celeb-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    z-index: 1;
}

.jsbmr-celeb-profile-wrapper {
    display: flex;
    gap: 32px;
    align-items: flex-end;
    padding-bottom: 32px;
    width: 100%;
}

.jsbmr-celeb-profile-img-wrap {
    flex-shrink: 0;
    margin-bottom: -64px;
}

.jsbmr-celeb-profile-img {
    width: 192px;
    height: 192px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .jsbmr-celeb-profile-img {
        width: 256px;
        height: 256px;
    }
}

.jsbmr-celeb-profile-info {
    color: #ffffff;
    padding-bottom: 24px;
    flex: 1;
}

.jsbmr-celeb-name {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.jsbmr-celeb-profession {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.jsbmr-celeb-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.jsbmr-celeb-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.jsbmr-celeb-meta-item svg {
    width: 20px;
    height: 20px;
    color: #45a049;
}

/* Stats Bar */
.jsbmr-celeb-stats-section {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 32px 0;
}

.jsbmr-celeb-stat-item {
    text-align: center;
}

.jsbmr-celeb-stat-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.jsbmr-celeb-stat-icon-wrap svg {
    width: 24px;
    height: 24px;
}

.jsbmr-celeb-stat-icon-blue {
    color: #1e5a96;
}

.jsbmr-celeb-stat-icon-green {
    color: #45a049;
}

.jsbmr-celeb-stat-icon-yellow {
    color: #eab308;
}

.jsbmr-celeb-stat-number {
    font-size: 32px;
    font-weight: 700;
}

.jsbmr-celeb-stat-blue {
    color: #1e5a96;
}

.jsbmr-celeb-stat-green {
    color: #45a049;
}

.jsbmr-celeb-stat-yellow {
    color: #eab308;
}

.jsbmr-celeb-stat-label {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Main Content */
.jsbmr-celeb-main {
    padding: 48px 0;
}

/* Sections */
.jsbmr-celeb-section {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin-bottom: 32px;
}

.jsbmr-celeb-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.jsbmr-celeb-header-icon {
    width: 24px;
    height: 24px;
    color: #1e5a96;
}

.jsbmr-celeb-section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.jsbmr-celeb-title-blue {
    color: #1e5a96;
}

.jsbmr-celeb-title-green {
    color: #45a049;
}

.jsbmr-celeb-title-white {
    color: #ffffff;
}

/* Biography */
.jsbmr-celeb-bio-text {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

/* Filmography */
.jsbmr-celeb-filmography {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jsbmr-celeb-movie-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
    transition: background-color 0.2s;
}

.jsbmr-celeb-movie-card:hover {
    background-color: #f9fafb;
}

.jsbmr-celeb-movie-poster {
    width: 80px;
    height: 112px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.jsbmr-celeb-movie-info {
    flex: 1;
}

.jsbmr-celeb-movie-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.jsbmr-celeb-movie-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.jsbmr-celeb-movie-year {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.jsbmr-celeb-movie-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: #e6f0f8;
    padding: 4px 12px;
    border-radius: 20px;
}

.jsbmr-celeb-movie-rating svg {
    width: 16px;
    height: 16px;
    color: #eab308;
    fill: #eab308;
}

.jsbmr-celeb-movie-rating span {
    font-size: 14px;
    font-weight: 600;
    color: #1e5a96;
}

.jsbmr-celeb-movie-role {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Trivia Section */
.jsbmr-celeb-trivia-section {
    background: linear-gradient(135deg, #f0f8f0 0%, #e6f0f8 100%);
    border: 2px solid #45a049;
}

.jsbmr-celeb-trivia-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jsbmr-celeb-trivia-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.jsbmr-celeb-bullet {
    color: #45a049;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.5;
}

.jsbmr-celeb-trivia-item span:last-child {
    color: #374151;
    line-height: 1.6;
}

/* Sidebar Sections */
.jsbmr-celeb-sidebar-section {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin-bottom: 24px;
}

.jsbmr-celeb-sidebar-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Personal Info */
.jsbmr-celeb-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jsbmr-celeb-info-item {
    padding-bottom: 12px;
}

.jsbmr-celeb-info-item:not(:last-child) {
    border-bottom: 1px solid #f3f4f6;
}

.jsbmr-celeb-info-label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.jsbmr-celeb-info-value {
    font-size: 15px;
    color: #1f2937;
    font-weight: 500;
    margin: 0;
}

/* Awards Section */
.jsbmr-celeb-awards-section {
    background: linear-gradient(135deg, #1e5a96 0%, #154270 100%);
    color: #ffffff;
}

.jsbmr-celeb-awards-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.jsbmr-celeb-award-icon {
    width: 24px;
    height: 24px;
    color: #fcd34d;
}

.jsbmr-celeb-awards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jsbmr-celeb-award-item {
    border-left: 2px solid #fcd34d;
    padding-left: 12px;
}

.jsbmr-celeb-award-year {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.jsbmr-celeb-award-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.jsbmr-celeb-award-movie {
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
}

/* Fan Following Section */
.jsbmr-celeb-following-section {
    background-color: #f0f8f0;
    border: 2px solid #45a049;
}

.jsbmr-celeb-following-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.jsbmr-celeb-users-icon {
    width: 24px;
    height: 24px;
    color: #45a049;
}

.jsbmr-celeb-following-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jsbmr-celeb-following-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jsbmr-celeb-following-label {
    font-size: 14px;
    color: #374151;
}

.jsbmr-celeb-following-value {
    font-size: 15px;
    font-weight: 600;
    color: #45a049;
}

.jsbmr-celeb-status-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #45a049;
    color: #ffffff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .jsbmr-celeb-profile-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .jsbmr-celeb-profile-img-wrap {
        margin-bottom: 16px;
    }

    .jsbmr-celeb-meta {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .jsbmr-celeb-hero {
        height: 300px;
    }

    .jsbmr-celeb-name {
        font-size: 28px;
    }

    .jsbmr-celeb-profession {
        font-size: 16px;
    }

    .jsbmr-celeb-profile-img {
        width: 160px;
        height: 160px;
    }

    .jsbmr-celeb-section {
        padding: 16px;
    }

    .jsbmr-celeb-sidebar-section {
        padding: 16px;
    }

    .jsbmr-celeb-movie-card {
        flex-direction: column;
    }

    .jsbmr-celeb-movie-poster {
        width: 100%;
        height: 200px;
    }
}

/* Movie Detail Page Styles - Namespaced to prevent conflicts */

.movie-detail-wrapper {
    background: #ffffff;
    padding-bottom: 48px;
}

/* Hero Section */
.movie-hero-section {
    position: relative;
    height: 500px;
    background-color: #111827;
}

.movie-hero-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.movie-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        #111827 0%,
        rgba(17, 24, 39, 0.8) 50%,
        rgba(17, 24, 39, 0.4) 100%
    );
}

.movie-hero-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 48px;
}

.movie-hero-content {
    display: flex;
    gap: 32px;
    align-items: flex-end;
    width: 100%;
}

.movie-poster-wrapper {
    flex-shrink: 0;
}

.movie-poster-image {
    width: 256px;
    height: 384px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.movie-hero-info {
    color: white;
    padding-bottom: 16px;
    flex: 1;
}

.movie-hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    line-height: 1.2;
}

.movie-hero-tagline {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 24px;
}

.movie-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.movie-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.movie-meta-icon {
    color: #45a049;
    flex-shrink: 0;
}

.movie-rating-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.movie-rating-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #1e5a96;
    padding: 8px 16px;
    border-radius: 8px;
}

.movie-star-icon {
    color: #fbbf24;
    fill: #fbbf24;
}

.movie-rating-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.movie-rating-max {
    font-size: 0.875rem;
    color: #d1d5db;
}

.movie-votes-text {
    color: #9ca3af;
}

/* Content Section */
.movie-content-section {
    margin-top: 48px;
}

/* Section Card */
.movie-section-card {
    background: white;
    border-radius: 8px;
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 24px;
    margin-bottom: 32px;
}

.movie-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.movie-section-icon {
    color: #1e5a96;
}

.movie-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.movie-title-blue {
    color: #1e5a96;
}

.movie-section-text {
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

/* Cast Section */
.movie-cast-item {
    text-align: center;
}

.movie-cast-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.movie-cast-image:hover {
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.movie-cast-name {
    color: #1f2937;
    font-weight: 500;
    margin-bottom: 4px;
}

.movie-cast-role {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Reviews Section */
.movie-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.movie-review-item {
    border-left: 4px solid #45a049;
    padding-left: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.movie-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.movie-review-author {
    color: #1f2937;
    font-weight: 500;
}

.movie-review-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.movie-star-filled {
    color: #fbbf24;
    fill: #fbbf24;
}

.movie-star-half {
    color: #fbbf24;
}

.movie-star-empty {
    color: #d1d5db;
}

.movie-review-text {
    color: #6b7280;
    font-style: italic;
    margin: 0;
}

/* Sidebar Cards */
.movie-sidebar-card {
    background: white;
    border-radius: 8px;
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 24px;
    margin-bottom: 24px;
}

.movie-sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.movie-details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.movie-detail-item {
    margin: 0;
}

.movie-detail-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.movie-detail-value {
    color: #1f2937;
    font-weight: 500;
    margin: 0;
}

.movie-genre-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.movie-genre-tag {
    background-color: #e6f0f8;
    color: #1e5a96;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Box Office Card */
.movie-boxoffice-card {
    background: linear-gradient(135deg, #1e5a96 0%, #154270 100%);
    border-radius: 8px;
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 24px;
    margin-bottom: 24px;
    color: white;
}

.movie-boxoffice-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.movie-boxoffice-icon {
    color: #45a049;
}

.movie-boxoffice-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.movie-boxoffice-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.movie-boxoffice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.movie-boxoffice-total {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 12px;
}

.movie-boxoffice-value {
    font-weight: 500;
}

.movie-boxoffice-highlight {
    color: #45a049;
    font-weight: 600;
}

/* Stats Card */
.movie-stats-card {
    background-color: #f0f8f0;
    border: 2px solid #45a049;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.movie-stats-title {
    color: #45a049;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.movie-stats-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.movie-stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.movie-stats-label {
    color: #374151;
}

.movie-stats-value {
    color: #45a049;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .movie-hero-title {
        font-size: 2rem;
    }

    .movie-hero-tagline {
        font-size: 1.125rem;
    }
}

@media (max-width: 767.98px) {
    .movie-hero-section {
        height: 400px;
    }

    .movie-hero-container {
        padding-bottom: 32px;
    }

    .movie-hero-title {
        font-size: 1.75rem;
    }

    .movie-hero-tagline {
        font-size: 1rem;
    }

    .movie-meta-info {
        flex-direction: column;
        gap: 12px;
    }

    .movie-rating-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .movie-content-section {
        margin-top: 32px;
    }

    .movie-section-card,
    .movie-sidebar-card,
    .movie-boxoffice-card,
    .movie-stats-card {
        padding: 20px;
        margin-bottom: 24px;
    }

    .movie-section-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .movie-hero-section {
        height: 350px;
    }

    .movie-hero-container {
        padding-bottom: 24px;
    }

    .movie-hero-title {
        font-size: 1.5rem;
    }

    .movie-poster-image {
        width: 180px;
        height: 270px;
    }

    .movie-rating-value {
        font-size: 1.25rem;
    }

    .movie-section-card,
    .movie-sidebar-card,
    .movie-boxoffice-card,
    .movie-stats-card {
        padding: 16px;
    }
}

/* ========================================
   Login, Register & Forget Password
   ======================================== */
/* Auth Pages Styles - Namespaced to prevent conflicts */
/* public/css/auth-pages.css */

/* Base Styles */
.auth-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    background: linear-gradient(to bottom right, #eff6ff, #f0fdf4);
}

.auth-container {
    width: 100%;
    max-width: 448px;
}

.auth-wrapper {
    width: 100%;
}

/* Card Styles */
.auth-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 32px;
}

/* Logo */
.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.auth-logo__image {
    height: 64px;
}

/* Header */
.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header__title {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.auth-header__subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.auth-header__email {
    font-size: 1rem;
    color: #111827;
    font-weight: 500;
    margin: 8px 0 0 0;
}

/* Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form-group {
    display: flex;
    flex-direction: column;
}

.auth-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.auth-input-wrapper {
    position: relative;
}

.auth-input-icon {
    position: absolute;
    inset: 0;
    left: 0;
    padding-left: 16px;
    display: flex;
    align-items: center;
    pointer-events: none;
    color: #9ca3af;
}

.auth-input {
    display: block;
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.auth-input:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #1e5a96;
}

.auth-input--password {
    padding-right: 48px;
}

.auth-password-toggle {
    position: absolute;
    inset-y: 0;
    right: 0;
    top: 14px;
    padding-right: 16px;
    display: flex;
    align-items: center;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.auth-password-toggle:hover {
    color: #6b7280;
}

.auth-error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
}

/* Options Row */
.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth-checkbox {
    display: flex;
    align-items: center;
}

.auth-checkbox--start {
    align-items: flex-start;
}

.auth-checkbox__input {
    width: 16px;
    height: 16px;
    accent-color: #45a049;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.auth-checkbox__label {
    margin-left: 8px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
}

.auth-checkbox__label--multi {
    line-height: 1.5;
}

.auth-link {
    color: #1e5a96;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.auth-link:hover {
    color: #1a4d7f;
}

/* Button Styles */
.auth-btn {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.auth-btn--primary {
    background-color: #45a049;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(69, 160, 73, 0.4);
}

.auth-btn--primary:hover {
    background-color: #3d8f41;
    box-shadow: 0 6px 20px rgba(69, 160, 73, 0.5);
    transform: translateY(-2px);
}

.auth-btn--outline {
    background-color: white;
    color: #374151;
    border: 1px solid #d1d5db;
}

.auth-btn--outline:hover {
    background-color: #f9fafb;
}

/* Divider */
.auth-divider {
    position: relative;
    margin: 24px 0;
}

.auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #d1d5db;
}

.auth-divider__text {
    position: relative;
    display: inline-block;
    background-color: white;
    padding: 0 16px;
    color: #6b7280;
    font-size: 14px;
    left: 50%;
    transform: translateX(-50%);
}

/* Social Login */
.auth-social {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 12px;
}

.auth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background-color: white;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.auth-social-btn:hover {
    background-color: #f9fafb;
}

.auth-social-icon {
    margin-right: 8px;
}

/* Footer Text */
.auth-footer-text {
    margin-top: 32px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* Terms Text */
.auth-terms {
    margin-top: 24px;
    text-align: center;
    color: #6b7280;
    font-size: 13px;
}

.auth-terms-link {
    color: #1e5a96;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.auth-terms-link:hover {
    text-decoration: underline;
}

/* Back Link */
.auth-back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1e5a96;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px;
    transition: color 0.2s;
}

.auth-back-link:hover {
    color: #1a4d7f;
}

/* Help Box */
.auth-help-box {
    margin-top: 32px;
    padding: 16px;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.auth-help-box p {
    color: #374151;
    font-size: 13px;
    text-align: center;
    margin: 0;
}

.auth-help-box strong {
    font-weight: 600;
}

/* Success Icon */
.auth-success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.auth-success-icon__circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #45a049;
}

/* Alert Box */
.auth-alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.auth-alert--info {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
}

.auth-alert p {
    color: #374151;
    font-size: 14px;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

/* Actions */
.auth-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Responsive Styles */
@media (max-width: 639.98px) {
    .auth-page {
        padding: 24px 16px;
    }

    .auth-card {
        padding: 24px;
    }

    .auth-header__title {
        font-size: 1.5rem;
    }

    .auth-header__subtitle {
        font-size: 0.875rem;
    }

    .auth-social {
        grid-template-columns: 1fr;
    }

    .auth-options {
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 12px;
    }
}

@media (min-width: 640px) {
    .auth-card {
        padding: 40px;
    }
}

/* ========================================
   CART PAGE
   ======================================== */
/* Cart Page Styles - Namespaced to prevent conflicts */

.cart-count {
    padding: 0 0 22px 0;
}

.cart-page-wrapper {
    min-height: 100vh;
    background-color: #f9fafb;
    display: flex;
    flex-direction: column;
}

/* Header */
.cart-header {
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
}

.cart-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-logo {
    height: 48px;
}

.cart-continue-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e5a96;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cart-continue-link:hover {
    color: #164573;
}

.cart-continue-icon {
    flex-shrink: 0;
}

/* Main Content */
.cart-main-content {
    flex: 1;
    padding: 32px 0;
}

.cart-page-header {
    margin-bottom: 24px;
}

.cart-page-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
}

.cart-page-icon {
    color: #1e5a96;
}

.cart-page-subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
    padding-left: 10px;
}

/* Cart Item Card */
.cart-item-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 24px;
    margin-bottom: 16px;
}

.cart-item-header {
    margin-bottom: 16px;
}

.cart-item-title {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.cart-item-title > a {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cart-item-meta-item {
    color: #6b7280;
    font-size: 0.875rem;
}

.cart-item-meta-label {
    font-weight: 500;
}

/* Mobile Layout */
.cart-item-mobile {
    flex-direction: column;
    gap: 16px;
}

.cart-item-mobile-row {
    display: flex;
    justify-content: space-between;
}

.cart-item-mobile-col {
    text-align: left;
}

.cart-item-mobile-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cart-quantity-label-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-quantity-label-text {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Desktop Layout */
.cart-item-desktop {
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cart-item-desktop-col {
    text-align: center;
    flex-shrink: 0;
}

/* Item Labels and Values */
.cart-item-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.cart-item-value {
    color: #111827;
    font-weight: 500;
    font-size: 1rem;
}

/* Quantity Controls */
.cart-quantity-controls {
    display: flex;
    align-items: center;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e5a96;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.cart-qty-btn:hover {
    background: #164573;
}

.cart-qty-minus {
    border-radius: 4px 0 0 4px;
}

.cart-qty-plus {
    border-radius: 0 4px 4px 0;
}

.cart-qty-display {
    width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #d1d5db;
    border-bottom: 1px solid #d1d5db;
    background: white;
}

.cart-qty-value {
    color: #111827;
    font-weight: 500;
}

/* Remove Button */
.cart-remove-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.cart-remove-btn:hover {
    background: #dc2626;
}

/* Info Banner */
.cart-info-banner {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.cart-info-icon {
    color: #1e5a96;
    flex-shrink: 0;
}

.cart-info-text {
    font-size: 0.875rem;
    color: #374151;
}

.cart-info-paragraph {
    margin-bottom: 4px;
}

.cart-info-paragraph:last-child {
    margin-bottom: 0;
}

.cart-info-link {
    font-weight: 700;
    color: #1e5a96;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-info-link:hover {
    color: #164573;
    text-decoration: underline;
}

/* Order Summary Card */
.cart-summary-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 24px;
    position: sticky;
    top: 32px;
}

.cart-summary-title {
    color: #111827;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.cart-summary-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-summary-label,
.cart-summary-value {
    color: #6b7280;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
    font-weight: 600;
}

.cart-summary-total-label,
.cart-summary-total-value {
    color: #111827;
    font-size: 1.125rem;
}

/* Buttons */
.cart-checkout-btn {
    width: 100%;
    background: #45a049;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 12px;
    text-align: center;
}

.cart-checkout-btn:hover {
    background: #3d8f41;
}

.cart-continue-btn {
    width: 100%;
    background: white;
    color: #1e5a96;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid #1e5a96;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cart-continue-btn:hover {
    background: #1e5a96;
    color: white;
}

/* Security Badge */
.cart-security-badge {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cart-security-icon {
    color: #45a049;
}

.cart-security-text {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Empty Cart State */
.cart-empty-state {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 96px 48px;
    text-align: center;
}

.cart-empty-icon {
    color: #9ca3af;
    margin: 0 auto 16px;
}

.cart-empty-title {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-empty-text {
    color: #6b7280;
    margin-bottom: 24px;
}

.cart-browse-btn {
    display: inline-block;
    background: #45a049;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cart-browse-btn:hover {
    background: #3d8f41;
    color: white;
}

/* Footer */
.cart-footer {
    background: #1e5a96;
    color: white;
    margin-top: 64px;
    padding: 32px 0;
}

.cart-footer-top {
    margin-bottom: 24px;
}

.cart-footer-heading {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.cart-footer-text {
    color: #bfdbfe;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.cart-footer-bottom {
    border-top: 1px solid rgba(191, 219, 254, 0.3);
    padding-top: 24px;
    text-align: center;
    color: #bfdbfe;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .cart-summary-card {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .cart-main-content {
        padding: 24px 0;
    }

    .cart-page-title {
        font-size: 1.5rem;
    }

    .cart-item-card {
        padding: 20px 16px;
    }

    .cart-item-title {
        font-size: 1rem;
    }

    .cart-summary-card {
        padding: 20px;
    }

    .cart-empty-state {
        padding: 48px 24px;
    }

    .cart-footer {
        margin-top: 48px;
    }
}

@media (max-width: 575.98px) {
    .cart-header-content {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .cart-continue-link {
        font-size: 0.875rem;
    }

    .cart-page-title {
        font-size: 1.25rem;
    }

    .cart-item-card {
        padding: 16px;
    }

    .cart-qty-display {
        width: 40px;
    }
}

/* ========================================
            MY ACCOUNTS PAGE
   ======================================== */
/* Account Page Styles - Namespaced to prevent conflicts */

.account-page-wrapper {
    min-height: 100vh;
    background-color: #f9fafb;
}

/* Header */
.account-header {
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
}

.account-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.account-logo {
    height: 48px;
}

.account-nav {
    display: flex;
    gap: 24px;
}

.account-nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.account-nav-link:hover {
    color: #1e5a96;
}

/* Main Content */
.account-main-content {
    padding: 32px 0;
}

.account-page-header {
    margin-bottom: 24px;
}

.account-page-title {
    color: #111827;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.account-page-subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

/* Sidebar */
.account-sidebar-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 24px;
}

.account-user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.account-user-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e5a96, #15427a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.account-user-initials {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.account-user-info {
    flex: 1;
    min-width: 0;
}

.account-user-name {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.account-user-email {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Sidebar Navigation */
.account-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.account-nav-item:hover {
    background: #f3f4f6;
    color: #1e5a96;
}

.account-nav-item.active {
    background: #1e5a96;
    color: white;
}

.account-nav-item.active .account-nav-icon {
    color: white;
}

.account-nav-logout {
    color: #dc2626;
}

.account-nav-logout:hover {
    background: #fef2f2;
    color: #dc2626;
}

.account-nav-icon {
    color: #6b7280;
    flex-shrink: 0;
}

/* Stat Cards */
.account-stat-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 24px;
}

.account-stat-icon-wrapper {
    display: inline-flex;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.account-stat-icon-blue {
    background: #eff6ff;
}

.account-stat-icon-green {
    background: #f0fdf4;
}

.account-stat-icon-purple {
    background: #faf5ff;
}

.account-stat-icon-orange {
    background: #fff7ed;
}

.account-stat-icon {
    width: 24px;
    height: 24px;
}

.account-stat-blue .account-stat-icon {
    color: #1e5a96;
}

.account-stat-green .account-stat-icon {
    color: #45a049;
}

.account-stat-purple .account-stat-icon {
    color: #9333ea;
}

.account-stat-orange .account-stat-icon {
    color: #ea580c;
}

.account-stat-value {
    color: #111827;
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.account-stat-label {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Content Card */
.account-content-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 24px;
}

.account-card-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.account-card-header-simple {
    margin-bottom: 24px;
}

.account-card-title {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.account-card-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Buttons */
.account-btn-outline,
.account-btn-primary,
.account-btn-secondary,
.account-btn-download,
.account-btn-filter,
.account-btn-upload,
.account-btn-cancel,
.account-btn-save,
.account-btn-danger {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.875rem;
}

.account-btn-outline {
    background: white;
    border-color: #1e5a96;
    color: #1e5a96;
}

.account-btn-outline:hover {
    background: #1e5a96;
    color: white;
}

.account-btn-primary {
    background: #45a049;
    border-color: #45a049;
    color: white;
}

.account-btn-primary:hover {
    background: #3d8f41;
    border-color: #3d8f41;
}

.account-btn-secondary {
    background: #1e5a96;
    border-color: #1e5a96;
    color: white;
}

.account-btn-secondary:hover {
    background: #15427a;
    border-color: #15427a;
}

.account-btn-download {
    background: white;
    border-color: #45a049;
    color: #45a049;
    gap: 8px;
}

.account-btn-download:hover {
    background: #45a049;
    color: white;
}

.account-btn-filter {
    background: white;
    border-color: #d1d5db;
    color: #374151;
    gap: 8px;
}

.account-btn-filter:hover {
    background: #f9fafb;
}

.account-btn-upload {
    background: white;
    border-color: #d1d5db;
    color: #374151;
    padding: 6px 12px;
    font-size: 0.875rem;
}

.account-btn-upload:hover {
    background: #f9fafb;
}

.account-btn-cancel {
    background: white;
    border-color: #d1d5db;
    color: #374151;
}

.account-btn-cancel:hover {
    background: #f9fafb;
}

.account-btn-save {
    background: #45a049;
    border-color: #45a049;
    color: white;
    gap: 8px;
}

.account-btn-save:hover {
    background: #3d8f41;
    border-color: #3d8f41;
}

.account-btn-danger {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
}

.account-btn-danger:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

.account-btn-icon {
    flex-shrink: 0;
}

/* Orders List */
.account-orders-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.account-order-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.account-order-item:hover {
    border-color: #1e5a96;
}

.account-order-content {
    flex: 1;
    min-width: 0;
}

.account-order-header-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.account-order-title {
    color: #111827;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.account-order-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    align-self: flex-start;
}

.account-order-status.status-completed {
    background: #dcfce7;
    color: #45a049;
}

.account-order-status.status-processing {
    background: #fef3c7;
    color: #d97706;
}

.account-order-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #6b7280;
    font-size: 0.875rem;
}

.account-meta-separator {
    color: #d1d5db;
}

.account-order-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.account-order-amount {
    color: #111827;
    font-weight: 600;
}

/* Search */
.account-search-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.account-search-wrapper {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.account-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.account-search-input {
    width: 100%;
    padding: 10px 12px 10px 40px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.account-search-input:focus {
    outline: none;
    border-color: #1e5a96;
    box-shadow: 0 0 0 3px rgba(30, 90, 150, 0.1);
}

/* Table */
.account-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
}

.account-table {
    width: 100%;
    border-collapse: collapse;
}

.account-table thead {
    border-bottom: 1px solid #e5e7eb;
}

.account-table th {
    text-align: left;
    padding: 12px 16px;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 600;
}

.account-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.3s ease;
}

.account-table tbody tr:hover {
    background: #f9fafb;
}

.account-table td {
    padding: 16px;
    font-size: 0.875rem;
}

.account-order-id {
    color: #1e5a96;
    font-weight: 500;
}

.account-table-title {
    color: #111827;
    font-weight: 500;
    margin-bottom: 8px;
}

.account-table-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.account-badge {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #6b7280;
}

.account-table-date,
.account-table-amount {
    color: #6b7280;
}

.account-table-amount {
    font-weight: 600;
    color: #111827;
}

.account-table-actions {
    display: flex;
    gap: 8px;
}

.account-action-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-action-download {
    background: #f0fdf4;
    color: #45a049;
}

.account-action-download:hover {
    background: #45a049;
    color: white;
}

.account-action-view {
    background: #eff6ff;
    color: #1e5a96;
}

.account-action-view:hover {
    background: #1e5a96;
    color: white;
}

#formAlert {
    margin-top: 10px;
}

/* Pagination */
.account-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: 16px;
}

.account-pagination-info {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.account-pagination-controls {
    display: flex;
    gap: 8px;
}

.account-page-btn {
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: white;
    color: #374151;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-page-btn:hover {
    background: #f9fafb;
}

.account-page-btn.active {
    background: #1e5a96;
    color: white;
    border-color: #1e5a96;
}

/* Downloads */
.account-download-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    margin-bottom: 16px;
}

.account-download-item:hover {
    border-color: #1e5a96;
}

.account-download-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-download-icon.icon-pdf {
    background: #fef2f2;
    color: #dc2626;
}

.account-download-icon.icon-excel {
    background: #f0fdf4;
    color: #16a34a;
}

.account-download-content {
    flex: 1;
    min-width: 0;
}

.account-download-title {
    color: #111827;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}

.account-download-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.account-download-date {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

/* Info Card */
.account-info-card {
    background: #eff6ff;
    border: 1px solid #1e5a96;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.account-info-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1e5a96;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.account-info-icon {
    color: white;
}

.account-info-title {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.account-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-info-list li {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Profile Section */
.account-profile-photo-section {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.account-profile-photo {
    position: relative;
}

.account-profile-photo-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e5a96, #15427a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.account-profile-photo-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: #45a049;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.account-profile-photo-btn:hover {
    background: #3d8f41;
}

.account-profile-photo-title {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.account-profile-photo-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

/* Form */
.account-profile-form {
    margin: 0;
}

.account-form-label {
    display: block;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.account-form-input,
.account-form-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.account-form-input:focus,
.account-form-textarea:focus {
    outline: none;
    border-color: #1e5a96;
    box-shadow: 0 0 0 3px rgba(30, 90, 150, 0.1);
}

.account-form-textarea {
    resize: vertical;
}

.account-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Preferences */
.account-preferences-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.account-preference-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.account-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #1e5a96;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.account-preference-title {
    color: #111827;
    font-weight: 500;
    margin-bottom: 4px;
}

.account-preference-desc {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Danger Zone */
.account-danger-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 24px;
}

.account-danger-title {
    color: #7f1d1d;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.account-danger-subtitle {
    color: #991b1b;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

/* Responsive Design */
@media (min-width: 576px) {
    .account-card-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .account-order-header-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .account-order-item {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 991.98px) {
    .account-page-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .account-main-content {
        padding: 24px 0;
    }

    .account-page-title {
        font-size: 1.5rem;
    }

    .account-stat-value {
        font-size: 1.5rem;
    }

    .account-card-title {
        font-size: 1.125rem;
    }

    .account-profile-photo-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .account-download-item {
        flex-direction: column;
    }

    .account-btn-secondary {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .account-sidebar-card {
        padding: 20px;
    }

    .account-content-card {
        padding: 20px;
    }

    .account-search-row {
        flex-direction: column;
    }

    .account-btn-filter {
        width: 100%;
    }
}

/* ========================================
                Celeb Detail Page
   ======================================== */
/* Celebrity Detail Page - Namespaced CSS (cdp- prefix) */

/* Wrapper */
.cdp-wrapper {
    padding-bottom: 3rem;
}

/* Hero Section */
.cdp-hero {
    position: relative;
    height: 400px;
    background-color: #111827;
}

.cdp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cdp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(17, 24, 39, 0.6),
        rgba(17, 24, 39, 0.8),
        #111827
    );
}

.cdp-hero .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.cdp-hero-content {
    width: 100%;
}

.cdp-profile-section {
    display: flex;
    gap: 2rem;
    align-items: flex-end;
    padding-bottom: 2rem;
    width: 100%;
}

.cdp-profile-img-wrapper {
    flex-shrink: 0;
    margin-bottom: -4rem;
}

.cdp-profile-img {
    width: 192px;
    height: 192px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cdp-basic-info {
    color: white;
    padding-bottom: 1.5rem;
    flex: 1;
}

.cdp-name {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cdp-profession {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.cdp-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cdp-info-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cdp-icon {
    flex-shrink: 0;
}

.cdp-icon-green {
    color: #45a049;
}

.cdp-icon-blue {
    color: #1e5a96;
}

.cdp-icon-yellow {
    color: #ca8a04;
}

.cdp-icon-award {
    color: #fbbf24;
}

/* Stats Bar */
.cdp-stats-bar {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cdp-stats-bar .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.cdp-stat-item {
    text-align: center;
}

.cdp-stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.cdp-stat-number {
    font-size: 1.875rem;
    font-weight: 500;
}

.cdp-stat-blue {
    color: #1e5a96;
}

.cdp-stat-green {
    color: #45a049;
}

.cdp-stat-yellow {
    color: #ca8a04;
}

.cdp-stat-label {
    color: #4b5563;
    margin: 0;
}

.cdp-stat-item.share-trigger:hover {
    background-color: #eef4ff;
}

/* Content Section */
.cdp-content-section {
    margin-top: 3rem;
}

.cdp-section {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.cdp-section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cdp-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cdp-title-blue {
    color: #1e5a96;
}

.cdp-title-green {
    color: #45a049;
}

.cdp-text {
    color: #374151;
    line-height: 1.75;
    margin: 0;
}

/* Filmography */
.cdp-filmography {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cdp-movie-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #f3f4f6;
    transition: background-color 0.3s ease;
}

.cdp-movie-item:hover {
    background-color: #f9fafb;
}

.cdp-movie-poster {
    width: 80px;
    height: 112px;
    object-fit: cover;
    border-radius: 0.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.cdp-movie-info {
    flex: 1;
}

.cdp-movie-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cdp-movie-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.cdp-movie-year {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

.cdp-rating-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: #e6f0f8;
}

.cdp-star-icon {
    flex-shrink: 0;
}

.cdp-rating-value {
    color: #1e5a96;
    font-weight: 600;
}

.cdp-movie-role {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
}

/* Trivia Section */
.cdp-trivia-section {
    background: linear-gradient(to bottom right, #f0f8f0, #e6f0f8);
    border: 2px solid #45a049;
}

.cdp-trivia-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cdp-trivia-item {
    display: flex;
    gap: 0.75rem;
}

.cdp-bullet {
    flex-shrink: 0;
    color: #45a049;
    font-weight: 700;
}

.cdp-trivia-item span:last-child {
    color: #374151;
}

/* Sidebar Sections */
.cdp-sidebar-section {
    background-color: white;
}

.cdp-sidebar-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cdp-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cdp-info-item {
    margin: 0;
}

.cdp-info-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 0.25rem 0;
}

.cdp-info-value {
    color: #1f2937;
    margin: 0;
}

/* Awards Section */
.cdp-awards-section {
    background: linear-gradient(to bottom right, #1e5a96, #154270);
    color: white;
}

.cdp-awards-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cdp-awards-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.cdp-awards-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cdp-award-item {
    border-left: 2px solid #fbbf24;
    padding-left: 0.75rem;
}

.cdp-award-year {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0 0 0.25rem 0;
}

.cdp-award-name {
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.cdp-award-movie {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* Social Section */
.cdp-social-section {
    background-color: #f0f8f0;
    border: 2px solid #45a049;
}

.cdp-social-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cdp-social-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #45a049;
    margin: 0;
}

.cdp-social-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cdp-social-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cdp-social-label {
    color: #374151;
}

.cdp-social-value {
    color: #45a049;
    font-weight: 600;
}

.cdp-status-badge {
    padding: 0.25rem 0.75rem;
    background-color: #45a049;
    color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .cdp-profile-img {
        width: 256px;
        height: 256px;
    }
}

@media (max-width: 991.98px) {
    .cdp-profile-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 24px;
    }

    .cdp-profile-img-wrapper {
        margin-bottom: 0;
    }

    .cdp-basic-info {
        padding-bottom: 0;
    }

    .cdp-info-tags {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .cdp-hero .container {
        height: auto;
    }

    .cdp-hero {
        height: auto;
        min-height: 400px;
    }

    .cdp-name {
        font-size: 1.875rem;
    }

    .cdp-profession {
        font-size: 1.125rem;
    }

    .cdp-profile-img {
        width: 160px;
        height: 160px;
    }

    .cdp-stats-bar .container {
        padding-top: 5rem;
    }
}

.share-menu {
    position: absolute;
    background: #fff;
    width: 210px;
    padding: 8px 14px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 9999;
    font-family: system-ui, sans-serif;
}

/* Header */
.share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.share-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
}

/* Each item */
.share-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.15s ease;
    border-radius: 6px;
}

.share-item:hover {
    background: #eef4ff; /* Light blue hover like image */
}

/* Icons */
.share-icon {
    width: 20px;
    height: 20px;
    opacity: 0.9;
}

/* ICON COLOR OVERRIDES */
.share-icon.facebook {
    filter: invert(25%) sepia(18%) saturate(3440%) hue-rotate(185deg)
        brightness(94%) contrast(95%);
}

.share-icon.whatsapp {
    filter: invert(47%) sepia(51%) saturate(1230%) hue-rotate(83deg)
        brightness(92%) contrast(91%);
}

/* Pagination */
.pagination {
    justify-content: center;
}

/* homepage carousel */
.carousel-wrapper {
    position: relative;
    padding: 0 50px;
    margin: 40px 0;
}

.industries-carousel {
    overflow: hidden;
    width: 100%;
}

.industries-track {
    display: flex;
    gap: 24px;
    cursor: grab;
    user-select: none;
    will-change: transform;
    padding: 16px;
}

.industries-track.dragging {
    cursor: grabbing;
    transition: none;
}

.industries-track.animating {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.industry-card {
    flex: 0 0 calc(33.333% - 16px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 380px;
}

.industry-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.industry-card:hover .industry-image {
    height: 180px;
}

.industry-card:hover .industry-description {
    opacity: 1;
    max-height: 200px;
    /* padding-top: 16px; */
}

.industry-card:hover .industry-header {
    margin-bottom: 12px;
}

.industry-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    transition: height 0.4s ease;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-content {
    padding: 24px;
    position: relative;
}

.industry-header {
    margin-bottom: 0;
    transition: margin-bottom 0.3s ease;
}

.industry-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    display: block;
    margin-bottom: 8px;
}

.industry-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.industry-description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.industry-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 16px 0;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #45a049;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: gap 0.3s ease;
}

.industry-link:hover {
    gap: 12px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #0066cc;
    border-color: #0066cc;
    color: white;
}

.carousel-btn:hover svg {
    stroke: white;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #0066cc;
    width: 24px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .industry-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .industry-card {
        flex: 0 0 100%;
    }

    .carousel-wrapper {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

/* About Us- Journey Timeline Section Styles */
.timeline-section {
    background: #f8f9fa;
    position: relative;
}

.timeline-badge {
    display: inline-block;
    background: #1e5a96;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-heading {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-subtitle {
    font-size: 1.125rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-carousel-wrapper {
    position: relative;
}

.timeline-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.timeline-image-container:hover .timeline-image {
    transform: scale(1.05);
}

.timeline-text-content {
    opacity: 0;
    transform: translateX(30px);
    animation: slideIn 0.6s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.milestone-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.milestone-badge.badge-blue {
    background: #ebf4ff;
    color: #2b6cb0;
}

.milestone-badge.badge-green {
    background: #f0fff4;
    color: #22543d;
}

.timeline-year {
    font-size: 1.25rem;
    color: #1e5a96;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.timeline-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.timeline-track-container {
    position: relative;
    padding: 40px 60px;
}

.timeline-track {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    pointer-events: none;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #1e5a96, #45a049);
    transition: width 0.5s ease;
    width: 0%;
    pointer-events: none;
}

.timeline-points {
    position: relative;
    z-index: 1;
}

.timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.point-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 3px solid #cbd5e0;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.timeline-point:hover .point-dot {
    transform: scale(1.3);
    border-color: #1e5a96;
}

.timeline-point.active .point-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1e5a96, #45a049);
    border-color: #1e5a96;
    box-shadow: 0 0 0 4px rgba(30, 90, 150, 0.2);
}

.point-label {
    font-size: 14px;
    font-weight: 600;
    color: #718096;
    transition: all 0.3s ease;
}

.timeline-point.active .point-label {
    color: #1e5a96;
    font-size: 16px;
}

.timeline-nav-buttons {
    gap: 15px;
}

.timeline-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #1e5a96, #45a049);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 90, 150, 0.4);
}

.timeline-nav-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 90, 150, 0.6);
    background: linear-gradient(135deg, #1e5a96, #45a049);
    color: white;
}

.timeline-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .timeline-heading {
        font-size: 2rem;
    }

    .timeline-image {
        height: 250px;
    }

    .timeline-title {
        font-size: 1.5rem;
    }

    .timeline-track-container {
        padding: 40px 20px;
        overflow-x: auto;
    }

    .point-label {
        font-size: 12px;
    }

    .timeline-text-content {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .timeline-heading {
        font-size: 1.75rem;
    }

    .timeline-subtitle {
        font-size: 1rem;
    }

    .timeline-title {
        font-size: 1.25rem;
    }

    .timeline-description {
        font-size: 1rem;
    }

    .timeline-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Header dropdowns */
/* Header Spacer for Mobile */
.header-spacer {
    display: none;
}

@media (max-width: 768px) {
    .header-spacer {
        display: block;
        flex: 1;
    }
}

/* Action Icons - Desktop */
.action-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 6px;
    margin-left: 8px;
}

.action-icon-link:hover {
    color: #1e5a96;
    background-color: #f3f4f6;
}

.action-icon-link svg {
    display: block;
}

/* Mobile Actions Outside Hamburger */
.header-mobile-actions {
    display: none;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}

.mobile-action-help-icon,
.mobile-action-signin-icon,
.mobile-action-primary-icon,
.mobile-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 6px;
    min-width: 36px;
    min-height: 36px;
}

.mobile-action-help-icon:hover,
.mobile-action-signin-icon:hover,
.mobile-action-icon:hover {
    color: #1e5a96;
    background-color: #f3f4f6;
}

.mobile-action-primary-icon {
    color: #1e5a96;
    background-color: #eff6ff;
}

.mobile-action-primary-icon:hover {
    background-color: #dbeafe;
}

/* Mobile Menu Button */
.mobile-menu-button {
    margin-left: 8px;
}

/* Show mobile actions on mobile screens */
@media (max-width: 768px) {
    .header-mobile-actions {
        display: flex;
    }

    .action-help-desktop {
        display: none;
    }
}

@media (min-width: 769px) {
    .header-mobile-actions {
        display: none;
    }
}

/* Dropdown Styles - Desktop */
.nav-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.nav-link-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.nav-dropdown-wrapper.dropdown-active .chevron-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 8px;
    padding-top: 8px;
}

.nav-dropdown-wrapper.dropdown-active .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f9fafb;
    color: #1e5a96;
}

/* Mobile Menu Scrolling */
.mobile-menu-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-collapse.open {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.mobile-nav-wrapper {
    padding: 16px 0;
}

/* Mobile Dropdown Styles */
.mobile-dropdown-wrapper {
    width: 100%;
}

.mobile-nav-dropdown {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9fafb;
    margin-left: 16px;
    margin-right: 16px;
    border-radius: 4px;
}

.mobile-dropdown-menu.open {
    max-height: 500px;
    margin-top: 4px;
    margin-bottom: 8px;
    overflow-y: auto;
}

.mobile-dropdown-item {
    display: block;
    padding: 10px 16px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.mobile-dropdown-item:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

.mobile-nav-dropdown.active .chevron-icon {
    transform: rotate(180deg);
}

/* Hide Scrollbars */
.dropdown-menu::-webkit-scrollbar,
.mobile-menu-collapse::-webkit-scrollbar,
.mobile-dropdown-menu::-webkit-scrollbar {
    display: none;
}

.dropdown-menu,
.mobile-menu-collapse,
.mobile-dropdown-menu {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

/* Publisher report count*/
.cat-report-count {
    margin: 12px 0 16px 0;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1e5a96;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.back-to-top:active {
    transform: translateY(0);
}

.back-to-top.show {
    display: flex;
}

@media (max-width: 576px) {
    .back-to-top {
        bottom: 50px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Live Stock Summary */
.stock-summary {
    width: 100%;
    margin: 20px 0;
    display: grid;
    gap: 12px;
}

.stock-item {
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stock-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.stock-price {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-right: auto;
    margin-left: 16px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.stock-change {
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.stock-change.positive {
    color: #ffffff;
    background: rgba(16, 185, 129, 0.4);
    font-weight: 700;
}

.stock-change.negative {
    color: #ffffff;
    background: rgba(239, 68, 68, 0.4);
    font-weight: 700;
}

.stock-disclaimer {
    font-size: 11px;
    color: whitesmoke;
    text-align: center;
    margin-top: 12px;
}

/* Blog page onclick */
/* Hover effects ONLY for clickable blog cards in the main grid */
.blog-content .row.g-4 .blog-card {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.blog-content .row.g-4 .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Ensure link still works and maintains styling */
.blog-content .row.g-4 .blog-card__link {
    position: relative;
    z-index: 1;
}

/* Add subtle animation to the arrow on card hover */
.blog-content .row.g-4 .blog-card:hover .blog-card__arrow {
    transform: translateX(4px);
    transition: transform 0.2s ease;
}

/* Image zoom effect on hover */
.blog-content .row.g-4 .blog-card:hover .blog-card__image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.blog-content .row.g-4 .blog-card__image {
    transition: transform 0.3s ease;
}

/* Prevent overflow from image zoom */
.blog-content .row.g-4 .blog-card__image-wrapper {
    overflow: hidden;
}

/*REPORT PAGE NAV*/
.section-navigation-wrapper {
    /* position: sticky;
    top: 0;
    z-index: 100; */
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.section-navigation {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.section-navigation::-webkit-scrollbar {
    height: 4px;
}

.section-navigation::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.section-navigation::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.section-navigation::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-nav {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 0;
    white-space: nowrap;
    justify-content: center;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.nav-item svg {
    flex-shrink: 0;
}

.nav-item:hover {
    color: #1e5a96;
    background-color: #eff6ff;
    border-color: #bfdbfe;
}

.nav-item.active {
    color: #1e5a96;
    background-color: #dbeafe;
    border-color: #93c5fd;
}

@media (max-width: 768px) {
    .nav-item span {
        display: none;
    }

    .nav-item {
        padding: 0.625rem;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .section-nav {
        gap: 0.25rem;
    }
}

/* Price card buttons */
.purchase-btn {
    display: flex;
    justify-content: space-around;
}

/* Reset Password page */
.auth-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.auth-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.auth-icon-circle svg {
    color: white;
}

/* .btn-loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} */

.btn-loader {
    font-size: 14px;
}

.alert {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.alert-success {
    background: #e6fffa;
    color: #065f46;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
}

.auth-btn--primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 14px;
    font-weight: 500;
}

.auth-message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.auth-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* News date and time */
.news-card__meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.news-card__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6c757d;
}

.news-card__meta-item svg {
    flex-shrink: 0;
}

.news-card__meta-item span {
    white-space: nowrap;
}

/* For featured cards - adjust styling if needed */
.news-card--featured .news-card__meta-row {
    margin-top: 4px;
}

.news-card--featured .news-card__meta-item {
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .news-card__meta-row {
        gap: 12px;
    }

    .news-card__meta-item {
        font-size: 13px;
    }

    .news-card__meta-item svg {
        width: 14px;
        height: 14px;
    }
}

/* Stock Tabs Navigation */
.stock-tabs {
    margin-bottom: 1.5rem;
}

.stock-tabs .nav-tabs {
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.stock-tabs .nav-item {
    margin-bottom: 0;
}

.stock-tabs .nav-link {
    padding: 12px 24px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: #6b7280;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
}

.stock-tabs .nav-link:hover {
    color: #1e5a96;
    /* background: #f9fafb; */
    border-bottom-color: #cbd5e1;
}

.stock-tabs .nav-link.active {
    color: #1e5a96;
    background: transparent;
    border-bottom-color: #1e5a96;
    font-weight: 600;
}

/* Optional: Add icons or badges */
.stock-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #1e5a96, #45a049);
}

/* Responsive Design */
@media (max-width: 767px) {
    .stock-tabs .nav-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .stock-tabs .nav-tabs::-webkit-scrollbar {
        display: none;
    }

    .stock-tabs .nav-link {
        padding: 10px 20px;
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 575px) {
    .stock-tabs .nav-link {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Custom Reports Page */
/* Custom Reports Page Styles - Namespaced with .cr- prefix */

/* Hero Section with Blue-Green Gradient */
.cr-hero {
    background: linear-gradient(135deg, #1e5a96 0%, #45a049 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.cr-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.cr-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cr-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Breadcrumb Section */
.cr-breadcrumb-section {
    padding: 20px 0;
    background: #f8f9fa;
}

.cr-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.cr-breadcrumb .breadcrumb-item a {
    color: #1e5a96;
    text-decoration: none;
}

.cr-breadcrumb .breadcrumb-item a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

.cr-breadcrumb .breadcrumb-item.active {
    color: #666;
}

/* Badges */
.cr-badge-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.cr-badge-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 90, 150, 0.1);
    color: #1e5a96;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.cr-badge-blue i {
    font-size: 1rem;
}

.cr-badge-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #1e5a96;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
}

.cr-badge-icon i {
    font-size: 1rem;
}

.cr-badge-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
}

.cr-badge-white i {
    font-size: 1rem;
}

/* Strategic Intelligence Section */
.cr-strategic-section {
    padding: 40px 0;
    background: white;
}

.cr-section-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #1e5a96;
    margin-bottom: 30px;
    line-height: 1.3;
}

.cr-text-content {
    color: #424242;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cr-text-content p {
    margin-bottom: 16px;
}

.cr-text-content strong {
    color: #1e5a96;
}

.cr-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cr-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #424242;
    font-size: 0.95rem;
}

.cr-feature-item i {
    color: #45a049;
    font-size: 1.2rem;
}

/* Image Card */
.cr-image-card {
    position: relative;
}

.cr-hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cr-satisfaction-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.cr-satisfaction-badge > i {
    color: #45a049;
    font-size: 2.5rem;
}

.cr-satisfaction-percent {
    font-size: 2rem;
    font-weight: 700;
    color: #1e5a96;
    line-height: 1;
}

.cr-satisfaction-label {
    font-size: 0.85rem;
    color: #666;
}

/* Section Titles */
.cr-section-title-center {
    font-size: 2.25rem;
    font-weight: 600;
    color: #1e5a96;
    margin-bottom: 15px;
    text-align: center;
}

.cr-section-desc {
    font-size: 1.05rem;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Advantages Section */
.cr-advantages-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.cr-advantage-box {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.cr-advantage-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.cr-advantage-icon-box {
    width: 60px;
    height: 60px;
    background: #1e5a96;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    /* margin-bottom: 20px; */
}

.cr-advantage-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e5a96;
    margin-bottom: 12px;
}

.cr-advantage-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Process Section */
.cr-process-section {
    padding: 40px 0;
    background: white;
}

.cr-process-box {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    position: relative;
    height: 100%;
}

.cr-process-number {
    /* position: absolute; */
    top: -15px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: #45a049;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(69, 160, 73, 0.4);
}

.cr-process-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e5a96;
    margin-bottom: 12px;
    margin-top: 15px;
}

.cr-process-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cr-process-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #45a049;
    font-size: 0.9rem;
}

.cr-process-tag i {
    font-size: 1rem;
}

/* Trust Section */
.cr-trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e5a96 0%, #164472 100%);
    color: white;
}

.cr-section-title-white {
    font-size: 2.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.cr-section-desc-white {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cr-trust-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.cr-trust-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.cr-trust-icon {
    width: 50px;
    height: 50px;
    background: #45a049;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cr-trust-text {
    flex: 1;
}

.cr-trust-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.cr-trust-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

/* Form Section */
.cr-form-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.cr-form-cta {
    color: #1e5a96;
    font-size: 1.05rem;
    margin-top: 15px;
}

.cr-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.cr-form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.cr-form-header i {
    font-size: 2rem;
    color: #1e5a96;
}

.cr-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e5a96;
    margin: 0;
}

.cr-form-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.cr-form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.cr-form-control {
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.cr-form-control:focus {
    border-color: #1e5a96;
    box-shadow: 0 0 0 3px rgba(30, 90, 150, 0.1);
    outline: none;
}

.cr-char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
}

.cr-char-valid {
    color: #45a049;
}

.cr-submit-btn {
    background: #1e5a96;
    color: white;
    padding: 15px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 90, 150, 0.3);
}

.cr-submit-btn:hover {
    background: #0d47a1;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 90, 150, 0.4);
}

/* Trust Indicators */
.cr-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.cr-trust-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

.cr-trust-indicator i {
    color: #45a049;
    font-size: 1.2rem;
}

/* Bottom CTA Section */
.cr-bottom-cta {
    padding: 60px 0;
    background: white;
}

.cr-bottom-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cr-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cr-btn-green {
    background: #45a049;
    color: white;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(69, 160, 73, 0.3);
}

.cr-btn-green:hover {
    background: #388e3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(69, 160, 73, 0.4);
}

.cr-btn-white {
    background: white;
    color: #1e5a96;
    padding: 14px 35px;
    border-radius: 8px;
    border: 2px solid #1e5a96;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cr-btn-white:hover {
    background: #f5f5f5;
    color: #0d47a1;
    border-color: #0d47a1;
}

/* Responsive Design */
@media (max-width: 991px) {
    .cr-hero-title {
        font-size: 2.5rem;
    }

    .cr-section-heading,
    .cr-section-title-center,
    .cr-section-title-white {
        font-size: 1.75rem;
    }

    .cr-satisfaction-badge {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .cr-hero {
        padding: 60px 0 40px;
    }

    .cr-hero-title {
        font-size: 2rem;
    }

    .cr-section-heading,
    .cr-section-title-center,
    .cr-section-title-white {
        font-size: 1.5rem;
    }

    .cr-strategic-section,
    .cr-advantages-section,
    .cr-process-section,
    .cr-trust-section,
    .cr-form-section {
        padding: 30px 0;
    }

    .cr-feature-list {
        grid-template-columns: 1fr;
    }

    .cr-form-wrapper {
        padding: 30px 20px;
    }

    .cr-trust-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .cr-cta-buttons {
        flex-direction: column;
    }

    .cr-btn-green,
    .cr-btn-white {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .cr-hero-title {
        font-size: 1.75rem;
    }

    .cr-hero-subtitle br,
    .cr-bottom-title br,
    .cr-section-desc br {
        display: none;
    }
}

/* Combined Section Styling */
.cr-combined-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.cr-section-wrapper {
    /* height: 100%; */
    padding: 32px;
    border-radius: 16px;
}

.cr-advantages-wrapper {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border: 2px solid #d4e7ff;
}

.cr-process-wrapper {
    background: linear-gradient(135deg, #f0fdf4 0%, #e6f9ed 100%);
    border: 2px solid #d1f4e0;
}

.cr-section-title-center {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cr-section-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages Grid */
.cr-advantages-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.cr-advantage-box {
    background: white;
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    height: 88px;
}

.cr-advantage-box:hover {
    box-shadow: 0 4px 16px rgba(30, 90, 150, 0.15);
    transform: translateX(8px);
    border-color: #1e5a96;
    background: #fafbff;
}

.cr-advantage-icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1e5a96 0%, #164472 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 90, 150, 0.25);
}

.cr-advantage-icon-box i {
    font-size: 26px;
    color: white;
}

.cr-advantage-title {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

/* Process Grid */
.cr-process-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.cr-process-box {
    background: white;
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e8e8e8;
    height: 88px;
}

.cr-process-box:hover {
    box-shadow: 0 4px 16px rgba(69, 160, 73, 0.15);
    transform: translateX(8px);
    border-color: #45a049;
    background: #fafff9;
}

.cr-process-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #45a049 0%, #3d8b41 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(69, 160, 73, 0.25);
}

.cr-process-title {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 991px) {
    .cr-combined-section {
        padding: 30px 0;
    }

    .cr-section-wrapper {
        padding: 24px;
        margin-bottom: 30px;
    }

    .cr-section-title-center {
        font-size: 28px;
    }

    .cr-section-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .cr-advantages-grid,
    .cr-process-grid {
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    .cr-combined-section {
        padding: 25px 0;
    }

    .cr-section-wrapper {
        padding: 20px;
    }

    .cr-section-title-center {
        font-size: 24px;
    }

    .cr-advantage-box,
    .cr-process-box {
        padding: 20px;
        height: auto;
        min-height: 80px;
    }

    .cr-advantage-box:hover,
    .cr-process-box:hover {
        transform: translateX(4px);
    }

    .cr-advantage-icon-box,
    .cr-process-number {
        width: 48px;
        height: 48px;
    }

    .cr-advantage-icon-box i {
        font-size: 22px;
    }

    .cr-process-number {
        font-size: 20px;
    }

    .cr-advantage-title,
    .cr-process-title {
        font-size: 15px;
    }
}

/* Industries Inline Section */
.cr-industries-inline {
    background: white;
    padding: 0;
}

.cr-industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 16px;
}

.cr-industry-card {
    background: white;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.cr-industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: #1e5a96;
}

.cr-industry-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1e5a96 0%, #45a049 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

body
    > div.about-page-wrapper
    > section.cr-combined-section
    > div
    > div
    > div
    > div.cr-section-wrapper.cr-industries-inline.mt-4
    > div.cr-industries-grid
    > a {
    text-decoration: none;
}

.cr-industry-card:hover .cr-industry-icon {
    transform: scale(1.1);
}

.cr-industry-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e5a96;
    margin: 0;
}

/* Special styling for "And Many More" card */
.cr-industry-card-more {
    /* border: 2px dashed #1e5a96; */
}

.cr-industry-card-more:hover {
    border-style: solid;
}

/* Responsive Design */
@media (max-width: 991px) {
    .cr-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cr-industries-grid {
        grid-template-columns: 1fr;
    }

    .cr-industry-card {
        padding: 18px;
    }
}

/* New Publisher Detail Page */
/* ========================================
   JSBMR Publisher Detail Page Styles
   Prefix: jsbmr-pub-
   Matches Figma Design Exactly
   ======================================== */

/* Body */
.jsbmr-pub-body {
    background-color: #f3f4f6;
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
    padding: 32px 0;
}

.jsbmr-pub-container {
    max-width: 1400px;
    margin: 20px auto;
}

/* Publisher Info Card */
.jsbmr-pub-info-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.jsbmr-pub-info-title {
    font-size: 32px;
    font-weight: 600;
    color: #1e5a96;
    margin: 0 0 16px 0;
}

.jsbmr-pub-info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.jsbmr-pub-info-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #374151;
}

.jsbmr-pub-info-badge svg {
    width: 20px;
    height: 20px;
    color: #45a049;
}

.jsbmr-pub-info-badge-link a {
    color: #1e5a96;
    text-decoration: none;
    transition: color 0.2s;
}

.jsbmr-pub-info-badge-link a:hover {
    color: #45a049;
}

.jsbmr-pub-info-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* Published Reports Card */
.jsbmr-pub-reports-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.jsbmr-pub-reports-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.jsbmr-pub-reports-title {
    font-size: 24px;
    font-weight: 600;
    color: #1e5a96;
    margin: 0;
}

.jsbmr-pub-reports-controls {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 450px;
}

.jsbmr-pub-search-wrapper {
    position: relative;
    flex: 1;
}

.jsbmr-pub-search-wrapper svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
}

.jsbmr-pub-search-input {
    width: 100%;
    padding: 8px 12px 8px 38px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    height: 38px;
}

.jsbmr-pub-search-input:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.jsbmr-pub-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #ffffff;
    color: #374151;
    font-size: 16px;
    transition: all 0.2s;
    height: 38px;
    white-space: nowrap;
}

.jsbmr-pub-filter-btn:hover {
    border-color: #1e5a96;
    color: #1e5a96;
}

.jsbmr-pub-filter-btn svg {
    width: 20px;
    height: 20px;
}

.jsbmr-pub-reports-count {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 20px;
}

/* Report List */
.jsbmr-pub-report-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Report Item */
.jsbmr-pub-report-item {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s;
}

.jsbmr-pub-report-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.jsbmr-pub-report-content {
    margin-bottom: 16px;
}

.jsbmr-pub-report-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
}

.jsbmr-pub-cat-automotive {
    background-color: #45a049;
}

.jsbmr-pub-cat-healthcare {
    background-color: #45a049;
}

.jsbmr-pub-cat-energy {
    background-color: #45a049;
}

.jsbmr-pub-cat-technology {
    background-color: #45a049;
}

.jsbmr-pub-cat-consumer {
    background-color: #45a049;
}

.jsbmr-pub-report-name {
    font-size: 20px;
    font-weight: 600;
    color: #1e5a96;
    margin: 0 0 8px 0;
    cursor: pointer;
    transition: color 0.2s;
}

.jsbmr-pub-report-name:hover {
    color: #45a049;
}

.jsbmr-pub-report-summary {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.jsbmr-pub-report-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.jsbmr-pub-report-info {
    display: flex;
    gap: 16px;
}

.jsbmr-pub-report-date,
.jsbmr-pub-report-price {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    color: #6b7280;
}

.jsbmr-pub-report-date svg,
.jsbmr-pub-report-price svg {
    width: 18px;
    height: 18px;
}

.jsbmr-pub-report-price {
    color: #45a049;
    font-weight: 600;
}

.jsbmr-pub-report-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1e5a96;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}

.jsbmr-pub-report-link:hover {
    color: #45a049;
}

.jsbmr-pub-report-link svg {
    width: 18px;
    height: 18px;
}

/* Pagination */
.jsbmr-pub-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.jsbmr-pub-page-btn {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #ffffff;
    color: #374151;
    font-size: 16px;
    transition: all 0.2s;
}

.jsbmr-pub-page-btn:hover {
    border-color: #1e5a96;
    color: #1e5a96;
}

.jsbmr-pub-page-active {
    background-color: #1e5a96;
    color: #ffffff;
    border-color: #1e5a96;
}

.jsbmr-pub-page-active:hover {
    background-color: #45a049;
    border-color: #45a049;
    color: #ffffff;
}

/* Sidebar */
.jsbmr-pub-sidebar {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 32px;
}

.jsbmr-pub-sidebar-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.jsbmr-pub-sidebar-header svg {
    width: 20px;
    height: 20px;
    color: #45a049;
}

.jsbmr-pub-sidebar-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e5a96;
    margin: 0;
}

/* Top Reports */
.jsbmr-pub-top-report {
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s;
}

.jsbmr-pub-top-report:first-child {
    padding-top: 0;
}

.jsbmr-pub-top-report:last-child {
    border-bottom: none;
}

.jsbmr-pub-top-report:hover .jsbmr-pub-top-title {
    color: #1e5a96;
}

.jsbmr-pub-top-report:hover svg {
    color: #1e5a96;
}

.jsbmr-pub-top-cat {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
}

.jsbmr-pub-top-title {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin: 0 0 12px 0;
    line-height: 1.4;
    transition: color 0.2s;
}

.jsbmr-pub-top-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jsbmr-pub-top-price {
    font-size: 15px;
    font-weight: 700;
    color: #45a049;
}

.jsbmr-pub-top-footer svg {
    width: 18px;
    height: 18px;
    color: #9ca3af;
    transition: color 0.2s;
}

/* View All Button */
.jsbmr-pub-view-all {
    width: 100%;
    background-color: #1e5a96;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    transition: background-color 0.2s;
}

.jsbmr-pub-view-all:hover {
    background-color: #45a049;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .jsbmr-pub-body {
        padding: 20px 0;
    }

    .jsbmr-pub-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 767px) {
    .jsbmr-pub-info-card,
    .jsbmr-pub-reports-card {
        padding: 16px;
    }

    .jsbmr-pub-reports-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .jsbmr-pub-reports-controls {
        width: 100%;
        max-width: none;
    }

    .jsbmr-pub-report-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .jsbmr-pub-pagination {
        flex-wrap: wrap;
    }
}

/* FAQ Page */
.accordion-button:not(.collapsed) {
    background-color: #b0ddb2;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Reports listing page (reports.blade) */
/* Limit title to 2 lines */
.report-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Desktop only: expand on card hover */
@media (hover: hover) and (pointer: fine) {
    .report-card:hover .report-title {
        -webkit-line-clamp: unset;
        white-space: normal;
    }
}

/* Tablet/Mobile: expand when selected (active class) */
@media (hover: none) and (pointer: coarse) {
    .report-card.active .report-title {
        -webkit-line-clamp: unset;
        white-space: normal;
    }
}

/* no line limit for mobile view */
@media (max-width: 639px) {
    .report-title {
        -webkit-line-clamp: unset;
    }
}

/* banner image for industries */
.cat-hero-section {
    position: relative;
    overflow: hidden;
}

.cat-hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.cat-hero-section .container {
    position: relative;
    z-index: 2;
}

a {
    text-decoration: none;
}

/* News Table CSS */
/* News Table Styles */
.news-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 24px 0;
}

.news-table thead {
    background: linear-gradient(135deg, #1e5a96 0%, #164472 100%);
}

.news-table-tr {
    border-bottom: 1px solid #e5e7eb;
}

.table-heading {
    padding: 16px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-table tbody tr {
    transition: background-color 0.2s ease;
}

.news-table tbody tr:hover {
    background-color: #f9fafb;
}

.news-table tbody tr:last-child {
    border-bottom: none;
}

.news-table-td {
    padding: 14px 20px;
    font-size: 15px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.news-table tbody tr:last-child .news-table-td {
    border-bottom: none;
}

/* First column (Gram) styling */
.news-table-td:first-child {
    font-weight: 600;
    color: #1f2937;
}

/* Price change column styling */
.news-table-td:last-child {
    font-weight: 600;
}

.news-table-td span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-table-td img {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

/* Price change colors */
.news-table-td span[style*="color: green"] {
    color: #45a049 !important;
}

.news-table-td span[style*="color: red"] {
    color: #dc2626 !important;
}

/* Alternative styling for up/down indicators */
.price-up {
    color: #45a049;
    font-weight: 600;
}

.price-down {
    color: #dc2626;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 767px) {
    .news-table {
        font-size: 14px;
    }

    .table-heading {
        padding: 12px 12px;
        font-size: 13px;
    }

    .news-table-td {
        padding: 12px 12px;
        font-size: 14px;
    }

    .news-table-td img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 575px) {
    .news-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-heading {
        padding: 10px 8px;
        font-size: 12px;
        white-space: nowrap;
    }

    .news-table-td {
        padding: 10px 8px;
        font-size: 13px;
        white-space: nowrap;
    }
}

/* Striped rows alternative (optional) */
.news-table.striped tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

.news-table.striped tbody tr:nth-child(even):hover {
    background-color: #f3f4f6;
}

/* Card style for mobile (optional alternative) */
@media (max-width: 575px) {
    .news-table.mobile-card {
        display: block;
    }

    .news-table.mobile-card thead {
        display: none;
    }

    .news-table.mobile-card tbody,
    .news-table.mobile-card tr {
        display: block;
    }

    .news-table.mobile-card tr {
        margin-bottom: 16px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 12px;
        background: white;
    }

    .news-table.mobile-card td {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border: none;
    }

    .news-table.mobile-card td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #1e5a96;
    }
}

/* Fuel Table CSS */
/* Fuel Data Container */
.fuel-data {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 24px 0;
}

/* Fuel Tabs */
.fuel-tab {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0;
}

.fuel-tab .tablinks {
    padding: 12px 32px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    bottom: -2px;
}

.fuel-tab .tablinks:hover {
    color: #1e5a96;
    background: #f9fafb;
}

.fuel-tab .tablinks.active {
    color: #1e5a96;
    border-bottom-color: #1e5a96;
    font-weight: 600;
}

/* Tab Content */
.fueltabcontent {
    display: none;
    animation: fadeIn 0.3s ease;
}

.fueltabcontent.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fuel Table */
.fuel {
    width: 100%;
    border-collapse: collapse;
    background: white;
    margin-top: 16px;
}

.fuel thead tr,
.fuel tbody tr:first-child {
    background: linear-gradient(135deg, #1e5a96 0%, #164472 100%);
}

.fuel th {
    padding: 14px 16px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fuel tbody tr {
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
}

.fuel tbody tr:hover {
    background-color: #f9fafb;
}

.fuel tbody tr:last-child {
    border-bottom: none;
}

.fuel td {
    padding: 12px 16px;
    font-size: 15px;
    color: #374151;
}

/* City column */
.fuel td:first-child {
    font-weight: 500;
    color: #1f2937;
}

/* Price column */
.fuel td:nth-child(2) {
    font-weight: 600;
    color: #1e5a96;
}

/* Change column */
.fuel td:last-child {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fuel-pp {
    font-weight: 600;
}

.fuel td img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

/* Price change colors with override */
.fuel-pp[style*="color: green"] {
    color: #45a049 !important;
}

.fuel-pp[style*="color: red"] {
    color: #dc2626 !important;
}

.fuel-pp[style*="color: black"] {
    color: #6b7280 !important;
}

/* Enhanced styling for change indicators */
.fuel td:last-child span {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 767px) {
    .fuel-data {
        padding: 16px;
    }

    .fuel-tab .tablinks {
        padding: 10px 20px;
        font-size: 15px;
    }

    .fuel th,
    .fuel td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .fuel td img {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 575px) {
    .fuel-data {
        padding: 12px;
        overflow-x: auto;
    }

    .fuel-tab {
        gap: 4px;
    }

    .fuel-tab .tablinks {
        padding: 8px 16px;
        font-size: 14px;
        flex: 1;
        text-align: center;
    }

    .fuel {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .fuel th,
    .fuel td {
        padding: 8px 10px;
        font-size: 13px;
        white-space: nowrap;
    }
}

/* Alternative Pills Style for Tabs */
.fuel-tab.pills-style {
    background: #f3f4f6;
    padding: 6px;
    border-radius: 10px;
    border-bottom: none;
}

.fuel-tab.pills-style .tablinks {
    border-radius: 8px;
    border-bottom: none;
    bottom: 0;
}

.fuel-tab.pills-style .tablinks.active {
    background: linear-gradient(135deg, #1e5a96 0%, #45a049 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(30, 90, 150, 0.3);
}

/* Hide the message div when empty */
.auth-message.message {
    display: none;
}

/* Show the message div when it has content */
.auth-message.message:not(:empty) {
    display: block;
}

/* Error message styling */
.auth-message.message.error {
    background-color: #fee;
    border: 1px solid #fcc;
    border-left: 4px solid #f44;
    color: #c33;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

/* Optional: Success message variant */
.auth-message.message.success {
    background-color: #efe;
    border: 1px solid #cfc;
    border-left: 4px solid #4c4;
    color: #3a3;
}

/* Optional: Info message variant */
.auth-message.message.info {
    background-color: #eff;
    border: 1px solid #cff;
    border-left: 4px solid #4cc;
    color: #366;
}

/* Optional: Warning message variant */
.auth-message.message.warning {
    background-color: #ffc;
    border: 1px solid #ffb;
    border-left: 4px solid #fb4;
    color: #863;
}

/* Laravel Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    list-style: none;
    padding: 0;
}

.pagination .page-item {
    display: inline-block;
}

.pagination .page-link {
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #d1d5db;
    background-color: white;
    color: #111827;
    text-decoration: none;
    display: inline-block;
}

.pagination .page-link:hover {
    background-color: #eff6ff;
    border-color: #1e5a96;
    color: #1e5a96;
}

/* Active page */
.pagination .page-item.active .page-link {
    background-color: #1e5a96;
    color: white;
    border-color: #1e5a96;
    cursor: default;
}

.pagination .page-item.active .page-link:hover {
    background-color: #2d6eb5;
    border-color: #2d6eb5;
}

/* Disabled state (for prev/next when on first/last page) */
.pagination .page-item.disabled .page-link {
    background-color: #f9fafb;
    color: #9ca3af;
    border-color: #e5e7eb;
    cursor: not-allowed;
    pointer-events: none;
}

/* Remove default focus outline and add custom one */
.pagination .page-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 90, 150, 0.1);
}

/* ========================================
   PAYMENT STATUS PAGES
   Add this to your public/css/styles.css
   ======================================== */

/* Payment Status Wrapper */
.payment-status-wrapper {
    background: linear-gradient(to bottom right, #eff6ff, #f0fdf4);
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

/* Payment Status Card */
.payment-status-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 48px;
    width: 100%;
    text-align: center;
}

/* Success Icon */
.status-icon-wrapper {
    margin-bottom: 32px;
}

.status-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: scaleIn 0.5s ease;
}

.status-icon-success {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 4px solid #45a049;
}

.status-icon-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 4px solid #dc2626;
}

.status-icon svg {
    width: 50px;
    height: 50px;
}

.icon-success {
    color: #45a049;
}

.icon-error {
    color: #dc2626;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Status Title */
.status-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.status-title-success {
    color: #45a049;
}

.status-title-error {
    color: #dc2626;
}

/* Status Message */
.status-message {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.3s both;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Order Details Box */
.order-details {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.order-details-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e5a96;
    margin-bottom: 16px;
    text-align: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

.detail-value {
    font-size: 15px;
    color: #111827;
    font-weight: 600;
}

.detail-value-highlight {
    color: #45a049;
    font-size: 20px;
}

/* Action Buttons */
.status-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.btn-primary-custom {
    background: #45a049;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 14px 0 rgba(69, 160, 73, 0.4);
}

.btn-primary-custom:hover {
    background: #3d8f41;
    box-shadow: 0 6px 20px rgba(69, 160, 73, 0.5);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary-custom {
    background: white;
    color: #1e5a96;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #1e5a96;
}

.btn-secondary-custom:hover {
    background: #eff6ff;
    color: #1e5a96;
    transform: translateY(-2px);
}

.btn-retry {
    background: #dc2626;
    color: white;
    border: none;
}

.btn-retry:hover {
    background: #b91c1c;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    color: white;
}

/* Support Info */
.support-info {
    margin-top: 32px;
    padding: 20px;
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border-radius: 12px;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.support-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e5a96;
    margin-bottom: 12px;
}

.support-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.6;
}

.support-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    color: #45a049;
    font-weight: 600;
}

.support-contact svg {
    width: 18px;
    height: 18px;
}

.support-contact a {
    color: #45a049;
    text-decoration: none;
    transition: color 0.2s ease;
}

.support-contact a:hover {
    color: #3d8f41;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 767px) {
    .payment-status-wrapper {
        padding: 30px 0;
    }

    .payment-status-card {
        padding: 32px 24px;
    }

    .status-icon {
        width: 80px;
        height: 80px;
    }

    .status-icon svg {
        width: 40px;
        height: 40px;
    }

    .status-title {
        font-size: 24px;
    }

    .status-message {
        font-size: 16px;
    }

    .order-details {
        padding: 20px;
    }

    .status-actions {
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .payment-status-card {
        padding: 24px 16px;
    }

    .status-title {
        font-size: 20px;
    }

    .detail-row {
        flex-direction: column;
        gap: 4px;
    }

    .detail-value {
        text-align: left;
    }

    .support-contact {
        flex-direction: column;
        gap: 4px;
    }
}

/* ========================================
   FORGOT PASSWORD ALERT STYLES
   Add this to your public/css/styles.css
   ======================================== */

/* Base Alert Styles */
.auth-alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid;
    animation: slideInDown 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Success Alert */
.auth-alert--success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-color: #6ee7b7;
}

.auth-alert--success::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #45a049;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* Error Alert */
.auth-alert--error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border-color: #fca5a5;
}

.auth-alert--error::before {
    content: "✕";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* Info Alert */
.auth-alert--info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border-color: #93c5fd;
}

.auth-alert--info::before {
    content: "ℹ";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #1e5a96;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* Warning Alert (Optional) */
.auth-alert--warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border-color: #fcd34d;
}

.auth-alert--warning::before {
    content: "⚠";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* Animation */
@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade Out Animation (Optional) */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.auth-alert.fade-out {
    animation: fadeOut 0.4s ease forwards;
}

/* Close Button (Optional Enhancement) */
.auth-alert-close {
    margin-left: auto;
    background: none;
    border: none;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.auth-alert-close:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 575px) {
    .auth-alert {
        padding: 12px 14px;
        font-size: 14px;
    }

    .auth-alert::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

/* Alternative Style - Solid Border Left */
.auth-alert--solid {
    border-left: 4px solid;
    border-top: 1px solid;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

.auth-alert--success.auth-alert--solid {
    border-left-color: #45a049;
    background: #f0fdf4;
}

.auth-alert--error.auth-alert--solid {
    border-left-color: #dc2626;
    background: #fef2f2;
}

.auth-alert--info.auth-alert--solid {
    border-left-color: #1e5a96;
    background: #eff6ff;
}

/* Minimal Style (Alternative) */
.auth-alert--minimal {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 12px 0;
}

.auth-alert--minimal::before {
    display: none;
}

.auth-alert--success.auth-alert--minimal {
    color: #45a049;
}

.auth-alert--error.auth-alert--minimal {
    color: #dc2626;
}

.auth-alert--info.auth-alert--minimal {
    color: #1e5a96;
}
