/*
Theme Name: Fickling Blog
Theme URI: https://blog.fickling.com
Author: Fickling & Company
Author URI: https://fickling.com
Description: Custom WordPress theme for Fickling & Company Blog featuring the Fickling design system with Trajan Pro 3 and Poppins typography.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fickling-blog
*/

/* ============================================
   CSS VARIABLES - Fickling Design System
   ============================================ */
:root {
    /* Colors */
    --fc-green-light: #025332;
    --fc-green-dark: #00351F;
    --fc-red: #ED1B24;
    --fc-gray-light: #F5F5F5;
    --fc-gray-medium: #E0E0E0;
    --fc-gray-dark: #333333;
    --fc-white: #FFFFFF;
    --fc-black: #000000;
    
    /* Typography */
    --fc-font-heading: 'trajan-pro-3', Georgia, 'Times New Roman', serif;
    --fc-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Font Sizes - Desktop */
    --fc-h1-size: 45px;
    --fc-h2-size: 34px;
    --fc-h3-size: 26px;
    --fc-h4-size: 24px;
    --fc-h5-size: 18px;
    --fc-body-size: 18px;
    
    /* Spacing */
    --fc-section-padding: 60px;
    --fc-container-max: 1200px;
    
    /* Border Radius */
    --fc-radius: 15px;
    --fc-radius-sm: 8px;
    --fc-radius-round: 50px;
    
    /* Transitions */
    --fc-transition-fast: 0.2s ease;
    --fc-transition-medium: 0.3s ease;
}

/* Mobile Font Sizes */
@media (max-width: 767px) {
    :root {
        --fc-h1-size: 30px;
        --fc-h2-size: 30px;
        --fc-body-size: 16px;
    }
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--fc-font-body);
    font-size: var(--fc-body-size);
    font-weight: 400;
    line-height: 1.6;
    color: var(--fc-gray-dark);
    background-color: var(--fc-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--fc-green-light);
    text-decoration: none;
    transition: color var(--fc-transition-fast);
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, .h1 {
    font-family: var(--fc-font-heading);
    font-size: var(--fc-h1-size);
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-gray-dark);
    margin: 0 0 0.5em;
    line-height: 1.2;
}

h2, .h2 {
    font-family: var(--fc-font-body);
    font-size: var(--fc-h2-size);
    font-weight: 700;
    color: var(--fc-gray-dark);
    margin: 0 0 0.5em;
    line-height: 1.3;
}

h3, .h3 {
    font-family: var(--fc-font-heading);
    font-size: var(--fc-h3-size);
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-gray-dark);
    margin: 0 0 0.5em;
    line-height: 1.3;
}

h4, .h4 {
    font-family: var(--fc-font-body);
    font-size: var(--fc-h4-size);
    font-weight: 700;
    color: var(--fc-gray-dark);
    margin: 0 0 0.5em;
    line-height: 1.4;
}

h5, .h5 {
    font-family: var(--fc-font-body);
    font-size: var(--fc-h5-size);
    font-weight: 800;
    color: var(--fc-gray-dark);
    margin: 0 0 0.5em;
    line-height: 1.4;
    text-transform: uppercase;
}

p {
    margin: 0 0 1em;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--fc-container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

/* ============================================
   UTILITY BAR
   ============================================ */
.section-utility-bar {
    background-color: var(--fc-green-dark);
    padding: 8px 0;
}

.section-utility-bar .utility-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.utility-nav li {
    position: relative;
}

.utility-nav li::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
}

.utility-nav li:last-child::after {
    display: none;
}

.utility-nav a {
    display: block;
    padding: 4px 16px;
    color: var(--fc-white);
    font-family: var(--fc-font-body);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--fc-transition-fast);
}

.utility-nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
    .section-utility-bar {
        display: none;
    }
}

/* ============================================
   MAIN HEADER
   ============================================ */
