/* --- CSS VARIABLES & GLOBAL --- */
:root {
    --primary-color: #ba0c2f;  /* Scarlet */
    --secondary-color: #a7b1b7; /* Gray */
    --dark-bg: #333333;
    --light-bg: #f8f9fa;
    --text-color: #333;
    --text-light: #555;
    --white: #ffffff;
    
    /* Infographic Specific Colors */
    --logo-gray: #636466; 
    --border-color: #e0e0e0;
}

* { 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

body { 
    background-color: var(--light-bg); 
    margin: 0; 
    color: var(--text-color); 
    padding-top: 70px; /* Offset for fixed nav */
    overflow-x: hidden; 
}

/* --- NAVIGATION --- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark-bg);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--dark-bg);
}

/* --- HERO SECTION (Home) --- */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid var(--secondary-color); 
    object-fit: cover;
    margin-bottom: 20px;
    background-color: var(--white);
}

.hero h1 { margin: 10px 0; font-size: 2.5rem; letter-spacing: 1px; }
.tagline { font-size: 1.2rem; margin-bottom: 20px; opacity: 0.95; font-weight: 300; }
.sub-tagline { color: #ddd; font-size: 0.9rem; margin-top: -10px; }

/* Buttons & Utilities */
.hero-btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid var(--white);
    transition: all 0.3s;
}

.btn-download:hover { 
    background-color: transparent; 
    color: var(--white); 
}

.jump-link {
    display: block;        
    margin-top: 25px;      
    color: var(--white);        
    font-weight: bold;     
    text-decoration: none; 
    font-size: 1rem;
    transition: all 0.3s ease;
}
.jump-link:hover { opacity: 0.8; transform: translateY(2px); }

.no-bottom-padding { padding-bottom: 0 !important; }

/* --- SECTION GENERAL --- */
section { scroll-margin-top: 80px; }
div[id] { scroll-margin-top: 80px; }

.client-section, .skills-section, .education-section, .leadership-section {
    padding: 50px 20px;
    text-align: center;
}

.bg-white { background-color: var(--white); }

