/**
 * Worldwide Solutions Group Ltd - Custom Style Improvements
 * Based on brand color scheme: Navy Blue (#1a3a52) and Gold (#fdb714)
 */

/* ============================================
   COLOR SCHEME VARIABLES
   ============================================ */
:root {
    /* Primary Brand Colors */
    --primary-navy: #1a3a52;
    --primary-dark-navy: #0f2234;
    --primary-gold: #fdb714;
    --accent-blue: #2196F3;

    /* Neutrals */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(26, 58, 82, 0.08);
    --shadow-md: 0 4px 12px rgba(26, 58, 82, 0.12);
    --shadow-lg: 0 8px 24px rgba(26, 58, 82, 0.16);
    --shadow-xl: 0 12px 32px rgba(26, 58, 82, 0.20);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   GLOBAL IMPROVEMENTS
   ============================================ */
body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ============================================
   BUTTON STYLES - UNIFIED
   ============================================ */
.synergy-btn,
.example-btn,
a.synergy-btn,
a.example-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e5a310 100%);
    color: var(--primary-navy) !important;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    margin: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.synergy-btn:hover,
.example-btn:hover,
a.synergy-btn:hover,
a.example-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ffc933 0%, var(--primary-gold) 100%);
    color: var(--primary-navy) !important;
}

.synergy-btn:active,
.example-btn:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Secondary Button Variant */
.synergy-btn-secondary,
.example-btn-secondary {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark-navy) 100%);
    color: var(--white) !important;
}

.synergy-btn-secondary:hover,
.example-btn-secondary:hover {
    background: linear-gradient(135deg, #2a4a62 0%, var(--primary-navy) 100%);
    color: var(--white) !important;
}

/* ============================================
   BACKGROUND IMAGE OVERLAYS
   ============================================ */
.culture-title,
.team-building,
.work-with-us,
.home-your-career,
.home-our-locations {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Changed from fixed to prevent overflow */
    background-repeat: no-repeat;
    overflow: hidden; /* Prevent background from flowing into padding */
}

.culture-title::before,
.team-building::before,
.work-with-us::before,
.home-your-career::before,
.home-our-locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 58, 82, 0.88) 0%,
        rgba(15, 34, 52, 0.75) 100%
    );
    z-index: 1;
}

.culture-title > *,
.team-building > *,
.work-with-us > *,
.home-your-career > *,
.home-our-locations > * {
    position: relative;
    z-index: 2;
}

.culture-title h1,
.culture-title h2,
.team-building h1,
.team-building h2,
.work-with-us h1,
.work-with-us h2,
.home-your-career h1,
.home-your-career h2,
.home-our-locations h1,
.home-our-locations h2 {
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.culture-title p,
.team-building p,
.work-with-us p,
.home-your-career p,
.home-our-locations p {
    color: rgba(255, 255, 255, 0.95);
}

/* ============================================
   SECTIONS SPACING
   ============================================ */
.culture-title,
.culture-strapline,
.team-building,
.rewarding-hard-work,
.work-with-us,
.home-strapline,
.home-your-career,
.home-we-work-with,
.home-our-locations,
.home-latest-news {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .culture-title,
    .culture-strapline,
    .team-building,
    .rewarding-hard-work,
    .work-with-us,
    .home-strapline,
    .home-your-career,
    .home-we-work-with,
    .home-our-locations,
    .home-latest-news {
        padding: 50px 0;
    }
}

/* ============================================
   CULTURE PAGE SPECIFIC
   ============================================ */
.culture-title {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.culture-strapline {
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    text-align: center;
}

.culture-strapline h2 {
    font-size: 1.75rem;
    color: var(--primary-navy);
    font-weight: 600;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Job List Intro - Match culture strapline styling */
.job-board-list .job-list-intro {
    font-size: 1.75rem;
    color: var(--primary-navy);
    font-weight: 600;
    line-height: 1.6;
    max-width: 900px;
    margin: 30px auto;
    text-align: center;
}

/* Blockquote Styling for Quotes */
blockquote {
    border-left: 4px solid var(--primary-gold);
    padding-left: 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--primary-navy);
    background: rgba(253, 183, 20, 0.05);
    padding: 20px 24px;
    border-radius: 4px;
}

blockquote p {
    margin: 0;
    font-size: 1.1rem;
}

/* Team Building and Rewarding Hard Work Sections */
.team-building,
.rewarding-hard-work {
    min-height: 500px;
    display: flex;
    align-items: center;
}

.team-building h2,
.rewarding-hard-work h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--white);
}

/* Work With Us Section */
.work-with-us {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.work-with-us h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

/* ============================================
   HOME PAGE IMPROVEMENTS
   ============================================ */
.home-video {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.home-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-strapline {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark-navy) 100%);
    text-align: center;
    color: var(--white);
}