.section-main-header {
    background-color: var(--fc-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--fc-gray-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.section-main-header .container {
    max-width: 1400px;
}

.section-main-header .row {
    flex-wrap: nowrap;
}

.section-main-header .col-lg-3,
.section-main-header .col-md-4 {
    flex: 0 0 auto;
    width: auto;
}

.section-main-header .col-lg-9,
.section-main-header .col-md-8 {
    flex: 1 1 auto;
    width: auto;
}

.section-main-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.section-main-header .logo-img {
    height: 65px;
    width: auto;
}

.section-main-header .main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.section-main-header .nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    white-space: nowrap;
}

.section-main-header .nav-menu li {
    display: flex;
    align-items: center;
}

.section-main-header .nav-menu li a {
    display: block;
    padding: 10px 14px;
    color: var(--fc-gray-dark);
    font-family: var(--fc-font-body);
    font-size: 15px;
    font-weight: 600;
    transition: color var(--fc-transition-fast);
}

.section-main-header .nav-menu li:not(:last-child)::after {
    content: '|';
    color: var(--fc-gray-dark);
    font-weight: 400;
}

.section-main-header .nav-menu li a:hover {
    color: var(--fc-green-light);
}

.section-main-header .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    margin-left: 15px;
}

.section-main-header .hamburger-menu span {
    display: block;
    width: 36px;
    height: 5px;
    background-color: var(--fc-green-light);
    transition: all var(--fc-transition-fast);
}

.section-main-header .hamburger-wrapper {
    position: relative;
}

/* Mega Menu (Desktop) */
.mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 750px;
    background: linear-gradient(135deg, var(--fc-green-dark) 0%, var(--fc-green-light) 100%);
    border-radius: 15px;
    padding: 35px;
    margin-top: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9998;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--fc-green-dark);
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mega-menu-column h4.mega-menu-heading {
    font-family: var(--fc-font-heading);
    font-size: 16px;
    font-weight: 600;
    font-feature-settings: "smcp";
    color: var(--fc-white);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fc-red);
}

.mega-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-column ul li {
    margin-bottom: 8px;
}

.mega-menu-column ul li a {
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    padding: 4px 0;
}

.mega-menu-column ul li a:hover {
    color: var(--fc-white);
    padding-left: 5px;
}

@media (max-width: 991px) {
    .mega-menu {
        display: none;
    }
}

/* Responsive: Main Header */
@media (max-width: 1199px) {
    .section-main-header .nav-menu li a {
        padding: 10px 10px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .section-main-header .nav-menu {
        display: none;
    }
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    height: 100%;
    background-color: var(--fc-white);
    z-index: 9999;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    visibility: visible;
}

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--fc-white);
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.mobile-logo-img {
    height: 65px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--fc-green-light);
    font-size: 32px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: scale(1.1);
}

.mobile-nav {
    flex: 1;
    background: linear-gradient(180deg, var(--fc-green-dark) 0%, var(--fc-green-light) 100%);
    padding: 0;
    overflow-y: auto;
}

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

.mobile-nav-list > li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-list > li > a {
    display: block;
    padding: 16px 25px;
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-white);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.mobile-nav-list > li > a:hover {
    background-color: rgba(255,255,255,0.1);
}

