/**
 * Single Staff Page Styles - v2.0
 * Force Cache Clear - Complete Rewrite
 */

/* ===================================
   STAFF SINGLE HEADER
   =================================== */

.staff-single-header {
    background: var(--kraft-gradient);
    color: var(--kraft-white) !important;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.staff-single-header * {
    color: var(--kraft-white) !important;
}

.staff-single-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.staff-header-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.staff-photo-section {
    position: relative;
}

.staff-photo-section .staff-image,
.staff-photo-section .staff-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.staff-photo-section .staff-placeholder {
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.7);
}

.staff-social-quick {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    gap: 10px;
    background: var(--kraft-white);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-quick-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--gray-600);
}

.social-quick-link.linkedin {
    background: #0077b5;
    color: var(--kraft-white);
}

.social-quick-link.email {
    background: var(--kraft-green);
    color: var(--kraft-white);
}


.social-quick-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.staff-basic-info {
    flex: 1;
}

.staff-title-section {
    margin-bottom: 40px;
    text-align: left;
}

.staff-name {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 15px;
    line-height: 1.2;
    color: var(--kraft-white) !important;
    text-align: left;
}

.staff-position {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 20px;
    opacity: 0.9;
    color: var(--kraft-white) !important;
    text-align: left;
}

.staff-departments {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.staff-department {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--kraft-white) !important;
}

.staff-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.staff-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--kraft-white) !important;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--kraft-white) !important;
}

.staff-cta {
    display: flex;
    gap: 20px;
}

.staff-cta .btn-primary,
.staff-cta .btn-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.staff-cta .btn-primary {
    background: var(--kraft-white);
    color: var(--kraft-green) !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.staff-cta .btn-primary .dashicons {
    color: var(--kraft-green) !important;
}

.staff-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    color: var(--kraft-green) !important;
}

.staff-cta .btn-secondary {
    background: transparent;
    color: var(--kraft-white) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.staff-cta .btn-secondary .dashicons {
    color: var(--kraft-white) !important;
}

.staff-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--kraft-white) !important;
}

/* ===================================
   STAFF SINGLE CONTENT - FLEXBOX LAYOUT
   =================================== */

.staff-single-content {
    padding: 80px 0;
    background: var(--kraft-white);
}

.staff-single-content .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   GLOBAL STICKY OVERRIDE
   =================================== */

/* FORCE NO STICKY ANYWHERE ON STAFF PAGE */
.staff-single-content *,
.staff-single-content *::before,
.staff-single-content *::after {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: auto !important;
}

/* ALLOW ONLY RELATIVE FOR PSEUDO ELEMENTS */
.staff-contact-card::before,
.staff-biography::before,
.social-card-header::before {
    position: absolute !important;
}

/* ===================================
   SINGLE ABOUT SECTION LAYOUT
   =================================== */

.staff-main-content {
    display: block !important;
    width: 100% !important;
    position: relative !important;
}

/* ABOUT SECTION STYLING */
.staff-about-section {
    display: block !important;
    width: 100% !important;
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: auto !important;
    /* NATURAL SCROLL */
}

/* SECTION HEADERS */
.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--kraft-black) !important;
    margin: 0 0 15px;
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--kraft-gradient);
    border-radius: 2px;
}

/* ===================================
   NEW BIOGRAPHY SECTION DESIGN
   =================================== */

.staff-biography {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.08);
    width: 100%;
}

.staff-biography::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.biography-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.biography-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--kraft-black) !important;
    margin: 0 0 10px;
    background: var(--kraft-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.biography-subtitle {
    font-size: 16px;
    color: var(--kraft-green) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.biography-content {
    position: relative;
    z-index: 2;
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-700) !important;
    width: 100%;
}

.biography-content p {
    margin-bottom: 20px;
    color: var(--gray-700) !important;
    position: relative;
    padding-left: 20px;
}

.biography-content p::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--kraft-green);
    font-weight: bold;
    font-size: 18px;
}

.biography-content * {
    color: var(--gray-700) !important;
}