.home-strapline h1 {
    color: var(--primary-gold);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home-strapline h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 400;
}

/* Services Intro */
.services-intro {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark-navy) 100%);
    text-align: center;
    color: var(--white);
    padding: 80px 0;
}

.services-intro h2 {
    color: var(--primary-gold);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-intro p {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* Latest News Section */
.home-latest-news {
    background: var(--light-gray);
    padding: 80px 0;
}

.home-latest-news .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px; /* Increased spacing between cards */
    align-items: stretch; /* Force columns to stretch equally */
}

.home-latest-news [class*="col-"] {
    padding: 0 20px; /* Increased padding for better card separation */
    display: flex; /* Make columns flex containers */
    flex-direction: column; /* Stack content vertically */
}

/* Service Sections */
.service-section {
    margin: 50px 0 48px 0;
    padding: 0;
    overflow: hidden;
}

/* Modern Service Section Layout */
.service-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0;
}

.service-section .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px;
    min-height: 400px;
}

.service-section .col-md-6:first-child {
    background: linear-gradient(135deg, rgba(26,58,82,0.95) 60%, rgba(253,183,20,0.10) 100%);
    color: var(--white);
    position: relative;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.service-section .col-md-6:last-child {
    background: var(--white);
    color: var(--primary-navy);
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.service-section .service-icon-large {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 24px;
}

.service-section h2,
.service-section h3 {
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.service-section .service-lead {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 24px;
}

.service-section .service-list {
    color: var(--white);
    margin-bottom: 24px;
}

.service-section .synergy-btn {
    margin-top: 16px;
}

.service-section img.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    box-shadow: none;
}

@media (max-width: 991px) {
    .service-section .row {
        flex-direction: column;
    }
    .service-section .col-md-6,
    .service-section .col-md-6:first-child,
    .service-section .col-md-6:last-child {
        border-radius: 0 !important;
        padding: 32px 16px;
        min-height: unset;
    }
    .service-section img.service-image {
        border-radius: 0 0 18px 18px;
        min-height: 200px;
    }
}

/* News Cards - Equal Height with Flexbox */
.home-news-item {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.home-news-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Image wrapper with overflow hidden */
.home-news-item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.home-news-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.home-news-item:hover img {
    transform: scale(1.08);
}

.home-news-item h4 {
    color: var(--primary-navy);
    padding: 24px 24px 16px;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.home-news-item p {
    padding: 0 24px 20px;
    color: var(--medium-gray);
    line-height: 1.7;
    text-align: justify;
    font-size: 1rem;
    flex-grow: 1;
}

.home-news-item .synergy-btn,
.home-news-item .example-btn {
    margin: 0 24px 24px;
    align-self: center;
}

.home-latest-news h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 48px;
    color: var(--primary-navy);
}

/* ============================================
   BREADCRUMB IMPROVEMENTS
   ============================================ */
.page-breadcrumb {
    margin-top: 16px;
}

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

.breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: #ffc933;
    text-decoration: underline;
}

/* ============================================
   LOGO SHOWCASE IMPROVEMENTS
   ============================================ */
.wpls-logo-cnt {
    transition: all var(--transition-base);
}

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

.wpls-logo-cnt img {
    filter: grayscale(100%) opacity(0.7);
    transition: all var(--transition-base);
}

.wpls-logo-cnt:hover img {
    filter: grayscale(0%) opacity(1);
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */
a:focus,
button:focus,
.synergy-btn:focus,
.example-btn:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* ============================================
   RESPONSIVE IMPROVEMENTS
   ============================================ */
@media (max-width: 991px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .home-strapline h1 {
        font-size: 2.5rem;
    }

    .services-intro h2 {
        font-size: 2.5rem;
    }

    .work-with-us h2 {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .synergy-btn,
    .example-btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .home-strapline h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .home-strapline h3 {
        font-size: 1.1rem;
    }

    .services-intro h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .services-intro p {
        font-size: 1.1rem;
    }
}

/* ============================================
   ANIMATION UTILITIES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-navy {
    color: var(--primary-navy) !important;
}

.text-gold {
    color: var(--primary-gold) !important;
}

.bg-navy {
    background-color: var(--primary-navy) !important;
}

.bg-gold {
    background-color: var(--primary-gold) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}

/* Gold Accent Border */
.border-gold {
    border-color: var(--primary-gold) !important;
}

/* Section Divider */
.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    margin: 24px auto;
    border-radius: 2px;
}

/* ============================================
   HOMEPAGE SECTIONS
   ============================================ */

/* Core Services Section */
.home-services {
    padding: 80px 0;
    background: var(--light-gray);
}

.home-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary-navy);
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
    text-align: justify;
}

.service-card .synergy-btn {
    margin-top: auto;
}

.service-column {
    margin-bottom: 30px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: var(--white);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.why-choose-us h3 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--medium-gray);
    font-weight: 400;
    margin-bottom: 16px;
}

