/* ===== TENTANG KAMI PAGE STYLES ===== */

/* Custom scroll animations removed - using WOW.js only */

/* Custom scroll animations removed - using WOW.js only */

/* Modern Clean Style - Main Banner */
.main-banner {
    background: #ffffff;
    padding: 200px 40px 90px 40px !important;
    color: #333;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

/* Company Profile Section - CTA Style with Orange Background */
#company-profile {
    background: #F7931E !important;
    position: relative;
    overflow: hidden;
}

#company-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

#company-profile .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#company-profile .btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

#company-profile .btn-outline-light:hover {
    background: white;
    color: #F7931E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

#company-profile .btn-outline-light:hover::before {
    left: 100%;
}

#company-profile .btn-light {
    background: white !important;
    border: none !important;
    color: #F7931E !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#company-profile .btn-light:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #F7931E !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.header-text {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0E0F3B;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(14, 15, 59, 0.1);
}

.hero-description {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 90%;
    font-weight: 400;
    opacity: 0.9;
}

/* Hero Image Styling - Clean & Simple */
.right-image {
    text-align: center;
    position: relative;
}

.right-image img {
    max-width: 85%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.right-image img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Card Styling - Modern Clean Design */
.tentang-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tentang-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(26, 27, 89, 0.1);
}

.tentang-card .card-body {
    padding: 2rem 1.5rem;
}

/* Stats Cards - Clean Modern Design */
.stats-cards {
    margin-top: 3rem;
}

.bsp-card {
    transition: all 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bsp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(26, 27, 89, 0.1);
}

.bsp-card .card-body {
    padding: 2.5rem 1.5rem;
}

.bsp-card .card-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
    color: #0E0F3B;
    text-shadow: 0 2px 4px rgba(14, 15, 59, 0.1);
}

.bsp-card:hover .card-title {
    color: #1a1b59;
    transform: scale(1.03);
}

