/* Import Inter Fonts ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* CSS Variables ================================================================ */

:root {
    --crp-green: #2E7D32;
    --crp-green-light: #66BB6A;
    --crp-green-dark: #1B5E20;
    --crp-yellow: #F9A825;
    --crp-yellow-light: #FFD54F;
    --crp-yellow-dark: #F57F17;
    --crp-black: #212121;
    --crp-black-light: #424242;

    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    --white: #FFFFFF;
    --text-primary: #212121;
    --text-secondary: #616161;
    --text-light: #757575;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base Styles ================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
b,
input,
select {
    font-family: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    min-width: 360px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Inter", sans-serif;
}

.container {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1500px;
    box-sizing: border-box;
}

section {
    padding: 60px 0;
    transition: all 0.3s ease;
}

/* ================================
   Typography
   ================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

h1 {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

h2 {
    font-size: 2rem;
    transition: all 0.3s ease;
}

h3 {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

h4 {
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

h5 {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

h6 {
    font-size: 1rem;
    transition: all 0.3s ease;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

a {
    text-decoration: none;
    color: var(--crp-green);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--crp-green-dark);
}

div,
span {
    transition: all 0.3s ease;
}

ul, li {
    list-style-type: none;
}

input:focus,
select:focus,
:focus-visible {
    outline: none;
    outline-width: 0px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

select {
    background: var(--white) url("https://cdn-icons-png.flaticon.com/128/10503/10503084.png") no-repeat scroll right 6px center / 23px !important;
}

/* ================================
   Header
   ================================ */

.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 99;
}

.header-content {
    gap: 32px;
    display: flex;
    padding: 15px 0;
    min-height: 100px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EAEAEA;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 60px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.site-title {
    max-width: 300px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--crp-green);
    margin: 0;
    line-height: 28px;
}

.site-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    padding: 8px 0;
    font-weight: 500;
    line-height: 26px;
    box-sizing: border-box;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu li a.is-active {
    color: var(--crp-green);
    border-bottom-color: var(--crp-green);
}

.nav-menu li a.is-active {
    font-weight: bold;
}

/* Hero Section  ================================================================ */

.hero {
    position: relative;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 0;
    overflow: hidden;
}

/* Background Image Layer */

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.genspark.ai/api/files/s/sD4g3XR0');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(1.1) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.50) 0%, rgba(46, 125, 50, 0.50) 40%, rgba(27, 94, 32, 0.50) 100%);
    z-index: 2;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 168, 37, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    z-index: 3;
    max-width: 800px;
    position: relative;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-bottom: 20px;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--crp-yellow) 0%, rgba(249, 168, 37, 0.5) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(249, 168, 37, 0.3);
}

.hero-sub-title {
    color: #FFFFFF;
    font-size: 2rem;
    margin: 0 0 10px;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    max-width: 640px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-slider .hero-slider-inner {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 100px);
}

.hero-slider .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slider .hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slider .hero-slide .hero-background,
.hero-slider .hero-slide .hero-overlay,
.hero-slider .hero-slide .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-slider .hero-slide .hero-background {
    z-index: 1;
}

.hero-slider .hero-slide .hero-overlay {
    z-index: 2;
}

.hero-slider .hero-slide .container {
    display: flex;
    align-items: center;
    z-index: 3;
}

/* Slider controls */

.hero-slider-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero-slider-dot:hover,
.hero-slider-dot.active {
    background: var(--white);
    transform: scale(1.15);
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--white);
}

.hero-slider-prev {
    left: 24px;
}

.hero-slider-next {
    right: 24px;
}

/* Hero Video Section ================================================================ */

#hero_video_banner {
    overflow: hidden;
    width: 100%;
    position: relative;
    height: calc(100vh - 100px);
}

#hero_video_banner .hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 40px;
    position: absolute;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
}

#hero_video_banner .hero-content .hero-inner-content {
    margin: 0 auto;
    max-width: 800px;
}

#hero_video_banner .hero-title::after {
    left: 50%;
    height: 6px;
    width: 100px;
    background: #f9a825;
    border-radius: 10px;
    transform: translateX(-50%);
}

#hero_video_banner .hero-description {
    max-width: 100%;
}

/* Buttons ================================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: var(--white);
    color: var(--crp-green);
    border-color: var(--white);
}

.btn-primary:hover {
    background: var(--crp-yellow);
    color: var(--crp-black);
    border-color: var(--crp-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--crp-green);
    border-color: var(--crp-green);
}

.btn-outline:hover {
    background: var(--crp-green);
    color: var(--white);
}

/* ================================
   Section Headers
   ================================ */

.section-header {
    text-align: center;
    margin: 0 auto 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--crp-black);
}

.section-description {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto 30px;
    text-align: center;
    color: var(--text-secondary);
}

