/* ============================================
   CSS Variables & Base Styles
   ============================================ */

:root {
    --theme-primary: #214591; /* WCPA Blue */
    --theme-green: #006042; /* WCPA Green */
    --theme-dark: #1a3a7a; /* Darker blue variant */
    --theme-light: #f8fafc;
    --theme-white: #ffffff;
    --theme-text: #1a1a1a;
    --theme-text-light: #4a5568;
    --theme-text-lighter: #718096;
    --theme-border: #e2e8f0;
    --theme-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --theme-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --theme-shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --theme-shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
    --theme-shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --border-radius: 12px;
    --border-radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--theme-text);
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.single-post .sidebar{float: none; margin-left: initial;width: auto;}

/* Bootstrap Grid Override for Archive Pages */
.content-area.col-lg-8 {
    float: none;
    width: 100%;
    margin: 0;
}

@media (min-width: 992px) {
    .content-area.col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

.sidebar {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) {
    .sidebar {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

/* Sidebar Widget Styles */
.sidebar {
    width: 100%;
    padding-left: 1.5rem;
}

.sidebar .widget {
    background: var(--theme-white);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--theme-border);
    transition: var(--transition);
}

.sidebar .widget:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sidebar .widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--theme-primary);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--theme-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.sidebar .widget-title a {
    color: var(--theme-primary);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar .widget-title a:hover {
    color: var(--theme-green);
}

/* Widget Lists */
.sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .widget li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--theme-border);
    transition: var(--transition);
}

.sidebar .widget li:last-child {
    border-bottom: none;
}

.sidebar .widget li:hover {
    padding-left: 0.5rem;
}

.sidebar .widget li a {
    color: var(--theme-text);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    line-height: 1.6;
}

.sidebar .widget li a:hover {
    color: var(--theme-primary);
}

/* Recent Posts Widget */
.sidebar .widget_recent_entries li {
    padding: 1rem 0;
}

.sidebar .widget_recent_entries .post-date {
    display: block;
    font-size: 0.875rem;
    color: var(--theme-text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Categories Widget */
.sidebar .widget_categories li,
.sidebar .widget_archive li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar .widget_categories .count,
.sidebar .widget_archive .count {
    background: var(--theme-light);
    color: var(--theme-primary);
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 2rem;
    text-align: center;
}

/* Tag Cloud Widget */
.sidebar .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sidebar .tagcloud a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--theme-light);
    color: var(--theme-text);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
    border: 1px solid var(--theme-border);
}

.sidebar .tagcloud a:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    border-color: var(--theme-primary);
    transform: translateY(-2px);
}

/* Search Widget */
.sidebar .widget_search .search-form {
    display: flex;
    gap: 0.5rem;
}

.sidebar .widget_search .search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--theme-border);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.sidebar .widget_search .search-field:focus {
    outline: none;
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(var(--theme-primary-rgb), 0.1);
}

.sidebar .widget_search .search-submit {
    padding: 0.75rem 1.5rem;
    background: var(--theme-primary);
    color: var(--theme-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.sidebar .widget_search .search-submit:hover {
    background: var(--theme-green);
    transform: translateY(-2px);
}

/* Text Widget */
.sidebar .widget_text {
    font-size: 0.95rem;
    line-height: 1.7;
}

.sidebar .widget_text p {
    margin-bottom: 1rem;
}

.sidebar .widget_text p:last-child {
    margin-bottom: 0;
}

/* RSS Widget */
.sidebar .widget_rss .rss-date {
    display: block;
    font-size: 0.875rem;
    color: var(--theme-text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.sidebar .widget_rss cite {
    display: block;
    font-size: 0.875rem;
    color: var(--theme-text-light);
    margin-top: 0.5rem;
    font-style: normal;
}

/* Calendar Widget */
.sidebar .widget_calendar table {
    width: 100%;
    border-collapse: collapse;
}

.sidebar .widget_calendar caption {
    font-weight: 700;
    color: var(--theme-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.sidebar .widget_calendar th {
    background: var(--theme-light);
    color: var(--theme-primary);
    padding: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.sidebar .widget_calendar td {
    padding: 0.5rem;
    text-align: center;
    border: 1px solid var(--theme-border);
}

.sidebar .widget_calendar td a {
    display: block;
    background: var(--theme-primary);
    color: var(--theme-white);
    border-radius: 4px;
    padding: 0.25rem;
    font-weight: 600;
}

.sidebar .widget_calendar td a:hover {
    background: var(--theme-green);
}

/* Meta Widget */
.sidebar .widget_meta li a {
    color: var(--theme-text);
}

.sidebar .widget_meta li a:hover {
    color: var(--theme-primary);
}

/* Pages Widget */
.sidebar .widget_pages li {
    padding-left: 0;
}

.sidebar .widget_pages .children {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--theme-border);
}

/* Comments Widget */
.sidebar .widget_recent_comments li {
    padding: 1rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.sidebar .widget_recent_comments .comment-author-link {
    color: var(--theme-primary);
    font-weight: 600;
}

.sidebar .widget_recent_comments a {
    color: var(--theme-text);
}

.sidebar .widget_recent_comments a:hover {
    color: var(--theme-primary);
}

/* ============================================
   Topbar Styles
   ============================================ */

.topbar {
    background: var(--theme-green);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 99;
}

.topbar-email {
    color: var(--theme-white);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    font-weight: 500;
}

.topbar-email:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(3px);
}

.topbar-email i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0;
}

.social-icons a {
    color: var(--theme-white);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Main Header Styles
   ============================================ */

.main-header {
    background-color: var(--theme-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.navbar {
    padding: 1.25rem 0;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

.navbar-nav .nav-link {
    color: var(--theme-text);
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    margin: 0 0.125rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--theme-primary);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Main menu items hover - no background, only underline (all main menu items including dropdowns) */
.navbar-nav > .nav-item > .nav-link:hover,
.navbar-nav > .nav-item > .nav-link.active {
    background: transparent;
    color: var(--theme-text);
    transform: translateY(-2px);
    box-shadow: none;
}

.navbar-nav > .nav-item > .nav-link:hover::before,
.navbar-nav > .nav-item > .nav-link.active::before {
    width: 80%;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    box-shadow: var(--theme-shadow-lg);
    margin-top: 0.75rem;
    padding: 0.75rem 0;
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius);
    background: var(--theme-white);
    min-width: 220px;
}

.dropdown-item {
    padding: 0.75rem 1.75rem;
    transition: var(--transition-fast);
    font-weight: 500;
    color: var(--theme-text);
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: var(--theme-green);
    color: var(--theme-white);
    padding-left: 2rem;
}

/* Nested Dropdown Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.dropdown-submenu > .dropdown-item .fa-chevron-right {
    font-size: 0.75rem;
    transition: var(--transition-fast);
    margin-left: auto;
    opacity: 0.7;
}

.dropdown-submenu:hover > .dropdown-item,
.dropdown-submenu > .dropdown-item:hover {
    background: var(--theme-green);
    color: var(--theme-white);
    padding-left: 2rem;
}

.dropdown-submenu:hover > .dropdown-item .fa-chevron-right {
    transform: translateX(3px);
    opacity: 1;
}

.dropdown-submenu > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    min-width: 240px;
}

.dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Prevent submenu from closing when hovering over it */
.dropdown-submenu > .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile adjustments for nested dropdown */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-logos {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--theme-border);
}

.header-logo {
    height: 45px;
    width: auto;
    transition: var(--transition);
    filter: grayscale(20%);
}

.header-logo:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 1.25rem;
}

.navbar-toggler-icon {
    width: 1.75em;
    height: 1.75em;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(1, 52, 118, 0.1);
    outline: none;
}

.navbar-toggler:hover {
    background-color: var(--theme-light);
}

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

.hero-section {
    position: relative;
    height: 90vh;
    min-height: 700px;
    background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -20px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 96, 66, 0.5);
    z-index: 2;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 96, 66, 0.3);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    text-align: center;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--theme-white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease forwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    color: var(--theme-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(1, 52, 118, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-title-main {
    display: block;
    color: var(--theme-white);
    background-clip: text;
    position: relative;
}

.hero-title-accent {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--theme-white);
    border-radius: 2px;
    animation: expandLine 1s ease 0.8s forwards;
    transform-origin: center;
    transform: translateX(-50%) scaleX(0);
}

@keyframes expandLine {
    to {
        transform: translateX(-50%) scaleX(1);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.85rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    max-width: 850px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    line-height: 1.6;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-description p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta-wrapper {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
}

.btn-hero-primary,
.btn-hero-secondary,
.btn-hero-subscribe {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary {
    background: var(--theme-white);
    color: var(--theme-primary);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(33, 69, 145, 0.1);
    transition: left 0.5s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--theme-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-hero-secondary:hover {
    border-color: var(--theme-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary:hover::before {
    width: 100%;
}

.btn-hero-subscribe {
    background: var(--theme-green);
    color: var(--theme-white);
    border: 2px solid var(--theme-green);
}

.btn-hero-subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-hero-subscribe:hover::before {
    left: 100%;
}

.btn-hero-subscribe:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 96, 66, 0.4);
    background: rgba(0, 96, 66, 0.95);
    border-color: rgba(0, 96, 66, 0.95);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--theme-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 1s ease 1.2s forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.scroll-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* ============================================
   Parallax Section Styles
   ============================================ */

.parallax-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: translateZ(0);
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 96, 66, 0.7);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 6rem 0;
    text-align: center;
}

.parallax-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-green);
    border-radius: 50%;
    animation: floatIcon 3s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 96, 66, 0.3);
}

.parallax-icon i {
    font-size: 3rem;
    color: var(--theme-white);
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.parallax-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--theme-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.2;
    animation: fadeInUp 1s ease forwards;
}

.parallax-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.parallax-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.parallax-stat-item {
    text-align: center;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    min-width: 180px;
}

.parallax-stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.parallax-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--theme-white);
    line-height: 1;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.parallax-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

/* Parallax scroll effect using transform */
@media (prefers-reduced-motion: no-preference) {
    .parallax-background {
        animation: parallaxScroll 20s linear infinite;
    }
}

@keyframes parallaxScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20%);
    }
}

/* ============================================
   Introduction Section Styles
   ============================================ */

.introduction-section {
    background: var(--theme-light);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.intro-background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    background-color: var(--theme-primary);
    pointer-events: none;
}

.intro-content-card {
    background: var(--theme-white);
    border-radius: 24px;
    padding: 2.5rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    position: relative;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.intro-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--theme-primary);
}

.intro-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.intro-icon-wrapper {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}

.intro-icon {
    width: 70px;
    height: 70px;
    background: var(--theme-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(33, 69, 145, 0.3);
    position: relative;
    animation: floatIcon 3s ease-in-out infinite;
}

.intro-icon i {
    font-size: 1.75rem;
    color: var(--theme-white);
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.intro-badge-modern {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 96, 66, 0.1);
    color: var(--theme-green);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 96, 66, 0.2);
}


.intro-badge-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    background: var(--theme-primary);
    color: var(--theme-white);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(1, 52, 118, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.introduction-section .container {
    position: relative;
}

.intro-image-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--theme-shadow-xl);
    background: var(--theme-white);
    padding: 8px;
    z-index: 10;
    width: 100%;
}