.bsp-card .card-text {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.bsp-card:hover .card-text {
    color: #475569;
    transform: translateY(-1px);
    opacity: 1;
}

.bsp-card .card-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bsp-card .card-icon i {
    font-size: 3.5rem;
    color: #1a1b59;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
}

.bsp-card:hover .card-icon i {
    color: #F7931E;
    transform: scale(1.15) rotate(5deg);
}

.no-border {
    border: 0px;
}

/* About Section Styling */
.about-us.section {
    padding: 80px 0;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Vision & Mission Section Styles */
.vision-mission.section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.vision-mission .section-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.vision-mission .section-heading h4 {
    color: #0E0F3B;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.vision-mission .section-heading h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: #F7931E;
    border-radius: 2px;
}

.vision-mission .section-heading em {
    color: #F7931E;
    font-style: normal;
    position: relative;
}

.vision-mission .section-heading img {
    display: none;
}

.vision-mission .section-heading .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Vision & Mission Cards */
.vision-mission-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.vision-card::before {
    background: linear-gradient(90deg, #0E0F3B, #1a1b59);
}

.mission-card::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.vision-mission-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.vision-mission-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.vision-card .icon-wrapper {
    background: linear-gradient(135deg, #0E0F3B, #1a1b59);
    box-shadow: 0 8px 20px rgba(14, 15, 59, 0.3);
}

.mission-card .icon-wrapper {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.vision-mission-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

.vision-mission-card .card-content {
    position: relative;
    z-index: 2;
}

.vision-mission-card .card-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.vision-mission-card .card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-mission-card .card-content ul li {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.vision-mission-card .card-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.vision-mission-card .card-content ul li:last-child {
    margin-bottom: 0;
}

/* How We Work Section */
.how-we-work {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.how-we-work .section-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.how-we-work .section-heading h4 {
    color: #0E0F3B;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.how-we-work .section-heading h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: #F7931E;
    border-radius: 2px;
}

.how-we-work .section-heading em {
    color: #F7931E;
    font-style: normal;
    position: relative;
}

.how-we-work .section-heading img {
    display: none;
}

.how-we-work .section-heading .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.how-we-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.5;
    z-index: 1;
}

.how-we-work .container {
    position: relative;
    z-index: 2;
}

.work-step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid #e9ecef;
}

.work-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F7931E, #e67e22);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.work-step-card:hover::before {
    transform: scaleX(1);
}

.work-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(247, 147, 30, 0.15);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    line-height: 60px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #F7931E;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.work-step-card:hover .step-number::after {
    opacity: 0.3;
    transform: scale(1);
}

.step-icon {
    margin: 20px 0;
}

.step-icon i {
    font-size: 48px;
    color: #1a1b59;
    transition: all 0.3s ease;
}

.work-step-card:hover .step-icon i {
    color: #F7931E;
    transform: scale(1.15) rotate(5deg);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0 15px;
    transition: color 0.3s ease;
}

.work-step-card:hover .step-title {
    color: #F7931E;
}

.step-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Process Flow Illustration */
.process-flow {
    position: relative;
    margin-top: 60px;
    padding: 40px 0;
}

.flow-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545);
    border-radius: 2px;
    transform: translateY(-50%);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}

.flow-dots {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    position: relative;
    z-index: 2;
}

.flow-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #007bff;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.flow-dot::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid #007bff;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.flow-dot:hover::before,
.flow-dot.active::before {
    opacity: 0.3;
    transform: scale(1);
}

.flow-dot.active {
    background: #007bff;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.flow-dot:nth-child(2) {
    border-color: #28a745;
}

.flow-dot:nth-child(2).active {
    background: #28a745;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
}

.flow-dot:nth-child(3) {
    border-color: #ffc107;
}

.flow-dot:nth-child(3).active {
    background: #ffc107;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.flow-dot:nth-child(4) {
    border-color: #dc3545;
}

.flow-dot:nth-child(4).active {
    background: #dc3545;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
}

/* Responsive Design for Vision & Mission */
@media (max-width: 991px) {
    .vision-mission.section {
        padding: 80px 0;
    }
    
    .vision-mission .section-heading h4 {
        font-size: 2rem;
    }
    
    .vision-mission-card {
        padding: 30px 25px;
        margin-bottom: 30px;
    }
    
    .vision-mission-card h3 {
        font-size: 1.5rem;
    }
    
    /* How We Work Responsive */
    .how-we-work {
        padding: 60px 0;
    }
    
    .work-step-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        line-height: 50px;
    }
    
    .step-icon i {
        font-size: 40px;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .vision-mission.section {
        padding: 60px 0;
    }
    
    .vision-mission .section-heading h4 {
        font-size: 1.8rem;
    }
    
    .vision-mission-card {
        padding: 25px 20px;
    }
    
    .vision-mission-card .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .vision-mission-card h3 {
        font-size: 1.3rem;
    }
    
    /* How We Work Mobile */
    .how-we-work {
        padding: 40px 0;
    }
    
    .work-step-card {
        padding: 25px 15px;
        margin-bottom: 25px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        line-height: 45px;
        margin-bottom: 15px;
    }
    
    .step-icon i {
        font-size: 36px;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin: 15px 0 10px;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .process-flow {
        margin-top: 40px;
        padding: 30px 0;
    }
    
    .flow-line {
        left: 5%;
        right: 5%;
        height: 2px;
    }
    
    .flow-dots {
        padding: 0 5%;
    }
    
    .flow-dot {
        width: 16px;
        height: 16px;
        border-width: 3px;
    }
    
    .flow-dot::before {
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
    }
}

/* Section Heading Styling - Same as Contact */
.about-us .section-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.about-us .section-heading h4 {
    color: #0E0F3B;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-us .section-heading h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: #F7931E;
    border-radius: 2px;
}

.about-us .section-heading h4 em {
    color: #F7931E;
    font-style: normal;
    position: relative;
}

.about-us .section-heading img {
    display: none;
}

.about-us .section-heading p {
    margin-top: 10px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* BSP Card Styling - Same as Contact */
.bsp-card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 27, 89, 0.05);
    height: 100%;
}

.bsp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 27, 89, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bsp-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(26, 27, 89, 0.15);
    border-color: rgba(247, 147, 30, 0.2);
}

.bsp-card:hover::before {
    opacity: 1;
}

.bsp-card > .card-body {
    position: relative;
    z-index: 2;
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.bsp-card > .card-body > .card-icon {
    color: #1a1b59;
    font-size: 60px;
    text-align: center;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
    order: 1;
}

.bsp-card:hover > .card-body > .card-icon {
    transform: scale(1.2) rotate(5deg);
    color: #F7931E;
    text-shadow: 0 5px 15px rgba(247, 147, 30, 0.3);
}

.bsp-card > .card-body > .card-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    color: #2a2a2a;
    order: 2;
    line-height: 1.2;
}