/* SKILLS SECTION */
.staff-skills-section {
    width: 100%;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.skill-item {
    background: var(--kraft-white);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    width: 100%;
}

.skill-item:hover {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.1);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.skill-name {
    font-weight: 600;
    color: var(--kraft-black) !important;
    font-size: 16px;
}

.skill-percentage {
    font-weight: 700;
    color: var(--kraft-green) !important;
    font-size: 14px;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--kraft-gradient);
    border-radius: 4px;
    transition: width 1s ease;
    animation: skillProgress 2s ease forwards;
}

/* EXPERIENCE TIMELINE */
.staff-experience-section {
    width: 100%;
}

.experience-timeline {
    position: relative;
    padding-left: 30px;
    width: 100%;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--kraft-gradient);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -38px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--kraft-white);
    border: 4px solid var(--kraft-green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--kraft-white);
}

.timeline-content {
    background: var(--kraft-white);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--kraft-black) !important;
    margin: 0 0 8px;
}

.timeline-period {
    color: var(--kraft-green) !important;
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-content p {
    color: var(--gray-700) !important;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   NEW CONTACT CARDS DESIGN
   =================================== */

.staff-contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 25px 80px rgba(16, 185, 129, 0.12);
    width: 100%;
    margin: 0 !important;
    overflow: hidden;
    border: 2px solid rgba(16, 185, 129, 0.1);
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.staff-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--kraft-gradient);
}

.contact-card-header {
    background: linear-gradient(135deg, var(--kraft-green) 0%, #0d9668 100%);
    color: white;
    padding: 25px 30px 20px;
    margin: 0;
    border-bottom: none;
}

.contact-card-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--kraft-white) !important;
    margin: 0 0 8px;
}

.contact-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--kraft-white) !important;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-methods {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.contact-method:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kraft-white) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon .dashicons {
    color: var(--kraft-white) !important;
    font-size: 24px;
}

.contact-icon.email {
    background: linear-gradient(135deg, #10b981 0%, #0d9668 100%);
}

.contact-icon.phone {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 13px;
    color: var(--kraft-green) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-value {
    font-weight: 700;
    color: var(--kraft-black) !important;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--kraft-green) !important;
}

.contact-actions {
    padding: 0 30px 30px;
}

.contact-actions .btn-primary {
    width: 100%;
    justify-content: center;
    background: var(--kraft-gradient);
    border: none;
    padding: 18px 30px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.contact-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

/* QUICK INFO REDESIGN */
.staff-quick-info {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.1);
    width: 100%;
    margin: 0 !important;
    overflow: hidden;
    border: 2px solid rgba(16, 185, 129, 0.1);
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.quick-info-header {
    background: rgba(16, 185, 129, 0.1);
    padding: 25px 30px;
    margin: 0;
    border-bottom: none;
}

.quick-info-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--kraft-black) !important;
    margin: 0;
}

.quick-info-items {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.quick-info-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.15);
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--kraft-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kraft-white) !important;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.info-icon .dashicons {
    color: var(--kraft-white) !important;
    font-size: 20px;
}

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 12px;
    color: var(--kraft-green) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 700;
}

.info-value {
    font-weight: 700;
    color: var(--kraft-black) !important;
    font-size: 15px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kraft-white) !important;
}

.contact-icon .dashicons {
    color: var(--kraft-white) !important;
}

.contact-icon.email {
    background: var(--kraft-gradient);
}

.contact-icon.phone {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: var(--gray-500) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 600;
    color: var(--kraft-black) !important;
    text-decoration: none;
    font-size: 14px;
}

.contact-value:hover {
    color: var(--kraft-green) !important;
}

.contact-actions .btn-primary {
    width: 100%;
    justify-content: center;
}

/* QUICK INFO */
.quick-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kraft-green) !important;
}

.info-icon .dashicons {
    color: var(--kraft-green) !important;
}

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 12px;
    color: var(--gray-500) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-value {
    font-weight: 600;
    color: var(--kraft-black) !important;
    font-size: 14px;
}

/* SOCIAL MEDIA REDESIGN */
.staff-social-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.1);
    width: 100%;
    margin: 0 !important;
    overflow: hidden;
    border: 2px solid rgba(16, 185, 129, 0.1);
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.social-card-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    padding: 25px 30px;
    margin: 0;
    border-bottom: none;
    position: relative;
}

.social-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-radius: 50%;
    transform: translate(20px, -20px);
}

.social-card-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--kraft-black) !important;
    margin: 0 0 8px;
    position: relative;
    z-index: 2;
}

