@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");

body {
    font-family: "Inter", sans-serif;
}

.corporate-section {
    width: 100%;
    padding-top: 50px;
    background-color: #ffffff;
    overflow: hidden;
}

.corporate-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.corporate-title {
    max-width: 900px;
    padding: 0 20px;
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
}

.corporate-title h1 {
    color: #154ea1;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.corporate-title p {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.corporate-hero {
    position: relative;
    width: 100%;
    margin-top: -100px;
    z-index: 1;
}

.corporate-hero img {
    width: 100%;
    height: auto;
    display: block;
    clip-path: ellipse(100% 100% at 50% 100%);
    margin-top: -20px;
}

@media (max-width: 768px) {
    .corporate-title h1 {
        font-size: 28px;
    }
    .corporate-title p {
        font-size: 14px;
    }
}

.catalog-section {
    padding: 80px 0;
    background-color: #fff;
}

.catalog-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
    border: 1px solid rgba(21, 78, 161, 0.08);
    border-radius: 32px;
    box-shadow: 0 20px 45px rgba(17, 52, 107, 0.08);
}

.catalog-left {
    flex: 1;
    width: 50%;
    min-width: 0;
}

.swiper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background: rgba(21, 78, 161, 0.8);
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
}

.catalog-info {
    flex: 1;
}

.catalog-info h3 {
    font-size: 42px;
    color: #154ea1;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: "Inter", sans-serif;
}

.catalog-info p {
    font-size: 18px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.6;
}

.catalog-button {
    display: flex;
    gap: 15px;
}

.catalog-button a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.catalog-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(21, 78, 161, 0.3);
    color: #ffffff;
}
.catalog-button .btn-whatsapp:hover {
    color: #154ea1;
    border-color: #154ea1;
}

.btn-download {
    background-color: #154ea1;
    color: white;
}

.btn-whatsapp {
    background-color: transparent;
    color: #154ea1;
    border: 2px solid #154ea1;
}

.catalog-button img {
    width: 20px;
    height: auto;
}

@media (max-width: 992px) {
    .catalog-wrapper {
        flex-direction: column;
        padding: 32px 24px;
        gap: 32px;
    }
    .catalog-left,
    .catalog-info {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .catalog-section {
        padding: 56px 0;
    }

    .catalog-wrapper {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .catalog-info h3 {
        font-size: 32px;
    }

    .catalog-info p {
        font-size: 16px;
    }

    .catalog-button {
        flex-direction: column;
    }

    .catalog-button a {
        justify-content: center;
    }
}

.inhouse-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.inhouse-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
    border: 1px solid rgba(21, 78, 161, 0.08);
    border-radius: 32px;
    box-shadow: 0 20px 45px rgba(17, 52, 107, 0.08);
}

.inhouse-info {
    flex: 1;
}

.inhouse-info h3 {
    font-size: 42px;
    color: #154ea1;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: "Inter", sans-serif;
}

.inhouse-info p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.inhouse-right {
    flex: 1;
    min-width: 0;
}

.mySwiperInhouse {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mySwiperInhouse .swiper-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.inhouse-right .swiper-button-next,
.inhouse-right .swiper-button-prev {
    color: #fff !important;
    background: #154ea1;
    width: 45px !important;
    height: 45px !important;
    border-radius: 10px;
}

.inhouse-right .swiper-button-next:after,
.inhouse-right .swiper-button-prev:after {
    font-size: 18px !important;
}

.inhouse-right .swiper-pagination-bullet-active {
    background: #154ea1 !important;
}

@media (max-width: 992px) {
    .inhouse-wrapper {
        flex-direction: column;
        text-align: left;
        padding: 32px 24px;
        gap: 32px;
    }
    .inhouse-info h3 {
        font-size: 32px;
    }
}

@media (max-width: 834px) {
    .corporate-section {
        padding-top: 28px;
    }

    .corporate-title {
        max-width: 100%;
        padding: 0 14px;
    }

    .corporate-title h1 {
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .corporate-title p {
        font-size: 13px;
        line-height: 1.6;
    }

    .corporate-hero {
        margin-top: -18px;
    }

    .corporate-hero img {
        clip-path: none;
        margin-top: 0;
    }

    .catalog-section,
    .inhouse-section,
    .kerangka-section {
        padding: 42px 0;
    }

    .catalog-section .container,
    .inhouse-section .container,
    .kerangka-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .catalog-wrapper,
    .inhouse-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 22px;
        padding: 18px;
        border-radius: 22px;
    }

    .catalog-left,
    .catalog-info,
    .inhouse-info,
    .inhouse-right {
        width: 100%;
    }

    .swiper,
    .mySwiperInhouse {
        border-radius: 16px;
    }

    .swiper-slide img {
        height: 280px;
    }

    .mySwiperInhouse .swiper-slide img {
        height: 300px;
    }

    .catalog-info h3,
    .inhouse-info h3,
    .kerangka-title h1 {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .catalog-info p,
    .inhouse-info p,
    .kerangka-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    .catalog-button {
        flex-wrap: wrap;
    }

    .catalog-button a {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 13px;
    }

    .catalog-button img {
        width: 18px;
    }

    .kerangka-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kerangka-card {
        padding: 20px;
        border-radius: 16px;
    }

    .kerangka-card h3 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .kerangka-card h3::after {
        width: 44px;
        height: 3px;
    }
}

@media (max-width: 576px) {
    .inhouse-section {
        padding: 56px 0;
    }

    .inhouse-wrapper {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .inhouse-info h3 {
        font-size: 28px;
    }

    .inhouse-info p {
        font-size: 16px;
    }
}

.kerangka-section {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: "Inter", sans-serif;
}

.kerangka-title {
    text-align: center;
    margin-bottom: 50px;
}

.kerangka-title h1 {
    color: #154ea1;
    font-size: 36px;
    font-weight: 700;
}

.kerangka-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.kerangka-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    /* Soft Shadow sesuai gambar 2 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.kerangka-card:hover {
    transform: translateY(-5px);
}

.kerangka-card h3 {
    color: #092348;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.kerangka-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #154ea1;
    border-radius: 2px;
}

.kerangka-card p {
    color: #555555;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .kerangka-cards {
        grid-template-columns: 1fr;
    }
    .kerangka-section {
        padding: 40px 5%;
    }
}