.bsp-card:hover > .card-body > .card-title {
    color: #1a1b59;
    transform: scale(1.05);
}

.bsp-card > .card-body > .card-text {
    text-align: center;
    transition: all 0.3s ease;
    color: #666;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    order: 3;
    margin-bottom: 0;
}

.bsp-card:hover > .card-body > .card-text {
    color: #555;
    transform: translateY(-2px);
}

.no-border {
    border: 0px;
}



/* Responsive Design */
@media (max-width: 991px) {
    .bsp-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .about-us.section {
        padding: 60px 0;
    }
    
    .about-us .section-heading h4 {
        font-size: 24px;
    }
    
    .about-us .section-heading p {
        font-size: 15px;
    }
    
    .about-info-card {
        padding: 2.5rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .about-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .about-icon-circle i {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .bsp-card {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .bsp-card > .card-body {
        padding: 1.8rem 1.3rem;
    }
    
    .bsp-card > .card-body > .card-icon {
        font-size: 45px;
    }
    
    .about-us .section-heading {
        margin-bottom: 3.5rem;
    }
}

@media (max-width: 768px) {
    .about-us.section {
        padding: 50px 0;
    }
    
    .about-us .section-heading {
        margin-bottom: 3rem;
    }
    
    .about-us .section-heading h4 {
        font-size: 22px;
    }
    
    .about-us .section-heading p {
        font-size: 14px;
    }
    
    .bsp-card > .card-body {
        padding: 1.5rem 1rem;
    }
    
    .bsp-card > .card-body > .card-icon {
        font-size: 40px;
    }
    
    .bsp-card > .card-body > .card-title {
        font-size: 1.3rem;
    }
    
    .bsp-card > .card-body > .card-text {
        font-size: 0.95rem;
    }
    
    .about-info-card {
        padding: 2rem 1.5rem;
    }
    
    .about-info-card h4 {
        font-size: 1.4rem;
    }
    
    .about-info-card p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-us.section {
        padding: 40px 0;
    }
    
    .about-us .section-title h2 {
        font-size: 1.8rem;
    }
    
    .about-info-card {
        padding: 1.8rem 1.2rem;
    }
    
    .about-icon-circle {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .about-icon-circle i {
        font-size: 1.8rem;
    }
    
    .about-info-card h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

/* Company Info Cards - Clean Modern Design */
.company-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.company-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(26, 27, 89, 0.15);
    border-color: #cbd5e1;
}

.company-info-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0E0F3B;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.company-info-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
}

.company-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: #1a1b59;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 27, 89, 0.2);
    color: white;
    font-size: 2rem;
}

.company-info-card:hover .company-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(26, 27, 89, 0.3);
}

/* Work Process Section - Clean Modern Design */
.work-process-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.work-process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 27, 89, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.work-process-image:hover .work-process-overlay {
    opacity: 1;
}

.work-process-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.work-process-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.work-process-content h4 em {
    color: #F7931E;
    font-style: normal;
}

.work-steps-container {
    padding-left: 2rem;
}

.work-step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.work-step-item::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: #1a1b59;
    opacity: 0.2;
}

.work-step-item:last-child::before {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1a1b59;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(26, 27, 89, 0.25);
    transition: all 0.3s ease;
}

.work-step-item:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 5px 18px rgba(26, 27, 89, 0.35);
}

.step-content h5 {
    color: #1a1b59;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Section Headings - Visual Hierarchy */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0E0F3B;
    text-align: center;
    margin-bottom: 1.2rem;
    letter-spacing: -0.015em;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(14, 15, 59, 0.08);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.65;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
}

/* Team Section - Clean Modern Design */
.team-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(26, 27, 89, 0.1);
}

.team-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0E0F3B;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.team-card .position {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
}

.team-card img {
    object-fit: cover;
    height: 300px;
}

.team-card .card-body h4 {
    color: #1a1b59;
}

.team-card .card-body .text-primary {
    color: #F7931E !important;
}

.download-simple .btn {
    margin-bottom: 8px;
}