.intro-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 69, 145, 0.08);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}

.intro-image-wrapper:hover .intro-image-overlay {
    background: rgba(33, 69, 145, 0.04);
}

.intro-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--border-radius-lg) - 8px);
    transition: var(--transition);
    position: relative;
    z-index: 0;
    /* Prevent image stretching - maintains aspect ratio */
    object-fit: cover;
    object-position: center;
    max-width: 100%;
}

.intro-image-wrapper:hover .intro-image {
    transform: scale(1.05);
}

.intro-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--theme-primary);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
    display: flex;
    align-items: center;
}

.intro-content {
    padding: 0;
}

.intro-content.text-center {
    text-align: center;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--theme-text);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-center .section-heading {
    margin-bottom: 2rem;
}

.section-heading-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--theme-text);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.heading-highlight-modern {
    display: block;
    color: var(--theme-primary);
    font-size: 0.9em;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.heading-highlight {
    display: block;
    color: var(--theme-primary);
    font-size: 1.1em;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.heading-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: var(--theme-primary);
    border-radius: 2px;
}

.text-center .heading-highlight {
    padding-left: 0;
    padding-bottom: 0.5rem;
}

.text-center .heading-highlight::before {
    display: none;
}

.text-center .heading-highlight::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--theme-primary);
    border-radius: 2px;
}

.intro-subtitle {
    font-size: 1.1rem;
    color: var(--theme-text-light);
    font-weight: 500;
    margin-bottom: 2rem;
    font-style: italic;
}

.intro-divider {
    width: 80px;
    height: 4px;
    background: var(--theme-primary);
    border-radius: 2px;
    margin: 2rem auto;
}

.intro-divider-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto;
    max-width: 200px;
}

.intro-divider-modern span {
    flex: 1;
    height: 2px;
    background: var(--theme-border);
    position: relative;
}

.intro-divider-modern span::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: var(--theme-primary);
}

.intro-divider-modern i {
    color: var(--theme-green);
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.intro-text-wrapper {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    color: var(--theme-text-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.intro-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--theme-primary);
    border-radius: 50%;
    opacity: 0.5;
}

.text-center .intro-text {
    padding-left: 0;
}

.text-center .intro-text::before {
    display: none;
}

.intro-text-wrapper-modern {
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text-modern {
    color: var(--theme-text-light);
    font-size: 1.1rem;
    line-height: 1.95;
    margin-bottom: 1.25rem;
    font-weight: 400;
    text-align: left;
}

.intro-text-wrapper-modern .intro-text-modern:last-child {
    margin-bottom: 0;
}

.intro-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.intro-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(33, 69, 145, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(33, 69, 145, 0.1);
    transition: var(--transition);
    font-weight: 500;
    color: var(--theme-primary);
    font-size: 0.95rem;
}

.intro-feature-item i {
    font-size: 1.1rem;
    color: var(--theme-primary);
}

.intro-feature-item:hover {
    background: rgba(33, 69, 145, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--theme-shadow);
    border-color: rgba(1, 52, 118, 0.2);
}

.intro-cta-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.intro-cta-wrapper-modern {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--theme-primary);
    color: var(--theme-white);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    border: none;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 25px rgba(33, 69, 145, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--theme-green);
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-primary-modern span,
.btn-primary-modern i {
    position: relative;
    z-index: 1;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(33, 69, 145, 0.4);
}

.btn-primary-modern:hover::before {
    left: 0;
}

.btn-outline-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: transparent;
    color: var(--theme-primary);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    border: 2px solid var(--theme-primary);
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-outline-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--theme-green);
    transition: width 0.4s ease;
    z-index: 0;
}

.btn-outline-modern span,
.btn-outline-modern i {
    position: relative;
    z-index: 1;
}

.btn-outline-modern:hover {
    color: var(--theme-white);
    border-color: var(--theme-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 96, 66, 0.3);
}

.btn-outline-modern:hover::before {
    width: 100%;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--theme-primary);
    color: var(--theme-primary);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--theme-green);
    transition: var(--transition);
    z-index: 0;
}

.btn-outline-primary span,
.btn-outline-primary i {
    position: relative;
    z-index: 1;
}

.btn-outline-primary:hover {
    background: var(--theme-green);
    color: var(--theme-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 96, 66, 0.3);
}

.btn-outline-primary:hover::before {
    left: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
}

.btn-primary {
    background: var(--theme-primary);
    border: none;
    color: var(--theme-white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(1, 52, 118, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--theme-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 96, 66, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* ============================================
   Services Section Styles
   ============================================ */

.services-section {
    background: var(--theme-light);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.services-background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 69, 145, 0.02);
    pointer-events: none;
    z-index: 0;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--theme-border);
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

/* Current Issue - Prominent Display */
.current-issue-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.current-issue-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease forwards;
}

.current-issue-card .service-card {
    transform: scale(1.02);
    box-shadow: var(--theme-shadow-xl);
}

.current-issue-card:hover .service-card {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.service-grid-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease forwards;
}

.service-grid-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-grid-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-grid-item:nth-child(3) {
    animation-delay: 0.3s;
}

.service-grid-item:nth-child(4) {
    animation-delay: 0.4s;
}

.service-grid-item:hover {
    transform: translateY(-5px);
}

.services-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(33, 69, 145, 0.1);
    color: var(--theme-primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(1, 52, 118, 0.2);
}

.section-heading-large {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--theme-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--theme-text-light);
    font-weight: 400;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(1, 52, 118, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(1, 52, 118, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--theme-primary);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    animation: gradientShift 3s ease infinite;
}

.service-card:hover::before {
    transform: scaleX(1);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 69, 145, 0.03);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 24px 80px rgba(1, 52, 118, 0.15), 0 0 0 1px rgba(1, 52, 118, 0.1);
    border-color: rgba(1, 52, 118, 0.2);
}

.service-card-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
}

.service-card-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(1, 52, 118, 0.06);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.service-card:hover .service-card-number {
    color: rgba(1, 52, 118, 0.1);
    transform: scale(1.05);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: var(--theme-green);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-white);
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 96, 66, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover .service-card-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 96, 66, 0.4);
}

.service-card-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    background: var(--theme-primary);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 69, 145, 0.3);
    z-index: 1;
    transition: all 0.4s ease;
    opacity: 0.7;
}

.service-card:hover .image-overlay-gradient {
    opacity: 0.4;
    background: rgba(33, 69, 145, 0.15);
}

.image-shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
    transition: left 0.6s ease;
}

.service-card:hover .image-shine-effect {
    left: 100%;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.85) contrast(1.1);
    /* Prevent image stretching - maintains aspect ratio */
    min-height: 0;
    max-width: 100%;
}

.service-card:hover .service-card-image img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1) contrast(1.2);
}

