/* Leadership Page - Light Theme Clean Design */

.leadership-main {
    background: var(--cream);
    min-height: 100vh;
    color: var(--dark-gray);
    width: 100%;
    overflow-x: visible;
}

/* Leadership Hero Section */
.leadership-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatMinimal 12s ease-in-out infinite;
    background: var(--light-red);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -15%;
    left: -15%;
    animation-delay: 4s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 60%;
    animation-delay: 8s;
}

@keyframes floatMinimal {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    50% { 
        transform: translate(-20px, -30px) scale(1.05);
    }
}

.leadership-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    margin-bottom: 3rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-gray);
    box-shadow: 0 10px 30px rgba(27, 23, 23, 0.08);
    border: 1px solid rgba(27, 23, 23, 0.06);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-title {
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 1rem;
}

.gradient-text-hero {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-gray) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 6s ease-in-out infinite;
}

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

.title-sub {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--dark-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--dark-gray);
    opacity: 0.7;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--dark-gray);
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--dark-gray);
    margin: 0 auto;
    opacity: 0.4;
    animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
    0%, 100% { 
        transform: scaleY(1);
        opacity: 0.4;
    }
    50% { 
        transform: scaleY(1.5);
        opacity: 0.8;
    }
}

/* Leadership Profiles Section */
.leadership-profiles {
    padding: 8rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-badge {
    display: inline-block;
    background: var(--dark-red);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--dark-gray);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Profiles Grid */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

/* Profile Cards */
.profile-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(27, 23, 23, 0.08);
    border: 1px solid rgba(27, 23, 23, 0.06);
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-red), var(--dark-gray));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-card:hover::before {
    opacity: 1;
}

.profile-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(27, 23, 23, 0.15);
}

.profile-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Profile Image */
.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    position: relative;
    border: 4px solid var(--cream);
}

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

.profile-card:hover .profile-image img {
    transform: scale(1.1);
}

