/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    margin-top: 70px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="rgba(255,255,255,0.03)"/><path d="M0 0L60 60M60 0L0 60" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.header-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.7;
}

/* ===================================
   COMPANY OVERVIEW
   =================================== */
.company-overview {
    padding: 5rem 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.overview-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.overview-content p strong {
    color: var(--primary-color);
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.highlight-box svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.highlight-box p {
    margin: 0;
    color: var(--dark-color);
    font-size: 1rem;
}

.overview-image {
    position: relative;
}

.image-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: translateY(-10px);
}

.image-card .image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-card .image-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    opacity: 0.4;
}

.image-caption {
    padding: 1.5rem;
    text-align: center;
    background: var(--primary-color);
    color: white;
}

.image-caption h4 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.image-caption p {
    margin: 0;
    opacity: 0.9;
}

/* ===================================
   MISSION & VISION
   =================================== */
.mission-vision {
    padding: 5rem 0;
    background: var(--light-color);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.mv-icon svg {
    width: 35px;
    height: 35px;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===================================
   CORE VALUES
   =================================== */
.core-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.value-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.1;
}

.value-card .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.value-card .value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   ORGANIZATION STRUCTURE
   =================================== */
.organization-structure {
    padding: 5rem 0;
    background: var(--light-color);
}

.org-chart {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.org-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 200px;
    transition: all 0.3s ease;
    position: relative;
}

.org-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.org-box.board {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.org-box.management {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: white;
}

.org-box.consultant {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
}

.org-box.department {
    border: 2px solid var(--primary-color);
}

.org-box.support {
    border: 2px solid var(--secondary-color);
}

.org-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.org-icon svg {
    width: 100%;
    height: 100%;
}

.org-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.org-box h5 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.org-box p,
.org-box span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.org-connector {
    width: 2px;
    height: 40px;
    background: var(--border-color);
    margin: 0 auto;
}

.org-connector.multi {
    height: 2px;
    width: 80%;
    margin: 1rem auto;
}

/* ===================================
   CERTIFICATIONS
   =================================== */
.certifications {
    padding: 5rem 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-left-color: var(--secondary-color);
}

.cert-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.cert-badge svg {
    width: 35px;
    height: 35px;
}

.cert-content h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cert-number {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.cert-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================================
   WHY CHOOSE US
   =================================== */
.why-choose {
    padding: 5rem 0;
    background: var(--light-color);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.reason-icon {
    width: 50px;
    height: 50px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.reason-icon svg {
    width: 25px;
    height: 25px;
}

.reason-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.reason-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===================================
   CAPABILITIES
   =================================== */
.capabilities {
    padding: 5rem 0;
}

.capabilities-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.capabilities-list {
    display: grid;
    gap: 1.5rem;
}

.capability-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 1.5rem;
    align-items: start;
    transition: all 0.3s ease;
}

.capability-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.capability-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.capability-item h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.capability-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.capabilities-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 3rem;
    border-radius: 16px;
    color: white;
    text-align: center;
    position: sticky;
    top: 100px;
}

.capabilities-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.capabilities-cta p {
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.capabilities-cta .btn {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.capabilities-cta .btn:hover {
    background: white;
    color: var(--primary-color);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    .page-title {
        font-size: 2.5rem;
    }

    .overview-grid,
    .capabilities-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
    }

    .org-connector.multi {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }

    .capabilities-cta {
        position: static;
    }
}

@media (max-width: 640px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .overview-content h2 {
        font-size: 2rem;
    }

    .mv-card {
        padding: 2rem;
    }

    .values-grid,
    .cert-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .reason-item,
    .capability-item {
        flex-direction: column;
        text-align: center;
    }

    .reason-icon,
    .capability-number {
        margin: 0 auto;
    }
}