/**
 * company-about-us.css
 * Brand new CSS from scratch - isolated to page content only
 * Sandrian Ceylon
 */

/* Force main content visible */
main#main-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 100vh;
}

/* Company Overview Section */
main#main-content section .info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 3px solid transparent;
}

main#main-content section .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-top-color: #2c3892;
}

main#main-content section .info-card .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c3892, #3d4ba3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

main#main-content section .info-card .icon-box i {
    font-size: 2rem;
    color: #ffffff;
}

main#main-content section .info-card h3,
main#main-content section .info-card h4 {
    color: #212121;
    font-weight: 700;
    margin-bottom: 1rem;
}

main#main-content section .info-card p {
    color: #616161;
    line-height: 1.7;
    margin: 0;
}

/* Leadership Excellence Card */
main#main-content section .leadership-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

main#main-content section .leadership-card.premium-card {
    border: 2px solid rgba(44, 56, 146, 0.1);
}

main#main-content section .leadership-header {
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(44, 56, 146, 0.1);
    text-align: center;
}

main#main-content section .leadership-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2c3892, #3d4ba3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(44, 56, 146, 0.3);
}

main#main-content section .leadership-icon i {
    font-size: 3.5rem;
    color: #ffffff;
}

main#main-content section .leadership-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #212121;
    margin-bottom: 0.8rem;
}

main#main-content section .leadership-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

main#main-content section .leadership-content {
    padding-top: 2rem;
}

main#main-content section .highlight-box {
    background: linear-gradient(135deg, rgba(44, 56, 146, 0.05), rgba(61, 75, 163, 0.05));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2c3892;
    margin-bottom: 2rem;
}

main#main-content section .highlight-box .lead {
    color: #212121;
    line-height: 1.8;
    margin: 0;
}

/* Expertise Items */
main#main-content section .expertise-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

main#main-content section .expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

main#main-content section .expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(44, 56, 146, 0.1), rgba(61, 75, 163, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

main#main-content section .expertise-icon i {
    font-size: 1.8rem;
    color: #2c3892;
}

main#main-content section .expertise-item h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 1rem;
}

main#main-content section .expertise-item p {
    color: #616161;
    line-height: 1.7;
    margin: 0;
}

/* Qualification Section */
main#main-content section .qualification-section {
    background: rgba(44, 56, 146, 0.02);
    padding: 1.8rem;
    border-radius: 12px;
}

main#main-content section .section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3892;
    margin-bottom: 1.2rem;
}

main#main-content section .premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

main#main-content section .premium-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #212121;
    line-height: 1.6;
}

main#main-content section .premium-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f68712;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Expertise Badges Grid */
main#main-content section .expertise-grid {
    margin-top: 2rem;
}

main#main-content section .expertise-badge {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

main#main-content section .expertise-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

main#main-content section .expertise-badge i {
    font-size: 2rem;
    color: #2c3892;
    margin-bottom: 1rem;
}

main#main-content section .expertise-badge h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 0.8rem;
}

main#main-content section .expertise-badge p {
    color: #616161;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
main#main-content section .contact-section {
    background: linear-gradient(135deg, rgba(44, 56, 146, 0.03), rgba(246, 135, 18, 0.03));
    padding: 2rem;
    border-radius: 12px;
}

main#main-content section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

main#main-content section .contact-item:last-child {
    margin-bottom: 0;
}

main#main-content section .contact-item i {
    font-size: 1.5rem;
    color: #2c3892;
    min-width: 24px;
}

main#main-content section .contact-item span {
    color: #212121;
    font-weight: 500;
}

/* Competitive Advantage Cards */
main#main-content section .advantage-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 14px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid transparent;
}

main#main-content section .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-left-color: #2c3892;
}

main#main-content section .advantage-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(44, 56, 146, 0.1), rgba(246, 135, 18, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

main#main-content section .advantage-icon i {
    font-size: 2rem;
    color: #2c3892;
}

main#main-content section .advantage-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 1rem;
}

main#main-content section .advantage-card p {
    color: #616161;
    line-height: 1.7;
    margin: 0;
}

/* Office Location Cards */
main#main-content section .office-card {
    background: #ffffff;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

main#main-content section .office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.18);
}

main#main-content section .office-header {
    background: linear-gradient(135deg, #2c3892, #3d4ba3);
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

main#main-content section .office-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

main#main-content section .office-icon i {
    font-size: 2.2rem;
    color: #ffffff;
}

main#main-content section .office-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

main#main-content section .office-header .badge {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

main#main-content section .office-content {
    padding: 2rem;
}

main#main-content section .office-detail {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

main#main-content section .office-detail:last-child {
    margin-bottom: 0;
}

main#main-content section .office-detail i {
    font-size: 1.5rem;
    color: #2c3892;
    min-width: 24px;
    margin-top: 0.2rem;
}

main#main-content section .office-detail div strong {
    display: block;
    color: #212121;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

main#main-content section .office-detail div p {
    color: #616161;
    line-height: 1.6;
    margin: 0;
}

/* Core Values Cards */
main#main-content section .value-card {
    background: #ffffff;
    padding: 2.2rem;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

main#main-content section .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

main#main-content section .value-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #2c3892, #f68712);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(44, 56, 146, 0.3);
}

main#main-content section .value-icon i {
    font-size: 2rem;
    color: #ffffff;
}

main#main-content section .value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 1rem;
}

main#main-content section .value-card p {
    color: #616161;
    line-height: 1.7;
    margin: 0;
}

/* Animations */
main#main-content .animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

main#main-content .animate-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    main#main-content section .leadership-card {
        padding: 2rem 1.5rem;
    }
    
    main#main-content section .office-header,
    main#main-content section .office-content {
        padding: 1.5rem;
    }
    
    main#main-content section .info-card,
    main#main-content section .expertise-item,
    main#main-content section .advantage-card,
    main#main-content section .value-card {
        padding: 1.5rem;
    }
}
