/*
Theme Name: Vanaya Strategic
Theme URI: https://akhmad.my.id
Author: Akhmad Rifki Maulana
Author URI: https://akhmad.my.id
Description: Custom WordPress theme for Vanaya Strategic (migrated from Wix).
Version: 1.0.0
Text Domain: vanayastrategic
*/

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.site {
    background: #fff;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    box-sizing: border-box;
    transition: transform 0.4s ease-in-out;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

body {
    padding-top: 45px;
    /* Prevent content from hiding under the fixed header */
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.site-branding {
    flex: 0 0 auto;
}

.site-branding img.custom-logo {
    height: 50px;
    width: auto;
    display: block;
}

.site-title {
    margin: 0;
    font-size: 24px;
}

.site-title a {
    text-decoration: none;
    color: #000;
}

/* Navigation Menu */
.main-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.5s ease;
    display: flex;
    align-items: center;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item>a {
    color: #6a2a3e;
    /* Adjust based on exact active color */
}

/* Dropdown arrows for submenus */
.main-navigation ul li.menu-item-has-children>a::after {
    content: " \2304";
    /* Downward chevron/arrow */
    font-size: 12px;
    margin-left: 5px;
    display: inline-block;
    transform: translateY(-2px);
}

/* Dropdown menus (sub-menus) */
.main-navigation ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 10px 0;
    z-index: 999;
    flex-direction: column;
    gap: 0;
}

/* Invisible bridge for regular sub-menus */
.main-navigation ul li ul.sub-menu::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
}

.main-navigation ul li:hover>ul.sub-menu {
    display: flex;
}

.main-navigation ul li ul.sub-menu li {
    width: 100%;
}

.main-navigation ul li ul.sub-menu li a {
    padding: 10px 20px;
    font-size: 14px;
}



/* Header Actions (Login) */
.header-actions {
    flex: 0 0 auto;
}

.login-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #777;
    /* Grey text for 'Log In' */
    font-size: 15px;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.login-button:hover {
    opacity: 0.8;
}

.user-icon {
    width: 35px;
    height: 35px;
}

.mobile-login {
    display: none;
}

/* -----------------------------------------
   Mobile Responsive & Hamburger Menu
----------------------------------------- */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    position: relative;
}

.menu-toggle .line {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #333;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

.menu-overlay {
    display: none;
}

@media (max-width: 991px) {
    .main-navigation ul li ul.sub-menu li a:hover {
        background-color: #f5f5f5;
    }

    .main-navigation {
        justify-content: flex-end;

    }

    .header-container {
        position: relative;
    }

    .main-navigation {
        order: 3;
        /* Move hamburger to the right */
    }

    .header-actions {
        margin-left: auto;
        margin-right: 20px;
    }

    .header-actions.desktop-login {
        display: none;
    }

    .header-actions.mobile-login {
        display: block;
        margin-top: 30px;
        padding: 0 30px;
        border-top: 1px solid #f0f0f0;
        padding-top: 20px;
    }

    .header-actions.mobile-login .login-button {
        font-size: 18px;
        color: #000;
    }

    .menu-toggle {
        display: block;
    }

    /* Animate Hamburger into X */
    .menu-toggle.is-active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-active .line:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Slide-in Menu Wrapper */
    .menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden by default */
        width: 300px;
        max-width: 80vw;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 999;
        padding-top: 80px;
        overflow-y: auto;
    }

    .main-navigation.toggled .menu-wrapper {
        right: 0;
        /* Slide in */
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
        gap: 10px;
    }

    .main-navigation ul li {
        width: 100%;
    }

    .main-navigation ul li a {
        padding: 10px 0;
        display: block;
    }

    /* Sub-menu on mobile */
    .main-navigation ul li ul.sub-menu {
        position: static;
        box-shadow: none;
        display: none;
        padding: 0 0 0 15px;
        margin-top: 10px;
    }

    /* Show sub-menu on hover/click for mobile */
    .main-navigation ul li:hover>ul.sub-menu,
    .main-navigation ul li:focus-within>ul.sub-menu {
        display: flex;
    }

    .main-navigation ul li.menu-item-has-children>a::after {
        float: right;
        font-size: 16px;
    }

    /* Overlay Background */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .main-navigation.toggled .menu-overlay {
        opacity: 1;
        visibility: visible;
    }
}