/* Profile Content */
.profile-content {
    text-align: center;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.profile-title {
    font-size: 1rem;
    color: var(--dark-red);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.profile-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-cta:hover {
    gap: 1rem;
}

.profile-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.profile-cta:hover i {
    transform: translateX(3px);
}

/* Leadership CTA */
.leadership-cta {
    text-align: center;
    margin-top: 4rem;
}

.lineup-button {
    background: var(--dark-red);
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 35px rgba(99, 0, 0, 0.2);
}

.lineup-button:hover {
    background: var(--dark-gray);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(27, 23, 23, 0.3);
}

/* Speakers Showcase Section */
.speakers-showcase {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.speakers-container {
    position: relative;
    height: 700px;
    margin: 6rem auto;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    overflow: visible;
}

.speaker-card {
    position: absolute;
    width: 500px;
    height: 650px;
    background: var(--white);
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    left: 50%;
    top: 50%;
    margin-left: -250px;
    margin-top: -325px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    z-index: 2;
    max-width: 500px;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--card-color, var(--dark-red)) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.card-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, var(--white) 100%);
}

.speaker-card.active {
    transform: translateX(0%) scale(1);
    z-index: 10;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    border-color: var(--card-color, var(--dark-red));
}

.speaker-card.active .card-background {
    height: 320px;
}

.speaker-card.active .speaker-image {
    width: 200px;
    height: 200px;
    margin-top: 3rem;
    border-width: 8px;
}

.speaker-card.active .speaker-name {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.speaker-card.active .speaker-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.speaker-card.active .speaker-talk {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.speaker-card.active .speaker-bio {
    font-size: 1.1rem;
    line-height: 1.7;
}

.speaker-card.prev,
.speaker-card.next {
    transform: translateX(-60%) scale(0.8);
    z-index: 5;
    opacity: 0.7;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.speaker-card.next {
    transform: translateX(60%) scale(0.8);
}

.speaker-card.far-left,
.speaker-card.far-right {
    transform: translateX(-100%) scale(0.6);
    z-index: 2;
    opacity: 0.4;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.speaker-card.far-right {
    transform: translateX(100%) scale(0.6);
}

.speaker-image {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 2.5rem auto 0;
    overflow: hidden;
    border: 6px solid var(--white);
    z-index: 2;
    transition: all 0.8s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-image img {
    transform: scale(1.1);
}

.speaker-info {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.8s ease;
    color: var(--dark-gray) !important;
    background: transparent;
}

.speaker-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    line-height: 1.2;
    transition: all 0.8s ease;
}

.speaker-title {
    font-size: 1.1rem;
    color: var(--card-color, var(--dark-red));
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.8s ease;
}

.speaker-talk {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.2rem;
    font-style: italic;
    line-height: 1.3;
    transition: all 0.8s ease;
}

.speaker-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    opacity: 0.9;
    transition: all 0.8s ease;
}

/* Enhanced Navigation */
.speakers-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 0 2rem;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border: 3px solid var(--dark-red);
    background: var(--white);
    border-radius: 50%;
    color: var(--dark-red);
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(99, 0, 0, 0.2);
}

.nav-btn:hover {
    background: var(--dark-red);
    color: var(--white);
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(99, 0, 0, 0.4);
}

.nav-btn:active {
    transform: scale(1.05);
}

.progress-bar {
    width: 300px;
    height: 6px;
    background: rgba(99, 0, 0, 0.2);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--dark-red) 0%, var(--dark-gray) 100%);
    border-radius: 3px;
    transition: width 0.8s ease;
    width: 16.66%;
    box-shadow: 0 2px 8px rgba(99, 0, 0, 0.3);
}

/* Enhanced Progress Dots */
.progress-dots {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0 2rem;
}

.progress-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(99, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.progress-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-dot.active {
    background: var(--dark-red);
    transform: scale(1.4);
    box-shadow: 0 6px 20px rgba(99, 0, 0, 0.4);
}

.progress-dot.active::before {
    opacity: 1;
}

.progress-dot:hover {
    background: var(--dark-red);
    transform: scale(1.3);
}

/* Enhanced Interaction Hint */
.interaction-hint {
    text-align: center;
    margin-top: 3rem;
    opacity: 0.7;
    animation: pulseHint 2s ease-in-out infinite;
}

@keyframes pulseHint {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.interaction-hint p {
    font-size: 1rem;
    color: var(--dark-gray);
    font-style: italic;
    font-weight: 500;
}

/* Operations Deck Section */
.operations-deck {
    padding: 8rem 0;
    background: var(--dark-gray);
    color: var(--white);
}

.operations-deck .section-badge {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
}

.operations-deck .section-title {
    color: var(--white);
}

.operations-deck .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.subsection-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin: 4rem 0 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Core Leadership and Departments use same container style */
.core-speakers-container,
.dept-speakers-container {
    position: relative;
    height: 600px;
    margin: 4rem 0;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Team structure specific styles */
.speaker-card.core-card, .speaker-card.dept-card {
    position: absolute;
    width: 400px;
    height: 500px;
    background: linear-gradient(145deg, var(--white) 0%, var(--light-cream) 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(27, 23, 23, 0.15);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    left: 50%;
    top: 50%;
    margin-left: -200px;
    margin-top: -250px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--light-red);
    color: var(--dark-gray);
}

.speaker-card.core-card.active,
.speaker-card.dept-card.active {
    border-color: var(--card-color);
    box-shadow: 0 40px 100px rgba(27, 23, 23, 0.25);
}

.placeholder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 2rem auto 0;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 10px 30px rgba(27, 23, 23, 0.1);
}

.placeholder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.placeholder-avatar:hover img {
    transform: scale(1.1);
}

/* Fallback for when no image is available */
.placeholder-avatar.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--card-color), rgba(255, 255, 255, 0.1));
}