.mobile-nav-list > li.has-submenu {
    position: relative;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-item > a {
    flex: 1;
    display: block;
    padding: 16px 25px;
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-white);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.mobile-nav-item > a:hover {
    background-color: rgba(255,255,255,0.1);
}

.submenu-toggle {
    width: 50px;
    height: 52px;
    background: none;
    border: none;
    color: var(--fc-white);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.submenu-toggle:hover {
    background-color: rgba(255,255,255,0.1);
}

.submenu-toggle i {
    transition: transform 0.3s ease;
}

.submenu-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: rgba(255,255,255,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.open {
    max-height: 500px;
}

.mobile-submenu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 25px 12px 35px;
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.mobile-submenu li a:hover {
    background-color: rgba(255,255,255,0.1);
}

.mobile-submenu li a i {
    font-size: 12px;
    opacity: 0.6;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .mobile-menu-overlay {
        width: 100%;
        left: 0;
        right: auto;
        transform: translateX(-100%);
    }
    
    .mobile-menu-overlay.active {
        transform: translateX(0);
    }
    
    .mobile-menu-close {
        font-size: 46px;
    }
    
    .mobile-nav-list > li > a,
    .mobile-nav-item > a {
        padding: 18px 25px;
        font-size: 17px;
    }
}

/* ============================================
   SECONDARY HEADER (PAGE BANNER)
   ============================================ */
.section-secondary-header {
    background-image: url('assets/images/secondary-page-header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    text-align: center;
}

.section-secondary-header .secondary-header-title {
    font-family: var(--fc-font-heading);
    font-size: var(--fc-h1-size);
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-white);
    margin: 0;
    letter-spacing: 2px;
}

.section-secondary-header .secondary-header-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
    margin: 15px auto 0;
}

@media (max-width: 767px) {
    .section-secondary-header {
        padding: 40px 0;
    }
    
    .section-secondary-header .secondary-header-title {
        font-size: 30px;
        letter-spacing: 1px;
    }
}

/* ============================================
   TERTIARY HEADER (SINGLE POST BANNER)
   ============================================ */
.section-tertiary-header {
    background-image: url('assets/images/tertiary-page-header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    text-align: center;
}

.section-tertiary-header .tertiary-header-title {
    font-family: var(--fc-font-heading);
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    font-variant: small-caps;
    color: var(--fc-green-light);
    margin: 0;
}

.section-tertiary-header .tertiary-header-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
    margin: 15px auto 0;
}

@media (max-width: 991px) {
    .section-tertiary-header {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .section-tertiary-header {
        padding: 30px 0;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--fc-radius-sm);
    cursor: pointer;
    transition: all var(--fc-transition-medium);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--fc-green-light);
    color: var(--fc-white);
}

.btn-primary:hover {
    background-color: var(--fc-green-dark);
    color: var(--fc-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--fc-green-light);
    border: 2px solid var(--fc-green-light);
}

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

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--fc-white);
    color: var(--fc-green-light);
    border-radius: 50%;
    transition: all var(--fc-transition-fast);
}

.btn-primary .btn-arrow {
    background-color: rgba(255,255,255,0.2);
    color: var(--fc-white);
}

.btn-primary:hover .btn-arrow {
    background-color: var(--fc-white);
    color: var(--fc-green-dark);
}

/* ============================================
   FEATURED STORIES SECTION
   ============================================ */
.featured-stories {
    padding: var(--fc-section-padding) 0;
    background-color: var(--fc-white);
}

.featured-stories h2 {
    color: var(--fc-green-light);
    margin-bottom: 30px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    min-height: 450px;
}

.featured-card {
    position: relative;
    border-radius: var(--fc-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.featured-card.large {
    grid-row: span 2;
}

.featured-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.featured-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,53,31,0.9) 0%, rgba(0,53,31,0.4) 50%, transparent 100%);
    z-index: 2;
}

.featured-card-content {
    position: relative;
    z-index: 3;
    padding: 25px;
    color: var(--fc-white);
}

.featured-card h3 {
    color: var(--fc-white);
    font-size: 20px;
    margin-bottom: 10px;
}

.featured-card.large h3 {
    font-size: 26px;
}

.featured-card-meta {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.featured-card-categories {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.featured-card .read-article {
    color: var(--fc-white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.featured-card .read-article:hover {
    color: var(--fc-white);
    opacity: 0.8;
}

.featured-card .card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--fc-green-light);
    color: var(--fc-white);
    border-radius: 50%;
    position: absolute;
    bottom: 20px;
    right: 20px;
    transition: background-color var(--fc-transition-fast);
}

.featured-card:hover .card-arrow {
    background-color: var(--fc-red);
}

/* Featured Card Placeholder (no image fallback) */
.featured-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--fc-green-dark) 0%, var(--fc-green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.featured-card-placeholder .placeholder-tree {
    width: 150px;
    height: auto;
    opacity: 0.3;
}

.featured-card.large .featured-card-placeholder .placeholder-tree {
    width: 200px;
}

@media (max-width: 767px) {
    .featured-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .featured-card.large {
        grid-row: span 1;
        min-height: 300px;
    }
    
    .featured-card {
        min-height: 200px;
    }
}

/* ============================================
   BLOG FILTER BAR
   ============================================ */
.blog-filter-bar {
    padding: 30px 0;
    background-color: var(--fc-gray-light);
    border-top: 1px solid var(--fc-gray-medium);
    border-bottom: 1px solid var(--fc-gray-medium);
}

.filter-form {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-select,
.filter-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    font-family: var(--fc-font-body);
    font-size: 14px;
    border: 1px solid var(--fc-gray-medium);
    border-radius: var(--fc-radius-sm);
    background-color: var(--fc-white);
    color: var(--fc-gray-dark);
    appearance: none;
    cursor: pointer;
}

.filter-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.filter-input::placeholder {
    color: var(--fc-gray-dark);
    opacity: 0.6;
}

.filter-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--fc-green-light);
    color: var(--fc-white);
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--fc-radius-sm);
    cursor: pointer;
    transition: background-color var(--fc-transition-fast);
}