.login-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #777;
    /* Grey text for 'Log In' */
    font-size: 15px;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.login-button:hover {
    opacity: 0.8;
}

.user-icon {
    width: 35px;
    height: 35px;
}

.site-content {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* -----------------------------------------
   Footer
----------------------------------------- */
.site-footer {
    background-color: #fff;
    padding: 60px 40px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.col-solutions,
.col-insights {
    max-width: 350px;
}

.col-help {
    max-width: 400px;
}

.footer-heading {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
    color: #000;
}

.heading-red {
    color: #c32026;
    font-size: 32px;
}

/* Solutions Menu */
.col-solutions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.col-solutions ul li {
    margin-bottom: 20px;
}

.col-solutions ul li a {
    color: #000;
    text-decoration: underline;
    font-size: 22px;
    font-weight: 400;
}

.col-solutions ul li a:hover {
    color: #c32026;
}

/* Insights Posts */
.footer-post-item {
    margin-bottom: 25px;
}

.footer-post-item a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 8px;
}

.footer-post-item a:hover {
    color: #c32026;
}

.footer-post-item .post-date {
    font-size: 13px;
    color: #555;
}

/* Help Section */
.help-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.footer-btn {
    display: inline-block;
    background-color: #c32026;
    color: #fff;
    padding: 12px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.footer-btn:hover {
    background-color: #a01920;
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #ddd;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-bottom-left {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.footer-address {
    margin-bottom: 15px;
}

.footer-contact-info p {
    margin: 0;
}

.footer-copyright {
    margin-top: 20px;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-bottom-links ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-bottom-links ul li a {
    color: #777;
    text-decoration: underline;
    font-size: 13px;
}

.footer-bottom-links ul li a:hover {
    color: #333;
}

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

.footer-social a {
    color: #999;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #333;
}

@media (max-width: 991px) {
    .footer-columns {
        flex-direction: column;
    }

    .footer-col {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-right,
    .footer-bottom-links ul {
        align-items: flex-start;
    }
}

/* -----------------------------------------
   Single Solution CPT Styles
----------------------------------------- */
.solution-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #3b5998;
    /* Fallback blue */
    padding: 100px 40px;
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.solution-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 89, 152, 0.7);
    /* Blue transparent overlay matching design */
    z-index: 1;
}

.solution-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.solution-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.solution-tagline {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.solution-single-wrapper {
    background-color: #f1f2f2;
    padding: 60px 20px;
}

.solution-single-container {
    max-width: 1200px;
    margin: 0 auto;
}

.solution-single-body {
    display: flex;
    gap: 60px;
}

.solution-single-sidebar {
    width: 35%;
    flex-shrink: 0;
    text-align: right;
}

.solution-short-desc {
    font-size: 20px;
    line-height: 1.6;
    color: #777;
    font-weight: 400;
}

.solution-single-main {
    width: 65%;
}

.solution-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.solution-content p {
    margin-bottom: 25px;
}

.solution-action {
    margin-top: 40px;
}

.btn-solution-discuss {
    display: inline-block;
    background-color: #777;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-solution-discuss:hover {
    background-color: #555;
}

/* -----------------------------------------
   White Paper Section Styles (Single Solution)
----------------------------------------- */
.white-paper-section {
    background-color: #c32026;
    /* Red background */
    padding: 0 20px;
    overflow: hidden;
}

.white-paper-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url(https://vanaya.co.id/wp-content/uploads/2026/07/leaders-brain.avif)no-repeat center right;
    background-size: contain;
}

.white-paper-content {
    width: 60%;
    color: #fff;
    padding: 60px 0;
}

.white-paper-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    color: #fff;
}

.white-paper-desc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    max-width: 600px;
}

.btn-white-paper {
    display: inline-block;
    background-color: #777;
    /* Grey button */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-white-paper:hover {
    background-color: #fff;
    color: #555;
}

.white-paper-image {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: flex-end;
    /* Push to bottom so image cuts off correctly */
}

.white-paper-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: -10px;
    /* Adjust if needed to stick to bottom edge */
}

@media (max-width: 992px) {
    .white-paper-container {
        flex-direction: column;
        text-align: center;
    }

    .white-paper-content {
        width: 100%;
        padding: 60px 0 20px 0;
    }

    .white-paper-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .white-paper-image {
        width: 80%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .white-paper-title {
        font-size: 28px;
    }

    .white-paper-image {
        width: 100%;
    }
}

/* -----------------------------------------
   How We Help You Section (Single Solution)
----------------------------------------- */
.how-we-help-section {
    background-color: #fff;
    padding: 80px 20px;
}

.how-we-help-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.how-we-help-title {
    font-size: 32px;
    font-weight: 700;
    color: #666;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.how-we-help-desc {
    font-size: 18px;
    color: #333;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.how-we-help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.help-card {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

.help-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.help-card-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 25px;
    overflow: hidden;
}

.help-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.help-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.help-card-tagline {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.help-card-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.help-card-link:hover {
    color: #c32026;
}

@media (max-width: 992px) {
    .how-we-help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .how-we-help-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------------
   How Our Solutions Work / Case Study (Single Solution)
----------------------------------------- */
.how-our-solutions-work-section {
    background-color: #f1f2f2;
    padding: 80px 20px;
}

.case-study-container {
    max-width: 1000px;
    /* Lebar dibatasi agar kartu tidak terlalu lebar */
    margin: 0 auto;
    text-align: center;
}

.case-study-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #666;
    margin: 0 0 50px 0;
    text-transform: uppercase;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.case-study-card {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.case-study-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.case-study-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.case-study-image a:hover img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.case-study-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.case-study-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}

.case-study-title a:hover {
    color: #c32026;
}

.case-study-excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.btn-case-study-more {
    display: inline-block;
    background-color: #777;
    color: #fff;
    padding: 12px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.btn-case-study-more:hover {
    background-color: #555;
}

@media (max-width: 768px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------------
   CTA Section (Single Solution)
----------------------------------------- */
.solution-cta-section {
    position: relative;
    background-color: #c32026;
    background-image: url('https://vanaya.co.id/wp-content/uploads/2026/07/imgi_13_11062b_9cb85fd6274f411581c1e221a4e4401bmv2.jpg');
    /* Jika Anda memiliki background spesifik, bisa ubah url ini */
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.solution-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(195, 32, 38, 0.85);
    /* Red transparent overlay */
    z-index: 1;
}

.solution-cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.solution-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
}

.solution-cta-desc {
    font-size: 18px;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.btn-solution-cta {
    display: inline-block;
    background-color: #fff;
    color: #c32026;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-solution-cta:hover {
    background-color: #f1f1f1;
    color: #a31d36;
}

@media (max-width: 768px) {
    .solution-cta-title {
        font-size: 28px;
    }

    .solution-cta-desc {
        font-size: 16px;
    }
}

/* -----------------------------------------
   Our Expert Section (Single Solution)
----------------------------------------- */
.our-expert-section {
    background-color: #f1f2f2;
    padding: 80px 20px;
}

.our-expert-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.our-expert-title {
    font-size: 32px;
    font-weight: 700;
    color: #c32026;
    /* Warna merah */
    margin: 0 0 50px 0;
    text-transform: uppercase;
}

.our-expert-grid {
    display: grid;
    grid-template-columns: repeat(var(--expert-cols, 4), 1fr);
    gap: 30px;
}

.expert-card-grid {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card-grid:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.expert-card-inner {
    width: 100%;
}

.expert-card-image {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    /* Memberikan aspect ratio kotak atau portrait */
    aspect-ratio: 1 / 1;
}

.expert-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

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

.expert-card-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #111;
}

.expert-card-name a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}

.expert-card-name a:hover {
    color: #c32026;
}

.expert-card-job {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .our-expert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .our-expert-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .solution-single-body {
        flex-direction: column;
        gap: 40px;
    }

    .solution-single-sidebar {
        width: 100%;
        text-align: left;
    }

    .solution-single-main {
        width: 100%;
    }

    .solution-short-desc {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .solution-hero {
        padding: 60px 20px;
        min-height: 300px;
    }

    .solution-title {
        font-size: 32px;
    }

    .solution-tagline {
        font-size: 18px;
    }
}

.coach-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.coach-tab-link {
    background: #666;
    color: #fff;
    padding: 15px 30px;
    cursor: pointer;
    flex: 1;
    text-align: center;
    font-weight: bold;
}

.coach-tab-link.active {
    background: #902d33;
    /* Dark red */
}

.coach-tab-link:not(:last-child) {
    border-right: 1px solid #fff;
}

.coach-tab-pane {
    display: none;
    padding: 20px 0;
}

.coach-tab-pane.active {
    display: block;
}

.coach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.coach-item {
    position: relative;
    overflow: hidden;
}

.coach-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* Square aspect ratio */
}

.coach-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.coach-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(144, 45, 51, 0.8);
    /* Red overlay */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.coach-item:hover .coach-overlay {
    opacity: 1;
}

.coach-name {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: bold;
}

.coach-title {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 992px) {
    .coach-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .coach-tabs {
        flex-direction: column;
    }

    .coach-tab-link {
        border-right: none;
        border-bottom: 1px solid #fff;
    }
}

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

/* -----------------------------------------
   Mega Menu Styles
----------------------------------------- */
@media (min-width: 992px) {

    .main-navigation ul li.mega-menu {
        position: static;
    }

    .main-navigation ul li.mega-menu>ul.sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        background: #fff;
        padding: 40px 60px;
        box-sizing: border-box;
        border-bottom: 8px solid #a31d36;
        display: none;
        grid-template-columns: 1fr 1fr;
        column-gap: 60px;
        row-gap: 40px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    }

    /* Invisible bridge to prevent hover loss */
    .main-navigation ul li.mega-menu>ul.sub-menu::before {
        content: '';
        position: absolute;
        top: -40px;
        left: 0;
        width: 100%;
        height: 40px;
        background: transparent;
    }

    .main-navigation ul li.mega-menu:hover>ul.sub-menu,
    .main-navigation ul li.mega-menu:focus-within>ul.sub-menu {
        display: grid !important;
        align-items: start;
    }

    /* Column titles (Level 2) */
    .main-navigation ul li.mega-menu>ul.sub-menu>li {
        width: 100%;
        padding: 0;
    }

    /* Remove dropdown arrow from Level 2 columns */
    .main-navigation ul li.mega-menu>ul.sub-menu>li>a::after {
        display: none !important;
    }

    .main-navigation ul li.mega-menu>ul.sub-menu>li>a {
        text-transform: uppercase;
        font-size: 14px !important;
        font-weight: 500;
        letter-spacing: 1px;
        color: #333;
        padding: 0 !important;
        margin-bottom: 5px;
        cursor: pointer;
        /* Make headers unclickable by default */
    }

    /* Level 3 items container */
    .main-navigation ul li.mega-menu>ul.sub-menu>li>ul.sub-menu {
        display: block !important;
        position: static;
        box-shadow: none;
        padding: 0;
        background: transparent;
        min-width: auto;
        margin-left: 10px;
    }

    .main-navigation ul li.mega-menu>ul.sub-menu>li>ul.sub-menu>li {
        width: 100%;
    }

    .main-navigation ul li.mega-menu>ul.sub-menu>li>ul.sub-menu>li>a {
        padding: 5px 0 !important;
        font-size: 15px !important;
        color: #555;
        font-weight: 400;
        pointer-events: auto;
        /* Re-enable pointer events for links */
        display: block;
        transition: color 0.3s;
    }

    .main-navigation ul li.mega-menu>ul.sub-menu>li>ul.sub-menu>li>a:hover {
        background: transparent !important;
        color: #a31d36 !important;
    }
}

/* Single Post Styles */
.single-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.single-entry-meta {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
}

.meta-separator {
    margin: 0 8px;
}

.entry-meta-right {
    margin-left: auto;
}

.post-options-icon {
    font-size: 20px;
    cursor: pointer;
}

.single-entry-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #111;
}

.single-post-thumbnail {
    margin-bottom: 40px;
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

article img {
    max-width: 100%;
}

.wp-block-quote {
    overflow-wrap: break-word;
    border-left: 2px solid #c32026;
    padding-left: 15px;
}

.single-entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 50px;
}

.single-entry-content h2,
.single-entry-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.single-entry-footer {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
    margin-bottom: 60px;
}

.categories-tags {
    margin-bottom: 30px;
}

.uppercase-cat a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111;
    text-decoration: underline;
    text-decoration-color: #c32026;
    text-underline-offset: 4px;
}

.share-wrapper {
    display: flex;
    align-items: center;
}

.share-buttons {
    display: flex;
    gap: 20px;
}

.share-btn {
    color: #555;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    color: #c32026;
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

/* Related Posts */
.related-posts-section {
    margin-top: 60px;
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.related-title {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.related-see-all {
    font-size: 14px;
    color: #555;
    text-decoration: none;
}

.related-see-all:hover {
    color: #c32026;
}

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

.related-post-card {
    display: flex;
    flex-direction: column;
}

.related-post-thumbnail-link {
    display: block;
    margin-bottom: 15px;
}

.related-post-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-img-placeholder {
    width: 100%;
    height: 200px;
    background-color: #f5f5f5;
}

.related-post-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.related-post-title a {
    color: #111;
    text-decoration: none;
}

.related-post-title a:hover {
    color: #c32026;
}

@media (max-width: 768px) {
    .single-entry-title {
        font-size: 32px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Archive / Blog List Styles */
.archive-hero {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    margin-bottom: 60px;
}

.archive-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    /* Slight overlay if needed */
}

.archive-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
}

.archive-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

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

.archive-post-card {
    display: flex;
    flex-direction: column;
}

.archive-post-thumb {
    display: block;
    margin-bottom: 20px;
}

.archive-post-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.archive-post-placeholder {
    width: 100%;
    height: 200px;
    background-color: #f5f5f5;
}

.archive-post-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.archive-post-meta .meta-separator {
    margin: 0 6px;
}

.archive-post-cat {
    margin-bottom: 12px;
}

.archive-post-cat a {
    color: #c32026;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.archive-post-cat a:hover {
    text-decoration: underline;
}

.archive-post-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.archive-post-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}

.archive-post-title a:hover {
    color: #c32026;
}

.archive-post-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.archive-pagination {
    margin-top: 60px;
    text-align: center;
}

.archive-pagination .nav-links {
    display: inline-flex;
    gap: 10px;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
    background-color: #c32026;
    color: #fff;
    border-color: #c32026;
}

.archive-pagination .page-numbers.next,
.archive-pagination .page-numbers.prev {
    width: auto;
    padding: 0 15px;
}

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

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

    .archive-title {
        font-size: 36px;
    }
}

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

/* -----------------------------------------
   Relevant Insight Styles (Single Program)
----------------------------------------- */
.relevant-insight-section {
    background-color: #f1f2f2;
    padding: 80px 20px;
}

.solution-relevant-insight,
.relevant-insight-shortcode {
    background-color: #fff;
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.insight-heading {
    font-size: 32px;
    font-weight: 700;
    color: #666;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insight-subheading {
    font-size: 16px;
    color: #333;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

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

.insight-card {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.insight-card.bordered-card {
    border: 1px solid #ccc;
    box-shadow: none;
}

.insight-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.insight-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

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

.insight-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
}

.insight-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.insight-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.insight-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}

.insight-title a:hover {
    color: #c32026;
}

.insight-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.insight-footer {
    padding: 0 20px 25px 20px;
}

.insight-read-more {
    display: block;
    width: 100%;
    background-color: #777;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 0;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.insight-read-more:hover {
    background-color: #555;
}

@media (max-width: 992px) {
    .insight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.program-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #c32026;
    /* Fallback if no image */
    padding: 80px 20px;
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.program-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(195 32 38 / 25%);
    /* Red transparent overlay */
    z-index: 1;
}

.program-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.program-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.program-tagline {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.program-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.program-single-body {
    display: flex;
    gap: 50px;
}

.program-single-main {
    flex: 1;
}

.program-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.program-content p {
    margin-bottom: 20px;
}

.program-content ol,
.program-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.program-content li {
    margin-bottom: 10px;
}

.program-single-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.program-experts-widget {
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    margin-bottom: 40px;
}

.experts-header {
    background: #6e6e6e;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 15px;
    letter-spacing: 1px;
}

.experts-list {
    padding: 20px;
}

.expert-card {
    margin-bottom: 30px;
}

.expert-card:last-child {
    margin-bottom: 0;
}

.expert-image {
    margin-bottom: 15px;
}

.expert-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.expert-image a {
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

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

.expert-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.expert-name a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s ease;
}

.expert-name a:hover {
    color: #c32026;
}

.expert-job {
    font-size: 14px;
    color: #555;
    margin: 0 0 10px 0;
}

.expert-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

.expert-desc p {
    margin: 0 0 10px 0;
}

@media (max-width: 992px) {
    .program-single-body {
        flex-direction: column;
    }

    .program-single-sidebar {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .program-title {
        font-size: 32px;
    }

    .program-tagline {
        font-size: 16px;
    }
}

.coach-single-wrapper {
    background: #f9f9f9;
    padding: 60px 20px !important;
}

.coach-single-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins';
}

a.btn-coach {
    width: 100%;
    display: block;
    background: #6E6E6E;
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 20px;
    max-width: 1180px;
    margin: 20px auto;
    border-radius: 8px;
    font-family: 'Poppins';
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

a.btn-coach:hover {
    background: #BA1822;
}

.coach-single-header {
    margin-bottom: 40px;
}

.expert-profile-label {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #666;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.coach-single-name {
    font-size: 42px;
    color: #6a6a6a;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.coach-single-title {
    font-size: 22px;
    color: #888;
    margin: 0;
    font-weight: 500;
}

.coach-single-body {
    display: flex;
    gap: 50px;
}

.coach-single-sidebar {
    width: 35%;
    flex-shrink: 0;
}

.coach-single-main {
    width: 65%;
}

.coach-single-image {
    margin-bottom: 40px;
}

.coach-single-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #111;
}

.coach-specialization ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coach-specialization ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 15px;
}

.coach-specialization ul li a {
    color: #c32026;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.coach-specialization ul li a:hover {
    text-decoration: underline;
    color: #a31d36;
}

.coach-specialization ul li:last-child {
    border-bottom: none;
}

.coach-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.coach-content p {
    margin-bottom: 20px;
}

.coach-content h3,
.coach-content h4 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .coach-single-body {
        flex-direction: column;
    }

    .coach-single-sidebar,
    .coach-single-main {
        width: 100%;
    }

    .coach-single-container {
        padding: 30px 20px;
    }

    .coach-single-name {
        font-size: 32px;
    }

    .coach-single-title {
        font-size: 18px;
    }
}

/* -----------------------------------------
   Post List Shortcode Styles
----------------------------------------- */
.post-list-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.post-list-item {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.post-list-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.post-list-image {
    width: 30%;
    flex-shrink: 0;
}

.post-list-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.post-list-content {
    width: 70%;
    padding: 20px 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-list-title {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.post-list-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}

.post-list-title a:hover {
    color: #c32026;
}

.post-list-excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.post-list-read-more {
    color: #c32026;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.post-list-read-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .post-list-item {
        flex-direction: column;
    }

    .post-list-image,
    .post-list-content {
        width: 100%;
    }

    .post-list-content {
        padding: 20px;
    }

    .post-list-image img {
        height: 200px;
    }
}

/* -----------------------------------------
   Post Overlay List Shortcode Styles
----------------------------------------- */
.post-overlay-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-overlay-item {
    position: relative;
    display: block;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

.post-overlay-item:hover {
    transform: translateY(-3px);
}

.post-overlay-darken {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.post-overlay-item:hover .post-overlay-darken {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.post-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    box-sizing: border-box;
}

.post-overlay-meta {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-overlay-dot {
    font-size: 16px;
}

.post-overlay-category {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #e63946;
    /* Red color matching design */
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.post-overlay-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .post-overlay-item {
        height: 200px;
    }

    .post-overlay-content {
        padding: 20px;
    }

    .post-overlay-title {
        font-size: 18px;
    }
}