/* ============================
   HOME PAGE
   ============================ */

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
    background: #03225D;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 100px 60px 100px var(--gutter-desktop);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 100%;
    color: #FFFFFF;
    margin: 0;
    padding-top: 50px;
    max-width: 420px;
}

.hero-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    margin: 0;
    max-width: 500px;
}

/* Buttons Row */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

/* Button Lihat Katalog Produk */
.btn-katalog {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    height: 52px;
    padding: 14px 24px;
    border: none;
    border-radius: 14px;
    background: #C30608;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-katalog:hover {
    background: #A50507;
    transform: translateY(-1px);
}

.btn-katalog:active {
    transform: translateY(0);
}

.btn-katalog img {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

/* Button Hubungi Kami */
.btn-hubungi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    height: 52px;
    padding: 14px 24px;
    border-radius: 14px;
    border: 1px solid #FFFFFF;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.btn-hubungi:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.btn-hubungi:active {
    transform: translateY(0);
}

/* Hero Shape */
.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    z-index: 0;
}

.hero-shape-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
    background: #03225D;
    padding-top: 80px;
    padding-bottom: 80px;
}

.about-inner {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-left {
    flex: 0 0 15%;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.about-logo-wrapper {
    width: 249px;
    height: 249px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 24px;
    background: #FFFFFF;
    flex-shrink: 0;
}

.about-logo {
    width: 200px;
    height: 97px;
    object-fit: contain;
    display: block;
}

.about-divider {
    width: 0;
    min-height: 249px;
    border-left: 1px solid #D2D2D2;
    flex-shrink: 0;
    align-self: stretch;
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    color: #FFFFFF;
    margin: 0;
}

.about-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    margin: 0;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 142px;
    height: 24px;
    border-radius: 24px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #F7F5F0;
    transition: opacity var(--transition-fast), gap var(--transition-fast);
}

.about-btn:hover {
    opacity: 0.8;
    gap: 12px;
}

.about-btn img {
    width: 24px;
    height: 24px;
    display: block;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 991px) {
    /* Hero */
    .hero-section {
        height: 500px;
    }

    .hero-content {
        width: 60%;
        padding: 60px 40px 60px var(--gutter-tablet);
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-desc {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-shape {
        width: 55%;
    }

    /* About */
    .about-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-inner {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .about-left {
        width: 100%;
    }

    .about-divider {
        width: 100%;
        height: 0;
        border-left: none;
        border-top: 1px solid #D2D2D2;
        min-height: auto;
    }

    .about-title {
        font-size: 28px;
        text-align: center;
    }

    .about-desc {
        font-size: 16px;
        text-align: center;
    }

    .about-btn {
        align-self: center;
    }
}

@media (max-width: 575px) {
    /* Hero */
    .hero-section {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .hero-inner {
        align-items: center;
        padding: 30px var(--gutter-mobile) 40px;
        order: 2;
    }

    .hero-content {
        width: 100%;
        padding: 0;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        padding-top: 0;
        max-width: 100%;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-katalog {
        width: 100%;
    }

    .btn-hubungi {
        width: 100%;
    }

    .hero-shape {
        position: relative;
        width: 100%;
        height: 350px;
        order: 1;
    }

    /* About */
    .about-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .about-logo-wrapper {
        width: 180px;
        height: 180px;
        padding: 16px;
    }

    .about-logo {
        width: 140px;
        height: auto;
    }

    .about-title {
        font-size: 24px;
    }
}

/* ============================
   KATEGORI SECTION
   ============================ */
.kategori-section {
    background: #F8FAFC;
    padding-top: 80px;
    padding-bottom: 80px;
}

.kategori-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 56px;
    color: #1C252E;
    text-align: center;
}

.kategori-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
    margin-bottom: 32px;
}

.kategori-card {
    background: #FFFFFF;
    width: 100%;
    border-left: 4px solid #C30608;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    position: relative;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.kategori-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.1);
}

.kategori-card-image {
    width: 80px;
    height: 75px;
    object-fit: contain;
    display: block;
}

.kategori-card-placeholder {
    width: 80px;
    height: 75px;
    background: #F0F0F0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kategori-card-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    width: 145px;
    color: #333333;
    margin: 0;
}

.kategori-card-icon {
    width: 20px;
    height: 20px;
}

.kategori-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    height: 43px;
    padding: 12px 20px;
    border: 1px solid #98A9BD;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #1E436F;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
    margin: 0 auto;
    display: flex;
}

.kategori-expand-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #7A8BA0;
}

.kategori-expand-icon {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

/* ============================
   KATALOG PRODUK SECTION
   ============================ */
.katalog-section {
    background: #FFFFFF;
    padding-top: 80px;
    padding-bottom: 80px;
}

.katalog-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.katalog-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.katalog-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 5%;
    text-transform: uppercase;
    color: #4B698C;
}

.katalog-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #1C252E;
    text-align: center;
    margin: 0;
}

.katalog-filters-wrapper {
    margin-bottom: 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.katalog-filters {
    display: flex;
    gap: 12px;
    padding: 4px 0;
}

.katalog-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    padding: 14px 18px;
    border: 1px solid #D2D2D2;
    border-radius: 100px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #525252;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.katalog-filter-btn:hover {
    border-color: #98A9BD;
    color: #1E436F;
}

.katalog-filter-btn.active {
    background: rgba(3, 34, 93, 0.05);
    border-color: #03225D;
    color: #03225D;
}

.katalog-products-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.katalog-nav-btn {
    width: 48px;
    height: 48px;
    border: 1px solid #D2D2D2;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.katalog-nav-btn:hover {
    border-color: #03225D;
    background: rgba(3, 34, 93, 0.05);
}

.katalog-nav-btn img {
    width: 20px;
    height: 20px;
}

.katalog-nav-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.katalog-prev .katalog-nav-icon {
    transform: rotate(180deg);
}

.katalog-products {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.katalog-footer {
    display: flex;
    justify-content: center;
}

.btn-lihat-semua {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    height: 43px;
    padding: 12px 20px;
    border: 1px solid #98A9BD;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #1E436F;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.btn-lihat-semua:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #7A8BA0;
}

.btn-lihat-semua-icon {
    width: 14px;
    height: 14px;
}

/* ============================
   BERITA SECTION
   ============================ */
.berita-section {
    background: #03225D;
    padding-top: 80px;
    padding-bottom: 80px;
}

.berita-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.berita-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.berita-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 5%;
    text-transform: uppercase;
    color: #FFFFFF;
}

.berita-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #FFFFFF;
    margin: 0;
}

