/* ============================================
   SAYHAN INTERNATIONAL - Static Projects CSS
   ============================================ */

.sayhan-projects-static {
    padding: 120px 0;
    position: relative;
}
@media (max-width: 767.98px) {
    .sayhan-projects-static { padding: 100px 0; }
}
.sayhan-sector-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: default;
    height: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sayhan-sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
.sayhan-sector-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.sayhan-sector-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.sayhan-sector-card:hover .sayhan-sector-img img {
    transform: scale(1.05);
}
.sayhan-sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%);
    transition: background 0.3s ease;
}
.sayhan-sector-card:hover .sayhan-sector-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
}
.sayhan-sector-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    z-index: 2;
}
.sayhan-sector-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    max-width: 75%;
    font-family: var(--tg-body-font-family);
}
.sayhan-sector-badge {
    align-self: flex-end;
    background: var(--tg-theme-primary, #f7a400);
    border-radius: 10px;
    padding: 6px 14px;
    min-width: 52px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.sayhan-sector-count {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    font-family: var(--tg-heading-font-family);
}
@media (max-width: 991.98px) {
    .sayhan-sector-card { height: 200px; }
    .sayhan-sector-name { font-size: 15px; }
    .sayhan-sector-count { font-size: 24px; }
}
@media (max-width: 575.98px) {
    .sayhan-sector-card { height: 180px; }
    .sayhan-sector-name { font-size: 14px; max-width: 70%; }
    .sayhan-sector-count { font-size: 22px; }
    .sayhan-sector-badge { padding: 5px 10px; min-width: 44px; }
}

/* ============================================
   SAYHAN INTERNATIONAL - Organogram CSS
   ============================================ */

.sayhan-organogram-section {
    padding: 120px 0;
    background: #f7f7f8;
}

.sayhan-org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sayhan-org-box {
    border-radius: 6px;
    padding: 12px 24px;
    text-align: center;
    font-family: var(--tg-heading-font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.sayhan-org-top {
    background: #191d88;
    color: #fff;
    font-size: 18px;
    padding: 14px 50px;
}

.sayhan-org-mid {
    background: #191d88;
    color: #fff;
}

.sayhan-org-advisory {
    background: #e6eeff !important;
    color: #191d88 !important;
    border: 2px solid #191d88 !important;
    font-size: 13px;
    min-width: 160px;
    flex-shrink: 0;
}

.sayhan-org-gm {
    background: #f7a400;
    color: #fff;
    width: 100%;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 6px 6px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sayhan-org-gm strong {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.sayhan-org-ceo {
    padding: 14px 60px;
}

.sayhan-org-connector-v {
    width: 2px;
    height: 30px;
    background: #191d88;
}

.sayhan-org-connector-h-wrap {
    width: 75%;
    position: relative;
    margin: 0 auto;
}

.sayhan-org-connector-h {
    height: 2px;
    background: #191d88;
    position: relative;
}

.sayhan-org-connector-h::before {
    content: '';
    position: absolute;
    left: 0;
    top: -28px;
    width: 2px;
    height: 30px;
    background: #191d88;
}

.sayhan-org-level {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sayhan-org-ceo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sayhan-org-ceo-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.sayhan-org-ceo-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 20px;
}

.sayhan-org-advisory-line {
    width: 40px;
    height: 2px;
    background: #191d88;
    flex-shrink: 0;
}

.sayhan-org-level-4 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    align-items: flex-start;
}

.sayhan-org-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
}

.sayhan-org-col::before {
    content: '';
    width: 2px;
    height: 30px;
    background: #191d88;
    display: block;
    margin: 0 auto;
}

.sayhan-org-sub-list {
    background: #191d88;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}

.sayhan-org-sub-item {
    color: #fff;
    font-size: 12px;
    padding: 8px 12px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: left;
    line-height: 1.4;
}

.sayhan-org-sub-item::before {
    content: '○ ';
    opacity: 0.7;
}

@media (max-width: 991.98px) {
    .sayhan-org-level-4 { flex-wrap: wrap; }
    .sayhan-org-col { flex: 0 0 calc(50% - 10px); }
    .sayhan-org-connector-h-wrap { width: 90%; }
    .sayhan-org-ceo-right { margin-left: 10px; }
}

@media (max-width: 575.98px) {
    .sayhan-org-level-4 { flex-direction: column; }
    .sayhan-org-col { flex: 0 0 100%; }
    .sayhan-org-connector-h-wrap { display: none; }
    .sayhan-org-col::before { display: none; }
    .sayhan-organogram-section { padding: 80px 0; }
    .sayhan-org-ceo-right { display: none; }
}
