/* Main Stylesheet - BeeHive Inspired */
:root {
    --primary: #f9a517;
    --secondary: #3a353b;
    --text-dark: #2d2a2e;
    --text-light: #6b7280;
    --border-light: #e5e7eb;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --font-primary: 'Inter', sans-serif;
}

/* Base Styles */
body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

/* Container */
.container {
    max-width: 1280px;
    padding: 0 24px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Welcome Section */
.content-section {
    padding: 60px 0;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.content-section p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
}

.stat-hex {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.stat-hex i {
    font-size: 60px;
    color: var(--primary);
    opacity: 0.2;
}

.stat-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Features */
.features {
    margin: 30px 0;
}

.feature {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature i {
    font-size: 24px;
    color: var(--primary);
    margin-top: 4px;
}

.feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-link:hover {
    color: var(--text-dark);
}

.btn-link i {
    transition: transform 0.2s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Hive Grid */
.hive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
}

.hive-cell {
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
    aspect-ratio: 1 / 1.1;
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    transition: transform 0.3s ease;
}

.hive-cell:hover {
    transform: scale(1.05);
}

.hive-cell.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 2 / 2.2;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(249,165,23,0.05);
}

.service-icon {
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 32px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.service-link:hover {
    color: var(--primary);
}

.service-link i {
    font-size: 12px;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #ffb84d 100%);
    padding: 60px 0;
}

.cta-wrapper {
    background: var(--white);
    padding: 48px;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.btn-cta {
    display: inline-block;
    padding: 14px 36px;
    background-color: var(--secondary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-cta:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-cta i {
    margin-left: 8px;
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-item {
    text-align: center;
}

.partner-item img {
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-item img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Gallery Styles */
.page-header {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 24px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(58, 53, 59, 0.9), transparent);
    padding: 30px 20px 20px;
    transition: bottom 0.3s ease;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Background Utilities */
.bg-light {
    background-color: var(--bg-light);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.notification.success {
    background-color: #28a745;
}

.notification.error {
    background-color: #dc3545;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 99;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(249,165,23,0.3);
}

.back-to-top:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

/* Sticky Header Support */
.main-nav.sticky {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-wrapper {
        padding: 40px;
    }

    .cta-title {
        text-align: center;
    }

    .cta-text {
        text-align: center;
        margin-bottom: 20px;
    }

    .text-lg-end {
        text-align: center !important;
    }

    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hive-grid {
        margin-top: 40px;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-wrapper {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .gallery-item img {
        height: 180px;
    }
}

/* Hive Grid Overlay */
.hive-cell {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
    aspect-ratio: 1 / 1.1;
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hive-cell:hover {
    transform: scale(1.05);
}

.hive-cell.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 2 / 2.2;
}

/* Hive Overlay */
.hive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 165, 23, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
}

.hive-cell:hover .hive-overlay {
    opacity: 1;
}

.hive-overlay span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 10px;
}

/* Services Grid - Smaller Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 24px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(249,165,23,0.08);
}

.service-icon {
    margin-bottom: 16px;
}

.service-icon i {
    font-size: 28px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Remove old service link styles if they exist */
.service-link {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        padding: 16px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 1rem;
    }
}

/* Clients CTA Button */
.clients-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.clients-cta:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 165, 23, 0.2);
}

.clients-cta i:last-child {
    transition: transform 0.3s ease;
}

.clients-cta:hover i:last-child {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .clients-cta {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .clients-cta {
        padding: 12px 24px;
        font-size: 0.9375rem;
        gap: 8px;
    }
}

/* About Page Styles */

/* About Highlights */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.125rem;
    width: 24px;
}

.highlight-item strong {
    color: var(--text-dark);
}

/* About Image Grid */
.about-image-grid {
    position: relative;
}

.about-main-img {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
}

.about-year-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    padding: 20px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(249, 165, 23, 0.3);
}

.about-year-badge .year {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.about-year-badge .label {
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.9;
}

/* Training Grid */
.training-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.training-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.training-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(249, 165, 23, 0.08);
}

.training-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.training-card h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Recognition Grid */
.recognition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.recognition-item {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.recognition-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.recognition-item.highlight {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff9f0 0%, var(--white) 100%);
}

.recognition-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.recognition-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.recognition-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.recognition-item small {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.approach-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.approach-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(249, 165, 23, 0.08);
}

.approach-step {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 10px;
}

.approach-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.approach-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Stat Subtitle */
.stat-sub {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recognition-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-main-img {
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .training-number {
        font-size: 2rem;
    }

    .recognition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-year-badge {
        padding: 15px 20px;
        bottom: 20px;
        right: 20px;
    }

    .about-year-badge .year {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .training-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .recognition-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .recognition-number {
        font-size: 1.5rem;
    }

    .about-main-img {
        height: 250px;
    }

    .about-year-badge {
        padding: 12px 16px;
    }

    .about-year-badge .year {
        font-size: 1.5rem;
    }
}

/* Services Page Styles */

/* Service Detail Card */
.service-detail-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
}

.service-detail-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(249, 165, 23, 0.08);
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 165, 23, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-detail-icon i {
    font-size: 28px;
    color: var(--primary);
}

.service-detail-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-detail-card > p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--primary);
    font-size: 0.875rem;
}

/* Impact Grid */
.service-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.impact-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.impact-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.impact-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Training Programs */
.training-programs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.program-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.program-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(249, 165, 23, 0.08);
}

.program-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.program-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.program-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Publication Grid */
.publication-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.publication-item {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.publication-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.publication-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.publication-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.publication-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .training-programs {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .publication-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .training-programs {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .program-card {
        padding: 20px;
    }

    .service-impact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .impact-number {
        font-size: 2rem;
    }

    .publication-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .publication-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .service-impact-grid {
        grid-template-columns: 1fr;
    }

    .training-programs {
        grid-template-columns: 1fr;
    }

    .publication-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 20px;
    }
}

/* Training Page Styles */

/* Training Impact Stats */
.training-impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.training-stat {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.training-stat:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.training-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.training-stat p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Training Categories */
.training-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(249, 165, 23, 0.08);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.category-card > p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.category-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topic-tag {
    background: rgba(249, 165, 23, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Delivery Grid */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.delivery-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.delivery-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.delivery-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.delivery-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.delivery-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Training Delivery Stats */
.training-delivery-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.delivery-stat {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.delivery-stat:hover {
    border-color: var(--primary);
}

.delivery-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.delivery-stat p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--primary);
    margin-bottom: 16px;
}

.testimonial-stars i {
    font-size: 0.875rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 992px) {
    .training-impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-delivery-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .training-impact-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .training-stat-number {
        font-size: 2rem;
    }

    .training-categories {
        grid-template-columns: 1fr;
    }

    .delivery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .training-delivery-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .training-impact-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .training-delivery-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .category-card {
        padding: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }
}

/* Contact Page Styles */

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border-light);
}

.contact-form-wrapper .section-title {
    margin-bottom: 8px;
}

.contact-form-wrapper .section-text {
    margin-bottom: 30px;
}

.contact-form .form-label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-form .required {
    color: #dc3545;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 165, 23, 0.1);
}

.contact-form .form-control::placeholder {
    color: #adb5bd;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 53, 59, 0.2);
}

.btn-submit i {
    font-size: 0.875rem;
}

/* Contact Information */
.contact-info-wrapper {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border-light);
    height: 100%;
}

.contact-info-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-wrapper > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(249, 165, 23, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    font-size: 20px;
    color: var(--primary);
}

.contact-info-content h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.contact-info-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-content a:hover {
    color: var(--primary);
}

/* Contact Social */
.contact-social h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-social .social-links {
    display: flex;
    gap: 12px;
}

.contact-social .social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social .social-link:hover {
    transform: translateY(-3px);
}

.contact-social .linkedin { background: #0077b5; }
.contact-social .twitter { background: #000000; }
.contact-social .xing { background: #006567; }
.contact-social .facebook { background: #1877f2; }
.contact-social .instagram { background: #e4405f; }
.contact-social .youtube { background: #ff0000; }

/* Map */
.map-wrapper {
    margin-top: 40px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border: 1px solid var(--border-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Quick Connect */
.quick-connect-wrapper {
    margin-top: 20px;
}

.quick-connect-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.quick-connect-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(249, 165, 23, 0.08);
}

.quick-connect-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.quick-connect-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.quick-connect-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.quick-connect-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.quick-connect-link:hover {
    color: var(--secondary);
}

/* FAQ */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--text-dark);
}

.faq-toggle {
    color: var(--primary);
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Form Success Message */
.form-success {
    display: none;
    padding: 20px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: 6px;
    margin-top: 20px;
}

.form-success.show {
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-form-wrapper {
        padding: 30px;
    }

    .contact-info-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-info-wrapper {
        padding: 24px;
    }

    .map-container {
        height: 300px;
    }

    .quick-connect-card {
        padding: 24px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-question h4 {
        font-size: 0.9375rem;
    }

    .faq-answer {
        padding: 0 20px 16px;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 16px;
    }

    .contact-info-wrapper {
        padding: 16px;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .contact-social .social-links {
        flex-wrap: wrap;
        gap: 8px;
    }

    .map-container {
        height: 200px;
    }
}

/* Clients Page Styles */

/* Client Categories */
.client-category {
    margin-bottom: 50px;
}

.client-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}

.category-header .category-icon {
    width: 48px;
    height: 48px;
    background: rgba(249, 165, 23, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-header .category-icon i {
    font-size: 24px;
    color: var(--primary);
}

.category-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Client Grid */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
    align-items: center;
}

.client-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.client-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(249, 165, 23, 0.08);
}

/* Zoom/Crop 30% - Using object-fit and scale */
.client-item img {
    max-width: 130%;
    max-height: 130%;
    width: 130%;
    height: 130%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    /* Original colors - no grayscale */
    filter: none;
    opacity: 1;
}

.client-item:hover img {
    transform: scale(1.05);
}

.no-clients {
    color: var(--text-light);
    font-size: 0.9375rem;
    padding: 20px 0;
    grid-column: 1 / -1;
    text-align: center;
}

/* Client Stats */
.client-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.client-stat-item {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.client-stat-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.client-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.client-stat-item p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* Testimonial */
.testimonial-wrapper {
    padding: 40px 0;
}

.testimonial-quote {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-quote p {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 16px;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 992px) {
    .client-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }

    .client-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .client-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 12px;
    }

    .client-item {
        min-height: 100px;
        padding: 12px;
    }

    .client-item img {
        max-width: 140%;
        max-height: 140%;
        width: 140%;
        height: 140%;
    }

    .client-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .client-stat-number {
        font-size: 2rem;
    }

    .category-header h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .client-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 10px;
    }

    .client-item {
        min-height: 80px;
        padding: 10px;
    }

    .client-item img {
        max-width: 150%;
        max-height: 150%;
        width: 150%;
        height: 150%;
    }

    .client-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .client-stat-number {
        font-size: 1.5rem;
    }

    .client-stat-item {
        padding: 20px 16px;
    }

    .testimonial-quote {
        padding: 24px 16px;
    }

    .testimonial-quote p {
        font-size: 1rem;
    }
}

/* Gallery Page Styles */

/* Gallery Filter */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 53, 59, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: var(--white);
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary);
    padding: 4px 12px;
    margin-bottom: 10px;
}

.gallery-info h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.gallery-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--secondary);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-view:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.gallery-view i {
    font-size: 16px;
}

/* No Images */
.no-images {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border: 1px solid var(--border-light);
}

.no-images i {
    font-size: 3rem;
    color: var(--text-light);
    opacity: 0.3;
    margin-bottom: 16px;
}

.no-images p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-caption {
    color: var(--white);
    margin-top: 16px;
    font-size: 1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 16px;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Load More */
.load-more-btn {
    padding: 12px 40px;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: transparent;
    color: var(--primary);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .gallery-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 0.8125rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }

    .lightbox-modal {
        padding: 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 12px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-filter {
        gap: 6px;
    }

    .filter-btn {
        padding: 4px 12px;
        font-size: 0.75rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 10px;
    }

    .gallery-info h4 {
        font-size: 0.875rem;
    }

    .gallery-view {
        width: 32px;
        height: 32px;
    }

    .gallery-view i {
        font-size: 14px;
    }
}