/* =========================================
   CORPORATE INFORMATION 2026
   Complete CSS - All Content Included
   ========================================= */

.corporate-info-2026 {
    padding: 40px 0;
    background: #ebe8e88a;
    font-family: 'Inter', sans-serif;
}

/* Section Header */
.section-header-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-wrapper h6 {
    color: #667eea;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header-wrapper h2 {
    font-size: 42px;
    color: #1a202c;
    margin: 0;
}

/* Info Sections */
/* Section Layout */
.section-layout,
.vm-container,
.notice-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Number with Ring */
.section-number,
.vm-number,
.notice-number {
    position: relative;
    width: 150px;
    text-align: center;
    flex-shrink: 0;
}

.section-number span,
.vm-number span,
.notice-number span {
    font-size: 120px;
    font-weight: 900;
    color: rgba(102, 126, 234, 0.08);
    line-height: 1;
    display: block;
}

.number-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 190px;
    height: 190px;
    border: 3px solid rgba(102, 126, 234, 0.15);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Profile Text Content - Redesigned */
.profile-text-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Profile List */
.profile-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profile-list li:last-child {
    margin-bottom: 0;
}

.profile-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #07ecffab, rgb(49, 70, 98));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.profile-list li:nth-child(2)::before {
    background: linear-gradient(180deg, #11998e, #38ef7d);
}

.profile-list li:nth-child(3)::before {
    background: linear-gradient(180deg, #f093fb, #f5576c);
}

.profile-list li:nth-child(4)::before {
    background: linear-gradient(180deg, #fa709a, #fee140);
}

.profile-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.profile-list li:hover::before {
    transform: scaleY(1);
}

.list-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #07ecffab, rgb(49, 70, 98));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.profile-list li:nth-child(2) .list-icon {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.profile-list li:nth-child(3) .list-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.profile-list li:nth-child(4) .list-icon {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.profile-list li:hover .list-icon {
    transform: scale(1.1) rotate(5deg);
}

.list-content {
    flex: 1;
}

.list-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #4a5568;
    margin: 0;
    text-align: justify;
}

/* Vision & Mission Cards */
.vm-content-wrapper {
    flex: 1;
}

.vm-main-title {
    font-size: 28px;
    color: #1a202c;
    margin: 0 0 40px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vm-title-line {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #07ecffab, rgb(49, 70, 98));
    border-radius: 2px;
}

.vm-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.vm-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #07ecffab, rgb(49, 70, 98));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mission-card::before {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vision-card:hover {
    background: linear-gradient(135deg, #07ecffab, rgb(49, 70, 98));
}

.mission-card:hover {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.vm-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #07ecffab, rgb(49, 70, 98));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 15px;
    margin-bottom: 0;
    transition: transform 0.3s ease;
}

.vm-icon-box.green {
    background: linear-gradient(135deg, #a18cd1 0, #fbc2eb 100%);
}

.vm-card:hover .vm-icon-box {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
}

.vm-card h4 {
    font-size: 24px;
    margin: 0;
    color: #1a202c;
    transition: color 0.4s ease;
    flex: 1;
}

.vm-card p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    color: #4a5568;
    transition: color 0.4s ease;
    width: 100%;
    margin-top: 20px;
	text-align:justify;
}

.vision-card:hover h4,
.vision-card:hover p,
.mission-card:hover h4,
.mission-card:hover p {
    color: white;
}

/* Notice Section - Two Column Layout */
.notice-container {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.notice-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.notice-main-content {
    min-width: 0;
}

.notice-sidebar {
    position: sticky;
    top: 20px;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.notice-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.notice-header h3 {
    font-size: 24px;
    margin: 0 0 5px 0;
    color: #1a202c;
}

.notice-tag {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.notice-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 20px 0;
	text-align:justify;
}

.notice-content strong {
    color: #1a202c;
    font-weight: 700;
}

/* Notice List - Redesigned */
.notice-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.notice-list li {
    padding: 18px 20px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #07ecffab;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.notice-list li:hover {
    background: #f0f4f8;
    transform: translateX(5px);
}

.notice-list li:last-child {
    margin-bottom: 0;
	text-align:justify;
}

.notice-list i {
    color: #11998e;
    margin-right: 12px;
    font-size: 16px;
}

.notice-list strong {
    color: #1a202c;
    font-weight: 700;
    background: rgba(102, 126, 234, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.notice-contact-text {
    background: rgba(102, 126, 234, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin: 25px 0 !important;
}

.notice-thank {
    font-style: italic;
    color: #667eea;
    font-weight: 600;
    margin-top: 25px !important;
}

.notice-signature {
    margin-top: 30px !important;
    padding-top: 20px;
    border-top: 2px dashed #e2e8f0;
}

/* SDIC Section - Sidebar Card */
.sdic-section-modern {
    display: flex;
    justify-content: center;
}

.sdic-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    width: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sdic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a56db, #3b82f6, #60a5fa);
}

.sdic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.15);
}

.sdic-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a56db, #3b82f6);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.3);
}

.sdic-logo-container {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: inline-block;
    transition: transform 0.3s ease;
}

.sdic-card:hover .sdic-logo-container {
    transform: scale(1.05);
}

.sdic-logo-img {
    max-width: 180px;
    height: auto;
    display: block;
}

.sdic-info {
    margin-bottom: 20px;
}

.sdic-subtitle {
    font-size: 16px;
    color: #4a5568;
    margin: 3px 0;
    font-weight: 500;
}

.sdic-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 25px;
    background: rgba(59, 130, 246, 0.08);
    transition: all 0.3s ease;
}

.sdic-link-modern:hover {
    background: rgba(59, 130, 246, 0.15);
    color: #1a56db;
    transform: translateY(-2px);
}

.sdic-link-modern i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.sdic-link-modern:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 991px) {
    .section-layout,
    .vm-container,
    .notice-wrapper {
        flex-direction: column;
    }
    
    .section-number,
    .vm-number,
    .notice-number {
        width: 100%;
    }
    
    .profile-text-content {
        padding: 35px;
    }
    
    .vm-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .notice-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .corporate-info-2026 {
        padding: 30px 0 0 0;
    }
    
    .section-header-wrapper h2 {
        font-size: 32px;
    }
    
    .section-number span,
    .vm-number span,
    .notice-number span {
        font-size: 80px;
    }
    
    .number-ring {
        width: 110px;
        height: 110px;
    }
    
    .profile-text-content {
        padding: 25px;
    }
    
    .profile-list li {
        flex-direction: column;
        padding: 20px;
    }
    
    .list-icon {
        margin-bottom: 15px;
    }
    
    .notice-container {
        padding: 30px 20px;
    }
    
    .sdic-card {
        padding: 25px 20px;
    }
    
    .sdic-logo-img {
        max-width: 160px;
    }
    
    .sdic-badge {
        font-size: 16px;
        padding: 6px 16px;
    }
}