.data-access-tiles {
    gap: 40px;
    display: grid;
    margin: 0 auto;
    max-width: 1100px;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.access-tile {
    background: var(--white);
    padding: 40px 36px;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.access-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.access-tile-visualiser::before {
    background: linear-gradient(90deg, #4CAF50 0%, #8BC34A 100%);
}

.access-tile-dashboards::before {
    background: linear-gradient(90deg, #2196F3 0%, #03A9F4 100%);
}

.access-tile-geospatial::before {
    background: linear-gradient(90deg, #FF9800 0%, #e28700 100%);
}

.access-tile-datasets::before {
    background: linear-gradient(90deg, #E91E63 0%, #db004a 100%);
}

.access-tile:hover::before {
    transform: scaleX(1);
}

.access-tile-visualiser:hover {
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.15);
}

.access-tile-dashboards:hover {
    border-color: rgba(33, 150, 243, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(33, 150, 243, 0.15);
}

.access-tile-geospatial:hover {
    border-color: rgba(255, 152, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 152, 0, 0.15);
}

.access-tile-datasets:hover {
    border-color: rgba(233, 30, 99, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.15);
}

.tile-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2.8rem;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.access-tile-visualiser .tile-icon {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.35);
}

.access-tile-visualiser:hover .tile-icon {
    transform: scale(1.12) rotate(8deg);
    background: linear-gradient(135deg, #66BB6A 0%, #9CCC65 100%);
    box-shadow: 0 12px 36px rgba(76, 175, 80, 0.5);
}

.access-tile-dashboards .tile-icon {
    background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.35);
}

.access-tile-dashboards:hover .tile-icon {
    transform: scale(1.12) rotate(-8deg);
    background: linear-gradient(135deg, #42A5F5 0%, #29B6F6 100%);
    box-shadow: 0 12px 36px rgba(33, 150, 243, 0.5);
}

.access-tile-geospatial .tile-icon {
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.35);
    background: linear-gradient(130deg, #FF9800 0%, #e28700 100%);
}

.access-tile-geospatial:hover .tile-icon {
    transform: scale(1.12) rotate(-8deg);
    background: linear-gradient(130deg, #FF9800 0%, #e28700 100%);
    box-shadow: 0 12px 36px rgba(255, 152, 0, 0.5);
}

.access-tile-datasets .tile-icon {
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35);
    background: linear-gradient(135deg, #E91E63 0%, #db004a 100%);
}

.access-tile-datasets:hover .tile-icon {
    transform: scale(1.12) rotate(-8deg);
    background: linear-gradient(135deg, #E91E63 0%, #db004a 100%);
    box-shadow: 0 12px 36px rgba(233, 30, 99, 0.5);
}

.access-tile h3 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--crp-black);
}

.access-tile p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.tile-guidance {
    color: #616161;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 28px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.03);
    border-left: 3px solid transparent;
}

.access-tile-visualiser .tile-guidance {
    border-left-color: #4CAF50;
    background: rgba(76, 175, 80, 0.05);
}

.access-tile-dashboards .tile-guidance {
    border-left-color: #2196F3;
    background: rgba(33, 150, 243, 0.05);
}

.access-tile-geospatial .tile-guidance {
    border-left-color: rgba(255, 152, 0, 1);
    background: rgba(255, 152, 0, 0.05);
}

.access-tile-datasets .tile-guidance {
    border-left-color: rgba(233, 30, 99, 1);
    background: rgba(233, 30, 99, 0.05);
}

.tile-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.access-tile-visualiser .tile-cta {
    color: #4CAF50;
}

.access-tile-dashboards .tile-cta {
    color: #2196F3;
}

.access-tile-geospatial .tile-cta {
    color: #FF9800;
}

.access-tile-datasets .tile-cta {
    color: #E91E63;
}

.tile-cta i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.access-tile:hover .tile-cta i {
    transform: translateX(4px);
}

.video-of-us {
    max-width: 1100px;
    margin: 26px auto 0;
}

.video-of-us iframe {
    width: 100%;
    border: none;
    height: 500px;
    display: block;
    margin: 0 0 0 0;
}

/* Quick Access Communities */
.quick-access {
    margin-top: 40px;
}

.quick-access h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--crp-black);
}

.community-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.community-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.community-card:hover {
    border-color: var(--crp-green);
    box-shadow: var(--shadow-md);
}

.community-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
}

.community-header h4 {
    font-size: 1.2rem;
    color: var(--crp-black);
}

.parish-badge {
    background: var(--crp-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.community-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.community-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.community-stats .stat i {
    color: var(--crp-green);
    width: 16px;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--crp-green);
    font-weight: 600;
    font-size: 0.9rem;
}

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

.card-link i {
    font-size: 0.8rem;
}

.more-to-go {
    display: flex;
    align-items: center;
    gap: 15px;
}

.more-to-go p {
    margin: 0 !important;
}

/* ================================
   Indicators Section
   ================================ */

.indicators-section {
    background: linear-gradient(135deg, rgba(245, 245, 245, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 0;
}

.indicator-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.indicator-card-infrastructure::before {
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
}

.indicator-card-education::before {
    background: linear-gradient(90deg, #FF9800, #FFB74D);
}

.indicator-card-health::before {
    background: linear-gradient(90deg, #F44336, #EF5350);
}

.indicator-card-economic::before {
    background: linear-gradient(90deg, #9C27B0, #BA68C8);
}

.indicator-card-safety::before {
    background: linear-gradient(90deg, #2196F3, #42A5F5);
}

.indicator-card-environment::before {
    background: linear-gradient(90deg, #66BB6A, #81C784);
}

.indicator-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.15);
}

.indicator-card:hover::before {
    opacity: 1;
}

/* Bright Icon Style - Colorful & Expressive */
.indicator-icon-bright {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.indicator-card-infrastructure .indicator-icon-bright {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}

.indicator-card-education .indicator-icon-bright {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.35);
}

.indicator-card-health .indicator-icon-bright {
    background: linear-gradient(135deg, #F44336, #EF5350);
    color: white;
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.35);
}

.indicator-card-economic .indicator-icon-bright {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
    color: white;
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.35);
}

.indicator-card-safety .indicator-icon-bright {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: white;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.35);
}

.indicator-card-environment .indicator-icon-bright {
    background: linear-gradient(135deg, #66BB6A, #81C784);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 187, 106, 0.35);
}

.indicator-card:hover .indicator-icon-bright {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.indicator-card h3 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.indicator-brief {
    color: #616161;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
}

.progress-story {
    background: linear-gradient(135deg, rgba(249, 168, 37, 0.05), rgba(46, 125, 50, 0.05));
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid transparent;
    position: relative;
}

.indicator-card-infrastructure .progress-story {
    border-left-color: #4CAF50;
}

.indicator-card-education .progress-story {
    border-left-color: #FF9800;
}

.indicator-card-health .progress-story {
    border-left-color: #F44336;
}

.indicator-card-economic .progress-story {
    border-left-color: #9C27B0;
}

.indicator-card-safety .progress-story {
    border-left-color: #2196F3;
}

.indicator-card-environment .progress-story {
    border-left-color: #66BB6A;
}

.progress-highlight {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.indicator-card-infrastructure .progress-highlight {
    color: #2E7D32;
}

.indicator-card-education .progress-highlight {
    color: #E65100;
}

.indicator-card-health .progress-highlight {
    color: #C62828;
}

.indicator-card-economic .progress-highlight {
    color: #6A1B9A;
}

.indicator-card-safety .progress-highlight {
    color: #1565C0;
}

.indicator-card-environment .progress-highlight {
    color: #388E3C;
}

.progress-story p {
    color: #424242;
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

.story-text {
    display: block;
}

.story-text::before {
    content: '💬 ';
    margin-right: 4px;
}

.indicators-cta {
    text-align: center;
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, rgba(249, 168, 37, 0.05) 100%);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
}

.indicators-cta p {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-primary);
}

/* ================================
   About Section
   ================================ */

.about-section {
    background: var(--gray-50);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--crp-black);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

.feature i {
    color: var(--crp-green);
    font-size: 1.2rem;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visual-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.visual-card i {
    font-size: 3rem;
    color: var(--crp-green);
    margin-bottom: 16px;
}

.visual-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--crp-black);
}

.visual-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================
   Resources Section
   ================================ */

.resources-section {
    background: var(--white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.resource-card {
    display: block;
    background: var(--gray-50);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    text-decoration: none;
}

.resource-card:hover {
    border-color: var(--crp-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.resource-icon {
    width: 56px;
    height: 56px;
    background: var(--crp-green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.resource-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--crp-black);
}

.resource-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.resource-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.resource-meta i {
    color: var(--crp-green);
}

/* Breadcrumb ========================================================================================================================== */

.breadcrumb ul {
    gap: 10px;
    display: flex;
    color: #7b8794;
    font-size: 0.9rem;
    line-height: 20px;
    align-items: center;
    margin-bottom: 15px;
}

.breadcrumb ul li {
    color: #111111;
    font-weight: 500;
    line-height: 20px;
}

.breadcrumb ul li a {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 20px;
    display: inline-block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb ul li a:hover {
    color: #2e7d32;
}

.breadcrumb ul li i.fa-solid.fa-angle-right {
    opacity: 0.5;
    font-size: 0.7rem;
}

/* Metadata ========================================================================================================================== */

.display-metadata-box {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1500px;
}

.metadata-text-header h5 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 5px;
    color: #212121;
}

.metadata-text-header p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

h5.h5-basic01 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212121;
    margin: 0 0 5px;
}

.search-bx .input-group {
    position: relative;
    margin: 0 0 20px;
}

.search-bx .input-group p {
    margin: 0;
}

.search-bx .input-group p input {
    width: 100%;
    color: #111;
    height: 42px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 42px;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: "Inter", sans-serif;
    border: 1.5px solid #dde3e8;
    transition: all 0.3s ease;
}

.search-bx .input-group .input-group-append {
    position: absolute;
    right: 1px;
    top: -1px;
    width: 45px;
    height: 43px;
    line-height: 43px;
    z-index: 1;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bx .input-group .input-group-append button {
    background: none;
    width: 100%;
    height: 100%;
    border: none;
    color: #2e7d32;
    font-size: 18px;
    padding: 0 0 0 0;
    font-weight: bold;
    cursor: pointer;
}

.radio-search-bx {
    margin: 0 0 24px;
}

.radio-search-bx .radiobx {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
    gap: 20px;
}

.radio-search-bx .radiobx .radio-bx {
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: #2e7d32;
}

/* Footer ====================================================================================================================================== */

.footer {
    background: var(--crp-black);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    display: block;
}

.footer-col p {
    line-height: 1.7;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    gap: 0 6px;
    display: flex;
    margin-bottom: 12px;
}

.footer-col ul li .fas {
    display: flex;
    align-items: center;
    color: var(--crp-yellow);
}

.footer-col ul li p {
    margin: 0;
}

.footer-col ul li a {
    margin: 0 0 0 5px;
    display: inline-block;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li a:hover {
    color: var(--crp-yellow);
}

.footer-col ul li i {
    color: var(--crp-green);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom p a {
    color: #FFFFFF;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 1);
}

.footer-links a:hover,
.footer-bottom p a:hover {
    color: var(--crp-yellow);
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 1200px) {

    .site-title {
        font-size: 13px;
    }

}

@media (max-width: 1024px) {

    .site-title {
        width: 170px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-wrapper {
        grid-template-columns: 1fr;
    }

    .map-legend {
        max-width: 400px;
    }

}

@media (max-width: 991px) {

    .header .container {
        padding: 0;
    }

    .header-content {
        min-height: auto;
        padding: 12px 15px;
        position: relative;
    }

    .logo-section {
        gap: 10px;
    }

    .logo {
        height: 47px;
    }

    .logo-text {
        gap: 0;
    }

    .site-title {
        width: 180px;
        font-size: 14px;
        line-height: 16px;
    }

    .site-subtitle {
        line-height: 15px;
        font-size: 0.75rem;
    }

    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
        display: flex;
        cursor: pointer;
        font-size: 1.5rem;
        border-radius: 4px;
        align-items: center;
        background: var(--white);
        justify-content: center;
        color: var(--crp-black);
        border: 1px solid #EAEAEA;
    }

    .mobile-menu-toggle i {
        transition: all 0.3s ease;
    }

    .nav-menu {
        gap: 0;
        left: 0;
        top: 100%;
        width: 100%;
        display: none;
        padding: 0 0 0 0;
        margin: 1px 0 0 0;
        position: absolute;
        flex-direction: column;
        background: var(--white);
        transition: all 0.3s ease;
        box-shadow: var(--shadow-sm);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li+li {
        border-top: 1px solid rgba(0, 0, 0, 0.09);
    }

    .nav-menu a {
        display: block;
        padding: 12px 16px;
    }

    .nav-menu li a.is-active {
        background: rgba(46, 125, 50, 0.04);
    }

    #hero_video_banner {
        height: calc(60vh - 0px);
    }

    #hero_video_banner .hero-content {
        padding: 0 20px;
    }

    #hero_video_banner .hero-content .hero-title {
        font-size: 2rem;
    }

    #hero_video_banner .hero-content .hero-sub-title {
        font-size: 1.6rem;
    }

    #hero_video_banner .hero-content .hero-description {
        font-size: 1rem;
        margin-bottom: 0;
        line-height: 26px;
    }

}

@media (max-width: 768px) {

    .hero {
        padding: 0px !important;
        min-height: calc(100vh - 79px);
    }

    .hero-slider .hero-slider-inner {
        min-height: calc(100vh - 79px);
    }

    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .hero-slider-prev {
        left: 50%;
        bottom: 28px;
        top: auto;
        margin: 0 0 0 -34px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        box-sizing: border-box;
        padding: 1px 0 0 1px;
    }

    .hero-slider-next {
        right: 50%;
        bottom: 28px;
        top: auto;
        margin: 0 -34px 0 0;
        width: 30px;
        height: 30px;
        line-height: 30px;
        box-sizing: border-box;
        padding: 1px 0 0 1px;
    }

    .hero-slider-indicators {
        bottom: 20px;
    }

    .hero-slider-dot {
        width: 10px;
        height: 10px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 30px 0 !important;
    }

    h1 {
        font-size: 2rem;
    }

    .section-header {
        margin: 0 auto 20px;
    }

    h2,
    .section-title {
        font-size: 1.3rem;
    }

    .section-description {
        font-size: 14px;
        margin-bottom: 0px;
    }

    h3 {
        font-size: 1.3rem;
    }

    .data-access-section {
        padding: 40px 0 20px;
    }

    .data-access-tiles {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tile-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .access-tile h3 {
        font-size: 1.3rem;
        margin: 0 0 6px;
    }

    .access-tile p {
        font-size: 14px;
        line-height: 20px;
        margin: 0 0 10px;
    }

    .tile-guidance {
        padding: 10px;
    }

    .indicators-grid,
    .community-cards,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .access-tile {
        padding: 14px;
        position: relative;
    }

    .indicator-card {
        text-align: center;
        padding: 14px;
    }

    .indicator-icon-bright {
        margin: 0 auto 14px;
        width: 70px;
        height: 70px;
    }

    .indicator-icon-soft {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
    }

    .indicator-card h3 {
        font-size: 1.25rem;
        margin: 0 0 6px;
    }

    .indicator-brief,
    .progress-story p {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 10px;
    }

    .progress-story {
        padding: 10px;
    }

    .progress-highlight {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

    .indicator-description,
    .why-matters,
    .indicator-story {
        font-size: 0.95rem;
    }

    .indicators-cta {
        padding: 32px 24px;
    }

    .indicators-cta p {
        font-size: 1.05rem;
    }

    .search-box {
        width: 100%;
    }

    .filter-controls {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .jamaica-map {
        min-height: 400px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 20px 0 0;
    }

    .footer-content {
        gap: 15px;
        margin: 0 0 6px;
        grid-template-columns: 1fr;
    }

    .footer-content > div {
        border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    }

    .footer-col {
        padding: 0 0 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .footer-col:last-child {
        padding: 0 0 0 0;
        border-bottom: none;
    }

    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
        font-weight: bold;
    }

    .footer-col ul li a {
        margin: 0 0 0 0;
    }

    .footer-col p strong {
        font-weight: normal;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        border: none;
    }

    .footer-bottom p {
        font-size: 0.74rem;
    }

    .logo-section {
        gap: 8px;
    }

    .site-subtitle {
        font-size: 0.65rem;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgb(26 81 28 / 80%) 0%, rgb(19 101 23 / 80%) 40%, rgb(0 172 13 / 80%) 100%);
    }

}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {

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

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

.page-hero {
    background: linear-gradient(135deg, rgba(44, 114, 46, 0.85) 0%, rgba(0, 155, 8, 0.9) 100%),
        url('https://sspark.genspark.ai/cfimages?u1=lCnGVKVQ-8BT4HO4xbQTZg&u2=c21hbGw&s=1739224135782&n=v2_11.webp');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .hero-background {
    background-position: top -180px center;
    background-image: url('https://www.jpsco.com/wp-content/uploads/2025/05/DSC_3432-1-1024x683.jpg');
}

.page-hero-content {
    position: relative;
    z-index: 6;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 12px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFC107, #FFD54F);
    border-radius: 2px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
}

/* ================================
   About Intro Section
   ================================ */

.about-intro-content .section-title {
    text-align: left;
    margin: 0 0 15px;
}

.about-intro-section {
    background: var(--white);
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
}

.community-image {
    width: 100%;
    height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

.visual-highlight-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 600;
}

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

.focus-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 500;
}

.focus-list li:last-child {
    border-bottom: none;
}

.focus-list li i {
    font-size: 1.2rem;
    color: var(--crp-yellow);
}

/* ================================
   Why Section
   ================================ */

.why-section {
    background: var(--gray-50);
}

.why-section .section-title {
    text-align: center;
}

.why-section .section-description {
    text-align: center;
    margin: 0 auto 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Why Cards - Distinct Color Themes */
.why-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.why-card-cycles {
    border-top-color: #42A5F5;
}

.why-card-empowering {
    border-top-color: #AB47BC;
}

.why-card-future {
    border-top-color: #66BB6A;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.why-card-cycles:hover {
    background: linear-gradient(135deg, rgba(66, 165, 245, 0.03), rgba(255, 255, 255, 1));
}

.why-card-empowering:hover {
    background: linear-gradient(135deg, rgba(171, 71, 188, 0.03), rgba(255, 255, 255, 1));
}

.why-card-future:hover {
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.03), rgba(255, 255, 255, 1));
}

.why-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.why-card-cycles .why-icon {
    background: linear-gradient(135deg, #42A5F5, #64B5F6);
    box-shadow: 0 6px 20px rgba(66, 165, 245, 0.35);
}

.why-card-empowering .why-icon {
    background: linear-gradient(135deg, #AB47BC, #BA68C8);
    box-shadow: 0 6px 20px rgba(171, 71, 188, 0.35);
}

.why-card-future .why-icon {
    background: linear-gradient(135deg, #66BB6A, #81C784);
    box-shadow: 0 6px 20px rgba(102, 187, 106, 0.35);
}

.why-card:hover .why-icon {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.why-card h3 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--crp-black);
}

.why-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Outcome Line - Short impact statement */
.outcome-line {
    font-size: 0.92rem;
    color: #E65100;
    font-style: italic;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 152, 0, 0.06);
    margin-top: 16px;
}

/* ================================
   Data Role Section
   ================================ */

.data-role-section {
    background: var(--white);
}

.data-role-section .section-title {
    text-align: center;
    margin-bottom: 10px;
}

.lead-text {
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin: 0 auto 40px;
    color: var(--text-secondary);
}

.data-benefits-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card-new {
    background: var(--white);
    padding: 48px 36px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card-new:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--crp-green);
}

.benefit-icon-new {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--crp-green), #1B5E20);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.benefit-card-new:hover .benefit-icon-new {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--crp-yellow), #F57C00);
}

.benefit-card-new h3 {
    font-size: 1.4rem;
    color: var(--crp-black);
    margin-bottom: 16px;
    font-weight: 600;
}

.benefit-card-new p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.data-flow-clean {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1500px;
    margin: 0 auto 40px;
    padding: 48px 32px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    overflow-x: auto;
}

.flow-card-clean {
    flex: 1;
    min-width: 240px;
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.flow-card-clean:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--crp-green);
}

.flow-number-clean {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--crp-green), #1B5E20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.flow-icon-clean {
    width: 64px;
    height: 64px;
    margin: 24px auto 20px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--crp-green);
    transition: all 0.3s ease;
}

.flow-card-clean:hover .flow-icon-clean {
    background: linear-gradient(135deg, var(--crp-yellow), #F57C00);
    color: var(--white);
}

.flow-card-clean h3 {
    font-size: 1.2rem;
    color: var(--crp-black);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.flow-card-clean p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.flow-badge-clean {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--crp-green);
    font-size: 0.85rem;
    color: var(--crp-green);
    font-weight: 500;
}

.flow-badge-clean i {
    font-size: 0.9rem;
}

.flow-arrow-clean {
    flex-shrink: 0;
    font-size: 1.8rem;
    color: var(--crp-green);
}

/* ================================
   Data Process Section
   ================================ */
.data-process-section {
    background: var(--white);
}

.data-process-section .container {
    max-width: 1500px;
}

/* Privacy Callout */
.privacy-callout {
    max-width: 1200px;
    margin: 40px auto 0;
    display: flex;
    gap: 32px;
    align-items: start;
    padding: 30px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(46, 125, 50, 0.1));
    border-radius: var(--radius-xl);
    border: 2px solid var(--crp-green);
}

.privacy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--crp-green), #1B5E20);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.privacy-content {
    box-sizing: border-box;
    width: calc(100% - 80px);
}

.privacy-content h3 {
    font-size: 1.4rem;
    color: var(--crp-black);
    margin-bottom: 12px;
    font-weight: 600;
}

.privacy-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--crp-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: var(--crp-yellow);
    gap: 12px;
}

/* ========================================
   ABOUT PAGE V3.1 - GLOBAL ENHANCEMENTS
   ======================================== */

/* Global Saturation Increase - All Icons & Accents */
.why-card-cycles .why-icon {
    background: linear-gradient(135deg, #29B6F6, #4FC3F7);
    box-shadow: 0 6px 20px rgba(41, 182, 246, 0.40);
}

.why-card-empowering .why-icon {
    background: linear-gradient(135deg, #BA68C8, #CE93D8);
    box-shadow: 0 6px 20px rgba(186, 104, 200, 0.40);
}

.why-card-future .why-icon {
    background: linear-gradient(135deg, #66BB6A, #81C784);
    box-shadow: 0 6px 20px rgba(102, 187, 106, 0.40);
}

.outcome-line {
    font-size: 0.92rem;
    color: #EF6C00;
    font-style: italic;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 167, 38, 0.08), rgba(255, 193, 7, 0.08));
    margin-top: 16px;
    border-left: 3px solid #FFA726;
}

.data-flow-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    flex-wrap: wrap;
}

.flow-step {
    flex: 0 0 calc(25% - 40px);
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.flow-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Bright Colored Step Numbers */
.flow-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.flow-step:nth-child(1) .flow-number {
    background: linear-gradient(135deg, #29B6F6, #4FC3F7);
    box-shadow: 0 4px 16px rgba(41, 182, 246, 0.40);
}

.flow-step:nth-child(3) .flow-number {
    background: linear-gradient(135deg, #AB47BC, #BA68C8);
    box-shadow: 0 4px 16px rgba(171, 71, 188, 0.40);
}

.flow-step:nth-child(5) .flow-number {
    background: linear-gradient(135deg, #66BB6A, #81C784);
    box-shadow: 0 4px 16px rgba(102, 187, 106, 0.40);
}

.flow-step:nth-child(7) .flow-number {
    background: linear-gradient(135deg, #FFA726, #FFB74D);
    box-shadow: 0 4px 16px rgba(255, 167, 38, 0.40);
}

.flow-icon {
    font-size: 2rem;
    color: #616161;
    margin-bottom: 16px;
}

.flow-step h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.flow-step p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #616161;
    margin-bottom: 16px;
}

.flow-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 193, 7, 0.10);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #E65100;
    font-weight: 500;
}

.flow-badge i {
    font-size: 0.9rem;
}

/* Connecting Lines and Arrows */
.flow-connector {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
}

.connector-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #E0E0E0 0%, #BDBDBD 50%, #E0E0E0 100%);
    z-index: 0;
}

.flow-connector i {
    position: relative;
    z-index: 1;
    background: white;
    padding: 8px;
    color: #66BB6A;
    font-size: 1.4rem;
}

/* Feedback Loop */
.feedback-loop {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.feedback-arrow {
    font-size: 2.5rem;
    color: #66BB6A;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feedback-text {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.10), rgba(129, 199, 132, 0.10));
    border-radius: 30px;
    border: 2px solid #66BB6A;
    font-size: 1rem;
    color: #2E7D32;
    font-weight: 600;
}

.feedback-text i {
    font-size: 1.2rem;
    color: #66BB6A;
}

.horizontal-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 48px;
    gap: 24px;
}

.timeline-step {
    flex: 1;
    max-width: 240px;
    text-align: center;
    position: relative;
}

.timeline-step .step-number {
    margin: 0 auto 15px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #66BB6A, #81C784);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 0;
    box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3);
    transition: all 0.3s ease;
}

.timeline-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(102, 187, 106, 0.4);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(102, 187, 106, 0.08);
    display: flex;
    font-size: 24px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 1.8rem;
    color: #66BB6A;
}

.timeline-step:hover .step-icon {
    background: rgba(102, 187, 106, 0.15);
    transform: translateY(-4px);
}

.timeline-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--crp-black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.timeline-step p {
    font-size: 0.95rem;
    color: #616161;
    line-height: 1.6;
    margin: 0;
}

.timeline-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.timeline-arrow i {
    font-size: 1.8rem;
    color: #81C784;
    transition: all 0.3s ease;
}

.horizontal-timeline:hover .timeline-arrow i {
    color: #66BB6A;
    transform: translateX(4px);
}

p.privacy-callout-cta a,
.submittion.know-more {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    color: white;
    background: #00672b;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feedback Loop Note */
.timeline-feedback {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 32px;
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.06), rgba(129, 199, 132, 0.06));
    border-left: 4px solid #66BB6A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: #424242;
    line-height: 1.7;
}

.timeline-feedback i {
    font-size: 1.5rem;
    color: #66BB6A;
    flex-shrink: 0;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 1024px) {

    .data-flow-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }

    .flow-step {
        flex: 0 0 calc(50% - 30px);
    }

    .flow-connector {
        flex: 0 0 100%;
        height: 40px;
        margin: 0;
    }

    .connector-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, #E0E0E0 0%, #BDBDBD 50%, #E0E0E0 100%);
    }

    .flow-connector i {
        transform: rotate(90deg);
    }

    .horizontal-timeline {
        gap: 16px;
    }

    .timeline-step {
        max-width: 200px;
    }

    .timeline-step .step-number {
        width: 35px;
        height: 35px;
        margin: 0 auto 15px;
    }

    .timeline-step h3 {
        font-size: 1.15rem;
    }

    .timeline-step p {
        font-size: 0.9rem;
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1.35rem;
    }

    .step-icon {
        width: 56px;
        height: 56px;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .timeline-arrow {
        padding-top: 70px;
    }

    .timeline-arrow i {
        font-size: 1.5rem;
    }

    .about-intro-content {
        gap: 0;
        grid-template-columns: 1fr;
    }

    .visual-highlight-card {
        position: static;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {

    .page-hero .hero-background {
        background-position: top center;
    }

    .page-hero {
        min-height: auto;
        padding: 20px 0 !important;
    }

    .video-of-us iframe {
        height: 400px;
        transition: all 0.3s;
    }

}


@media (max-width: 768px) {

    .data-benefits-narrative {
        gap: 14px;
        margin: 20px 0 0 0;
    }

    .benefit-item-flow {
        align-items: flex-start;
    }

    .community-image {
        margin: 20px 0 0 0;
    }

    .benefit-icon-flow {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .benefit-text-flow h3 {
        font-size: 1.25rem;
    }

    .flow-step {
        flex: 0 0 100%;
    }

    .flow-connector {
        display: none;
    }

    .why-section .section-description {
        margin: 0 0 24px;
    }

    .horizontal-timeline {
        margin: 20px 0 0 0;
        flex-direction: column;
        align-items: center;
    }

    .timeline-step {
        padding: 15px;
        max-width: 400px;
        border-radius: 10px;
        border: 1px solid #EAEAEA;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .timeline-arrow {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .timeline-arrow i {
        font-size: 1.5rem;
    }

    .timeline-feedback {
        padding: 18px 24px;
        font-size: 0.95rem;
    }

    .timeline-feedback i {
        font-size: 1.3rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
        margin: 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-card {
        padding: 20px 25px;
    }

    .data-benefits-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .data-flow-clean {
        gap: 20px;
        padding: 32px 24px;
        flex-direction: column;
    }

    .flow-arrow-clean {
        transform: rotate(90deg);
        margin: 8px 0;
    }

    .flow-card-clean {
        min-width: 100%;
    }

    .privacy-callout {
        flex-direction: column;
        padding: 16px;
        gap: 16px;
    }

    .privacy-icon {
        margin: 0 auto;
    }

    .privacy-content {
        width: 100%;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .display-metadata-box {
        padding: 0 15px;
        margin: 0 auto -25px;
    }

    .metadata-text-header h5 {
        font-size: 1.4rem;
    }

    .metadata-text-header p {
        font-size: 14px;
    }

    h5.h5-basic01 {
        font-size: 1rem;
    }



}

@media (max-width: 640px) {

    .video-of-us iframe {
        height: 260px;
        transition: all 0.3s;
    }

}

@media (max-width: 480px) {

    .benefit-item-flow {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .page-title {
        font-size: 1.7rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .visual-highlight-card {
        padding: 32px 24px;
    }

    .benefit-icon-new {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
    }

    .flow-card-clean {
        padding: 28px 20px;
    }

    .flow-number-clean {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .flow-icon-clean {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }
}

/* Dashboard ======================================================================================================================== */

.dashboards-page {
    padding: 50px 0;
    min-height: 100vh;
    background: #F9FAFB;
}

.dashboard-search .views-exposed-form form {
    display: flex;
    gap: 15px 20px;
    flex-wrap: wrap;
    margin: 0 auto 30px;
}

.dashboard-search .views-exposed-form form .js-form-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dashboard-search .views-exposed-form form .js-form-item label {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 2px;
    color: var(--text-primary);
}

.dashboard-search .views-exposed-form form .js-form-item input[type="text"] {
    gap: 16px;
    width: 100%;
    height: 46px;
    display: block;
    font-size: 15px;
    line-height: 46px;
    padding: 0 14px 2px 45px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.dashboard-search .views-exposed-form form .js-form-item.form-type-textfield {
    flex: auto;
    width: 100%;
}

.dashboard-search .views-exposed-form form .js-form-item input#edit-title--2 {
    background: var(--white) url("https://cdn-icons-png.flaticon.com/128/54/54481.png") no-repeat scroll left 17px center / 14px;
}

.dashboard-search .views-exposed-form form .js-form-item input[type="text"]:focus-within {
    border-color: #43A047;
    box-shadow: 0 0 0 4px rgba(67, 160, 71, 0.12);
    transform: translateY(-2px);
}

.dashboard-search .views-exposed-form form .js-form-item select {
    width: 100%;
    height: 42px;
    color: #2c3e50;
    cursor: pointer;
    font-size: 14px;
    line-height: 40px;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 0 40px 4px 10px;
    border: 1px solid #dde3e8;
    transition: all 0.3s ease;
}

.dashboard-search .views-exposed-form form .js-form-item select:hover {
    border: 1px solid #D1D5DB;
}

.dashboard-search .views-exposed-form form .js-form-item select:focus {
    outline: none;
    border-color: #43A047;
    box-shadow: 0 0 0 3px rgba(67, 160, 71, 0.1);
}

div#edit-actions--2 {
    display: flex;
    align-items: flex-end;
}

div#edit-actions--2 input {
    border: none;
    height: 42px;
    color: #FFFFFF;
    padding: 0 12px;
    min-width: 100px;
    font-weight: bold;
    line-height: 42px;
    border-radius: 4px;
    text-align: center;
    background: #2e7d32;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

div#edit-actions--2 input:hover {
    background: #1e5e21;
}

.featured-dashboard-section {
    margin: 0;
    padding: 10px 0 50px;
}

.featured-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #c19400 0%, #e3aa00 100%);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 20px;
}

.featured-label i {
    font-size: 0.95rem;
}

.featured-dashboard-card {
    background: linear-gradient(135deg, rgba(255, 248, 225, 0.4) 0%, rgba(255, 236, 179, 0.3) 100%);
    border: 2px solid #c19400;
    border-radius: 20px;
    padding: 30px 30px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.12);
    transition: all 0.3s ease;
}

.featured-dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 193, 7, 0.2);
    border-color: #FFC107;
}

.featured-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d8a200 0%, #ffca22 100%);
    border-radius: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.featured-icon i {
    font-size: 2.2rem;
    color: white;
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.featured-why {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d8a200;
    line-height: 1.5;
    margin: 0;
    padding: 0 0 0 24px;
}

.featured-why ul li {
    list-style-type: disc;
}

.featured-description {
    font-size: 1rem;
    color: #424242;
    line-height: 1.7;
    margin: 0;
}

.featured-description p {
    margin: 0;
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #d8a200 0%, #ffca22 100%);
    color: white !important;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.featured-btn:hover {
    background: linear-gradient(135deg, #FFB300 0%, #FFA000 100%);
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
}

.featured-btn i {
    font-size: 1.1rem;
    transition: transform 0.35s ease;
}

.featured-btn:hover i {
    transform: translateX(4px);
}

.dashboard-grid #block-jamaicacrp-content .views-element-container > div {
    gap: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}

.dashboard-card {
    padding: 0;
    height: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    flex-direction: column;
    background: var(--white);
    transition: all 0.3s ease;
    border: 2px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.dashboard-icon {
    width: 64px;
    height: 64px;
    display: flex;
    flex-shrink: 0;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dashboard-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.dashboard-icon i {
    font-size: 1.8rem;
    color: white;
}

.dashboard-card:hover .dashboard-icon {
    transform: scale(1.05);
}

.dashboard-badge {
    display: inline-flex;
}

.dashboard-card-housing:hover {
    border-color: #66BB6A;
}

.dashboard-card-housing .dashboard-icon {
    background: linear-gradient(135deg, #66BB6A 0%, #81C784 100%);
}

.badge-tag {
    padding: 6px 14px;
    background: rgba(66, 187, 106, 0.10);
    color: #2E7D32;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 16px;
    border: 1px solid rgba(66, 187, 106, 0.20);
}

.dashboard-content {
    flex: 1;
    gap: 10px;
    display: flex;
    padding: 0 20px 20px;
    flex-direction: column;
}

.dashboard-content > p {
    margin: 0 !important;
}

.dashboard-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.dashboard-description {
    font-size: 1rem;
    color: #424242;
    line-height: 1.6;
    margin: 0;
}

.dashboard-highlight {
    gap: 12px;
    display: flex;
    background: #F9FAFB;
    border-radius: 10px;
    align-items: flex-start;
    border: 1px solid #E5E7EB;
    padding: 8px 12px 10px 12px;
}

.dashboard-highlight i {
    color: #666;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1rem;
}

.dashboard-highlight span {
    font-size: 0.9rem;
    color: #616161;
    line-height: 1.5;
}

.dashboard-highlight span ul {
    gap: 0 30px;
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    line-height: 18px;
    padding: 0 0 0 20px;
}

.dashboard-highlight span ul li {
    list-style-type: disc;
}

.dashboard-footer {
    gap: 10px;
    display: flex;
    align-items: center;
    padding: 10px 20px 15px;
    justify-content: space-between;
    border-top: 1px solid #F3F4F6;
}

.dashboard-meta {
    gap: 6px;
    display: flex;
    flex-direction: column;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6B7280;
}

.meta-item i {
    font-size: 0.85rem;
    color: #9CA3AF;
}

/* Dashboard Link Button */
.dashboard-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: none;
    color: #111111;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.dashboard-link:hover {
    color: #257328;
    gap: 12px;
}

.dashboard-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.dashboard-link:hover i {
    transform: translateX(4px);
}

/* ================================
   RESPONSIVE STYLES
   ================================ */

@media (max-width: 1399px) {

    .dashboard-grid #block-jamaicacrp-content .views-element-container > div {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 15px;
    }
    
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 28px;
    }

    .featured-dashboard-card {
        grid-template-columns: 1fr;
        padding: 36px 32px;
        gap: 24px;
    }

    .featured-btn {
        justify-content: center;
        padding: 5px 10px;
        font-size: 13px;
        gap: 9px;
        border-radius: 6px;
    }

    .featured-btn i {
        font-size: 14px;
    }

    .filters-section {
        gap: 10px;
        margin: 0 auto;
        flex-direction: column;
    }

    .filter-group {
        min-width: 100%;
    }
}

@media (max-width: 768px) {

    .dashboards-page {
        padding: 20px 0 0;
    }

    .featured-dashboard-section {
        padding: 0 0 15px 0 !important;
    }

    .featured-label {
        gap: 5px;
    padding: 5px 14px 5px 10px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

    .featured-label i {
    font-size: 0.8rem;
}

    .featured-dashboard-card {
        padding: 15px;
        gap: 10px;
        display: flex;
        flex-wrap: wrap;
        border-radius: 10px;
    }

    .featured-icon {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }

    .featured-icon img {width: 44px;}

    .featured-icon i {
        font-size: 1.8rem;
    }

    .featured-title {
        font-size: 1.2rem;
        width: calc(100% - 60px);
    }

    .featured-why {
        font-size: 1rem;
        padding: 0;
    }

    .featured-why ul li {
        list-style-type: none;
    }

    .featured-description {
        font-size: 12px;
        line-height: 20px;
    }

    .dashboard-grid {
        margin: 0 0 20px;
    }

    .dashboard-content {
        padding: 0 14px 10px;
        gap: 6px;
    }

    .dashboard-search .views-exposed-form form {
        margin: 0 auto 20px;
        gap: 10px 0;
        flex-direction: column;
    }

    .dashboard-footer {
        padding: 10px 20px 15px;
        /* flex-direction: column; */
        align-items: flex-start;
    }

    .dashboard-link {
        font-size: 12px;
    }

    .dashboard-icon {
        width: 56px;
        height: 56px;
    }

    .dashboard-icon i {
        font-size: 1.6rem;
    }

    .dashboard-title {
        font-size: 1.2rem;
    }

    .dashboard-description {
        font-size: 14px;
        line-height: 20px;
    }

    .dashboard-description p {
        margin: 0 0 5px;
    }

    .dashboard-highlight {
        padding: 5px 10px 10px 10px;
    }

    .dashboard-highlight span ul {
        padding: 0 0 0 14px;
    }

    .dashboard-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .dashboard-header {
        padding: 10px;
    }

    
    
}

/* Login Form ==========================================================================================================================*/

form#user-login-form,
form#user-pass {
    max-width: 500px;
    margin: 40px auto;
    background: var(--white);
    padding: 40px 36px;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #EAEAEA;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 14px;
}

form#user-pass .js-form-item,
form#user-login-form .js-form-item {
    gap: 5px;
    display: flex;
    flex-direction: column;
}

form#user-pass .js-form-item label,
form#user-login-form .js-form-item label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
}

form#user-login-form .js-form-item select,
form#user-pass .js-form-item input[type="text"],
form#user-pass .js-form-item input[type="email"],
form#user-login-form .js-form-item input[type="text"],
form#user-login-form .js-form-item input[type="email"],
form#user-login-form .js-form-item input[type="password"] {
    width: 100%;
    height: 42px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 42px;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    color: #111;
    background: var(--white);
    font-family: "Inter", sans-serif;
    border: 1.5px solid #dde3e8;
    transition: all 0.3s ease;
}

form#user-login-form .js-form-item select {
    padding: 0 20px 0 10px;
}

form#user-pass div#edit-actions input,
form#user-login-form div#edit-actions input {
    display: block;
    background: linear-gradient(135deg, rgba(44, 114, 46, 1) 20%, rgba(0, 155, 8, 0.9) 100%);
    width: 100%;
    height: 42px;
    line-height: 42px;
    padding: 0;
    box-sizing: border-box;
    border: none;
    border-radius: 8px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 15px;
}

form#user-pass>p {
    font-size: 11px;
    margin: 0;
    text-align: center;
}