/* About page CTA padding override */
.home-cta {
    padding: 4rem 0;
}

/* ==============================================================================
   ABOUT PAGE STYLES - Fosseway Training
   Hero, Meet Chris, Why Choose, On-site Training, CTA
   ============================================================================== */

/* About Hero - Centered Layout */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, var(--fosseway-navy) 0%, #001428 100%);
    min-height: 550px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    padding: 5rem 0;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--fosseway-navy) 0%, #001428 100%);
    opacity: 1;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 34, 68, 0.85) 0%, rgba(0, 20, 40, 0.75) 100%);
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-eyebrow {
    display: inline-block;
    color: var(--fosseway-green);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.about-hero h1 .text-accent {
    color: var(--fosseway-green);
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2.5rem 0;
    line-height: 1.7;
}

.about-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Hero Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0;
        min-height: auto;
    }

    .about-hero h1 {
        font-size: 2.25rem;
    }

    .about-hero-subtitle {
        font-size: 1.05rem;
    }

    .about-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ==============================================================================
   MEET CHRIS SECTION
   ============================================================================== */

.meet-chris-section {
    padding: 5rem 0;
    background: white;
}

.meet-chris-card {
    display: grid;
    grid-template-columns: 1fr 500px;
    background: var(--fosseway-navy);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 34, 68, 0.2);
}