/* Mobile responsive for operations */
@media (max-width: 768px) {
    .core-speakers-container, .dept-speakers-container {
        height: 500px;
    }
    
    .speaker-card.core-card, .speaker-card.dept-card {
        width: 280px;
        height: 420px;
        margin-left: -140px;
        margin-top: -210px;
    }
    
    .placeholder-avatar {
        width: 100px;
        height: 100px;
        margin-top: 1.5rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .leadership-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .position-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 300px;
    }
    
    .department-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .leadership-row::after {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .speakers-container {
        height: 600px;
    }
    
    .speaker-card {
        width: 420px;
        height: 550px;
        margin-left: -210px;
        margin-top: -275px;
        max-width: 420px;
    }
    
    .speaker-card.active .speaker-image {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .speakers-showcase {
        padding: 4rem 0;
        overflow-x: hidden;
    }
    
    .speakers-container {
        height: 600px;
        margin: 3rem 0;
        overflow: hidden;
        width: 100%;
        padding: 0 1rem;
    }
    
    /* Mobile Card Design - Properly scaled */
    .speaker-card {
        width: 320px;
        height: 500px;
        margin-left: -160px;
        margin-top: -250px;
        border-radius: 25px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        max-width: 320px;
    }
    
    /* Active Card - Takes Almost Full Width */
    .speaker-card.active {
        width: 340px;
        height: 520px;
        margin-left: -170px;
        margin-top: -260px;
        transform: translateX(0%) scale(1) !important;
        z-index: 10;
        opacity: 1;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        max-width: 340px;
    }
    
    .section-header {
        padding: 0 1rem;
    }
    
    .speakers-navigation {
        gap: 1rem;
        margin-top: 3rem;
        padding: 0 1rem;
    }
    
    .progress-dots {
        gap: 0.8rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .speakers-container {
        height: 550px;
        margin: 2rem auto;
        padding: 0 0.5rem;
    }
    
    /* Even More Compact Design */
    .speaker-card {
        width: 300px;
        height: 450px;
        margin-left: -150px;
        margin-top: -225px;
        max-width: 300px;
    }
    
    .speaker-card.active {
        width: 310px;
        height: 470px;
        margin-left: -155px;
        margin-top: -235px;
        max-width: 310px;
    }
    
    .section-header {
        padding: 0 0.5rem;
    }
    
    .speakers-navigation {
        padding: 0 0.5rem;
    }
    
    .progress-dots {
        padding: 0 0.5rem;
    }
}

@media (max-width: 375px) {
    .speaker-card {
        width: 280px;
        height: 420px;
        margin-left: -140px;
        margin-top: -210px;
        max-width: 280px;
    }
    
    .speaker-card.active {
        width: 290px;
        height: 440px;
        margin-left: -145px;
        margin-top: -220px;
        max-width: 290px;
    }
}

/* Ensure proper scaling for all viewport sizes */
@media (min-width: 1400px) {
    .speakers-container {
        max-width: 1400px;
    }
}

@media (min-width: 1600px) {
    .speakers-container {
        max-width: 1600px;
    }
    
    .container {
        max-width: 1600px;
        padding: 0 3rem;
    }
}

/* Noir Black Theme Alternative */
.speakers-showcase.noir-theme {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
}

.noir-theme .section-badge {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
}

.noir-theme .section-title {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.noir-theme .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.noir-theme .speaker-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333333;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.noir-theme .card-background {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(0, 0, 0, 0.3) 100%);
}

.noir-theme .card-background::after {
    background: linear-gradient(180deg, transparent 0%, #1a1a1a 100%);
}

.noir-theme .speaker-card.active {
    border-color: #ffffff;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.noir-theme .speaker-image {
    border-color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.noir-theme .speaker-name {
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.noir-theme .speaker-title {
    color: #cccccc;
}

.noir-theme .speaker-talk {
    color: var(--white);
}

.noir-theme .speaker-bio {
    color: rgba(255, 255, 255, 0.8);
}

.noir-theme .nav-btn {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.noir-theme .nav-btn:hover {
    background: var(--white);
    color: #000000;
}

.noir-theme .progress-bar {
    background: rgba(255, 255, 255, 0.2);
}

.noir-theme .progress-fill {
    background: linear-gradient(90deg, #ffffff 0%, #cccccc 100%);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.noir-theme .progress-dot {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.noir-theme .progress-dot.active {
    background: var(--white);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.noir-theme .progress-dot:hover {
    background: var(--white);
}

.noir-theme .interaction-hint p {
    color: rgba(255, 255, 255, 0.7);
}

/* Core Leadership Section */
.core-leadership {
    background: #111111;
}

.core-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-top: 4rem;
}

.core-member .member-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.core-member .member-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.member-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.member-card:hover .member-overlay {
    opacity: 1;
}

.member-card:hover .member-image img {
    transform: scale(1.1);
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.member-position {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.member-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.core-executives {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.executive-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.executive-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.exec-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exec-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.executive-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.executive-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Departments Section */
.departments-section {
    background: #0a0a0a;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.department-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.department-card:hover::before {
    opacity: 1;
}

.department-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.05);
}

.dept-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dept-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dept-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.dept-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.dept-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dept-teams {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.team-item i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    width: 20px;
    text-align: center;
}

.team-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Associates Section Styles - Static Cards (Same as Department Cards) */
.associates-section {
    background: #000000;
}

.associates-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Additional inner padding */
}

.associate-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.associate-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.associate-card .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.associate-card:hover .card-glow {
    opacity: 1;
}

.associate-card .card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.associate-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
}

.associate-card:hover .associate-image {
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.associate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.associate-card:hover .associate-image img {
    transform: scale(1.1);
}

.associate-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.associate-card:hover .image-overlay {
    opacity: 1;
}

.associate-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.associate-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.associate-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.associate-card .card-accent-line {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    margin: 0 auto;
    transition: all 0.5s ease;
}

.associate-card:hover .card-accent-line {
    width: 100px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive for Associates */
@media (max-width: 1024px) {
    .associates-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .associates-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .associate-card {
        padding: 2rem;
        min-height: 280px;
    }
    
    .associate-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    
    .associate-name {
        font-size: 1.2rem;
    }
    
    .associate-title {
        font-size: 0.9rem;
    }
}

/* Enhanced Mobile Responsive for Department and Associates Sections */
@media (max-width: 1200px) {
    .department-cards.brand-media {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        gap: 2rem;
    }
    
    .associates-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
    
    .department-section {
        padding: 0 1.5rem;
    }
    
    .associates-section {
        padding: 8rem 1.5rem;
    }
}

@media (max-width: 1024px) {
    .directors-section,
    .associates-section {
        padding: 5rem 0;
    }
    
    .directors-section .container,
    .associates-section .container {
        padding: 0 2rem;
    }
    
    .department-section {
        padding: 0 1rem;
        margin-bottom: 4rem;
    }
    
    .department-cards,
    .department-cards.brand-media {
        gap: 1.5rem;
        padding: 0;
    }
    
    .associates-cards {
        gap: 1.5rem;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .directors-section,
    .associates-section {
        padding: 4rem 0;
    }
    
    .directors-section .container,
    .associates-section .container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0;
    }
    
    .department-section {
        padding: 0;
        margin-bottom: 3rem;
    }
    
    .department-cards,
    .department-cards.brand-media,
    .associates-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 0.5rem; /* Maintain side margins */
    }
    
    .director-card,
    .associate-card {
        margin: 0 auto;
        max-width: 400px; /* Perfect card width */
        width: 100%;
    }
}

@media (max-width: 480px) {
    .directors-section .container,
    .associates-section .container {
        padding: 0 0.5rem;
    }
    
    .department-cards,
    .department-cards.brand-media,
    .associates-cards {
        gap: 1rem;
        padding: 0 0.25rem; /* Maintain minimal side margins */
    }
    
    .director-card,
    .associate-card {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 375px) {
    .directors-section .container,
    .associates-section .container {
        padding: 0 0.25rem;
    }
    
    .department-cards,
    .department-cards.brand-media,
    .associates-cards {
        padding: 0;
    }
}

/* Perfect Container Scaling */
.directors-section,
.associates-section {
    width: 100%;
    max-width: none;
    overflow-x: visible;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Landscape Mobile Perfect Margins */
@media (max-width: 812px) and (orientation: landscape) {
    .department-cards.brand-media {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .associates-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .director-card,
    .associate-card {
        min-height: 200px;
        padding: 1rem;
    }

    .director-image,
    .associate-image {
        width: 60px;
        height: 60px;
    }

    .speakers-container {
        height: 300px !important;
    }

    .speaker-card {
        height: 280px !important;
        margin-top: -140px !important;
    }
}

/* MOBILE-FIRST RESPONSIVE OVERHAUL */

/* Base Mobile Styles (Default) - 320px+ */
.directors-section,
.associates-section {
    padding: 3rem 0;
    width: 100%;
    overflow-x: hidden;
}

.directors-section .container,
.associates-section .container {
    max-width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.section-title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
}

.section-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    opacity: 0.8 !important;
}

/* Department Sections - Mobile First */
.department-section {
    margin-bottom: 3rem;
    padding: 0;
}

.department-heading {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.department-heading::after {
    width: 40px;
    height: 2px;
    bottom: -6px;
}

/* Mobile Cards - Single Column */
.department-cards,
.department-cards.brand-media,
.associates-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.director-card,
.associate-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 280px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.director-card:hover,
.associate-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Mobile Image Sizes */
.director-image,
.associate-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

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

/* Mobile Text Sizes */
.director-name,
.associate-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.director-title,
.associate-title {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.director-quote {
    font-size: 0.9rem;
    font-weight: 600;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
}

.director-bio {
    font-size: 0.8rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.card-accent-line {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    margin: 0 auto;
}

/* Tablet Styles - 480px+ */
@media (min-width: 480px) {
    .directors-section,
    .associates-section {
        padding: 4rem 0;
    }

    .directors-section .container,
    .associates-section .container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
    }

    .department-heading {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .director-card,
    .associate-card {
        padding: 2rem;
        min-height: 320px;
        max-width: 400px;
    }

    .director-image,
    .associate-image {
        width: 90px;
        height: 90px;
        margin-bottom: 1.2rem;
    }

    .director-name,
    .associate-name {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .director-title,
    .associate-title {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .director-quote {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .director-bio {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .card-accent-line {
        width: 50px;
        height: 3px;
    }
}

/* Large Mobile/Small Tablet - 600px+ */
@media (min-width: 600px) {
    .department-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 600px;
    }

    .associates-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 600px;
    }

    /* Keep Brand & Media as single column on smaller screens */
    .department-cards.brand-media {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .directors-section,
    .associates-section {
        padding: 5rem 0;
    }

    .directors-section .container,
    .associates-section .container {
        padding: 0 2rem;
        max-width: 1200px;
    }

    .section-header {
        margin-bottom: 3rem;
        padding: 0;
    }

    .section-title {
        font-size: 2.5rem !important;
    }

    .section-subtitle {
        font-size: 1.1rem !important;
    }

    .department-section {
        margin-bottom: 4rem;
    }

    .department-heading {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .department-heading::after {
        width: 60px;
        height: 3px;
    }

    .department-cards,
    .associates-cards {
        gap: 2.5rem;
        max-width: 800px;
        padding: 0;
    }

    .department-cards.brand-media {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    .associates-cards {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
    }

    .director-card,
    .associate-card {
        padding: 2.5rem;
        min-height: 380px;
        max-width: none;
    }

    .director-image,
    .associate-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
        border-width: 4px;
    }

    .director-name,
    .associate-name {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .director-title,
    .associate-title {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .director-quote {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .director-bio {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .card-accent-line {
        width: 60px;
    }
}

/* Desktop Small - 1024px+ */
@media (min-width: 1024px) {
    .directors-section,
    .associates-section {
        padding: 6rem 0;
    }

    .section-title {
        font-size: 3rem !important;
    }

    .section-subtitle {
        font-size: 1.2rem !important;
    }

    .department-heading {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .department-cards.brand-media {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }

    .director-card,
    .associate-card {
        min-height: 420px;
    }

    .director-image,
    .associate-image {
        width: 120px;
        height: 120px;
        margin-bottom: 2rem;
    }

    .director-name,
    .associate-name {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .director-title,
    .associate-title {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .director-quote {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .director-bio {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Desktop Large - 1200px+ */
@media (min-width: 1200px) {
    .directors-section,
    .associates-section {
        padding: 8rem 0;
    }

    .directors-section .container,
    .associates-section .container {
        max-width: 1400px;
    }

    .section-title {
        font-size: 3.5rem !important;
    }

    .department-heading {
        font-size: 2.2rem;
    }

    .director-card,
    .associate-card {
        padding: 3rem;
        min-height: 450px;
    }

    .director-name,
    .associate-name {
        font-size: 1.5rem;
    }

    .director-quote {
        font-size: 1.3rem;
    }

    .director-bio {
        font-size: 1.1rem;
    }

    .card-accent-line {
        width: 80px;
        height: 4px;
    }
}

/* Core Leadership Carousel Mobile Fixes */
@media (max-width: 768px) {
    .core-leadership {
        padding: 4rem 0 !important;
    }

    .speakers-container {
        height: 400px !important;
        margin: 2rem 0 !important;
        padding: 0 1rem !important;
        overflow: visible !important;
    }

    .speaker-card {
        width: 280px !important;
        max-width: 280px !important;
        height: 350px !important;
        margin-left: -140px !important;
        margin-top: -175px !important;
        border-radius: 20px !important;
    }

    .speaker-card.active {
        width: 300px !important;
        max-width: 300px !important;
        height: 370px !important;
        margin-left: -150px !important;
        margin-top: -185px !important;
    }

    .speaker-card.prev,
    .speaker-card.next {
        width: 200px !important;
        max-width: 200px !important;
        height: 250px !important;
        margin-left: -100px !important;
        margin-top: -125px !important;
        opacity: 0.4 !important;
    }

    .speaker-image {
        width: 70px !important;
        height: 70px !important;
        margin-top: 1rem !important;
        border-width: 3px !important;
    }

    .speaker-card.active .speaker-image {
        width: 90px !important;
        height: 90px !important;
        margin-top: 1.2rem !important;
    }

    .speaker-info {
        padding: 1rem 0.8rem !important;
    }

    .speaker-name {
        font-size: 0.9rem !important;
        margin-bottom: 0.3rem !important;
    }

    .speaker-card.active .speaker-name {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .speaker-title {
        font-size: 0.7rem !important;
        margin-bottom: 0.5rem !important;
    }

    .speaker-card.active .speaker-title {
        font-size: 0.8rem !important;
        margin-bottom: 0.7rem !important;
    }

    .speaker-talk {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
    }

    .speaker-card.active .speaker-talk {
        font-size: 0.9rem !important;
    }

    .speaker-bio {
        font-size: 0.65rem !important;
        line-height: 1.3 !important;
        -webkit-line-clamp: 2 !important;
    }

    .speaker-card.active .speaker-bio {
        font-size: 0.75rem !important;
        -webkit-line-clamp: 3 !important;
    }

    .speakers-navigation {
        gap: 1rem !important;
        margin-top: 2rem !important;
        padding: 0 1rem !important;
    }

    .nav-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.9rem !important;
    }

    .progress-bar {
        width: 100px !important;
        height: 3px !important;
    }

    .progress-dots {
        gap: 0.5rem !important;
        margin-top: 1.5rem !important;
    }

    .progress-dot {
        width: 6px !important;
        height: 6px !important;
    }

    .interaction-hint p {
        font-size: 0.7rem !important;
    }
}

/* Ultra Small Mobile - 375px and below */
@media (max-width: 375px) {
    .directors-section .container,
    .associates-section .container {
        padding: 0 0.5rem;
    }

    .section-header {
        padding: 0 0.25rem;
    }

    .section-title {
        font-size: 1.6rem !important;
    }

    .department-heading {
        font-size: 1.2rem;
    }

    .department-cards,
    .department-cards.brand-media,
    .associates-cards {
        padding: 0 0.25rem;
        gap: 1rem;
    }

    .director-card,
    .associate-card {
        padding: 1.2rem;
        min-height: 250px;
    }

    .director-image,
    .associate-image {
        width: 70px;
        height: 70px;
    }

    .director-name,
    .associate-name {
        font-size: 1rem;
    }

    .director-title,
    .associate-title {
        font-size: 0.75rem;
    }

    .director-quote,
    .associate-quote {
        font-size: 0.85rem;
    }

    .director-bio,
    .associate-bio {
        font-size: 0.75rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 812px) and (orientation: landscape) {
    .directors-section,
    .associates-section {
        padding: 2rem 0;
    }

    .department-cards.brand-media {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .associates-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .director-card,
    .associate-card {
        min-height: 200px;
        padding: 1rem;
    }

    .director-image,
    .associate-image {
        width: 60px;
        height: 60px;
    }

    .speakers-container {
        height: 300px !important;
    }

    .speaker-card {
        height: 280px !important;
        margin-top: -140px !important;
    }
}