.service-card-body {
    padding: 2.5rem 2rem 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.service-card-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(33, 69, 145, 0.1);
    color: var(--theme-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(1, 52, 118, 0.15);
    align-self: flex-start;
}

.service-card-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--theme-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.service-card-text {
    color: var(--theme-text-light);
    line-height: 1.9;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--theme-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    padding: 1rem 1.5rem;
    background: rgba(33, 69, 145, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(33, 69, 145, 0.1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.service-card-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--theme-primary);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.service-card-link:hover {
    color: var(--theme-white);
    gap: 1.25rem;
    border-color: var(--theme-primary);
    transform: translateX(3px);
}

.service-card-link:hover::before {
    left: 0;
}

.link-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 52, 118, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-link:hover .link-arrow {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px) rotate(-5deg);
}

.service-card-link:hover .link-arrow i {
    transform: translateX(3px);
}

.back-issues-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: auto;
}

.back-issue-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--theme-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 1.25rem;
    background: rgba(1, 52, 118, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(1, 52, 118, 0.1);
    position: relative;
    overflow: hidden;
}

.back-issue-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--theme-primary);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.back-issue-link i {
    color: var(--theme-primary);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.back-issue-link span {
    position: relative;
    z-index: 1;
}

.back-issue-link:hover {
    color: var(--theme-white);
    transform: translateX(5px);
    border-color: var(--theme-primary);
    box-shadow: 0 4px 15px rgba(1, 52, 118, 0.2);
}

.back-issue-link:hover::before {
    left: 0;
}

.back-issue-link:hover i {
    color: var(--theme-white);
    transform: scale(1.1);
}

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

.footer {
    background: var(--theme-primary);
    color: var(--theme-white);
    padding: 3.5rem 0 0;
    position: relative;
    overflow: hidden;
    clear: both;
}

.footer-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-widget {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-widget > *:first-child {
    margin-top: 0;
}

.footer-logo-section {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 0.75rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--theme-white);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-heading i {
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-subheading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--theme-white);
}

.input-group-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.form-control-modern {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--theme-white);
    font-size: 0.9rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control-modern:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.btn-subscribe {
    padding: 0.75rem 1.75rem;
    background: var(--theme-white);
    color: var(--theme-primary);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-subscribe:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.form-hint {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.footer-submission-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 1.25rem;
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: var(--transition);
}

.footer-submission-box:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.submission-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--theme-white);
}

.submission-content {
    flex: 1;
}

.submission-link {
    display: inline-flex;
    align-items: center;
    color: var(--theme-white);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.submission-link:hover {
    color: rgba(255, 255, 255, 0.9);
    gap: 0.5rem;
}

.submission-link i {
    transition: var(--transition);
}

.submission-link:hover i {
    transform: translateX(3px);
}

.footer-disclaimer {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.625rem;
    border-radius: var(--border-radius);
    margin-left: -0.625rem;
}

.footer-links a i {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--theme-white);
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.footer-social-section {
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    margin-left: 0;
    padding-left: 0;
}

.social-icon-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--theme-white);
    font-size: 1.1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-icon-link:hover {
    background: var(--theme-white);
    color: var(--theme-primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--theme-white);
}

.footer-info {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.footer-contact-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--theme-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    display: block;
    color: var(--theme-white);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.375rem;
}

.contact-details p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.contact-details a:hover {
    color: var(--theme-white);
    text-decoration: underline;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2.5rem;
    padding: 1.5rem 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.copyright-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.copyright-text .separator {
    opacity: 0.5;
}

/* ============================================
   Animation Classes
   ============================================ */

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Responsive Styles
   ============================================ */



/* ============================================
   For Authors Page Styles
   ============================================ */

/* Page Header Section */
.page-header-section {
    position: relative;
    background-image: url('../images/intro-img-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0 4rem;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 96, 66, 0.7);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-icon {
    width: 100px;
    height: 100px;
    background: var(--theme-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatIcon 3s ease-in-out infinite;
}

.page-header-icon i {
    font-size: 2.5rem;
    color: var(--theme-primary);
}

.page-header-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--theme-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-header-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Authors Section */
.authors-section {
    background: var(--theme-light);
    padding: 4rem 0;
}

.author-card {
    background: var(--theme-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--theme-border);
}

.author-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.author-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--theme-border);
}

.author-card-icon {
    width: 70px;
    height: 70px;
    background: var(--theme-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 96, 66, 0.3);
}

.author-card-icon i {
    font-size: 1.75rem;
    color: var(--theme-white);
}

.author-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-text);
    margin: 0;
    letter-spacing: -0.02em;
}

.author-card-body {
    color: var(--theme-text-light);
}

.author-card-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--theme-text-light);
}

.author-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.author-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 96, 66, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.author-feature-item:hover {
    background: rgba(0, 96, 66, 0.1);
    transform: translateX(5px);
}

.author-feature-item i {
    color: var(--theme-green);
    font-size: 1.1rem;
}

.author-feature-item span {
    font-weight: 500;
    color: var(--theme-text);
}

.author-card-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Guidelines Content */
.guidelines-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.guideline-section {
    padding: 1.5rem;
    background: rgba(0, 96, 66, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--theme-green);
}

.guideline-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--theme-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.guideline-heading i {
    color: var(--theme-green);
}

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

.guideline-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--theme-text-light);
    line-height: 1.7;
}

.guideline-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--theme-green);
    font-weight: bold;
}

.guideline-list li strong {
    color: var(--theme-text);
    font-weight: 600;
}

/* Ethics Points */
.ethics-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.ethics-point {
    padding: 1.5rem;
    background: var(--theme-white);
    border-radius: 12px;
    border: 1px solid var(--theme-border);
    transition: var(--transition);
}

.ethics-point:hover {
    border-color: var(--theme-green);
    box-shadow: 0 5px 15px rgba(0, 96, 66, 0.1);
    transform: translateY(-3px);
}

.ethics-point h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--theme-text);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.ethics-point h4 i {
    color: var(--theme-green);
    margin-right: 0.5rem;
}