.berita-header-right {
    display: flex;
    align-items: center;
}

.berita-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    height: 43px;
    padding: 12px 20px;
    border: 1px solid #F7F5F0;
    border-radius: 14px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.berita-btn:hover {
    background: rgba(247, 245, 240, 0.1);
    border-color: rgba(247, 245, 240, 0.8);
}

.berita-btn img {
    width: 14px;
    height: 14px;
}

.berita-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Using other-article-card styling from berita-dan-artikel.css */

/* ============================
   LAYANAN KAMI SECTION
   ============================ */
.layanan-section {
    background: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 100px;
}

.layanan-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 5%;
    text-transform: uppercase;
    color: #1C252E;
    display: block;
    text-align: center;
    margin-bottom: 16px;
}

.layanan-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #1C252E;
    text-align: center;
    margin: 0 0 48px 0;
}

.layanan-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.layanan-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.layanan-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px;
}

.layanan-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    padding: 8px;
    background: rgba(3, 34, 93, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.layanan-icon {
    width: 32px;
    height: 32px;
}

.layanan-card-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #333333;
    margin: 0 0 12px 0;
}

.layanan-card-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #606060;
    margin: 0;
}

.layanan-divider-horizontal {
    width: 2px;
    height: 300px;
    border: 2px solid;
    border-image: linear-gradient(180deg, rgba(131, 158, 211, 0) 10%, #839ED3 50%, rgba(131, 158, 211, 0) 90%);
    border-image-slice: 1;
    background: transparent;
}

.layanan-divider-vertical {
    width: 100%;
    height: 2px;
    border: 2px solid;
    border-image: linear-gradient(90deg, rgba(131, 158, 211, 0) 10%, #839ED3 50%, rgba(131, 158, 211, 0) 90%);
    border-image-slice: 1;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layanan-center-block {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    background: #87A2D4;
    transform: rotate(45deg);
    position: absolute;
}

/* ============================
   RESPONSIVE - TABLET
   ============================ */
@media (max-width: 991px) {
    /* Kategori */
    .kategori-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .kategori-title {
        font-size: 28px;
        line-height: 40px;
    }

    .kategori-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Katalog */
    .katalog-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .katalog-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .katalog-title {
        font-size: 28px;
        line-height: 36px;
    }

    .katalog-products {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Berita */
    .berita-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .berita-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .berita-title {
        font-size: 28px;
        line-height: 36px;
    }

    .berita-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Layanan Kami */
    .layanan-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .layanan-label {
        font-size: 16px;
    }

    .layanan-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 32px;
    }

    .layanan-card {
        padding: 24px;
    }

    .layanan-card-label {
        font-size: 18px;
        line-height: 24px;
    }

    .layanan-card-desc {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ============================
   RESPONSIVE - MOBILE
   ============================ */
@media (max-width: 575px) {
    /* Hero */
    .hero-section {
        padding-top: 80px;
    }

    /* Kategori */
    .kategori-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .kategori-title {
        font-size: 24px;
        line-height: 32px;
    }

    .kategori-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .kategori-card {
        padding: 16px;
    }

    .kategori-card-image {
        width: 60px;
        height: 56px;
    }

    .kategori-card-placeholder {
        width: 60px;
        height: 56px;
    }

    .kategori-card-name {
        font-size: 16px;
        line-height: 24px;
    }

    /* Katalog */
    .katalog-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .katalog-title {
        font-size: 24px;
        line-height: 32px;
    }

    .katalog-filter-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .katalog-products-wrapper {
        flex-direction: column;
    }

    .katalog-nav-btn {
        display: none;
    }

    .katalog-products {
        grid-template-columns: 1fr;
        overflow-x: visible;
    }

    /* Berita */
    .berita-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .berita-title {
        font-size: 24px;
        line-height: 32px;
    }

    .berita-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .berita-header-right {
        width: 100%;
    }

    .berita-btn {
        width: 100%;
    }

    .berita-grid {
        grid-template-columns: 1fr;
    }

    .berita-card-image {
        height: 160px;
    }

    .berita-card-placeholder {
        height: 160px;
    }

    .berita-card-content {
        padding: 16px;
    }

    /* Layanan Kami */
    .layanan-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .layanan-label {
        font-size: 14px;
    }

    .layanan-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 24px;
    }

    .layanan-row {
        flex-direction: column;
        gap: 24px;
    }

    .layanan-divider-horizontal {
        display: none;
    }

    .layanan-divider-vertical {
        display: none;
    }

    .layanan-card {
        padding: 20px;
    }

    .layanan-icon-wrapper {
        margin-bottom: 12px;
    }

    .layanan-card-label {
        font-size: 16px;
        line-height: 22px;
    }

    .layanan-card-desc {
        font-size: 14px;
        line-height: 20px;
    }
}

.cta-section {
    height: 300px !important;
    min-height: 300px !important;
    position: relative;
    overflow: hidden;
}

.cta-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px var(--gutter-desktop);
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 150%;
    color: #FFFFFF;
    margin: 0;
    max-width: 600px;
}