.social-badge {
    background: var(--kraft-gradient);
    color: var(--kraft-white) !important;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.social-links-grid {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.social-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(34, 197, 94, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link-item:hover::before {
    opacity: 1;
}

.social-link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kraft-white) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.social-icon .dashicons {
    color: var(--kraft-white) !important;
    font-size: 22px;
}

.social-link-item.linkedin .social-icon {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.social-link-item.twitter .social-icon {
    background: linear-gradient(135deg, #1da1f2 0%, #0d7bb8 100%);
}

.social-link-item.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-item.facebook .social-icon {
    background: linear-gradient(135deg, #1877f2 0%, #0d5bb8 100%);
}

.social-link-item.website .social-icon {
    background: var(--kraft-gradient);
}

.social-info {
    text-align: center;
    position: relative;
    z-index: 2;
}

.social-label {
    display: block;
    font-weight: 700;
    color: var(--kraft-black) !important;
    font-size: 13px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-handle {
    font-size: 11px;
    color: var(--gray-600) !important;
    font-weight: 600;
}

/* SCROLLBAR */
.staff-single-sidebar::-webkit-scrollbar {
    width: 6px;
}

.staff-single-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.staff-single-sidebar::-webkit-scrollbar-thumb {
    background: var(--kraft-green);
    border-radius: 3px;
}

.staff-single-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--kraft-green-dark);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .staff-header-content {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    
    .staff-photo-section .staff-image,
    .staff-photo-section .staff-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .staff-name {
        font-size: 40px;
        text-align: left;
    }
    
    .staff-position {
        font-size: 20px;
        text-align: left;
    }
    
    .staff-stats {
        gap: 30px;
    }
    
    /* Tablet adjustments */
    .staff-about-section {
        width: 100%;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .staff-single-header {
        padding: 100px 0 60px;
    }
    
    .staff-header-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .staff-photo-section {
        display: flex;
        justify-content: center;
    }
    
    .staff-photo-section .staff-image,
    .staff-photo-section .staff-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .staff-social-quick {
        position: static;
        justify-content: center;
        margin-top: 20px;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .staff-name {
        font-size: 32px;
        text-align: left;
    }
    
    .staff-position {
        font-size: 18px;
        text-align: left;
    }
    
    .staff-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .staff-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .staff-cta .btn-primary,
    .staff-cta .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .staff-single-content {
        padding: 60px 0;
    }
    
    /* Mobile adjustments */
    .staff-about-section {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .experience-timeline {
        padding-left: 20px;
    }
    
    .timeline-marker {
        left: -28px;
    }
    
    /* NEW DESIGN RESPONSIVE */
    .staff-biography {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .biography-header h2 {
        font-size: 24px;
    }
    
    .biography-content {
        font-size: 16px;
    }
    
    .biography-content p {
        padding-left: 15px;
    }
    
    .biography-content p::before {
        font-size: 16px;
    }
    
    .contact-methods {
        padding: 25px 20px;
        gap: 20px;
    }
    
    .contact-method {
        padding: 18px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon .dashicons {
        font-size: 20px;
    }
    
    .contact-actions {
        padding: 0 20px 25px;
    }
    
    .quick-info-items {
        padding: 25px 20px;
        gap: 18px;
    }
    
    .quick-info-item {
        padding: 16px;
        gap: 15px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-icon .dashicons {
        font-size: 18px;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
        padding: 25px 20px;
        gap: 18px;
    }
    
    .social-link-item {
        flex-direction: row;
        padding: 18px;
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon .dashicons {
        font-size: 20px;
    }
    
    .social-info {
        text-align: left;
    }
}

/* ===================================
   RELATED STAFF SECTION
   =================================== */

.related-staff-section {
    background: var(--kraft-white);
    padding: 80px 0;
    position: relative;
}

.related-staff-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.related-staff-section .section-subtitle {
    display: inline-block;
    background: var(--kraft-gradient);
    color: var(--kraft-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.related-staff-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--kraft-black);
    margin: 0 0 20px;
    line-height: 1.2;
}

.related-staff-section .section-description {
    font-size: 18px;
    color: var(--gray-600);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.related-staff-section .staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.related-staff-section .staff-member {
    background: var(--kraft-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.related-staff-section .staff-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.2);
}

.related-staff-section .staff-member-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.related-staff-section .staff-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    border: 4px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.related-staff-section .staff-member:hover .staff-photo {
    border-color: rgba(16, 185, 129, 0.3);
    transform: scale(1.05);
}

.related-staff-section .staff-image,
.related-staff-section .staff-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.related-staff-section .staff-placeholder {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--kraft-green);
}

.related-staff-section .staff-info {
    width: 100%;
}

.related-staff-section .staff-excerpt {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0 0 15px;
    text-align: center;
    padding: 0 10px;
}

.related-staff-section .staff-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--kraft-black);
    margin: 0 0 8px;
    line-height: 1.3;
}

.related-staff-section .staff-name a {
    color: var(--kraft-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-staff-section .staff-name a:hover {
    color: var(--kraft-green);
}

.related-staff-section .staff-position {
    font-size: 16px;
    color: var(--kraft-green);
    font-weight: 600;
    margin: 0 0 15px;
}

.related-staff-section .staff-departments {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.related-staff-section .staff-department {
    background: var(--kraft-green);
    color: var(--kraft-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--kraft-green);
    transition: all 0.3s ease;
}

.related-staff-section .staff-department:hover {
    background: var(--kraft-white);
    color: var(--kraft-green);
}

.related-staff-section .staff-experience {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.related-staff-section .staff-experience .dashicons {
    color: var(--kraft-green);
    font-size: 16px;
}

.related-staff-section .staff-skills {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.related-staff-section .skill-tag {
    background: rgba(16, 185, 129, 0.1);
    color: var(--kraft-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.related-staff-section .skill-tag:hover {
    background: var(--kraft-green);
    color: var(--kraft-white);
    border-color: var(--kraft-green);
}

.related-staff-section .staff-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.related-staff-section .social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--kraft-white);
}

.related-staff-section .social-link .dashicons {
    font-size: 16px;
    color: var(--kraft-white);
}

.related-staff-section .social-link.linkedin {
    background: #0077b5;
}

.related-staff-section .social-link.twitter {
    background: #1da1f2;
}

.related-staff-section .social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.related-staff-section .social-link.facebook {
    background: #1877f2;
}

.related-staff-section .social-link.website {
    background: var(--kraft-gradient);
}

.related-staff-section .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.related-staff-section .staff-actions {
    width: 100%;
    display: flex;
    gap: 12px;
}

.related-staff-section .btn-primary,
.related-staff-section .btn-secondary {
    flex: 1;
    background: var(--kraft-gradient);
    color: var(--kraft-white);
    border: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-staff-section .btn-secondary {
    background: transparent;
    color: var(--kraft-green);
    border: 2px solid var(--kraft-green);
}

.related-staff-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    color: var(--kraft-white);
}

.related-staff-section .btn-secondary:hover {
    background: var(--kraft-green);
    color: var(--kraft-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.related-staff-section .btn-primary svg {
    transition: transform 0.3s ease;
}

.related-staff-section .btn-primary:hover svg {
    transform: translateX(3px);
}

.related-staff-section .staff-view-all {
    text-align: center;
}

.related-staff-section .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--kraft-green);
    border: 2px solid var(--kraft-green);
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-staff-section .btn-view-all:hover {
    background: var(--kraft-green);
    color: var(--kraft-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.related-staff-section .btn-view-all svg {
    transition: transform 0.3s ease;
}

.related-staff-section .btn-view-all:hover svg {
    transform: translateX(5px);
}

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes skillProgress {
    from { width: 0%; }
    to { width: var(--target-width, 0%); }
}

.staff-contact-card,
.staff-quick-info,
.staff-social-card {
    animation: fadeInUp 0.6s ease forwards;
}

.staff-contact-card { animation-delay: 0.1s; }
.staff-quick-info { animation-delay: 0.2s; }
.staff-social-card { animation-delay: 0.3s; }

.skill-item {
    animation: fadeInUp 0.6s ease forwards;
}

.skill-item:nth-child(1) { animation-delay: 0.1s; }
.skill-item:nth-child(2) { animation-delay: 0.2s; }
.skill-item:nth-child(3) { animation-delay: 0.3s; }
.skill-item:nth-child(4) { animation-delay: 0.4s; }
.skill-item:nth-child(5) { animation-delay: 0.5s; }

.timeline-item {
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }