/* Clean Corporate About Section Styles */
#about {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}

/* Decorative Background Elements */
#about::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.05) 0%, rgba(27, 58, 107, 0.02) 100%);
    border-radius: 50%;
    z-index: 0;
}

#about::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.03) 0%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
}




/* ── Sambutan Wrapper ───────────────────────── */
.sambutan-wrapper {
    display: flex;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(27, 58, 107, 0.14);
    position: relative;
    z-index: 1;
    min-height: 520px;
}

/* ── Profile Card (Left) ────────────────────── */
.sambutan-profile-card {
    flex: 0 0 400px;
    min-width: 400px;
    background: linear-gradient(160deg, #0d2150 0%, #1B3A6B 50%, #2a5298 100%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Decorative circles */
.sambutan-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.sambutan-circle-1 {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -80px;
}

.sambutan-circle-2 {
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: -50px;
    background: rgba(255, 255, 255, 0.04);
}

/* Avatar — foto besar mengisi panel */
.sambutan-avatar-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.sambutan-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.sambutan-wrapper:hover .sambutan-avatar-wrapper img {
    transform: scale(1.04);
}

/* Overlay gradient pada foto */
.sambutan-avatar-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(13, 33, 80, 0.85) 0%, transparent 100%);
    pointer-events: none;
}

/* Identity */
.sambutan-identity {
    position: relative;
    z-index: 2;
    padding: 24px 24px 28px;
}

.sambutan-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sambutan-position-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.sambutan-position-badge i {
    color: #ffd700;
    font-size: 13px;
}

/* Divider & Tagline */
.sambutan-profile-divider {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin: 12px auto 10px;
    position: relative;
    z-index: 2;
}

.sambutan-profile-tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin: 0;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

/* ── Welcome Card (Right) ───────────────────── */
.sambutan-welcome-card {
    flex: 1;
    background: #ffffff;
    padding: 48px 52px;
    position: relative;
    display: flex;
    flex-direction: column;
    border-left: 0;
}

/* Top accent line */
.sambutan-welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1B3A6B 0%, #4a90d9 100%);
}

/* Quote icon */
.sambutan-quote-icon {
    margin-bottom: 16px;
}

.sambutan-quote-icon i {
    font-size: 52px;
    color: rgba(27, 58, 107, 0.12);
    line-height: 1;
    display: block;
}

/* Content typography */
.sambutan-welcome-content {
    flex: 1;
    color: #495057;
    font-size: 15.5px;
    line-height: 1.85;
}

.sambutan-welcome-content h1,
.sambutan-welcome-content h2,
.sambutan-welcome-content h3,
.sambutan-welcome-content h4 {
    color: #1B3A6B;
    font-weight: 700;
    margin-bottom: 14px;
    margin-top: 24px;
}

.sambutan-welcome-content h1:first-child,
.sambutan-welcome-content h2:first-child,
.sambutan-welcome-content h3:first-child {
    margin-top: 0;
}

.sambutan-welcome-content p {
    margin-bottom: 16px;
    color: #495057;
}

.sambutan-welcome-content ul,
.sambutan-welcome-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.sambutan-welcome-content li {
    margin-bottom: 8px;
}

/* Signature footer */
.sambutan-welcome-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(27, 58, 107, 0.08);
}

.sambutan-signature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sambutan-signature-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #1B3A6B, transparent);
    max-width: 80px;
    border-radius: 2px;
}

.sambutan-signature span {
    font-size: 14px;
    font-weight: 600;
    color: #1B3A6B;
    font-style: italic;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 991px) {
    .sambutan-wrapper {
        flex-direction: column;
        min-height: unset;
    }

    .sambutan-profile-card {
        flex: unset;
        min-width: unset;
        padding: 40px 24px;
    }

    .sambutan-welcome-card {
        padding: 36px 32px;
    }
}

@media (max-width: 576px) {
    .sambutan-welcome-card {
        padding: 28px 24px;
    }

    .sambutan-name {
        font-size: 16px;
    }

    .sambutan-quote-icon i {
        font-size: 40px;
    }

    .sambutan-welcome-content {
        font-size: 14.5px;
    }

    .sambutan-avatar-wrapper {
        min-height: 220px;
    }
}

/* Clean Corporate Services Section Styles */
#services {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    overflow: hidden;
}

/* Decorative Background Elements */
#services::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.04) 0%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
}

#services::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.03) 0%, rgba(27, 58, 107, 0.01) 100%);
    border-radius: 50%;
    z-index: 0;
}



/* Service Card Link wrapper */
.service-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 28px 28px;
    box-shadow: 0 8px 32px rgba(27, 58, 107, 0.08);
    border: 1px solid rgba(27, 58, 107, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Accent bar top */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1B3A6B 0%, #4a90d9 100%);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background sweep on hover */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(27, 58, 107, 0.03) 0%, rgba(74, 144, 217, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 64px rgba(27, 58, 107, 0.16);
    border-color: rgba(27, 58, 107, 0.2);
}

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

.service-card:hover::after {
    opacity: 1;
}