.download-simple .file-info {
    font-size: 0.9rem;
    color: #94a3b8;
    font-style: italic;
}

.download-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(26, 27, 89, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
    text-align: center;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 27, 89, 0.12);
}

.download-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.download-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a1b59 0%, #0E0F3B 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.download-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.download-card:hover .download-icon {
    background: linear-gradient(135deg, #F7931E 0%, #e67e22 100%);
    transform: scale(1.05);
}

.download-info h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0E0F3B;
    margin-bottom: 0.5rem;
}

.download-info p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.btn-download {
    background: linear-gradient(135deg, #1a1b59 0%, #0E0F3B 100%) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 0.8rem 1.8rem !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s ease !important;
}

.btn-download:hover {
    background: linear-gradient(135deg, #F7931E 0%, #e67e22 100%) !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Responsive Design for Download Section */
@media (max-width: 768px) {
    .download-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .download-icon {
        width: 60px;
        height: 60px;
    }
    
    .download-icon i {
        font-size: 1.8rem;
    }
    
    .download-info h5 {
        font-size: 1.3rem;
    }
}

/* CTA Section - Clean Modern Design */
.cta-section {
    background: #1a1b59;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-section .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-section .btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-section .btn-outline-light:hover {
    background: white;
    color: #1a1b59;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-outline-light:hover::before {
    left: 100%;
}

/* CTA Section Button Styling */
.btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    border: none !important;
    color: #fff !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    text-decoration: none !important;
}

.btn-success::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
    transition: left 0.6s ease !important;
}

.btn-success:hover::before {
    left: 100% !important;
}

.btn-success:hover {
    background: linear-gradient(135deg, #20b358 0%, #128c7e 100%) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-banner {
        padding: 120px 20px 70px 20px !important;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .right-image {
        margin-top: 2rem;
    }
    
    .right-image img {
        max-width: 90%;
        max-height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .bsp-card .card-title {
        font-size: 1.8rem;
    }
    
    .bsp-card .card-icon {
        font-size: 2.5rem;
    }
    
    .work-steps-container {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .about-icon-circle,
    .company-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .about-icon-circle img {
        width: 30px;
        height: 30px;
    }
    
    .company-icon-circle {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .main-banner {
        padding: 100px 15px 60px 15px !important;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .section-heading h4 {
        font-size: 1.5rem;
    }
    
    .bsp-card {
        margin-bottom: 20px;
    }
    
    .bsp-card .card-body {
        padding: 1.5rem 1rem;
    }
    
    .bsp-card .card-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .bsp-card .card-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .bsp-card .card-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Animation Classes removed - using WOW.js only */

/* Utility Classes */
.bg-light {
    background-color: #f8f9fa !important;
}

.text-muted {
    color: #6c757d !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.h-100 {
    height: 100% !important;
}

.object-cover {
    object-fit: cover;
}

.rounded-start {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
}

.g-0 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.d-flex {
    display: flex !important;
}

.gap-3 {
    gap: 1rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Form Control Styling - Selaras dengan Contact View */
.form-control, .form-select {
    border-radius: 15px;
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #0E0F3B;
    box-shadow: 0 0 0 0.2rem rgba(14, 15, 59, 0.25);
    transform: translateY(-2px);
}

/* Button Styling - Selaras dengan Contact View */
.btn-primary {
    background: linear-gradient(135deg, #0E0F3B 0%, #1a1b59 100%) !important;
    border: none !important;
    border-radius: 15px !important;
    padding: 15px 30px !important;
    font-weight: 600 !important;
    color: white !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    display: inline-block !important;
    box-shadow: 0 4px 15px rgba(14, 15, 59, 0.2) !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(14, 15, 59, 0.4) !important;
    background: linear-gradient(135deg, #1a1b59 0%, #2a2b69 100%) !important;
    color: white !important;
    text-decoration: none !important;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Outline Button Styling - Selaras dengan Contact View */
.btn-outline-primary {
    color: #0E0F3B !important;
    border-color: #0E0F3B !important;
    border-radius: 15px !important;
    padding: 12px 25px !important;
    font-weight: 600 !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 15, 59, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-outline-primary:hover {
    background-color: #0E0F3B !important;
    border-color: #0E0F3B !important;
    color: #fff !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(14, 15, 59, 0.3) !important;
}

.btn-outline-primary:hover::before {
    left: 100%;
}

.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.5rem;
}

/* ===== RESPONSIVE FIXES FOR 14 INCH SCREENS ===== */
@media (min-width: 1200px) and (max-width: 1440px) {
    /* Main Banner Optimization */
    .main-banner {
        padding: 100px 40px 60px 40px !important;
    }
    
    .hero-title {
        font-size: 2.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 1.8rem;
    }
    
    /* About Us Section */
    .about-us .section-heading h4 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .about-us .section-heading p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    /* Vision Mission Cards */
    .vision-mission-card {
        padding: 35px 25px;
    }
    
    .vision-mission-card h3 {
        font-size: 1.6rem;
    }
    
    .vision-mission-card .card-content p,
    .vision-mission-card .card-content ul li {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Work Step Cards */
    .work-step-card {
        padding: 35px 20px;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* BSP Cards */
    .bsp-card > .card-body {
        padding: 2.2rem 1.3rem;
        min-height: 260px;
    }
    
    .bsp-card > .card-body > .card-title {
        font-size: 26px;
    }
    
    .bsp-card > .card-body > .card-icon {
        font-size: 55px;
    }
    
    /* Section Spacing */
    .section {
        padding: 70px 0px;
    }
    
    .vision-mission.section,
    .how-we-work {
        padding: 80px 0;
    }
    
    .about-us.section {
        padding: 70px 0;
    }
}

/* Extra optimization for 1366px screens */
@media (min-width: 1300px) and (max-width: 1400px) {
    .main-banner {
        padding: 135px 30px 50px 30px !important;
    }
    
    .hero-title {
        font-size: 2.6rem !important;
        line-height: 1.25 !important;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-us .section-heading h4 {
        font-size: 2rem;
    }
    
    .about-us .section-heading p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .vision-mission-card {
        padding: 30px 20px;
    }
    
    .work-step-card {
        padding: 30px 18px;
    }
}

/* ===== RESPONSIVE FONT SIZE OPTIMIZATION FOR TENTANG KAMI PAGE ===== */

/* For 1366x768 and similar resolutions */
@media (min-width: 1300px) and (max-width: 1400px) {
    /* Hero section with 60px font */
    .main-banner h2,
    .hero-title {
        font-size: 45px !important;
        line-height: 52px !important;
    }
    
    /* Large headings with 55px font */
    .bsp-card > .card-body > .card-icon,
    .large-heading {
        font-size: 42px !important;
        line-height: 48px !important;
    }
    
    /* Section titles with 48px font */
    .section-title,
    .about-section-title {
        font-size: 38px !important;
        line-height: 44px !important;
    }
    
    /* Subsection headings with 45px font */
    .section-heading h2,
    .subsection-heading {
        font-size: 35px !important;
        line-height: 42px !important;
    }
}

/* For 1024x768 and tablet landscape */
@media (min-width: 1024px) and (max-width: 1199px) {
    /* Hero section with 60px font */
    .main-banner h2,
    .hero-title {
        font-size: 40px !important;
        line-height: 46px !important;
    }
    
    /* Large headings with 55px font */
    .bsp-card > .card-body > .card-icon,
    .large-heading {
        font-size: 38px !important;
        line-height: 44px !important;
    }
    
    /* Section titles with 48px font */
    .section-title,
    .about-section-title {
        font-size: 34px !important;
        line-height: 40px !important;
    }
    
    /* Subsection headings with 45px font */
    .section-heading h2,
    .subsection-heading {
        font-size: 32px !important;
        line-height: 38px !important;
    }
}

/* For tablet portrait */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Hero section with 60px font */
    .main-banner h2,
    .hero-title {
        font-size: 36px !important;
        line-height: 42px !important;
    }
    
    /* Large headings with 55px font */
    .bsp-card > .card-body > .card-icon,
    .large-heading {
        font-size: 34px !important;
        line-height: 40px !important;
    }
    
    /* Section titles with 48px font */
    .section-title,
    .about-section-title {
        font-size: 30px !important;
        line-height: 36px !important;
    }
    
    /* Subsection headings with 45px font */
    .section-heading h2,
    .subsection-heading {
        font-size: 28px !important;
        line-height: 34px !important;
    }
}