.client-section { background-color: var(--white); border-bottom: 1px solid #e0e0e0; }
.education-section { background-color: var(--white); border-top: 1px solid #ddd; padding-top: 60px; }

h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.section-uppercase-title {
    margin-top: 0; 
    color: var(--text-color); 
    text-transform: uppercase; 
    font-size: 1.1rem; 
    letter-spacing: 2px;
}

.section-subtitle {
    margin-top: -10px; margin-bottom: 30px; font-style: italic; color: #666;
}

/* --- LEADERSHIP GRID --- */
.leadership-section {
    background-color: var(--dark-bg);
    color: var(--white);
    border-bottom: 1px solid #444;
}

.leadership-section .section-uppercase-title { color: var(--white); }
.leadership-section .section-subtitle { color: #ccc; }

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 30px auto 0;
}

.leadership-card {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.leadership-card .icon-header {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.leadership-card h4 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    color: var(--white);
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
}

.leadership-card ul { list-style: none; padding: 0; margin: 0; }
.leadership-card li {
    position: relative; padding-left: 20px; margin-bottom: 8px;
    font-size: 0.9rem; color: #ddd; line-height: 1.4;
}
.leadership-card li::before {
    content: "•"; color: var(--primary-color); font-weight: bold; position: absolute; left: 0;
}

/* --- CLIENT GRID --- */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.client-card {
    background: var(--light-bg);
    border-radius: 8px;
    border-top: 5px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 25px;
    transition: transform 0.3s ease;
    text-align: left;
    height: 100%;
}
.client-card:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.1); }

.client-logo-wrapper {
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-wrapper img {
    max-height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.impact-stat { font-size: 1.1rem; color: var(--primary-color); font-weight: bold; margin: 0 0 5px 0; }
.impact-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; margin: 0; }

/* --- FLIP CARDS --- */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.flip-card {
    background-color: transparent;
    width: 300px;
    height: 320px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner { transform: rotateY(180deg); }

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.flip-card-front {
    background-color: var(--white);
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
}
.flip-card-front h3 { margin-top: 20px; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
.flip-card-front i { font-size: 5em; }

.flip-card-back {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
    align-items: flex-start;
    text-align: left;
    overflow-y: auto;
}
.flip-card-back ul { padding-left: 20px; margin: 0; }
.flip-card-back li { font-size: 0.85rem; margin-bottom: 8px; line-height: 1.4; }

/* --- CTA MODULE --- */
.cta-section {
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.cta-section h2 { color: var(--white); border-bottom: 2px solid rgba(255,255,255,0.3); margin-top: 0; }
.cta-section .btn-download { background: var(--white); color: var(--primary-color); border: none; font-size: 1rem; }
.cta-section .btn-download:hover { background: #eee; }

/* --- TIMELINE --- */
.timeline { position: relative; max-width: 1000px; margin: 10px auto 50px auto; }
.timeline::after {
    content: ''; position: absolute; width: 6px; 
    background-color: var(--secondary-color); 
    top: 0; bottom: 0; left: 50%; margin-left: -3px;
    border-radius: 3px;
}

.container {
    padding: 10px 40px; position: relative; width: 50%;
    opacity: 0; transition: all 0.6s ease-out;
}
.container.show { opacity: 1; transform: translateX(0); }
.left { left: 0; transform: translateX(-50px); }
.right { left: 50%; transform: translateX(50px); }

.container::after {
    content: ''; position: absolute; width: 22px; height: 22px;
    right: -11px; background-color: var(--white); border: 5px solid var(--primary-color); 
    top: 20px; border-radius: 50%; z-index: 1;
}
.right::after { left: -11px; }

.content {
    padding: 25px; background: var(--white); border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); border-top: 4px solid var(--primary-color);
}

.job-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.company-logo { width: 60px; height: 60px; object-fit: contain; border-radius: 5px; background: #fff; padding: 2px; border: 1px solid #eee; }
.job-header h2 { margin: 5px 0 0 0; font-size: 1.4rem; }
.job-header .company { margin: 0; font-style: italic; color: #555; }
.date { font-size: 0.85rem; color: var(--secondary-color); font-weight: bold; text-transform: uppercase; display: block; }

.job-bullets { padding-left: 20px; margin: 15px 0; }
.job-bullets li { margin-bottom: 10px; line-height: 1.5; color: #444; }

.client-placeholder {
    margin-top: 20px; padding: 10px; background-color: var(--light-bg);
    border-radius: 4px; font-size: 0.9rem; border-left: 3px solid var(--secondary-color);
}
.client-list { color: #777; font-style: italic; }

/* --- ENDORSEMENTS --- */
.endorsements-module { margin-top: 25px; }
.endorsements-module h4 { 
    color: var(--primary-color); border-bottom: 1px solid #ddd; padding-bottom: 10px; margin-top: 25px; display: flex; align-items: center; gap: 5px;
}
.quote-item {
    background: #f9f9f9; padding: 15px; border-left: 3px solid var(--primary-color); border-radius: 0 4px 4px 0;
}
.quote-item p { font-style: italic; font-size: 0.9rem; margin-top: 0; margin-bottom: 10px; line-height: 1.5; }
.quote-item .author { font-weight: bold; font-size: 0.85rem; margin: 0; color: #555; font-style: normal; }
.mb-15 { margin-bottom: 15px; }

/* --- CAPABILITY CAROUSEL --- */
.carousel-wrapper {
    position: relative; max-width: 1000px; margin: 40px auto 0;
    display: flex; align-items: center; justify-content: center;
}
.competency-carousel {
    display: flex; overflow-x: auto; scroll-behavior: smooth;
    gap: 20px; padding: 20px 5px; scroll-snap-type: x mandatory; width: 100%;
    scrollbar-width: none;
}
.competency-carousel::-webkit-scrollbar { display: none; }

.competency-group {
    background: var(--white); padding: 25px; border-radius: 8px;
    border-left: 4px solid var(--primary-color); box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    min-width: 300px; flex: 0 0 auto; scroll-snap-align: center; text-align: left;
}
.competency-group h3 {
    color: var(--primary-color); font-size: 1.1rem; margin-top: 0; margin-bottom: 15px;
    border-bottom: 1px solid #eee; padding-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
.competency-group ul { list-style: none; padding: 0; margin: 0; }
.competency-group li {
    position: relative; padding-left: 20px; margin-bottom: 8px; font-size: 0.9rem; color: #555; line-height: 1.4;
}
.competency-group li::before {
    content: "•"; color: var(--secondary-color); font-weight: bold; position: absolute; left: 0;
}

.carousel-btn {
    background: var(--primary-color); color: var(--white); border: none; border-radius: 50%;
    width: 40px; height: 40px; cursor: pointer; z-index: 2; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin: 0 10px; transition: background 0.2s;
}
.carousel-btn:hover { background: #8a0923; }

/* --- EDUCATION --- */
.edu-card {
    background: var(--light-bg); max-width: 600px; margin: 0 auto; padding: 30px;
    border-radius: 8px; border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 20px; text-align: left;
}
.edu-logo { width: 80px; height: 80px; object-fit: contain; }
.edu-details h3 { margin: 0 0 5px 0; font-size: 1.3rem; color: var(--text-color); }
.edu-details .degree { font-size: 1.1rem; font-weight: bold; color: var(--primary-color); margin: 0 0 5px 0; }
.edu-details .meta { font-size: 0.9rem; color: #666; margin: 0; font-style: italic; }
.mt-5 { margin-top: 5px; }

/* --- RESUME DRAWER --- */
.resume-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0; 
    width: auto;
    background-color: var(--dark-bg);
    color: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    padding: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom)); 
    border-top: 4px solid var(--primary-color);
    transform: translateY(100%); 
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.resume-drawer.visible { transform: translateY(0); }

.drawer-content {
    max-width: 1000px; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 20px;
}

.drawer-text h4 { margin: 0 0 5px 0; color: var(--white); font-size: 1.1rem; }
.drawer-text p { margin: 0; font-size: 0.9rem; color: #ccc; }

.drawer-actions { display: flex; align-items: center; gap: 20px; }

.drawer-btn {
    background-color: var(--primary-color); 
    color: var(--white); 
    padding: 10px 25px;
    text-decoration: none; 
    border-radius: 25px; 
    font-weight: bold; 
    font-size: 0.95rem;
    border: 2px solid var(--primary-color); 
    transition: all 0.3s ease; 
    white-space: nowrap;
}

.drawer-btn:hover { 
    background-color: var(--white); 
    color: var(--primary-color); 
    border-color: var(--white); 
}

.close-drawer {
    background: none; 
    border: none; 
    color: #888; 
    font-size: 1.5rem; 
    cursor: pointer;
    padding: 0; 
    line-height: 1; 
    transition: color 0.2s;
}

.close-drawer:hover { color: var(--white); }

/* --- FOOTER --- */
footer { 
    text-align: center; 
    padding: 40px; 
    background-color: var(--dark-bg); 
    color: var(--secondary-color); 
    border-top: 5px solid var(--primary-color); 
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}

/* --- BIO & GALLERY SECTION --- */
.bio-gallery-section {
    background-color: var(--white);
    padding: 60px 20px;
    border-top: 1px solid #ddd;
}

.bio-container {
    max-width: 1100px;
    margin: 0 auto;
}

.bio-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.bio-text h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.bio-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 250px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(186, 12, 47, 0.9); 
    color: white;
    padding: 10px;
    font-size: 0.85rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
}

.gallery-item:hover .caption {
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    border: 2px solid white;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* --- INFOGRAPHIC PAGE STYLES --- */
.process-container {
    max-width: 1400px;
    width: 95%;
    margin: 0 auto;
    padding: 60px 0;
    color: var(--text-color);
}

/* Headline Styles */
.intro-text-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 10px auto; 
    padding: 0 20px;
}

.intro-text-block h1 {
    font-size: 2.2rem; 
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.intro-text-block h2.subhead {
    font-size: 1.3rem;
    color: var(--logo-gray);
    margin-bottom: 10px;
    font-weight: 300;
    font-style: italic;
    border-bottom: none; 
    display: block;
    padding-bottom: 0;
}

/* Process Infographic Header */
.process-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px; 
    border-top: none;
    padding-top: 0;
}

.process-logo {
    height: 65px; 
    width: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.process-header h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 1.3;
}

.process-header .headline-gray { color: var(--logo-gray); font-weight: 700; }
.process-header .headline-scarlet { color: var(--primary-color); font-weight: 700; }
.process-header p { font-size: 1.1rem; color: #666; margin-top: 5px; }

/* Process Grid */
.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 25px;
    position: relative;
}

.process-step {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-top: 5px solid var(--primary-color);
    padding: 25px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.2s ease;
}
.process-step:hover { transform: translateY(-5px); }

.step-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 18px;
    background: #fff0f3; 
    padding: 15px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(186, 12, 47, 0.1);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--dark-bg);
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content ul { list-style: none; padding: 0; margin: 0; text-align: left; font-size: 0.95rem; line-height: 1.5; color: #444; width: 100%; }
.step-content li { margin-bottom: 10px; padding-left: 18px; position: relative; }
.step-content li::before { content: "•"; color: var(--primary-color); font-weight: bold; font-size: 1.2rem; position: absolute; left: 0; line-height: 1.4rem; }
.step-content strong { color: var(--dark-bg); font-weight: 600; }

.arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    padding-top: 50px;
}
.arrow-label {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

/* --- STORY CARD STYLES --- */
.story-section {
    max-width: 900px;
    margin: 40px auto 80px auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}
.intro-content p:last-child { margin-bottom: 0; }

/* --- REVIEWS LANDING PAGE STYLES --- */

/* Unique Hero Section */
.review-hero {
    background-color: var(--dark-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh; 
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-top: 0; 
}

.review-hero-content {
    max-width: 1100px; 
    width: 100%;
    animation: fadeIn 1s ease-out;
    display: flex; /* Side-by-side layout */
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.review-hero-logo {
    width: 160px; /* Fixed sizing for desktop */
    height: auto;
    object-fit: contain;
}

.hero-text {
    flex: 1; /* Take remaining space */
    text-align: left; /* Text aligns left relative to the logo */
}

.review-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
    margin-top: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.review-hero p {
    color: #f0f0f0;
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    margin: 0;
}

/* Personal Note (Editorial Style) */
.personal-note-section {
    padding: 80px 20px;
    background-color: var(--white);
    text-align: center;
}

.note-container {
    max-width: 750px;
    margin: 0 auto;
}

.note-container h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: none; 
}

.note-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.note-container .lead-text {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--dark-bg);
    margin-bottom: 30px;
}

/* Action Triad (The CTAs) */
.action-triad-section {
    padding: 60px 20px 100px 20px;
    background-color: var(--light-bg);
    border-top: 1px solid #e0e0e0;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.action-item {
    background: transparent;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-color);
    transform: scale(1.05);
}

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

.action-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.action-item p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-action {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease;
    box-shadow: 0 4px 10px rgba(186, 12, 47, 0.3);
}

.btn-action:hover {
    background-color: #8a0923;
    transform: translateY(-2px);
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.text-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

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

/* --- E-COMMERCE RESUME (PDP) STYLES --- */

/* Body styling specifically for PDP */
.pdp-body { 
    padding-top: 120px; 
    padding-bottom: 60px; /* Base padding */
} 

.pdp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--white);
    color: var(--text-color);
}

/* FAKE HEADER */
.ecom-utility-bar {
    background-color: #131921; 
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100; 
}

/* Override Main Nav Position for this page */
.pdp-body .main-nav { top: 50px; } 

.ecom-search-bar {
    flex-grow: 1;
    margin: 0 20px;
    display: flex;
    max-width: 600px;
}
.ecom-search-input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 4px 0 0 4px;
}
.ecom-search-btn {
    background-color: #febd69;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* FIX FOR JUMPING HEADER */
.ecom-nav-item {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    margin-left: 15px;
    border: 1px solid transparent; 
    padding: 5px;
    border-radius: 2px;
}
.ecom-nav-item:hover { border: 1px solid white; }

/* BREADCRUMBS */
.pdp-breadcrumbs { font-size: 0.85rem; color: #565959; margin-bottom: 5px; }
.pdp-breadcrumbs i { font-size: 0.7rem; margin: 0 5px; }

/* TOP SECTION GRID */
.pdp-top-section {
    display: grid;
    grid-template-columns: 45% 1fr 280px; 
    gap: 30px;
    margin-bottom: 40px;
}

/* GALLERY */
.pdp-gallery {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column; /* Main Image Top, Thumbs Bottom */
    gap: 15px;
}
.pdp-main-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.pdp-main-image {
    width: 100%;
    max-height: 550px; 
    object-fit: contain;
}
.pdp-thumbnails {
    display: flex;
    flex-direction: row; 
    gap: 10px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}
.thumb {
    width: 65px; 
    height: 65px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}
.thumb.active { border-color: #e47911; box-shadow: 0 0 3px 1px #e47911; }

/* INFO SECTION */
.pdp-info { grid-column: 2 / 3; }

.pdp-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 500;
}

.brand-store-link {
    font-size: 0.9rem;
    color: #007185;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}
.brand-store-link:hover { color: #c7511f; text-decoration: underline; }

.pdp-ratings { margin-bottom: 15px; font-size: 0.9rem; }
.stars { color: #de7921; }
.rating-count { color: #007185; text-decoration: none; margin-left: 5px; }
.rating-count:hover { text-decoration: underline; color: #c7511f; }

.pdp-price-block {
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    padding: 10px 0;
    margin-bottom: 15px;
}
.price-label { color: #565959; font-size: 0.9rem; }
.price-value { color: #B12704; font-size: 1.1rem; font-weight: bold; margin-left: 5px; }

.pdp-availability { margin-bottom: 20px; }
.stock-status { color: #007600; font-size: 1.1rem; font-weight: bold; display: block; }
.shipping-info { font-size: 0.9rem; color: #565959; }

.pdp-bullets h4 { margin-bottom: 8px; font-size: 1rem; }
.pdp-bullets ul { padding-left: 20px; margin: 0; }
.pdp-bullets li { margin-bottom: 8px; font-size: 0.9rem; line-height: 1.5; }

/* BUY BOX */
.pdp-buy-box { grid-column: 3 / 4; }

.buy-box-inner {
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    padding: 18px;
    background-color: #ffffff;
}
.price-line { margin-bottom: 10px; }
.price-line .currency { font-size: 0.9rem; }
.price-line .amount { font-size: 1.1rem; color: #B12704; font-weight: bold; }
.delivery-line { font-size: 0.9rem; color: #565959; margin-bottom: 15px; }
.stock-msg { color: #007600; font-size: 1.1rem; margin-bottom: 20px; font-weight: 500; }

.pdp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(213,217,217,.5);
}
.btn-add-cart { background-color: #ffd814; border: 1px solid #fcd200; color: #0f1111; }
.btn-add-cart:hover { background-color: #f7ca00; }
.btn-buy-now { background-color: #ffa41c; border: 1px solid #ff8f00; color: #0f1111; }
.btn-buy-now:hover { background-color: #fa8900; }
.btn-portfolio { background-color: #f0f2f2; border: 1px solid #d5d9d9; color: #0f1111; }
.btn-portfolio:hover { background-color: #e3e6e6; }

.secure-trans { font-size: 0.85rem; color: #565959; margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.seller-info { font-size: 0.8rem; color: #565959; margin-top: 15px; }

/* FAKE ADS / SIDEBAR FEATURES (Renamed to pass AdBlockers) */
.feature-label { font-size: 0.7rem; color: #565959; margin-bottom: 5px; display: block; }
.sidebar-feature {
    margin-top: 20px;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    background: #f8f8f8;
}
.sidebar-feature img { 
    max-width: 100px; 
    margin-bottom: 10px; 
    border-radius: 50%;
    object-fit: contain; 
    padding: 18px; 
    background-color: #fff;
    display: inline-block;
}
.sidebar-feature h5 { margin: 5px 0; color: #007185; }
.sidebar-feature p { font-size: 0.8rem; color: #555; }

/* RELATED CONTENT STRIP (Renamed) */
.related-strip {
    padding: 20px;
    background: white;
    margin-top: 20px;
    border-top: 1px solid #ddd;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}
.related-item { text-align: left; }
.related-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: #f0f0f0;
    margin-bottom: 5px;
}
.related-title { font-size: 0.9rem; color: #007185; height: 40px; overflow: hidden; }
.related-rating { color: #de7921; font-size: 0.8rem; }
.related-price { color: #B12704; font-weight: bold; font-size: 0.9rem; }

/* A+ & REVIEWS */
.pdp-divider { border: 0; border-top: 1px solid #e7e7e7; margin: 40px 0; }
.pdp-aplus-content h2, .pdp-reviews-section h2 {
    font-size: 1.5rem;
    color: #cc6600;
    margin-bottom: 20px;
    border-bottom: none;
}
.aplus-module-hero { position: relative; margin-bottom: 30px; border-radius: 4px; overflow: hidden; }
.aplus-module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
}
.aplus-col i { font-size: 3rem; color: var(--primary-color); margin-bottom: 10px; }
.aplus-col h4 { margin: 0 0 10px 0; font-size: 1.1rem; }
.aplus-col p { font-size: 0.9rem; color: #555; }
.aplus-text-block { max-width: 800px; margin: 0 auto; line-height: 1.6; }

.review-summary { margin-bottom: 20px; font-size: 1.1rem; }
.big-star { color: #de7921; }
.pdp-review-card { margin-bottom: 30px; }
.reviewer-name { font-size: 0.9rem; font-weight: bold; display: flex; align-items: center; gap: 5px; margin-bottom: 5px; }
.review-rating { font-size: 0.9rem; color: #de7921; margin-bottom: 5px; }
.verified { color: #c45500; font-weight: bold; font-size: 0.8rem; margin-left: 5px; text-transform: uppercase; }
.review-headline { display: inline; font-weight: bold; font-size: 0.95rem; color: #0f1111; margin: 0; }
.review-date { font-size: 0.85rem; color: #565959; margin: 5px 0 10px 0; }
.review-body { font-size: 0.95rem; line-height: 1.5; color: #0f1111; }

/* UTILITY HELPERS FOR MOBILE SWAPPING */
.mobile-h1, .mobile-visible { display: none; }
.desktop-h1 { display: block; }

/* --- MOBILE RESPONSIVE OVERRIDES (GENERAL SITE & PDP) --- */
@media (max-width: 900px) {
    /* PDP Specifics */
    .pdp-body { padding-top: 160px; padding-bottom: 100px; }
    .pdp-body .main-nav { top: 90px; }
    
    .ecom-utility-bar { flex-wrap: wrap; padding: 10px; }
    .ecom-search-bar { order: 3; width: 100%; margin: 10px 0 0 0; max-width: none; }
    
    .pdp-top-section { grid-template-columns: 1fr; gap: 15px; }
    
    .desktop-h1 { display: none; }
    .mobile-h1 { display: block; font-size: 1.4rem; font-weight: 800; line-height: 1.2; margin-bottom: 5px; color: #0F1111; }
    .mobile-visible { display: block; font-size: 0.9rem; font-weight: normal; margin-bottom: 15px; }
    
    .pdp-gallery { flex-direction: column; grid-column: auto; }
    .pdp-main-image { max-height: 400px; }
    
    .pdp-info { grid-column: auto; }
    .pdp-buy-box { grid-column: auto; }
    .aplus-module-grid { grid-template-columns: 1fr; }
    
    /* Update Review Hero for Mobile */
    .review-hero { height: auto; padding: 80px 20px; background-attachment: scroll; }
    
    .review-hero-content {
        flex-direction: column; /* Stack vertically */
        text-align: center; /* Center text */
        gap: 20px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .review-hero-logo {
        width: 120px; /* Smaller logo */
        margin: 0 auto;
    }

    .review-hero h1 { font-size: 2rem; }
    
    .highlight-item { transform: scale(1); margin: 20px 0; }
    .action-grid { gap: 20px; }
}

/* --- MOBILE RESPONSIVENESS (HAMBURGER & GENERAL NAV & INFOGRAPHIC) --- */
/* Matches max-width 768px for standard mobile breakpoints */
@media (max-width: 768px) {
    /* General Padding */
    .client-section, .skills-section, .education-section, .leadership-section {
        padding: 50px 15px;
    }

    /* Flip Cards & Carousel Mobile */
    .flip-card { width: 100%; max-width: 350px; height: 300px; }
    .competency-carousel { padding: 20px 40px; }
    
    /* Navigation: Hamburger Logic */
    .main-nav .nav-container { padding: 0 20px; }
    .hamburger { display: block; z-index: 1001; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .nav-links {
        position: fixed; left: -100%; top: 70px;
        flex-direction: column; background-color: var(--white);
        width: 100%; text-align: center; transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1); padding: 20px 0;
    }
    .nav-links.active { left: 0; }
    .nav-links li { margin: 15px 0; }

    /* Timeline & Grid Adjustments */
    .timeline::after { left: 31px; }
    .container { width: 100%; padding-left: 70px; padding-right: 25px; }
    .container::after { left: 18px; }
    .left::after, .right::after { left: 18px; }
    .right { left: 0%; }
    .left, .right { transform: translateX(0); }
    .client-grid, .leadership-grid { grid-template-columns: 1fr; }
    
    /* Resume Drawer Fix: Stack Content on Mobile */
    .resume-drawer { padding: 15px; padding-bottom: calc(15px + env(safe-area-inset-bottom)); }
    .drawer-content { 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; /* Spacing between headline and buttons */
    }
    .drawer-text { text-align: center; margin-bottom: 5px; }
    .drawer-text h4 { font-size: 1.1rem; }
    .drawer-actions { width: 100%; justify-content: center; }
    .drawer-btn { width: 100%; justify-content: center; display: flex; padding: 12px 20px; }
    .close-drawer { position: absolute; top: 10px; right: 10px; }

    /* Infographic Mobile Overrides (Restored) */
    .process-grid { flex-direction: column; }
    .arrow-container { 
        flex-direction: row; 
        padding-top: 0; 
        margin: 10px 0; 
        gap: 10px; 
        justify-content: center;
    }
    .arrow-label { margin-bottom: 0; order: 2; }
    .step-title { min-height: auto; }
    .intro-text-block h1 { font-size: 1.8rem; }
    .story-section { padding: 25px; margin: 40px 20px; width: auto; }
}

/* --- BIG GAME COMMERCIAL PAGE STYLES --- */

/* Mobile Spacing Fix for Footer/Drawer overlap */
body.commercial-body {
    padding-bottom: 120px; 
}

/* Page-Specific Styles for Video */
.video-section {
    width: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.video-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    height: auto; 
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: #000;
}

/* Native Video Styling */
.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Adjust content spacing */
.commercial-content {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

/* --- EXPLORE MORE GRID (Added for Infographic Page) --- */
.explore-section {
    background-color: var(--light-bg);
    padding-bottom: 60px;
    border-top: 1px solid #e0e0e0;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.explore-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.explore-image-wrapper {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.explore-card:hover .explore-image-wrapper img {
    transform: scale(1.05);
}

.explore-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--dark-bg);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
}

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

.explore-content h3 {
    margin: 0 0 10px 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.explore-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-text {
    font-weight: bold;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.explore-card:hover .btn-text {
    color: var(--primary-color);
}