.value-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
    text-align: center;
    margin-bottom: 30px;
    transition: all var(--transition-base);
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 4rem;
    color: var(--primary-gold);
}

.value-icon img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.value-card h4 {
    color: var(--primary-navy);
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.value-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    text-align: justify;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark-navy) 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-section h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 24px auto;
}

.cta-section .synergy-btn {
    margin-top: 24px;
}

/* Responsive for Homepage Sections */
@media (max-width: 991px) {
    .home-services,
    .why-choose-us,
    .cta-section {
        padding: 60px 0;
    }

    .home-services h2,
    .why-choose-us h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .service-card,
    .value-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 575px) {
    .service-icon,
    .value-icon i {
        font-size: 2.5rem;
    }

    .service-card h3,
    .value-card h4 {
        font-size: 1.25rem;
    }
}

/* ============================================
   ABOUT US PAGE SECTIONS
   ============================================ */

/* About Strapline */
.about-strapline {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.about-strapline h2 {
    font-size: 2rem;
    color: var(--primary-navy);
    font-weight: 600;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* About Intro */
.about-intro {
    padding: 80px 0;
    background: var(--white);
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* The Result Section */
.the-result {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark-navy) 100%);
    color: var(--white);
}

.the-result h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.result-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
}

.result-icon {
    margin-bottom: 20px;
}

.result-icon i {
    font-size: 4rem;
    color: var(--primary-gold);
}

.result-card h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.result-card p {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

/* Core Values Section */
.core-values {
    padding: 80px 0;
    background: var(--light-gray);
}

.core-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.core-values h3 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--medium-gray);
    font-weight: 400;
    margin-bottom: 16px;
}

.core-value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
}

.core-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.core-value-icon {
    margin-bottom: 20px;
}

.core-value-icon i {
    font-size: 4rem;
    color: var(--primary-gold);
}