.filter-submit:hover {
    background-color: var(--fc-green-dark);
}

.filter-submit .btn-arrow {
    width: 28px;
    height: 28px;
    background-color: rgba(255,255,255,0.2);
    color: var(--fc-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .filter-form {
        flex-direction: column;
    }
    
    .filter-select,
    .filter-input,
    .filter-submit {
        width: 100%;
        min-width: auto;
    }
}

/* ============================================
   ARTICLE GRID
   ============================================ */
.article-grid-section {
    padding: var(--fc-section-padding) 0;
    background-color: var(--fc-white);
}

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

.article-card {
    background-color: var(--fc-white);
    border: 1px solid var(--fc-gray-medium);
    border-radius: var(--fc-radius);
    padding: 25px;
    position: relative;
    transition: box-shadow var(--fc-transition-medium);
    border-bottom: 3px solid var(--fc-green-light);
}

.article-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.article-card h3 {
    font-family: var(--fc-font-body);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--fc-green-light);
    line-height: 1.3;
}

.article-card h3 a {
    color: inherit;
    text-decoration: none;
}

.article-card h3 a:hover {
    color: var(--fc-green-light);
}

.article-card-meta {
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: var(--fc-gray-dark);
    margin-bottom: 5px;
}

.article-card-author {
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: var(--fc-gray-dark);
    margin-bottom: 5px;
}

.article-card-categories {
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: var(--fc-green-light);
    margin-bottom: 15px;
}

.article-card-categories a {
    color: var(--fc-green-light);
    text-decoration: underline;
}

.article-card-categories a:hover {
    text-decoration: underline;
}

.article-card .read-article {
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    color: var(--fc-green-dark);
    text-decoration: none;
}

.article-card .read-article:hover {
    color: var(--fc-green-light);
}

.article-card .card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background-color: var(--fc-green-light);
    color: var(--fc-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--fc-transition-fast);
}

.article-card:hover .card-arrow {
    background-color: var(--fc-red);
}

@media (max-width: 767px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .article-card h3 {
        font-size: 20px;
    }
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination-wrapper {
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--fc-gray-dark);
    background-color: var(--fc-white);
    border: 1px solid var(--fc-gray-medium);
    border-radius: var(--fc-radius-sm);
    transition: all var(--fc-transition-fast);
    text-decoration: none;
}

.pagination a:hover {
    background-color: var(--fc-green-light);
    border-color: var(--fc-green-light);
    color: var(--fc-white);
}

.pagination .current {
    background-color: var(--fc-green-light);
    border-color: var(--fc-green-light);
    color: var(--fc-white);
}

.pagination .prev,
.pagination .next {
    font-weight: 600;
}

/* ============================================
   SINGLE POST STYLES
   ============================================ */
.single-post-meta-bar {
    padding: 20px 0;
    border-bottom: 1px solid var(--fc-gray-medium);
}

.meta-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--fc-green-light);
}

.back-to-blog:hover {
    color: var(--fc-green-dark);
}

.share-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.share-label {
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
}

.share-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--fc-green-light);
    color: var(--fc-white);
    border-radius: 50%;
    transition: background-color var(--fc-transition-fast);
}

.share-icons a:hover {
    background-color: var(--fc-green-dark);
}