.meet-chris-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meet-chris-content .section-eyebrow {
    display: inline-block;
    color: var(--fosseway-green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.meet-chris-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.meet-chris-role {
    font-size: 1.15rem;
    color: var(--fosseway-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.meet-chris-bio {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.meet-chris-stats {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.chris-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.chris-stat:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--fosseway-green);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.chris-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.chris-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.meet-chris-image {
    position: relative;
    min-height: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.meet-chris-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.meet-chris-badge {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: linear-gradient(135deg, var(--fosseway-green) 0%, #0a8f5a 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(12, 166, 120, 0.35);
}

.meet-chris-badge .badge-years {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.meet-chris-badge .badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Meet Chris Responsive */
@media (max-width: 1024px) {
    .meet-chris-card {
        grid-template-columns: 1fr 420px;
    }

    .meet-chris-content {
        padding: 2.5rem;
    }

    .meet-chris-content h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .meet-chris-section {
        padding: 3.5rem 0;
    }

    .meet-chris-card {
        grid-template-columns: 1fr;
    }

    .meet-chris-content {
        padding: 2.5rem;
        text-align: center;
        order: 2;
    }

    .meet-chris-image {
        min-height: 300px;
        order: 1;
    }

    .meet-chris-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .meet-chris-content h2 {
        font-size: 2.25rem;
    }

    .meet-chris-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .chris-stat {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 130px;
    }
}

@media (max-width: 480px) {
    .meet-chris-content {
        padding: 2rem 1.5rem;
    }

    .meet-chris-content h2 {
        font-size: 1.85rem;
    }

    .meet-chris-role {
        font-size: 1rem;
    }

    .meet-chris-bio {
        font-size: 0.95rem;
    }

    .meet-chris-stats {
        gap: 0.75rem;
    }

    .chris-stat {
        padding: 1rem 0.75rem;
    }

    .chris-stat-number {
        font-size: 1.5rem;
    }

    .chris-stat-label {
        font-size: 0.75rem;
    }
}

/* ==============================================================================
   LEGACY ABOUT HERO STYLES (keeping for reference)
   ============================================================================== */

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.about-hero-content {
    max-width: 650px;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(12, 166, 120, 0.15);
    color: var(--fosseway-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* About Hero Stats */
.about-hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-stat {
    text-align: left;
}

.about-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

.about-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.about-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* About Hero Visual */
.about-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-hero-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.about-hero-card-inner {
    position: relative;
    margin-bottom: 1rem;
}

.about-hero-card-inner img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
}

.about-hero-card-badge {
    position: absolute;
    bottom: -10px;
    right: 15px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--fosseway-green) 0%, #0a8f5a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(12, 166, 120, 0.4);
}

.about-hero-card-info {
    text-align: center;
}

.about-hero-card-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fosseway-navy);
    margin-bottom: 0.25rem;
}

.about-hero-card-info p {
    font-size: 0.9rem;
    color: var(--fosseway-grey);
    margin: 0;
}

/* Accreditations */
.about-hero-accreditations {
    text-align: center;
}

.about-hero-accreditations>span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.accreditation-pills {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.accred-pill {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* About Hero Responsive */
@media (max-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-hero-content {
        max-width: 100%;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero-stats {
        justify-content: center;
    }

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

    .about-hero-visual {
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 3rem 0;
        min-height: auto;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .about-stat-divider {
        display: none;
    }

    .about-stat-number {
        font-size: 1.75rem;
    }
}

/* ==============================================================================
   SECTION LABEL
   ============================================================================== */

.section-label {
    display: inline-block;
    color: var(--fosseway-green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xs);
}

/* ==============================================================================
   PHILOSOPHY SECTION
   ============================================================================== */

.philosophy-section {
    padding: 5rem 0;
    background: white;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.philosophy-main .section-eyebrow {
    margin-bottom: 1rem;
}

.philosophy-main h2 {
    font-size: 2.5rem;
    color: var(--fosseway-navy);
    margin-bottom: 2rem;
    line-height: 1.15;
    font-weight: 700;
}

.philosophy-main h2 .text-accent {
    color: var(--fosseway-green);
}

.philosophy-quote {
    font-size: 1.2rem;
    color: var(--fosseway-dark-grey);
    line-height: 1.8;
    font-style: italic;
    border-left: 4px solid var(--fosseway-green);
    padding-left: 1.5rem;
    margin: 0;
}

.philosophy-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--fosseway-navy);
    font-size: 1rem;
}

/* Philosophy Points */
.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.philosophy-point {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.philosophy-point:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.philosophy-point-icon {
    width: 50px;
    height: 50px;
    background: rgba(12, 166, 120, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--fosseway-green);
}

.philosophy-point-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fosseway-navy);
    margin-bottom: 0.35rem;
}

.philosophy-point-content p {
    font-size: 0.95rem;
    color: var(--fosseway-grey);
    line-height: 1.6;
    margin: 0;
}

/* Philosophy Responsive */
@media (max-width: 900px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .philosophy-main h2 {
        font-size: 2rem;
    }
}

/* ==============================================================================
   LEGACY DIRECTOR SECTION
   ============================================================================== */

.director-section {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.director-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.director-content h2 {
    font-size: 2.25rem;
    color: var(--fosseway-navy);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.director-lead {
    font-size: 1.2rem;
    color: var(--fosseway-dark-grey);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.director-content p {
    color: var(--fosseway-dark-grey);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.director-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ==============================================================================
   WHY CHOOSE SECTION - REDESIGNED
   ============================================================================== */

.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--fosseway-navy) 0%, #001428 100%);
    overflow: hidden;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.why-choose-header .section-eyebrow {
    display: inline-block;
    color: var(--fosseway-green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.why-choose-header h2 {
    font-size: 3rem;
    color: white;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-choose-header h2 .text-accent {
    color: var(--fosseway-green);
}

.why-choose-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Featured Accreditation Card */
.why-featured-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.why-featured-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(12, 166, 120, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.why-featured-image {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

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

.why-featured-card:hover .why-featured-image img {
    transform: scale(1.05);
}

.why-featured-overlay {
    display: none;
}

.why-featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-featured-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--fosseway-green) 0%, #0a8f5a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(12, 166, 120, 0.35);
}

.why-featured-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.why-featured-content>p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.why-featured-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.accred-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accred-logo-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.accred-logo-swqr img {
    height: 70px;
}

/* Three Column Cards Grid */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.why-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.why-card-modern:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(12, 166, 120, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.why-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.why-card-modern:hover .why-card-image img {
    transform: scale(1.08);
}

.why-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 20, 40, 0.9) 100%);
}

.why-card-icon-float {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--fosseway-green) 0%, #0a8f5a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(12, 166, 120, 0.4);
    z-index: 2;
    transition: transform 0.3s ease;
}

.why-card-modern:hover .why-card-icon-float {
    transform: scale(1.1);
}

.why-card-body {
    padding: 2rem 1.5rem 1.75rem;
}

.why-card-body h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.why-card-body p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin: 0;
}

/* Expertise Banner */
.why-expertise-banner {
    background: linear-gradient(135deg, rgba(12, 166, 120, 0.15) 0%, rgba(12, 166, 120, 0.05) 100%);
    border: 1px solid rgba(12, 166, 120, 0.25);
    border-radius: 20px;
    padding: 2rem 2.5rem;
}

.why-expertise-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.why-expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--fosseway-green) 0%, #0a8f5a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(12, 166, 120, 0.35);
}

.why-expertise-text {
    flex: 1;
}

.why-expertise-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
}

.why-expertise-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.why-expertise-banner .btn {
    flex-shrink: 0;
}

/* Why Choose Responsive */
@media (max-width: 1024px) {
    .why-featured-card {
        grid-template-columns: 1fr;
    }

    .why-featured-image {
        min-height: 250px;
    }

    .why-featured-overlay {
        display: none;
    }

    .why-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-cards-grid .why-card-modern:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }

    .why-expertise-content {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .why-expertise-text {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 4rem 0;
    }

    .why-choose-header {
        margin-bottom: 2.5rem;
    }

    .why-choose-header h2 {
        font-size: 2.25rem;
    }

    .why-choose-subtitle {
        font-size: 1.05rem;
    }

    .why-featured-content {
        padding: 2rem;
        text-align: center;
    }

    .why-featured-content h3 {
        font-size: 1.4rem;
    }

    .why-featured-badges {
        display: none;
    }

    .why-card-body {
        text-align: center;
    }

    .why-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .why-cards-grid .why-card-modern:last-child {
        max-width: 100%;
    }

    .why-expertise-banner {
        padding: 1.5rem;
    }

    .why-expertise-content {
        flex-direction: column;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 3rem 0;
    }

    .why-choose-header h2 {
        font-size: 1.85rem;
    }

    .why-featured-image {
        min-height: 180px;
    }

    .why-featured-icon {
        width: 52px;
        height: 52px;
    }

    .why-featured-icon svg {
        width: 26px;
        height: 26px;
    }

    .why-featured-content h3 {
        font-size: 1.25rem;
    }

    .why-card-image {
        height: 160px;
    }

    .why-card-body {
        padding: 1.5rem 1.25rem 1.5rem;
    }

    .why-card-body h4 {
        font-size: 1.1rem;
    }

    .why-expertise-text h4 {
        font-size: 1.1rem;
    }

    .why-expertise-text p {
        font-size: 0.9rem;
    }
}

/* ==============================================================================
   LEGACY PILLAR STYLES
   ============================================================================== */

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.pillar-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    transition: all var(--transition-fast);
}

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

.pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(105, 190, 40, 0.1);
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    color: var(--fosseway-green);
}

.pillar-card h3 {
    color: var(--fosseway-navy);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.pillar-card p {
    color: var(--fosseway-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.pillar-logos {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.pillar-logos img {
    height: 35px;
    width: auto;
    opacity: 0.7;
}

/* ==============================================================================
   TRAINING CENTRES SECTION
   ============================================================================== */

.centres-section {
    padding: var(--spacing-lg) 0 var(--spacing-xl) 0;
    background-color: white;
}

.centres-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.centres-header h2 {
    font-size: 2.25rem;
    color: var(--fosseway-navy);
    margin-bottom: 0;
    line-height: 1.2;
}

.centres-map-wide {
    width: 100%;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.centres-map-wide iframe {
    display: block;
    width: 100%;
    border-radius: 16px;
}

.centres-content h2 {
    font-size: 2.25rem;
    color: var(--fosseway-navy);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.centre-info {
    margin-bottom: var(--spacing-md);
}

.centre-info h3 {
    color: var(--fosseway-navy);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.centre-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fosseway-dark-grey);
    margin-bottom: var(--spacing-sm);
}

.centre-address svg {
    color: var(--fosseway-green);
}

.centre-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.centre-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fosseway-dark-grey);
    padding: 0.35rem 0;
}

.centre-features svg {
    color: var(--fosseway-green);
}

.onsite-callout {
    background-color: var(--fosseway-navy);
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

.onsite-callout h4 {
    color: var(--fosseway-green);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.onsite-callout p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* ==============================================================================
   ON-SITE TRAINING SECTION - REDESIGNED
   ============================================================================== */

.onsite-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

/* On-Site Hero Grid */
.onsite-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.onsite-hero-content .section-eyebrow {
    display: inline-block;
    color: var(--fosseway-green);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.onsite-hero-content h2 {
    font-size: 3rem;
    color: var(--fosseway-navy);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
}

.onsite-hero-content h2 .text-accent {
    color: var(--fosseway-green);
}

.onsite-lead {
    font-size: 1.15rem;
    color: var(--fosseway-grey);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.onsite-hero-image {
    position: relative;
}

.onsite-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 34, 68, 0.15);
}

/* Benefits Grid */
.onsite-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.onsite-benefit-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.onsite-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 34, 68, 0.12);
    border-color: var(--fosseway-green);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(12, 166, 120, 0.1) 0%, rgba(12, 166, 120, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--fosseway-green);
    transition: all 0.3s ease;
}

.onsite-benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--fosseway-green) 0%, #0a8f5a 100%);
    color: white;
    transform: scale(1.05);
}

.onsite-benefit-card h4 {
    font-size: 1.1rem;
    color: var(--fosseway-navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.onsite-benefit-card p {
    font-size: 0.9rem;
    color: var(--fosseway-grey);
    line-height: 1.65;
    margin: 0;
}

/* On-Site Section Responsive */
@media (max-width: 1024px) {
    .onsite-hero {
        gap: 3rem;
    }

    .onsite-hero-content h2 {
        font-size: 2.5rem;
    }

    .onsite-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .onsite-section {
        padding: 3.5rem 0;
    }

    .onsite-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 3rem;
    }

    .onsite-hero-content h2 {
        font-size: 2.25rem;
    }

    .onsite-lead {
        font-size: 1.05rem;
    }

    .onsite-hero-image {
        max-width: 450px;
        margin: 0 auto;
    }

    .onsite-benefit-card {
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .onsite-section {
        padding: 2.5rem 0;
    }

    .onsite-hero-content h2 {
        font-size: 1.85rem;
    }

    .onsite-benefits-grid {
        gap: 1rem;
    }

    .onsite-benefit-card {
        padding: 1.25rem 1rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .benefit-icon svg {
        width: 22px;
        height: 22px;
    }

    .onsite-benefit-card h4 {
        font-size: 1rem;
    }

    .onsite-benefit-card p {
        font-size: 0.85rem;
    }
}

/* ==============================================================================
   LEGACY GALLERY STYLES
   ============================================================================== */

.gallery-section {
    padding: var(--spacing-xl) 0;
    background-color: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: var(--spacing-sm);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #e5e7eb;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

/* ==============================================================================
   ABOUT CTA - REDESIGNED
   ============================================================================== */

.about-cta {
    position: relative;
    background: linear-gradient(135deg, var(--fosseway-navy) 0%, #001428 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.about-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.about-cta .container {
    position: relative;
    z-index: 1;
}

.about-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-eyebrow {
    display: inline-block;
    color: var(--fosseway-green);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.about-cta-content h2 {
    color: white;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.about-cta-content h2 .text-accent {
    color: var(--fosseway-green);
}

.about-cta-content>p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Responsive */
@media (max-width: 768px) {
    .about-cta {
        padding: 4rem 0;
    }

    .about-cta-content h2 {
        font-size: 2.25rem;
    }

    .about-cta-content>p {
        font-size: 1.05rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .about-cta {
        padding: 3rem 0;
    }

    .about-cta-content h2 {
        font-size: 1.85rem;
    }

    .about-cta-content>p {
        font-size: 0.95rem;
    }
}

/* ==============================================================================
   ABOUT PAGE RESPONSIVE
   ============================================================================== */

@media (max-width: 1024px) {

    .director-grid,
    .centres-grid {
        grid-template-columns: 1fr;
    }

    .director-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .director-content h2,
    .centres-content h2 {
        font-size: 1.75rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 180px);
    }

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
    }
}