.ethics-point p {
    color: var(--theme-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Contact Info Box */
.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(0, 96, 66, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-info-item:hover {
    background: rgba(0, 96, 66, 0.1);
    transform: translateX(5px);
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--theme-green);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    color: var(--theme-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-item a {
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--theme-green);
    text-decoration: underline;
}

.contact-info-item p {
    color: var(--theme-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Styles for For Authors Page */




/* ============================================
   Authors Guidelines Page Styles
   ============================================ */

.page-header-date {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.authors-guidelines-section {
    background: var(--theme-light);
    padding: 4rem 0;
}

/* Editorial Team Page */
.editorial-hero-section {
    background-image: linear-gradient(135deg, rgba(0, 96, 66, 0.85), rgba(33, 69, 145, 0.85));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.editorial-board-section {
    background: var(--theme-light);
    padding: 4rem 0 5rem;
}

.editorial-card {
    background: var(--theme-white);
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--theme-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.editorial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
    border-color: rgba(0, 96, 66, 0.4);
}

.editorial-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--theme-border);
}

.editorial-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--theme-green), var(--theme-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
}

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

.editorial-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--theme-text);
    margin: 0;
    letter-spacing: -0.01em;
}

.editorial-card-body p {
    color: var(--theme-text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.editorial-card-body p:last-child {
    margin-bottom: 0;
}





.guideline-card {
    background: var(--theme-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--theme-border);
    margin-bottom: 2rem;
}

.guideline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.guideline-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--theme-border);
}

.ethics-hero-section {
    background-image: linear-gradient(135deg, rgba(33, 69, 145, 0.9), rgba(0, 96, 66, 0.9));
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.ethics-hero-section .page-header-title {
    color: var(--theme-white);
    font-size: 3rem;
}

.ethics-hero-section .page-header-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.ethics-content-section {
    padding: 4rem 0 5rem;
    background: var(--theme-light);
}

.ethics-card {
    background: var(--theme-white);
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(1, 52, 118, 0.1);
    transition: var(--transition);
    height: 100%;
}

.ethics-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.ethics-card h2 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: var(--theme-primary);
    letter-spacing: -0.02em;
}

.ethics-card ul {
    list-style: none;
    padding-left: 0;
}

.ethics-card li {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
    color: var(--theme-text);
}

.ethics-card li::before {
    content: '⦁';
    position: absolute;
    left: 0;
    color: var(--theme-green);
    font-size: 0.9rem;
}

.ethics-footer {
    margin-top: 3rem;
    text-align: center;
    color: var(--theme-text-light);
    font-size: 0.95rem;
}

.ethics-reference {
    margin-bottom: 0.5rem;
}

/* ============================================
   Copyright Information Page Styles
   ============================================ */

.copyright-hero-section {
    background-image: linear-gradient(135deg, rgba(33, 69, 145, 0.9), rgba(0, 96, 66, 0.9));
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.copyright-hero-section .page-header-title {
    color: var(--theme-white);
    font-size: 3rem;
}

.copyright-hero-section .page-header-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.copyright-content-section {
    padding: 4rem 0 5rem;
    background: var(--theme-light);
}

.copyright-card {
    background: var(--theme-white);
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(1, 52, 118, 0.1);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.copyright-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.copyright-card-title {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--theme-primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.copyright-card-title i {
    font-size: 1.5rem;
    color: var(--theme-green);
}

.copyright-card-content {
    color: var(--theme-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.copyright-card-content p {
    margin-bottom: 1rem;
}

.copyright-card-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Latest Issue Page Styles
   ============================================ */

.latest-issue-hero-section {
    background-image: linear-gradient(135deg, rgba(33, 69, 145, 0.95), rgba(0, 96, 66, 0.95));
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.latest-issue-hero-section .page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.latest-issue-hero-section .page-header-content {
    position: relative;
    z-index: 1;
}

.latest-issue-hero-section .page-header-title {
    color: var(--theme-white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.latest-issue-hero-section .page-header-subtitle {
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.6;
}

.latest-issue-content-section {
    padding: 5rem 0;
    background: var(--theme-light);
}

.latest-issue-posts {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.latest-issue-card {
    background: var(--theme-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(1, 52, 118, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.latest-issue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.latest-issue-thumbnail {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.latest-issue-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.latest-issue-card:hover .latest-issue-thumbnail img {
    transform: scale(1.1);
}

.latest-issue-card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.latest-issue-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--theme-text-light);
}

.latest-issue-date,
.latest-issue-categories {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.latest-issue-date i,
.latest-issue-categories i {
    color: var(--theme-green);
    font-size: 0.9rem;
}

.latest-issue-categories a {
    color: var(--theme-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.latest-issue-categories a:hover {
    color: var(--theme-primary);
}

.latest-issue-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
}

.latest-issue-title a {
    color: var(--theme-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.latest-issue-title a:hover {
    color: var(--theme-green);
}

.latest-issue-excerpt {
    color: var(--theme-text);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.latest-issue-excerpt p {
    margin-bottom: 0.75rem;
}

.latest-issue-excerpt p:last-child {
    margin-bottom: 0;
}

.latest-issue-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(1, 52, 118, 0.1);
}

.latest-issue-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: rgba(33, 69, 145, 0.05);
}

.latest-issue-read-more:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    transform: translateX(5px);
}

.latest-issue-read-more i {
    transition: transform 0.3s ease;
}

.latest-issue-read-more:hover i {
    transform: translateX(3px);
}

.latest-issue-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.latest-issue-pagination .page-numbers {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest-issue-pagination .page-numbers li {
    margin: 0;
}

.latest-issue-pagination a,
.latest-issue-pagination span {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--theme-text);
    background: var(--theme-white);
    border: 1px solid rgba(1, 52, 118, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.latest-issue-pagination a:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    border-color: var(--theme-primary);
}

.latest-issue-pagination .current {
    background: var(--theme-primary);
    color: var(--theme-white);
    border-color: var(--theme-primary);
}

.latest-issue-no-posts {
    padding: 5rem 2rem;
}

.latest-issue-empty-state {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.latest-issue-empty-state i {
    font-size: 4rem;
    color: var(--theme-text-light);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.latest-issue-empty-state h3 {
    font-size: 1.75rem;
    color: var(--theme-text);
    margin-bottom: 1rem;
}

.latest-issue-empty-state p {
    color: var(--theme-text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.latest-issue-note {
    font-size: 0.95rem;
    color: var(--theme-text-light);
    font-style: italic;
}



.guideline-card-icon {
    width: 70px;
    height: 70px;
    background: var(--theme-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 96, 66, 0.3);
}

.guideline-card-icon i {
    font-size: 1.75rem;
    color: var(--theme-white);
}

.guideline-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-text);
    margin: 0;
    letter-spacing: -0.02em;
}

.guideline-card-body {
    color: var(--theme-text-light);
    line-height: 1.8;
}

.guideline-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--theme-text);
    margin-bottom: 1.5rem;
}

.contribution-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contribution-type-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(0, 96, 66, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--theme-green);
    transition: var(--transition);
}

.contribution-type-item:hover {
    background: rgba(0, 96, 66, 0.1);
    transform: translateX(5px);
}

.contribution-type-icon {
    width: 50px;
    height: 50px;
    background: var(--theme-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contribution-type-icon i {
    font-size: 1.5rem;
    color: var(--theme-white);
}

.contribution-type-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--theme-text);
    margin-bottom: 0.75rem;
}

.contribution-type-content p {
    color: var(--theme-text-light);
    margin: 0;
    line-height: 1.7;
}

.guideline-list-modern {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    padding: 0;
    margin: 1.5rem 0;
}

.guideline-list-modern li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--theme-text-light);
    line-height: 1.8;
}

.guideline-list-modern li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--theme-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.guideline-list-modern ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-top: 0.75rem;
}

.guideline-list-modern li strong {
    color: var(--theme-text);
    font-weight: 600;
}

.guideline-note {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(33, 69, 145, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--theme-primary);
    margin: 1.5rem 0;
}

.guideline-note i {
    color: var(--theme-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.guideline-note p {
    color: var(--theme-text-light);
    margin: 0;
    line-height: 1.7;
}

.submission-guidelines {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guideline-item {
    padding: 1.5rem;
    background: rgba(0, 96, 66, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--theme-green);
    transition: var(--transition);
}

.guideline-item:hover {
    background: rgba(0, 96, 66, 0.06);
    border-left-color: var(--theme-primary);
}

.guideline-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.guideline-item-header i {
    color: var(--theme-green);
    font-size: 1.5rem;
}

.guideline-item-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--theme-text);
    margin: 0;
}

.guideline-item p {
    color: var(--theme-text-light);
    line-height: 1.8;
    margin: 0;
}

.guideline-item a {
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.guideline-item a:hover {
    color: var(--theme-green);
    text-decoration: underline;
}

.reference-examples {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--theme-white);
    border-radius: 12px;
    border: 1px solid var(--theme-border);
}

.reference-examples h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--theme-text);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--theme-border);
}

.reference-example {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--theme-border);
}

.reference-example:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.reference-example strong {
    display: block;
    color: var(--theme-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.reference-example p {
    color: var(--theme-text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

.reference-example a {
    color: var(--theme-primary);
    text-decoration: none;
    word-break: break-all;
}

.reference-example a:hover {
    color: var(--theme-green);
    text-decoration: underline;
}

.editor-contact {
    padding: 1.5rem;
    background: rgba(0, 96, 66, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--theme-green);
}

.editor-contact p {
    margin: 0.5rem 0;
    color: var(--theme-text-light);
    line-height: 1.8;
}

.editor-contact strong {
    color: var(--theme-text);
    font-size: 1.1rem;
}

.editor-contact a {
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 500;
}

.editor-contact a:hover {
    color: var(--theme-green);
    text-decoration: underline;
}

.footnotes-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--theme-white);
    border-radius: 12px;
    border: 1px solid var(--theme-border);
}

.footnotes-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--theme-text);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--theme-border);
}

.footnotes-list {
    list-style: decimal;
    padding-left: 2rem;
    margin: 0;
}

.footnotes-list li {
    margin-bottom: 1rem;
    color: var(--theme-text-light);
    line-height: 1.8;
}

.footnotes-list li a {
    color: var(--theme-primary);
    text-decoration: none;
}

.footnotes-list li a:hover {
    color: var(--theme-green);
    text-decoration: underline;
}

.footnote-back {
    margin-left: 0.5rem;
    color: var(--theme-green);
    font-weight: 600;
    text-decoration: none;
}

.footnote-back:hover {
    color: var(--theme-primary);
}

.guideline-card-body sup {
    font-size: 0.75em;
    vertical-align: super;
}

.guideline-card-body sup a {
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 600;
}

.guideline-card-body sup a:hover {
    color: var(--theme-green);
    text-decoration: underline;
}

/* Responsive Styles for Guidelines Page */




/* ============================================
   Accessibility Improvements
   ============================================ */

:focus {
    outline: 2px solid var(--theme-primary);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--theme-primary);
    color: var(--theme-white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Smooth Scrolling - already defined above */

/* Additional Modern Enhancements */
.service-card-image {
    background: #f0f0f0;
}

/* Section Spacing Improvements */
section {
    position: relative;
}

/* Decorative Elements */

/* Enhanced Button Styles */
.btn-lg {
    padding: 1.125rem 2.75rem;
    font-size: 0.9rem;
}

/* Improved Form Inputs */
.form-control {
    border: 1px solid var(--theme-border);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(1, 52, 118, 0.1);
}

/* Better Image Styling */
.introduction-section img {
    border-radius: var(--border-radius-lg);
}

/* ============================================
   Welcome Page Styles
   ============================================ */

.welcome-content-section {
    background: var(--theme-light);
    padding: 4rem 0;
}

.welcome-image-wrapper {
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.welcome-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.welcome-card {
    background: var(--theme-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--theme-border);
    margin-bottom: 2rem;
}

.welcome-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.welcome-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--theme-border);
}

.welcome-card-icon {
    width: 70px;
    height: 70px;
    background: var(--theme-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 96, 66, 0.3);
}

.welcome-card-icon i {
    font-size: 1.75rem;
    color: var(--theme-white);
}

.welcome-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-text);
    margin: 0;
    letter-spacing: -0.02em;
}

.welcome-card-body {
    color: var(--theme-text-light);
    line-height: 1.8;
}

.welcome-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--theme-text);
    margin-bottom: 1.5rem;
}

.welcome-note {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(33, 69, 145, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--theme-primary);
    margin: 1.5rem 0;
}

.welcome-note i {
    color: var(--theme-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.welcome-note p {
    color: var(--theme-text-light);
    margin: 0;
    line-height: 1.7;
}

.welcome-list-modern {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.welcome-list-modern ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-top: 0.75rem;
}

.welcome-list-modern li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--theme-text-light);
    line-height: 1.8;
}

.welcome-list-modern li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--theme-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.welcome-card-body a {
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.welcome-card-body a:hover {
    color: var(--theme-green);
    text-decoration: underline;
}

.welcome-card-body strong {
    color: var(--theme-text);
    font-weight: 600;
}

.welcome-card-body em {
    color: var(--theme-text);
    font-style: italic;
}

.editor-contact {
    padding: 1.5rem;
    background: rgba(0, 96, 66, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--theme-green);
}

.editor-contact p {
    margin: 0.5rem 0;
    color: var(--theme-text-light);
    line-height: 1.8;
}

.editor-contact strong {
    color: var(--theme-text);
    font-size: 1.1rem;
}

.editor-contact a {
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 500;
}

.editor-contact a:hover {
    color: var(--theme-green);
    text-decoration: underline;
}

.editor-date {
    margin-top: 1rem;
    font-style: italic;
    color: var(--theme-text-light);
}

/* Responsive Styles for Welcome Page */




/* ============================================
   Single Post Page Styles
   ============================================ */

.single-post-section {
    padding: 4rem 0;
    background: var(--theme-light);
}

.single-post-article {
    background: var(--theme-white);
    border-radius: 0;
    overflow: hidden;
}

/* Hero Section with Featured Image */
.single-post-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.single-post-featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.single-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 4rem 0 3rem;
    color: var(--theme-white);
}

/* Hero Section without Featured Image - Full Width Separate Section */
.single-post-hero-no-image {
    background: linear-gradient(135deg, rgba(33, 69, 145, 0.95), rgba(0, 96, 66, 0.95));
    padding: 5rem 0 4rem;
    color: var(--theme-white);
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    position: relative;
    display: block;
    clear: both;
}

.single-post-hero-no-image .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.single-post-meta-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.single-post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--theme-green);
    color: var(--theme-white);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-badge:hover {
    background: var(--theme-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.single-post-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.single-post-date i {
    font-size: 0.9rem;
}

.single-post-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: var(--theme-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.single-post-hero-no-image .single-post-title {
    text-shadow: none;
}

.single-post-excerpt {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 800px;
}

.single-post-meta-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.single-post-author,
.single-post-tags {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.single-post-author i,
.single-post-tags i {
    font-size: 0.9rem;
}

.single-post-tags .tags-list {
    display: inline;
}

.single-post-tags .tags-list a {
    color: var(--theme-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.single-post-tags .tags-list a:hover {
    opacity: 0.7;
}

/* Content Section */
.single-post-content-wrapper {
    padding: 4rem 0;
    background: var(--theme-white);
}

.single-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--theme-text);
}

.single-post-content h1,
.single-post-content h2,
.single-post-content h3,
.single-post-content h4,
.single-post-content h5,
.single-post-content h6 {
    color: var(--theme-primary);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.single-post-content h2 {
    font-size: 2.25rem;
}

.single-post-content h3 {
    font-size: 1.75rem;
}

.single-post-content h4 {
    font-size: 1.5rem;
}

.single-post-content p {
    margin-bottom: 1.5rem;
}

.single-post-content p:last-child {
    margin-bottom: 0;
}

.single-post-content ul,
.single-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.single-post-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.single-post-content blockquote {
    border-left: 4px solid var(--theme-green);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--theme-light);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--theme-text);
}

.single-post-content blockquote p {
    margin-bottom: 0.5rem;
}

.single-post-content blockquote p:last-child {
    margin-bottom: 0;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.single-post-content a {
    color: var(--theme-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.single-post-content a:hover {
    color: var(--theme-green);
    border-bottom-color: var(--theme-green);
}

.single-post-content code {
    background: var(--theme-light);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--theme-primary);
}

.single-post-content pre {
    background: var(--theme-light);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.single-post-content pre code {
    background: none;
    padding: 0;
}

.single-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.single-post-content table th,
.single-post-content table td {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(1, 52, 118, 0.1);
    text-align: left;
}

.single-post-content table th {
    background: var(--theme-light);
    font-weight: 600;
    color: var(--theme-primary);
}

/* Post Navigation */
.single-post-navigation {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--theme-light);
    border-bottom: none;
}

.single-post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border: none;
}

.single-post-navigation .nav-previous,
.single-post-navigation .nav-next {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--theme-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(1, 52, 118, 0.1) !important;
}

.single-post-navigation .nav-previous .nav-previous,
.single-post-navigation .nav-next .nav-next {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.single-post-navigation .nav-previous  a,
.single-post-navigation .nav-next a {
    padding: 0 !important;

}
.single-post-navigation .nav-links{padding: 10px 0;}

/* Override parent theme post-navigation borders */
.single-post-navigation.post-navigation {
    border-top: 2px solid var(--theme-light) !important;
    border-bottom: none !important;
}

.single-post-navigation.post-navigation div + div {
    border-top: none !important;
}

.single-post-navigation .nav-previous:hover,
.single-post-navigation .nav-next:hover {
    background: var(--theme-white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.single-post-navigation .nav-next {
    text-align: right;
    flex-direction: row-reverse;
}

.single-post-navigation .nav-label {
    display: block;
    font-size: 0.85rem;
    color: var(--theme-text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-post-navigation .nav-title {
    display: block;
    font-size: 1.1rem;
    color: var(--theme-primary);
    font-weight: 600;
    line-height: 1.4;
}

.single-post-navigation i {
    color: var(--theme-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.single-post-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--theme-light);
    margin-top: 3rem;
}

.single-post-footer .edit-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--theme-light);
    border-radius: 6px;
    color: var(--theme-text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.single-post-footer .edit-link:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
}

/* Page Links */
.page-links {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--theme-light);
    border-bottom: 1px solid var(--theme-light);
}

.page-links-title {
    font-weight: 600;
    color: var(--theme-primary);
    margin-right: 1rem;
}

.page-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: var(--theme-light);
    border-radius: 6px;
    text-decoration: none;
    color: var(--theme-text);
    transition: all 0.3s ease;
}

.page-links a:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
}

/* Responsive Design */




/* ============================================
   Sidebar Widget Area Styles
   ============================================ */

.single-post-sidebar {
    padding: 0;
    margin: 0;
    position: sticky;
    top: 7rem;
    align-self: start;
}

.single-post-section .sidebar,
.single-post-section .widget-area {
    padding: 0;
    margin: 0;
    float: none;
    width: 100%;
}

.single-post-section #secondary {
    padding: 0;
    margin: 0;
}

.single-post-section .widget {
    background: var(--theme-white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(1, 52, 118, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--theme-green);
}

.single-post-section .widget:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.single-post-section .widget-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--theme-primary);
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--theme-light);
    text-transform: none;
    letter-spacing: -0.01em;
}

.single-post-section .widget-title a {
    color: var(--theme-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-post-section .widget-title a:hover {
    color: var(--theme-green);
}

.single-post-section .widget p {
    color: var(--theme-text);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.single-post-section .widget p:last-child {
    margin-bottom: 0;
}

.single-post-section .widget ul,
.single-post-section .widget ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-post-section .widget li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--theme-light);
    transition: all 0.3s ease;
}

.single-post-section .widget li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.single-post-section .widget li:hover {
    padding-left: 0.5rem;
}

.single-post-section .widget li a {
    color: var(--theme-text);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.single-post-section .widget li a:hover {
    color: var(--theme-primary);
}

/* Recent Posts Widget */
.single-post-section .widget_recent_entries li {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.single-post-section .widget_recent_entries .post-date {
    font-size: 0.85rem;
    color: var(--theme-text-light);
    font-style: italic;
}

/* Categories Widget */
.single-post-section .widget_categories li,
.single-post-section .widget_archive li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single-post-section .widget_categories .count,
.single-post-section .widget_archive .count {
    background: var(--theme-light);
    color: var(--theme-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Tag Cloud Widget */
.single-post-section .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.single-post-section .tagcloud a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--theme-light);
    color: var(--theme-text);
    border-radius: 20px;
    font-size: 0.85rem !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.single-post-section .tagcloud a:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 69, 145, 0.3);
}

/* Global Search Form Styling */
.search-form {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.search-form label {
    flex: 1;
    display: flex;
    margin: 0;
}

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

.search-form .search-field {
    flex: 1;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--theme-border);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-form .search-field:focus {
    outline: none;
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(33, 69, 145, 0.1);
}

.search-form .search-submit {
    height: 65px;
    width: 80px;
    background: var(--theme-primary);
    color: var(--theme-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form .search-submit:hover {
    background: var(--theme-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 96, 66, 0.3);
}

.search-form .search-submit .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Search Widget */
.single-post-section .widget_search .search-form,
.widget_search .search-form {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.single-post-section .widget_search .search-form label,
.widget_search .search-form label {
    flex: 1;
    display: flex;
    margin: 0;
}

.single-post-section .widget_search .search-form .screen-reader-text,
.widget_search .search-form .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.single-post-section .widget_search .search-field,
.widget_search .search-field {
    flex: 1;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--theme-border);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.single-post-section .widget_search .search-field:focus,
.widget_search .search-field:focus {
    outline: none;
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(33, 69, 145, 0.1);
}

.single-post-section .widget_search .search-submit,
.widget_search .search-submit {
    padding: 0.75rem 1.5rem;
    background: var(--theme-primary);
    color: var(--theme-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.single-post-section .widget_search .search-submit:hover,
.widget_search .search-submit:hover {
    background: var(--theme-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 96, 66, 0.3);
}

.single-post-section .widget_search .search-submit .screen-reader-text,
.widget_search .search-submit .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Calendar Widget */
.single-post-section .widget_calendar table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.single-post-section .widget_calendar caption {
    font-weight: 700;
    color: var(--theme-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.single-post-section .widget_calendar th {
    background: var(--theme-light);
    color: var(--theme-primary);
    padding: 0.75rem 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.single-post-section .widget_calendar td {
    padding: 0.5rem;
    text-align: center;
    border: 1px solid var(--theme-light);
}

.single-post-section .widget_calendar td a {
    display: block;
    background: var(--theme-primary);
    color: var(--theme-white);
    border-radius: 4px;
    padding: 0.25rem;
    font-weight: 600;
}

.single-post-section .widget_calendar td a:hover {
    background: var(--theme-green);
}

/* RSS Widget */
.single-post-section .widget_rss .rss-date {
    font-size: 0.85rem;
    color: var(--theme-text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.single-post-section .widget_rss cite {
    font-size: 0.85rem;
    color: var(--theme-text-light);
    font-style: normal;
}

/* Text Widget */
.single-post-section .textwidget {
    color: var(--theme-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

.single-post-section .textwidget a {
    color: var(--theme-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.single-post-section .textwidget a:hover {
    color: var(--theme-green);
    border-bottom-color: var(--theme-green);
}

/* Meta Widget */
.single-post-section .widget_meta li a:before {
    content: "→";
    margin-right: 0.5rem;
    color: var(--theme-green);
    transition: transform 0.3s ease;
}

.single-post-section .widget_meta li:hover a:before {
    transform: translateX(3px);
}

/* Pages Widget */
.single-post-section .widget_pages li {
    position: relative;
    padding-left: 1.5rem;
}

.single-post-section .widget_pages li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--theme-green);
    font-size: 0.9rem;
}

/* Responsive Design */




/* ============================================
   Back Issues Page Styles
   ============================================ */

.back-issues-hero-section {
    background-image: linear-gradient(135deg, rgba(33, 69, 145, 0.95), rgba(0, 96, 66, 0.95));
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.back-issues-hero-section .page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.back-issues-hero-section .page-header-content {
    position: relative;
    z-index: 1;
}

.back-issues-hero-section .page-header-title {
    color: var(--theme-white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.back-issues-hero-section .page-header-subtitle {
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.6;
}

.back-issues-content-section {
    padding: 5rem 0;
    background: var(--theme-light);
}

.back-issues-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.back-issues-card {
    background: var(--theme-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(1, 52, 118, 0.1);
    transition: all 0.3s ease;
}

.back-issues-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.back-issues-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-primary);
    margin: 0 0 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--theme-light);
}

.back-issues-card-title i {
    font-size: 1.75rem;
    color: var(--theme-green);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 96, 66, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.back-issues-card-content {
    color: var(--theme-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.back-issues-card-content p {
    margin-bottom: 1.25rem;
}

.back-issues-card-content p:last-child {
    margin-bottom: 0;
}

.back-issues-card-content ul,
.back-issues-card-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.back-issues-card-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.back-issues-card-content a {
    color: var(--theme-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.back-issues-card-content a:hover {
    color: var(--theme-green);
    border-bottom-color: var(--theme-green);
}

.back-issues-card-content h3,
.back-issues-card-content h4 {
    color: var(--theme-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.back-issues-card-content h3 {
    font-size: 1.5rem;
}

.back-issues-card-content h4 {
    font-size: 1.25rem;
}

.back-issues-title-link {
    color: var(--theme-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-issues-title-link:hover {
    color: var(--theme-green);
}

.back-issues-card-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--theme-light);
    text-align: center;
}

.back-issues-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: var(--theme-primary);
    color: var(--theme-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(33, 69, 145, 0.2);
}

.back-issues-link-btn:hover {
    background: var(--theme-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 96, 66, 0.3);
}

.back-issues-link-btn i {
    transition: transform 0.3s ease;
}

.back-issues-link-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design */




/* ============================================
   2012 to Present (Peer Reviewed) Page Styles
   ============================================ */

.peer-reviewed-hero-section {
    background-image: linear-gradient(135deg, rgba(33, 69, 145, 0.95), rgba(0, 96, 66, 0.95));
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.peer-reviewed-hero-section .page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.peer-reviewed-hero-section .page-header-content {
    position: relative;
    z-index: 1;
}

.peer-reviewed-hero-section .page-header-title {
    color: var(--theme-white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.peer-reviewed-hero-section .page-header-subtitle {
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.6;
}

.peer-reviewed-content-section {
    padding: 5rem 0;
    background: var(--theme-light);
}

.peer-reviewed-posts {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.peer-reviewed-card {
    background: var(--theme-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(1, 52, 118, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.peer-reviewed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.peer-reviewed-thumbnail {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.peer-reviewed-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.peer-reviewed-card:hover .peer-reviewed-thumbnail img {
    transform: scale(1.1);
}

.peer-reviewed-card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.peer-reviewed-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--theme-text-light);
}

.peer-reviewed-date,
.peer-reviewed-categories {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.peer-reviewed-date i,
.peer-reviewed-categories i {
    color: var(--theme-green);
    font-size: 0.9rem;
}

.peer-reviewed-categories a {
    color: var(--theme-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.peer-reviewed-categories a:hover {
    color: var(--theme-primary);
}

.peer-reviewed-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
}

.peer-reviewed-title a {
    color: var(--theme-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.peer-reviewed-title a:hover {
    color: var(--theme-green);
}

.peer-reviewed-excerpt {
    color: var(--theme-text);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.peer-reviewed-excerpt p {
    margin-bottom: 0.75rem;
}

.peer-reviewed-excerpt p:last-child {
    margin-bottom: 0;
}

.peer-reviewed-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(1, 52, 118, 0.1);
}

.peer-reviewed-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: rgba(33, 69, 145, 0.05);
}

.peer-reviewed-read-more:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    transform: translateX(5px);
}

.peer-reviewed-read-more i {
    transition: transform 0.3s ease;
}

.peer-reviewed-read-more:hover i {
    transform: translateX(3px);
}

.peer-reviewed-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.peer-reviewed-pagination .page-numbers {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.peer-reviewed-pagination .page-numbers li {
    margin: 0;
}

.peer-reviewed-pagination a,
.peer-reviewed-pagination span {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--theme-text);
    background: var(--theme-white);
    border: 1px solid rgba(1, 52, 118, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.peer-reviewed-pagination a:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    border-color: var(--theme-primary);
}

.peer-reviewed-pagination .current {
    background: var(--theme-primary);
    color: var(--theme-white);
    border-color: var(--theme-primary);
}

.peer-reviewed-no-posts {
    padding: 5rem 2rem;
}

.peer-reviewed-empty-state {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.peer-reviewed-empty-state i {
    font-size: 4rem;
    color: var(--theme-text-light);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.peer-reviewed-empty-state h3 {
    font-size: 1.75rem;
    color: var(--theme-text);
    margin-bottom: 1rem;
}

.peer-reviewed-empty-state p {
    color: var(--theme-text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.peer-reviewed-note {
    font-size: 0.95rem;
    color: var(--theme-text-light);
    font-style: italic;
}



/* ============================================
   1986-2008 Issues (Not Peer Reviewed) Page Styles
   ============================================ */

.non-peer-reviewed-hero-section {
    background-image: linear-gradient(135deg, rgba(33, 69, 145, 0.95), rgba(0, 96, 66, 0.95));
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.non-peer-reviewed-hero-section .page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.non-peer-reviewed-hero-section .page-header-content {
    position: relative;
    z-index: 1;
}

.non-peer-reviewed-hero-section .page-header-title {
    color: var(--theme-white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.non-peer-reviewed-hero-section .page-header-subtitle {
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.6;
}

.non-peer-reviewed-content-section {
    padding: 5rem 0;
    background: var(--theme-light);
}

.non-peer-reviewed-posts {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.non-peer-reviewed-card {
    background: var(--theme-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(1, 52, 118, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.non-peer-reviewed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.non-peer-reviewed-thumbnail {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.non-peer-reviewed-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.non-peer-reviewed-card:hover .non-peer-reviewed-thumbnail img {
    transform: scale(1.1);
}

.non-peer-reviewed-card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.non-peer-reviewed-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--theme-text-light);
}

.non-peer-reviewed-date,
.non-peer-reviewed-categories {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.non-peer-reviewed-date i,
.non-peer-reviewed-categories i {
    color: var(--theme-green);
    font-size: 0.9rem;
}

.non-peer-reviewed-categories a {
    color: var(--theme-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.non-peer-reviewed-categories a:hover {
    color: var(--theme-primary);
}

.non-peer-reviewed-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
}

.non-peer-reviewed-title a {
    color: var(--theme-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.non-peer-reviewed-title a:hover {
    color: var(--theme-green);
}

.non-peer-reviewed-excerpt {
    color: var(--theme-text);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.non-peer-reviewed-excerpt p {
    margin-bottom: 0.75rem;
}

.non-peer-reviewed-excerpt p:last-child {
    margin-bottom: 0;
}

.non-peer-reviewed-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(1, 52, 118, 0.1);
}

.non-peer-reviewed-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: rgba(33, 69, 145, 0.05);
}

.non-peer-reviewed-read-more:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    transform: translateX(5px);
}

.non-peer-reviewed-read-more i {
    transition: transform 0.3s ease;
}

.non-peer-reviewed-read-more:hover i {
    transform: translateX(3px);
}

.non-peer-reviewed-no-posts {
    padding: 5rem 2rem;
}

.non-peer-reviewed-empty-state {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.non-peer-reviewed-empty-state i {
    font-size: 4rem;
    color: var(--theme-text-light);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.non-peer-reviewed-empty-state h3 {
    font-size: 1.75rem;
    color: var(--theme-text);
    margin-bottom: 1rem;
}

.non-peer-reviewed-empty-state p {
    color: var(--theme-text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.non-peer-reviewed-note {
    font-size: 0.95rem;
    color: var(--theme-text-light);
    font-style: italic;
}

/* Issues List Styles */
.issues-intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.issues-intro-text p {
    font-size: 1.1rem;
    color: var(--theme-text);
    line-height: 1.8;
}

.issues-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--theme-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.issues-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--theme-text);
    margin-bottom: 1rem;
}

.issues-content p:last-child {
    margin-bottom: 0;
}

.issues-content a {
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.issues-content a:hover {
    color: var(--theme-green);
    text-decoration: underline;
}

.issues-content a:before {
    content: '\f1c1';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #dc3545;
    margin-right: 0.25rem;
}

.issues-content hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid var(--theme-border);
    opacity: 0.6;
}

.issues-content strong {
    color: var(--theme-primary);
    font-weight: 600;
}

.issues-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--theme-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}



/* ============================================
   404 Error Page Styles
   ============================================ */

.error-404-hero-section {
    background-image: linear-gradient(135deg, rgba(33, 69, 145, 0.95), rgba(0, 96, 66, 0.95));
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
}

.error-404-hero-section .page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.error-404-hero-section .page-header-content {
    position: relative;
    z-index: 1;
}

.error-404-icon {
    font-size: 5rem;
    color: var(--theme-white);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.error-404-title {
    font-size: 8rem;
    font-weight: 900;
    color: var(--theme-white);
    margin: 0;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.error-404-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-white);
    margin: 1rem 0 1.5rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.error-404-description {
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.6;
}

.error-404-content-section {
    padding: 5rem 0;
    background: var(--theme-light);
}

.error-404-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.error-404-search,
.error-404-quick-links,
.error-404-recent-posts {
    background: var(--theme-white);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(1, 52, 118, 0.1);
}

.error-404-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--theme-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.error-404-section-title i {
    color: var(--theme-green);
    font-size: 1.5rem;
}

.error-404-section-description {
    color: var(--theme-text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Search Form Styling */
.error-404-search .search-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    align-items: stretch;
}

.error-404-search .search-form label {
    flex: 1;
    display: flex;
    margin: 0;
}

.error-404-search .search-form .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.error-404-search .search-field {
    flex: 1;
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--theme-border);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
}

.error-404-search .search-field:focus {
    outline: none;
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(33, 69, 145, 0.1);
}

.error-404-search .search-submit {
    height: 65px;
    width: 80px;
    background: var(--theme-primary);
    color: var(--theme-white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-search .search-submit .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.error-404-search .search-submit:hover {
    background: var(--theme-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 69, 145, 0.3);
}

/* Quick Links Grid */
.error-404-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.error-404-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: var(--theme-light);
    border: 2px solid var(--theme-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--theme-text);
    transition: var(--transition);
    text-align: center;
    gap: 1rem;
}

.error-404-link-card i {
    font-size: 2.5rem;
    color: var(--theme-primary);
    transition: var(--transition);
}

.error-404-link-card span {
    font-weight: 600;
    font-size: 1.05rem;
}

.error-404-link-card:hover {
    background: var(--theme-primary);
    border-color: var(--theme-primary);
    color: var(--theme-white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(33, 69, 145, 0.2);
}

.error-404-link-card:hover i {
    color: var(--theme-white);
    transform: scale(1.1);
}

/* Recent Posts Grid */
.error-404-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.error-404-post-card {
    background: var(--theme-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--theme-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.error-404-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.error-404-post-thumbnail {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.error-404-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.error-404-post-card:hover .error-404-post-thumbnail img {
    transform: scale(1.1);
}

.error-404-post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.error-404-post-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.error-404-post-title a {
    color: var(--theme-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-404-post-title a:hover {
    color: var(--theme-green);
}

.error-404-post-meta {
    margin-top: auto;
    font-size: 0.9rem;
    color: var(--theme-text-light);
}

.error-404-post-meta time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Back to Home Button */
.error-404-actions {
    margin-top: 3rem;
}

.error-404-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--theme-primary);
    color: var(--theme-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(33, 69, 145, 0.3);
}

.error-404-home-btn:hover {
    background: var(--theme-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 69, 145, 0.4);
}

.error-404-home-btn i {
    transition: transform 0.3s ease;
}

.error-404-home-btn:hover i {
    transform: translateX(-5px);
}

/* Responsive Styles */


/* ============================================
   Search Results Page Styles
   ============================================ */

.search-results-hero-section {
    background-image: linear-gradient(135deg, rgba(33, 69, 145, 0.95), rgba(0, 96, 66, 0.95));
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
}

.search-results-hero-section .page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.search-results-hero-section .page-header-content {
    position: relative;
    z-index: 1;
}

.search-results-icon {
    font-size: 4rem;
    color: var(--theme-white);
    margin-bottom: 1.5rem;
}

.search-results-hero-section .page-header-title {
    color: var(--theme-white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.search-results-hero-section .page-header-subtitle {
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.6;
}

.search-results-hero-section .page-header-subtitle strong {
    color: var(--theme-white);
    font-weight: 700;
}

.search-results-content-section {
    padding: 5rem 0;
    background: var(--theme-light);
}

.search-results-posts {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.search-result-card {
    background: var(--theme-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(1, 52, 118, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.search-result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.search-result-thumbnail {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.search-result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.search-result-card:hover .search-result-thumbnail img {
    transform: scale(1.1);
}

.search-result-card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.search-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--theme-text-light);
}

.search-result-date,
.search-result-categories,
.search-result-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-result-date i,
.search-result-categories i,
.search-result-type i {
    color: var(--theme-green);
    font-size: 0.9rem;
}

.search-result-categories a {
    color: var(--theme-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-result-categories a:hover {
    color: var(--theme-primary);
}

.search-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
}

.search-result-title a {
    color: var(--theme-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-result-title a:hover {
    color: var(--theme-green);
}

.search-result-excerpt {
    color: var(--theme-text);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.search-result-excerpt p {
    margin-bottom: 0.75rem;
}

.search-result-excerpt p:last-child {
    margin-bottom: 0;
}

.search-result-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(1, 52, 118, 0.1);
}

.search-result-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--theme-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: rgba(33, 69, 145, 0.05);
}

.search-result-read-more:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    transform: translateX(5px);
}

.search-result-read-more i {
    transition: transform 0.3s ease;
}

.search-result-read-more:hover i {
    transform: translateX(3px);
}

/* Search Results Pagination */
.search-results-pagination {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--theme-border);
}

.search-results-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.search-results-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0.5rem 1rem;
    background: var(--theme-white);
    color: var(--theme-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--theme-border);
}

.search-results-pagination .page-numbers:hover,
.search-results-pagination .page-numbers.current {
    background: var(--theme-primary);
    color: var(--theme-white);
    border-color: var(--theme-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 69, 145, 0.3);
}

.search-results-pagination .page-numbers.prev,
.search-results-pagination .page-numbers.next {
    padding: 0.5rem 1.5rem;
}

/* No Results State */
.search-results-empty {
    padding: 5rem 2rem;
}

.search-results-empty-state {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.search-results-empty-state i {
    font-size: 5rem;
    color: var(--theme-text-light);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.search-results-empty-state h2 {
    font-size: 2.5rem;
    color: var(--theme-text);
    margin-bottom: 1.5rem;
}

.search-results-empty-state > p {
    color: var(--theme-text-light);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.search-results-search-form {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.search-results-suggestions {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--theme-border);
}

.search-results-suggestions h3 {
    font-size: 1.25rem;
    color: var(--theme-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.search-results-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.search-results-suggestions li {
    margin: 0;
}

.search-results-suggestions a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--theme-white);
    color: var(--theme-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--theme-border);
    transition: all 0.3s ease;
}

.search-results-suggestions a:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    border-color: var(--theme-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 69, 145, 0.3);
}

/* Responsive Styles */


/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-dark) 100%);
    padding: 6rem 0 4rem;
    overflow: hidden;
    margin-top: 0;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--theme-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact Content Section */
.contact-content-section {
    background: var(--theme-light);
    padding: 5rem 0;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--theme-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--theme-shadow-lg);
    border: 1px solid var(--theme-border);
}

.contact-form-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--theme-border);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-text);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.contact-form-title i {
    color: var(--theme-primary);
    font-size: 1.75rem;
}

.contact-form-description {
    color: var(--theme-text-light);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Fluent Form Container */
.fluent-form-container {
    margin-top: 2rem;
}

.fluent-form-container .ff_form_wrapper {
    margin: 0;
}

.fluent-form-container .ff-el-form-group {
    margin-bottom: 1.5rem;
}

.fluent-form-container .ff-el-form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--theme-border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    color: var(--theme-text);
    background: var(--theme-white);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.fluent-form-container .ff-el-form-control:focus {
    outline: none;
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(33, 69, 145, 0.1);
}

.fluent-form-container .ff-btn-submit {
    padding: 1rem 2.5rem;
    background: var(--theme-primary);
    color: var(--theme-white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(33, 69, 145, 0.3);
    width: 100%;
    margin-top: 0.5rem;
}

.fluent-form-container .ff-btn-submit:hover {
    background: var(--theme-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 69, 145, 0.4);
}

.fluent-form-container .ff-el-form-label {
    display: block;
    font-weight: 600;
    color: var(--theme-text);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.fluent-form-container textarea.ff-el-form-control {
    resize: vertical;
    min-height: 150px;
}

/* Contact Form Styles */
.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--theme-text);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.form-label i {
    color: var(--theme-primary);
    font-size: 0.9rem;
}

.required {
    color: #e53e3e;
    margin-left: 0.25rem;
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--theme-border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    color: var(--theme-text);
    background: var(--theme-white);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(33, 69, 145, 0.1);
    background: var(--theme-white);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: var(--theme-text-lighter);
}

.contact-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-input select {
    cursor: pointer;
}

/* Contact Submit Button */
.btn-contact-submit {
    padding: 1rem 2.5rem;
    background: var(--theme-primary);
    color: var(--theme-white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(33, 69, 145, 0.3);
    width: 100%;
    margin-top: 0.5rem;
}

.btn-contact-submit:hover {
    background: var(--theme-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 69, 145, 0.4);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.contact-info-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--theme-border);
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-text);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.contact-info-title i {
    color: var(--theme-primary);
    font-size: 1.75rem;
}

.contact-info-description {
    color: var(--theme-text-light);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--theme-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--theme-shadow);
    border: 1px solid var(--theme-border);
    transition: var(--transition);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--theme-shadow-lg);
    border-color: var(--theme-primary);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--theme-white);
    flex-shrink: 0;
    box-shadow: var(--theme-shadow);
}

.email-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.address-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hours-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.social-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

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

.contact-info-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--theme-text);
    margin-bottom: 0.75rem;
}

.contact-info-card-text {
    color: var(--theme-text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-info-card-text a {
    color: var(--theme-primary);
    font-weight: 600;
    transition: var(--transition);
}

.contact-info-card-text a:hover {
    color: var(--theme-dark);
    text-decoration: underline;
}

.contact-info-card-text strong {
    color: var(--theme-text);
    font-weight: 700;
}

.contact-info-card-hint {
    display: block;
    font-size: 0.85rem;
    color: var(--theme-text-lighter);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Contact Social Links */
.contact-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-social-menu {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-social-menu li {
    margin: 0;
}

.contact-social-link,
.contact-social-menu a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--theme-light);
    color: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid var(--theme-border);
    text-decoration: none;
}

.contact-social-link:hover,
.contact-social-menu a:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--theme-shadow-md);
    border-color: var(--theme-primary);
}

/* ============================================
   Category/Archive Page Styles
   ============================================ */

/* Archive/Category Page Header - Full Width Separate Row */
.page-header {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-dark) 100%);
    padding: 4rem 2rem;
    margin: 0;
    margin-bottom: 3rem;
    border-top: none;
    border-radius: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: block;
    clear: both;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .page-title {
    position: relative;
    z-index: 2;
    color: var(--theme-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header .taxonomy-description {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
}

.page-header .taxonomy-description p {
    margin: 0;
}

/* Archive Posts Container */
.content-area {
    padding-bottom: 2rem;
}

.content-area .site-main {
    padding: 0;
}

.content-area .site-main > article {
    background: var(--theme-white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--theme-border);
    transition: var(--transition);
}

.content-area .site-main > article:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.content-area .entry-header {
    margin: 0 0 1.5rem 0;
}

.content-area .entry-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content-area .entry-title a {
    color: var(--theme-primary);
    transition: var(--transition);
}

.content-area .entry-title a:hover {
    color: var(--theme-green);
}

.content-area .entry-summary,
.content-area .entry-content {
    color: var(--theme-text);
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.content-area .entry-summary p,
.content-area .entry-content p {
    margin-bottom: 1rem;
}

.content-area .entry-summary p:last-child,
.content-area .entry-content p:last-child {
    margin-bottom: 0;
}

.content-area .entry-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--theme-border);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--theme-text-light);
}

.content-area .post-thumbnail {
    margin: 0 0 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.content-area .post-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.content-area .post-thumbnail:hover img {
    transform: scale(1.05);
}

/* Archive Pagination */
.content-area .pagination,
.content-area .nav-links {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Remove pagination :before and :after pseudo-elements */
.pagination:before,
.pagination:after {
    display: none !important;
    content: none !important;
}

/* Remove pagination nav-links :before and :after pseudo-elements */
.pagination .nav-links:before,
.pagination .nav-links:after {
    display: none !important;
    content: none !important;
}

/* Remove padding-left from pagination nav-links */
.pagination .nav-links {
    padding-right: 0 !important;
}

.content-area .page-numbers,
.content-area .nav-links a,
.content-area .nav-links span {
    padding: 0.75rem 1.25rem;
    background: var(--theme-light);
    color: var(--theme-primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--theme-border);
    margin: 0 !important;
}

/* Remove margin from pagination page-numbers */
.pagination .page-numbers {
    margin: 0 !important;
}

/* Pagination current screen-reader-text */
.pagination .current .screen-reader-text {
    min-width: auto;
    padding: 0;
}

.content-area .page-numbers:hover,
.content-area .nav-links a:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
    border-color: var(--theme-primary);
    transform: translateY(-2px);
}

.content-area .page-numbers.current,
.content-area .nav-links .current {
    background: var(--theme-primary);
    color: var(--theme-white);
    border-color: var(--theme-primary);
}

/* Pagination Prev/Next Buttons - Icon Only */
.content-area .pagination .prev,
.content-area .pagination .next,
.content-area .nav-links .prev,
.content-area .nav-links .next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: var(--theme-primary);
    color: var(--theme-white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--theme-primary);
    width: 48px;
    height: 48px;
    min-width: 48px;
    position: relative;
}

.content-area .pagination .prev:hover,
.content-area .pagination .next:hover,
.content-area .nav-links .prev:hover,
.content-area .nav-links .next:hover {
    background: var(--theme-green);
    border-color: var(--theme-green);
    color: var(--theme-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.content-area .pagination .prev:active,
.content-area .pagination .next:active,
.content-area .nav-links .prev:active,
.content-area .nav-links .next:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Hide text, show only icons */
.content-area .pagination .prev .screen-reader-text,
.content-area .pagination .next .screen-reader-text,
.content-area .nav-links .prev .screen-reader-text,
.content-area .nav-links .next .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.content-area .pagination .prev:before,
.content-area .pagination .next:before,
.content-area .nav-links .prev:before,
.content-area .nav-links .next:before {
    display: none;
}

/* Add icons using CSS */
.content-area .pagination .prev:after,
.content-area .nav-links .prev:after {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.125rem;
    line-height: 1;
}

.content-area .pagination .next:after,
.content-area .nav-links .next:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.125rem;
    line-height: 1;
}

.content-area .pagination .prev i,
.content-area .pagination .next i,
.content-area .nav-links .prev i,
.content-area .nav-links .next i {
    font-size: 1.125rem;
    line-height: 1;
}

/* Hide text content - show only icons */
.content-area .pagination .prev,
.content-area .pagination .next,
.content-area .nav-links .prev,
.content-area .nav-links .next {
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    position: relative;
}

/* Hide text but keep icons visible */
.content-area .pagination .prev > span:not(.screen-reader-text),
.content-area .pagination .next > span:not(.screen-reader-text),
.content-area .nav-links .prev > span:not(.screen-reader-text),
.content-area .nav-links .next > span:not(.screen-reader-text) {
    display: none;
}

/* Show icon elements if they exist */
.content-area .pagination .prev i,
.content-area .pagination .next i,
.content-area .nav-links .prev i,
.content-area .nav-links .next i {
    font-size: 1.125rem;
    line-height: 1;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* :after icons are always shown (primary icon source) */
.content-area .pagination .prev:after,
.content-area .pagination .next:after,
.content-area .nav-links .prev:after,
.content-area .nav-links .next:after {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.content-area .pagination .prev {
    position: relative;
    right: 0;
    margin-right: auto;
}

.content-area .pagination .next {
    margin-left: auto;
}

/* Disabled state for prev/next */
.content-area .pagination .prev.disabled,
.content-area .pagination .next.disabled,
.content-area .nav-links .prev.disabled,
.content-area .nav-links .next.disabled,
.content-area .pagination .prev[aria-disabled="true"],
.content-area .pagination .next[aria-disabled="true"],
.content-area .nav-links .prev[aria-disabled="true"],
.content-area .nav-links .next[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: var(--theme-light);
    color: var(--theme-text-light);
    border-color: var(--theme-border);
}

/* Responsive Styles for Contact Page */