.core-value-card h4 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.core-value-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Responsive About Us */
@media (max-width: 991px) {
    .about-strapline,
    .about-intro,
    .the-result,
    .core-values {
        padding: 60px 0;
    }

    .about-strapline h2,
    .the-result h2,
    .core-values h2 {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .result-icon i,
    .core-value-icon i {
        font-size: 2.5rem;
    }

    .result-card h3,
    .core-value-card h4 {
        font-size: 1.25rem;
    }
}

/* ============================================
   NEWS PAGE STYLES
   ============================================ */
.news-intro {
    background: var(--light-gray);
    padding: 40px 0;
    text-align: center;
}

.news-intro .lead {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.news-post-list {
    padding: 60px 0;
}

.news-item {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.news-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.news-category {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.category-badge {
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge.hospitality {
    background: #4CAF50;
    color: white;
}

.category-badge.cleaning {
    background: #2196F3;
    color: white;
}

.category-badge.aviation {
    background: var(--primary-gold);
    color: var(--primary-navy);
}

.news-item h2 {
    font-size: 1.1rem;
    margin: 16px 20px 12px;
    color: var(--primary-navy);
    line-height: 1.4;
    text-transform: none;
}

.news-excerpt {
    padding: 0 20px;
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
}

.news-meta {
    padding: 10px 20px;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.news-meta i {
    color: var(--primary-gold);
    margin-right: 6px;
}

.news-item .synergy-btn {
    margin: 20px;
    display: inline-block;
}

.news-cta {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark-navy) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.news-cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.news-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.news-cta .synergy-btn {
    background: var(--primary-gold);
    color: var(--primary-navy);
}

.news-cta .synergy-btn:hover {
    background: white;
    transform: translateY(-3px);
}

/* ============================================
   MISSION SECTION UX IMPROVEMENTS
   ============================================ */

/* Text container with max-width and centered */
.mission-content {
    max-width: 750px;
    margin: 0 auto; /* Center the content */
    text-align: center; /* Center align text */
}

/* Typography improvements */
.mission-content p {
    line-height: 1.6;
    font-size: 1.125rem; /* 15% increase from base 1rem */
}

/* Button container spacing */
.mission-buttons {
    margin-top: 40px; /* Increased breathing room */
}

/* Primary button (solid yellow) */
.mission-btn-primary {
    background: var(--primary-gold);
    color: var(--primary-navy);
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.mission-btn-primary:hover {
    background: var(--primary-navy);
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Ghost button (transparent with yellow border) */
.mission-btn-ghost {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.mission-btn-ghost:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Ensure buttons are side by side with proper spacing */
.mission-buttons a {
    margin-right: 15px;
    margin-bottom: 10px;
}

.mission-buttons a:last-child {
    margin-right: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mission-content p {
        font-size: 1.0625rem; /* Slightly smaller on mobile but still improved */
    }
    
    .mission-buttons {
        margin-top: 30px;
    }
    
    .mission-buttons a {
        display: inline-block;
        width: auto;
    }
}

/* ============================================
   LATEST INSIGHTS RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Ensure proper spacing between cards on all devices */
@media (max-width: 1199px) {
    .home-news-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .home-latest-news {
        padding: 60px 0;
    }
    
    .home-latest-news h2 {
        font-size: 2rem;
        margin-bottom: 36px;
    }
    
    .home-news-item h3 {
        min-height: auto;
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .home-latest-news {
        padding: 50px 0;
    }
    
    /* Stack cards vertically on mobile */
    .home-news-item {
        margin-bottom: 30px;
    }
    
    .home-news-item:last-child {
        margin-bottom: 0;
    }
    
    .home-news-item h4 {
        padding: 20px 20px 12px;
        font-size: 1.25rem;
    }
    
    .home-news-item p {
        padding: 0 20px 16px;
        font-size: 0.95rem;
    }
    
    .home-news-item .synergy-btn {
        margin: 0 20px 20px;
    }
}

@media (min-width: 992px) {
    /* Ensure equal heights on larger screens */
    .home-latest-news .row {
        display: flex;
        align-items: stretch;
    }
    
    .home-latest-news [class*="col-"] {
        display: flex;
    }
}

/* ============================================
   MISSION SECTION BACKGROUND FIX
   ============================================ */

/* Remove the duplicate padding that was causing issues */
.home-your-career {
    padding: 0 !important; /* Remove outer padding */
    margin-top: 60px; /* Add spacing from above section */
}

/* Add padding to the inner container instead */
.home-your-career .container-fluid {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .home-your-career .container-fluid {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* ============================================
   OUR LOCATIONS SECTION - CTA STYLE
   ============================================ */

.home-our-locations {
    padding: 0 !important; /* Remove outer padding like mission section */
    margin-top: 60px; /* Match mission section spacing */
}

.home-our-locations .container-fluid {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center; /* Center align all content */
}

.home-our-locations h2 {
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.home-our-locations p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.home-our-locations .synergy-btn {
    margin-top: 16px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    border: 2px solid var(--primary-gold);
}

.home-our-locations .synergy-btn:hover {
    background: white;
    color: var(--primary-navy);
    border-color: white;
}

@media (max-width: 991px) {
    .home-our-locations .container-fluid {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .home-our-locations h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .home-our-locations .container-fluid {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .home-our-locations h2 {
        font-size: 1.75rem;
    }
}

/* Fix paraxify background bleeding into footer */
.who-we-work-with.paraxify {
    overflow: hidden;
    background-attachment: scroll !important;
    isolation: isolate;
}

/* Fix list-locations font size */
.list-locations {
    padding: 30px 0 !important;
}
.list-locations ul {
    font-size: 0.95rem !important;
}
.list-locations li {
    font-size: 0.95rem !important;
    font-weight: 600;
    color: #1a3a52;
    text-transform: uppercase;
}

/* Footer fixes */
#genesis-footer-widgets .textwidget,
#genesis-footer-widgets .textwidget p,
#genesis-footer-widgets .textwidget a,
#genesis-footer-widgets .textwidget strong {
    font-size: 0.875rem !important;
    line-height: 1.6;
}
.site-footer {
    background-image: none !important;
}
body > .site-inner {
    background-image: none !important;
}

/* Partners carousel section - plain white background, no overlay */
.home-we-work-with {
    background-color: #ffffff;
    background-image: none !important;
}
.home-we-work-with::before {
    display: none;
}
.home-we-work-with h2 {
    color: var(--primary-navy);
    text-shadow: none;
}
.home-we-work-with p {
    color: var(--dark-gray);
}

/* ============================================
   CONTACT FORM CARD
   ============================================ */
.contact-info {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(26, 58, 82, 0.12);
    padding: 50px 48px;
}

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

.contact-form-row .contact-form-group {
    flex: 1;
}

.contact-form-group {
    margin-bottom: 24px;
}

.contact-form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.contact-form-group .required {
    color: #e74c3c;
}

.contact-form-group input[type="text"],
.contact-form-group input[type="email"],
.contact-form-group input[type="tel"],
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #dde3e9;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    background: #fafbfc;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.1);
    background: #ffffff;
}

.contact-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a3a52' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form-consent .consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    color: #555;
    cursor: pointer;
}

.contact-form-consent input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--primary-navy);
}

.contact-form-submit {
    text-align: center;
    margin-top: 8px;
}

.contact-form-submit .synergy-btn {
    padding: 14px 48px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 640px) {
    .contact-form-card {
        padding: 32px 20px;
    }
    .contact-form-row {
        flex-direction: column;
        gap: 0;
    }
}