/* Number badge */
.service-card-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(27, 58, 107, 0.06);
    line-height: 1;
    font-family: var(--heading-font);
    transition: color 0.4s ease;
    z-index: 1;
}

.service-card:hover .service-card-number {
    color: rgba(27, 58, 107, 0.1);
}

/* Icon Container */
.service-icon-container {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1B3A6B 0%, #2a5298 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(27, 58, 107, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon-container {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px rgba(27, 58, 107, 0.35);
    background: linear-gradient(135deg, #0d2150 0%, #1B3A6B 100%);
}

.service-icon-container i {
    font-size: 40px;
    color: white;
}

/* Service Title */
.service-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1B3A6B;
    margin: 0 0 auto;
    line-height: 1.4;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-card-title {
    color: #0d2150;
}

/* Arrow indicator */
.service-card-arrow {
    margin-top: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(27, 58, 107, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card-arrow i {
    font-size: 16px;
    color: #1B3A6B;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-arrow {
    background: #1B3A6B;
    border-color: #1B3A6B;
}

.service-card:hover .service-card-arrow i {
    color: white;
    transform: translateX(2px);
}

/* Responsive */
@media (max-width: 991px) {
    #services {
        padding: 60px 0;
    }

    .service-card {
        padding: 30px 22px 24px;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 28px 20px 22px;
    }

    .service-icon-container {
        width: 72px;
        height: 72px;
        border-radius: 16px;
    }

    .service-icon-container i {
        font-size: 32px;
    }

    .service-card-title {
        font-size: 15px;
    }

    .service-card-number {
        font-size: 34px;
    }
}

/* Clean Corporate Blogs Section Styles */
#blog-posts {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}

/* Decorative Background Elements */
#blog-posts::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.04) 0%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
}

#blog-posts::after {
    content: '';
    position: absolute;
    bottom: -90px;
    left: -90px;
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.03) 0%, rgba(27, 58, 107, 0.01) 100%);
    border-radius: 50%;
    z-index: 0;
}




/* Blog Card */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(27, 58, 107, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1B3A6B 0%, #2c5282 100%);
    z-index: 2;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(27, 58, 107, 0.15);
}

/* Blog Image Container */
.blog-img-container {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img-container img {
    transform: scale(1.08);
}

/* Date Badge */
.blog-date-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #1B3A6B;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Blog Content */
.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #1B3A6B;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(27, 58, 107, 0.2) 50%, transparent 100%);
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1B3A6B;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #2c5282;
    gap: 12px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* CTA Button */
.blogs-cta-container {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.btn-view-all-blogs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #1B3A6B 0%, #2c5282 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(27, 58, 107, 0.25);
    transition: all 0.3s ease;
}

.btn-view-all-blogs:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(27, 58, 107, 0.35);
    color: white;
    gap: 14px;
}

.btn-view-all-blogs i {
    transition: transform 0.3s ease;
}

.btn-view-all-blogs:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .blogs-title {
        font-size: 32px;
    }

    #blog-posts {
        padding: 60px 0;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-img-container {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .blogs-title {
        font-size: 28px;
    }

    .blogs-badge {
        font-size: 12px;
        padding: 6px 18px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-img-container {
        height: 180px;
    }

    .btn-view-all-blogs {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* ── Clean Corporate PPEPP Section ───────────────────────── */
#ppepp {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}

.ppepp-wrapper {
    position: relative;
    padding: 20px 0 40px;
}

.ppepp-timeline {
    position: absolute;
    top: 50px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: linear-gradient(90deg, #1B3A6B 0%, #4a90d9 100%);
    z-index: 1;
    border-radius: 4px;
    opacity: 0.2;
}

.ppepp-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 20px;
}

.ppepp-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

/* Icon */
.ppepp-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(27, 58, 107, 0.15);
    border: 3px solid #1B3A6B;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.ppepp-step:hover .ppepp-icon {
    transform: translateY(-8px) scale(1.05);
    background: #0d2150;
    border-color: #4a90d9;
    box-shadow: 0 16px 40px rgba(27, 58, 107, 0.3);
}

.ppepp-icon i {
    font-size: 32px;
    color: #1B3A6B;
    transition: color 0.4s ease;
}

.ppepp-step:hover .ppepp-icon i {
    color: #ffffff;
}

/* Typography */
.ppepp-title {
    font-size: 18px;
    font-weight: 700;
    color: #1B3A6B;
    margin-bottom: 12px;
}

.ppepp-letter {
    color: #4a90d9;
    font-weight: 800;
}

.ppepp-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .ppepp-steps {
        flex-direction: column;
        gap: 30px;
    }

    .ppepp-timeline {
        top: 20px;
        bottom: 20px;
        left: 50%;
        width: 4px;
        height: auto;
        transform: translateX(-50%);
    }

    .ppepp-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #ffffff;
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(27, 58, 107, 0.08);
        border: 1px solid rgba(27, 58, 107, 0.05);
        z-index: 2;
    }

    .ppepp-desc {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .ppepp-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .ppepp-icon i {
        font-size: 26px;
    }

    .ppepp-title {
        font-size: 16px;
    }
}