.post-meta-info {
    font-size: 13px;
    color: var(--fc-gray-dark);
    margin-top: 10px;
}

.post-meta-info a {
    color: var(--fc-green-light);
}

/* Single Post Content */
.single-post-content {
    padding: var(--fc-section-padding) 0;
}

.post-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.post-featured-image {
    float: right;
    max-width: 350px;
    margin: 0 0 20px 30px;
    border-radius: var(--fc-radius);
    overflow: hidden;
}

.post-featured-image img {
    border-radius: var(--fc-radius);
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.post-content h4 {
    color: var(--fc-green-light);
}

.post-content p {
    margin-bottom: 1.2em;
    line-height: 1.7;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.2em;
    padding-left: 1.5em;
}

.post-content li {
    margin-bottom: 0.5em;
}

.post-content a {
    color: var(--fc-green-light);
    text-decoration: underline;
}

.post-content blockquote {
    margin: 1.5em 0;
    padding: 20px 30px;
    background-color: var(--fc-gray-light);
    border-left: 4px solid var(--fc-green-light);
    font-style: italic;
}

@media (max-width: 767px) {
    .post-featured-image {
        float: none;
        max-width: 100%;
        margin: 0 0 20px 0;
    }
}

/* Highlight Block */
.highlight-block {
    background-color: var(--fc-green-dark);
    padding: var(--fc-section-padding) 0;
    margin: var(--fc-section-padding) 0;
}

.highlight-block .container {
    max-width: 900px;
}

.highlight-block h3 {
    color: var(--fc-white);
    margin-bottom: 20px;
}

.highlight-block p {
    color: var(--fc-white);
    opacity: 0.95;
    line-height: 1.7;
}

/* ============================================
   CONTACT CTA SECTION
   ============================================ */
.contact-cta {
    padding: var(--fc-section-padding) 0;
    position: relative;
    overflow: hidden;
}

.contact-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact-cta-content h2 {
    font-family: var(--fc-font-heading);
    font-feature-settings: "smcp";
    color: var(--fc-green-light);
    margin-bottom: 10px;
}

.contact-cta-content p {
    font-family: var(--fc-font-heading);
    font-feature-settings: "smcp";
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-cta-content .phone {
    font-size: 24px;
    font-weight: 600;
    color: var(--fc-red);
}

.contact-cta-content .phone:hover {
    color: var(--fc-green-light);
}

.contact-cta-graphic {
    max-width: 300px;
}

@media (max-width: 767px) {
    .contact-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-cta-graphic {
        max-width: 200px;
    }
}

/* ============================================
   RELATED ARTICLES
   ============================================ */
.related-articles {
    padding: var(--fc-section-padding) 0;
    background-color: var(--fc-gray-light);
}

.related-articles h2 {
    color: var(--fc-green-light);
    margin-bottom: 30px;
}

.related-articles-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.related-intro-text {
    font-size: 18px;
    line-height: 1.7;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .related-articles-intro {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   OUR BUSINESS SECTION (FULL WIDTH)
   Expandable cards with hover effect
   ============================================ */
.section-our-business {
    position: relative;
    padding: 0;
}

.section-our-business .our-business-top {
    background-image: url('assets/images/our-business-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0 220px;
}

.section-our-business .our-business-bottom {
    background-color: var(--fc-white);
    padding: 220px 0 80px;
    margin-top: -190px;
}

.section-our-business .our-business-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-our-business .our-business-title {
    font-family: var(--fc-font-body);
    font-size: 32px;
    font-weight: 700;
    color: var(--fc-white);
    margin-bottom: 25px;
}

.section-our-business .our-business-intro {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--fc-white);
    margin-bottom: 20px;
}

/* Cards Container */
.section-our-business .our-business-cards-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -190px;
}

.section-our-business .our-business-cards {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Individual Card */
.section-our-business .business-card {
    position: relative;
    flex: 0 0 260px;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    transition: flex 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-our-business .business-card:hover {
    flex: 0 0 320px;
}

/* Card Image */
.section-our-business .business-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.section-our-business .business-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 40%, transparent 100%);
    z-index: 1;
}

/* Card Content */
.section-our-business .business-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.section-our-business .business-card-title {
    font-family: var(--fc-font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--fc-white);
    margin: 0 0 10px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.section-our-business .business-card-text {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--fc-white);
    margin: 0 0 10px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.section-our-business .business-card:hover .business-card-text {
    opacity: 1;
    max-height: 150px;
}

.section-our-business .business-card-arrow {
    position: absolute;
    bottom: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--fc-green-light);
    border-radius: 50%;
    color: var(--fc-white);
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.section-our-business .business-card:hover .business-card-arrow {
    opacity: 1;
}

.section-our-business .business-card-arrow:hover {
    background-color: var(--fc-red);
}

/* Responsive: Our Business */
@media (max-width: 1400px) {
    .section-our-business .business-card {
        flex: 0 0 160px;
    }
    
    .section-our-business .business-card:hover {
        flex: 0 0 280px;
    }
}

@media (max-width: 1200px) {
    .section-our-business .business-card {
        flex: 0 0 140px;
    }
    
    .section-our-business .business-card:hover {
        flex: 0 0 240px;
    }
}

@media (max-width: 991px) {
    .section-our-business .our-business-top {
        padding: 60px 0 180px;
    }
    
    .section-our-business .our-business-cards-wrapper {
        margin-top: -150px;
    }
    
    .section-our-business .our-business-bottom {
        margin-top: -150px;
        padding: 180px 0 60px;
    }
    
    .section-our-business .our-business-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-our-business .business-card {
        flex: 0 0 calc(33.333% - 10px);
        height: 300px;
    }
    
    .section-our-business .business-card:hover {
        flex: 0 0 calc(33.333% - 10px);
    }
    
    .section-our-business .business-card-text {
        opacity: 1;
        max-height: 150px;
    }
    
    .section-our-business .business-card-arrow {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .section-our-business .our-business-title {
        font-size: 26px;
    }
    
    .section-our-business .our-business-top {
        padding: 50px 15px 120px;
    }
    
    .section-our-business .our-business-cards-wrapper {
        margin-top: -100px;
    }
    
    .section-our-business .our-business-bottom {
        margin-top: -100px;
        padding: 120px 0 50px;
    }
    
    .section-our-business .our-business-cards {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-our-business .business-card {
        flex: none !important;
        width: 100% !important;
        height: 280px !important;
        transition: none !important;
        transform: none !important;
    }
    
    .section-our-business .business-card:hover {
        flex: none !important;
        width: 100% !important;
        height: 280px !important;
        transform: none !important;
    }
    
    .section-our-business .business-card-image {
        transition: none !important;
        transform: none !important;
    }
    
    .section-our-business .business-card:hover .business-card-image {
        transform: none !important;
    }
    
    .section-our-business .business-card-text {
        opacity: 1 !important;
        max-height: 150px !important;
        transition: none !important;
    }
    
    .section-our-business .business-card-arrow {
        opacity: 1 !important;
        transition: none !important;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--fc-green-dark);
    padding: 50px 0 30px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 40px;
    align-items: start;
}

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

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    color: var(--fc-white);
    border-radius: 50%;
    transition: background-color var(--fc-transition-fast);
}

.footer-social a:hover {
    background-color: rgba(255,255,255,0.2);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.footer-nav a:hover {
    color: var(--fc-white);
}

.footer-tree {
    text-align: right;
}

.footer-tree img {
    max-width: 150px;
    opacity: 0.3;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.footer-bottom a {
    color: rgba(255,255,255,0.9);
}

.footer-bottom a:hover {
    color: var(--fc-white);
}

@media (max-width: 991px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-tree {
        display: none;
    }
}

@media (max-width: 767px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fc-green-light);
    color: var(--fc-white);
    padding: 10px 20px;
    z-index: 9999;
    border-radius: var(--fc-radius-sm);
    text-decoration: none;
}

.skip-to-main:focus {
    top: 10px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
select:focus {
    outline: 2px solid var(--fc-green-light);
    outline-offset: 2px;
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 13px;
    font-style: italic;
    color: var(--fc-gray-dark);
    opacity: 0.8;
    margin-top: 8px;
}

/* Clear floats */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
