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

.main-banner-section {
    font-family: "Inter", sans-serif;
    padding: 30px 10%;
    background-color: #ffffff;
    overflow: hidden;
}

.main-banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.main-banner-left {
    flex: 1;
    max-width: 600px;
}

.main-banner-title h1 {
    font-size: 50px;
    font-weight: 800;
    color: #154ea1;
    line-height: 1.2;
    margin-bottom: 24px;
}

.main-banner-title p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.main-banner-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Membuat 2 kolom */
    gap: 15px;
}

.main-banner-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-blue:hover {
    background-color: #103b79;
    border-color: #103b79;
}

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

.btn-outline:hover {
    background-color: #f0f7ff;
}

.main-banner-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-banner-img img {
    max-width: 110%;
    height: auto;
}

@media (max-width: 992px) {
    .main-banner-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .main-banner-menu {
        grid-template-columns: 1fr;
    }

    .main-banner-title h1 {
        font-size: 36px;
    }
}

.new-hero-section {
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    padding: 140px 0 100px;
}

.new-hero-wrapper {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Container Judul */
.new-hero-title {
    text-align: center;
    max-width: 700px;
    z-index: 10;
    margin-top: 240px;
}

.new-hero-title h3 {
    font-size: 56px;
    font-weight: 700;
    color: #154ea1;
    margin-bottom: 20px;
    line-height: 1.2;
}

.new-hero-title p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Grid Tombol */
.new-hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.new-hero-button a {
    display: block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
}

/* Tombol Biru */
.new-hero-buttons .new-hero-button:nth-child(1) a,
.new-hero-buttons .new-hero-button:nth-child(2) a {
    background-color: #154ea1;
    color: white;
}

/* Tombol Outline */
.new-hero-buttons .new-hero-button:nth-child(3) a,
.new-hero-buttons .new-hero-button:nth-child(4) a {
    background-color: transparent;
    color: #154ea1;
    border: 1px solid #154ea1;
}

.new-hero-items {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 56px;
    left: -40px;
    pointer-events: none;
}

.new-hero-item {
    position: absolute;
    width: 150px;
    height: 220px;
    border-radius: 24px;
    background-color: transparent;
    overflow: hidden;
    animation-name: heroFloat;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Background Image (City/Place) */
.new-hero-item img:last-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6) contrast(1.1);
    transition: filter 0.3s ease;
}

/* Flag Icon (The circle) */
.new-hero-item img:first-child {
    position: absolute;
    top: 45%;
    left: 47%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    z-index: 2;
    border-radius: 50%;
}

@keyframes heroFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}

.new-hero-item:nth-child(2n) {
    animation-duration: 7s;
}

.new-hero-item:nth-child(3n) {
    animation-duration: 5.5s;
}

.new-hero-item:nth-child(4n) {
    animation-delay: 0.8s;
}

.new-hero-item:nth-child(5n) {
    animation-delay: 1.2s;
}

@media (max-width: 992px) {
    .new-hero-section {
        padding-top: 120px;
    }

    .new-hero-title {
        margin-top: 180px;
    }
}

@media (max-width: 768px) {
    .new-hero-section {
        padding-top: 96px;
    }

    .new-hero-title {
        margin-top: 120px;
    }
}

@media (max-width: 833px) {
    .new-hero-section {
        min-height: auto;
        padding: 96px 0 64px;
    }

    .new-hero-items {
        display: none;
    }

    .new-hero-wrapper {
        padding: 0 18px;
    }

    .new-hero-title {
        margin-top: 0;
        max-width: 560px;
    }

    .new-hero-title h3 {
        font-size: 36px;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .new-hero-title p {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 24px;
    }

    .new-hero-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .new-hero-button a {
        width: 100%;
        padding: 12px 18px;
        font-size: 13px;
    }

    .kelas-section {
        padding: 42px 16px;
    }

    .kelas-wrapper {
        max-width: 100%;
    }

    .kelas-title {
        margin-bottom: 28px;
    }

    .kelas-title h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .kelas-items {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .kelas-item {
        flex-direction: row;
        min-height: 180px;
        border-radius: 16px;
    }

    .kelas-img {
        flex: 0 0 140px;
        width: 140px;
    }

    .kelas-info {
        padding: 18px 16px;
    }

    .kelas-info h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .kelas-info p {
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 12px;
    }

    .kelas-info a {
        font-size: 13px;
    }

    .kelas-info a img {
        width: 14px;
    }
}

@media (max-width: 413px) {
    .new-hero-section {
        padding: 78px 0 52px;
    }

    .new-hero-wrapper {
        padding: 0 14px;
    }

    .new-hero-title h3 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .new-hero-title p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .new-hero-buttons {
        gap: 8px;
        max-width: 100%;
    }

    .new-hero-button a {
        padding: 11px 14px;
        font-size: 12px;
        border-radius: 10px;
    }

    .why-section,
    .kelas-section,
    .bahasa-section,
    .katalog-section,
    .testimoni-section,
    .tutor-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .why-title,
    .kelas-title,
    .bahasa-title,
    .katalog-header,
    .testimoni-title h1,
    .tutor-title h2 {
        margin-bottom: 22px;
    }

    .why-title h2,
    .kelas-title h1,
    .bahasa-title h2,
    .katalog-header h1,
    .tutor-title h2 {
        font-size: 20px;
        line-height: 1.2;
    }

    .why-card {
        padding: 18px;
        gap: 12px;
        border-radius: 16px;
    }

    .why-card h3 {
        font-size: 16px;
    }

    .why-card p {
        font-size: 13px;
        line-height: 1.55;
    }

    .kelas-section {
        padding-top: 32px;
        padding-bottom: 42px;
    }

    .kelas-items {
        gap: 14px;
    }

    .kelas-item {
        border-radius: 14px;
    }

    .kelas-img {
        min-height: 150px;
    }

    .kelas-info {
        padding: 16px 14px 18px;
    }

    .kelas-info h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .kelas-info p {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .kelas-info a {
        font-size: 12px;
        gap: 6px;
    }

    .kelas-info a img {
        width: 13px;
    }

    .bahasa-section {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .bahasa-card,
    .bahasa-request-card {
        min-height: 200px;
        padding: 20px 16px;
        border-radius: 14px;
    }

    .bahasa-badge {
        width: 72px;
        height: 72px;
        padding: 12px;
        top: 22px;
    }

    .bahasa-name {
        font-size: 18px;
    }

    .bahasa-request-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 14px;
    }

    .bahasa-request-card h3 {
        font-size: 18px;
    }

    .bahasa-request-card p {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .bahasa-request-button {
        padding: 10px 18px;
        font-size: 12px;
        border-radius: 12px;
    }

    .katalog-section {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .katalog-content {
        gap: 18px;
        padding: 18px 14px;
        border-radius: 18px;
    }

    .katalog-left h2 {
        font-size: 20px;
    }

    .katalog-left p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .katalog-buttons {
        width: 100%;
        max-width: 100%;
    }

    .btn-primary,
    .btn-outline {
        padding: 12px 16px;
        font-size: 12px;
        border-radius: 18px;
    }

    .katalogSwiper img {
        height: 240px;
        border-radius: 16px;
    }

    .testimoni-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .testimoni-title h1 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .testiSwiper {
        padding: 26px 0 64px 0 !important;
    }

    .testimoni-item {
        height: auto;
        flex-direction: column;
    }

    .testi-left {
        padding: 22px 18px 18px;
    }

    .testi-review p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .testi-user strong {
        font-size: 14px;
    }

    .tutor-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .tutor-title h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .tutor-card {
        width: 100%;
        margin-left: 0;
    }

    .tutor-info {
        padding: 18px 14px;
    }

    .tutor-info h4 {
        font-size: 16px;
    }

    .tutor-info p {
        font-size: 13px;
    }
}

/* POSISI SPESIFIK (Sesuai Gambar 2) */
/* Sisi Kiri */
.new-hero-item:nth-child(1) {
    left: 0;
    top: -10%;
} /* Arab */
.new-hero-item:nth-child(2) {
    left: 0;
    top: 25%;
} /* Spain */
.new-hero-item:nth-child(3) {
    left: 12%;
    top: -26%;
} /* Jerman */
.new-hero-item:nth-child(4) {
    left: 12%;
    top: 9%;
} /* Korea */
.new-hero-item:nth-child(5) {
    left: 24%;
    top: -65%;
} /* Jepang 1 */
.new-hero-item:nth-child(6) {
    left: 24%;
    top: -8%;
} /* Jepang 2 */
.new-hero-item:nth-child(7) {
    left: 36%;
    top: -25%;
} /* China */

/* Sisi Kanan - Perbaikan agar presisi sesuai desain */

.new-hero-item:nth-child(8) {
    left: 48%;
    top: -65%;
} /* Inggris 1 (Puncak paling atas) */

.new-hero-item:nth-child(9) {
    left: 48%;
    top: -8%;
} /* Inggris 2 (Turun sedikit ke kanan) */

.new-hero-item:nth-child(10) {
    right: 29%;
    top: -25%;
} /* Rusia (Area tengah atas kanan) */

.new-hero-item:nth-child(11) {
    right: 17%;
    top: -65%;
} /* US 1 (Melayang di atas kanan) */

.new-hero-item:nth-child(12) {
    right: 17%;
    top: -8%;
} /* US 2 (Samping kanan judul) */

.new-hero-item:nth-child(13) {
    right: 5%;
    top: -26%;
} /* Italy (Kanan atas sudut) */

.new-hero-item:nth-child(14) {
    right: 5%;
    top: 9%;
} /* Turkey (Sisi kanan luar) */

.new-hero-item:nth-child(15) {
    right: -7%;
    top: -10%;
} /* Belanda (Paling kanan atas) */

.new-hero-item:nth-child(16) {
    right: -7%;
    top: 26%;
} /* India (Paling kanan bawah) */

.why-section {
    font-family: "Inter", sans-serif;
    padding: 60px 20px;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
}

.why-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.why-title {
    text-align: center;
    margin-bottom: 40px;
}

.why-title h2 {
    color: #154ea1;
    font-weight: 700;
    font-size: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.why-card {
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.why-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Light Card Style */
.why-card.light {
    background-color: rgba(232, 237, 246, 0.6);
    color: #103b79;
}

.why-card.dark {
    background-color: #103b79;
    color: #ffffff;
    grid-row: span 2;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
}

.why-card.wide {
    grid-column: span 2;
    flex-direction: column;
}
.why-card.dark h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}
.why-card.dark p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #e0e0e0;
}
.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 40px;
    height: 40px;
}
.why-card h3 {
    font-size: 20px;
    color: #071b38;
    font-weight: 500;
    margin-bottom: 5px;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-card.dark,
    .why-card.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.kelas-section {
    font-family: "Inter", sans-serif;
    padding: 60px 20px;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
}

.kelas-wrapper {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

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

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

.kelas-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.kelas-item {
    display: flex;
    background: #ffffff;
    border: 1px solid #e8edf6;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
}

.kelas-item:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
}

.kelas-img {
    flex: 0 0 160px;
    background: linear-gradient(180deg, #154ea1 0%, #103b79 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.kelas-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kelas-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kelas-info h3 {
    font-size: 20px;
    color: #071b38;
    font-weight: 600;
    margin-bottom: 12px;
}

.kelas-info p {
    font-size: 14px;
    color: #595959;
    line-height: 1.6;
    margin-bottom: 16px;
}

.kelas-info a {
    color: #154ea1;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.kelas-info a:hover {
    gap: 12px;
}

.kelas-info a img {
    width: 16px;
    height: auto;
}

@media (max-width: 768px) {
    .kelas-items {
        grid-template-columns: 1fr;
    }

    .kelas-item {
        flex-direction: column;
    }

    .kelas-img {
        flex: 0 0 180px;
        width: 100%;
    }
}

.bahasa-section {
    font-family: "Inter", sans-serif;
    padding: 60px 20px;
    width: 100%;
    background-color: #ffffff;
    margin: 0 auto;
}

.bahasa-wrapper {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.bahasa-title {
    text-align: center;
    margin-bottom: 40px;
}

.bahasa-title h2 {
    color: #154ea1;
    font-weight: 700;
    font-size: 32px;
}

.bahasa-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.bahasa-item {
    flex: 0 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.bahasa-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    min-height: 280px;
    padding: 32px 24px;
    overflow: hidden;
    border-radius: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(7, 27, 56, 0.12);
}

.bahasa-badge {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 96px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 24px rgba(7, 27, 56, 0.14);
}

.bahasa-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bahasa-name {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.bahasa-request-card {
    min-height: 280px;
    padding: 32px 24px;
    border: 1px solid #b7cae8;
    border-radius: 22px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bahasa-request-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 20px;
    background: #edf3fb;
    color: #1f56ab;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 10px 22px rgba(31, 86, 171, 0.1);
}

.bahasa-request-card h3 {
    margin: 0;
    color: #0f2c58;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.bahasa-request-card p {
    margin: 4px 0 18px;
    color: #1f56ab;
    font-size: 14px;
    font-weight: 700;
}

.bahasa-request-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 14px;
    background: #1f56ab;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(31, 86, 171, 0.2);
}

.bahasa-request-button i {
    font-size: 20px;
}

.bahasa-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .bahasa-item {
        flex-basis: calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .bahasa-card {
        min-height: 250px;
    }

    .bahasa-request-card {
        min-height: 250px;
    }
}

@media (max-width: 600px) {
    .bahasa-item {
        flex-basis: 100%;
        max-width: 100%;
    }

    .bahasa-card {
        min-height: 220px;
        padding: 24px 20px;
    }

    .bahasa-request-card {
        min-height: 220px;
        padding: 24px 20px;
    }

    .bahasa-badge {
        width: 82px;
        height: 82px;
        padding: 14px;
    }

    .bahasa-name {
        font-size: 20px;
    }
}

.katalog-section {
    font-family: "Inter", sans-serif;
    padding: 60px 20px;
    width: 100%;
    background-color: #ffffff;
    margin: 0 auto;
}

.katalog-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.katalog-header {
    text-align: center;
    margin-bottom: 50px;
}

.katalog-header h1 {
    color: #154ea1;
    font-size: 32px;
    font-weight: 700;
}

.katalog-content {
    display: flex;
    align-items: center;
    gap: 50px;
    border-radius: 24px;
    padding: 40px;
}

/* Sisi Kiri */
.katalog-left {
    flex: 1;
}

.katalog-left h2 {
    font-size: 28px;
    color: #071b38;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.katalog-left p {
    color: #154ea1;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
}

.katalog-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 350px;
}

/* Tombol Biru (Primary) */
.btn-primary {
    background: linear-gradient(90deg, #154ea1 0%, #103b79 100%);
    color: white;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: 0.3s;
}

/* Tombol Outline */
.btn-outline {
    background: transparent;
    color: #154ea1;
    border: 1.5px solid #154ea1;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(21, 78, 161, 0.2);
}

/* Sisi Kanan (Swiper) */
.katalog-right {
    flex: 1;
    width: 100%;
    min-width: 0; /* Penting untuk Swiper di dalam Flexbox */
}

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

.katalogSwiper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

/* Custom Swiper Dots & Arrows */
.swiper-pagination-bullet-active {
    background: #154ea1 !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.3);
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
}

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

/* Responsive */
@media (max-width: 992px) {
    .katalog-content {
        flex-direction: column;
        text-align: center;
    }
    .katalog-buttons {
        margin: 0 auto;
    }
}

.testimoni-section {
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
    background-color: #fcfcfc;
}

.testimoni-title h1 {
    text-align: center;
    color: #154ea1;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Hilangkan atau komentari width: 800px yang lama */
.testiSwiper .swiper-slide {
    width: auto;
    transition: all 0.5s ease;
    transform: scale(0.85); /* Item samping lebih kecil */
    opacity: 0.4;
    cursor: pointer;
}

.testiSwiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}

/* Pastikan container swiper mengambil lebar penuh */
.testiSwiper {
    width: 100%;
    padding: 50px 0 100px 0 !important;
    overflow: visible !important; /* Agar slide kiri-kanan kelihatan */
}

/* Tambahkan ini untuk mencegah klik 'tembus' */
.swiper-button-next,
.swiper-button-prev {
    z-index: 100;
}
/* --- CUSTOM PAGINATION BULLET (Gambar 3) --- */
.swiper-pagination {
    bottom: 0px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #b6c8e2 !important; /* Warna biru muda sesuai figma */
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 50%;
}

/* Bullet aktif memanjang (Gambar 3) */
.swiper-pagination-bullet-active {
    width: 40px !important; /* Membuat bentuk pil memanjang */
    border-radius: 20px !important;
    background: #154ea1 !important; /* Warna biru utama */
}

/* Memperbaiki posisi tombol navigasi agar tidak menempel ke pinggir */
.swiper-button-next {
    right: 15% !important;
}
.swiper-button-prev {
    left: 15% !important;
}

/* Card Content */
.testimoni-item {
    display: flex;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    height: 380px; /* Sesuaikan tinggi sesuai Figma */
    max-width: 800px;
    margin: 0 auto;
}

.testi-left {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testi-logo img {
    width: 40px;
    margin-bottom: 20px;
}

.testi-review p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.testi-user strong {
    font-size: 16px;
    color: #071b38;
}

.testi-right {
    flex: 0.8;
}

.testi-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tombol Biru di Bawah */
.testimoni-btn {
    text-align: center;
    margin-top: 20px;
}

.testimoni-btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #154ea1;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.testimoni-btn a:hover {
    background: #0d3b7a;
    transform: translateY(-3px);
}

/* Custom Navigasi Panah */
.swiper-button-next,
.swiper-button-prev {
    color: #154ea1 !important;
    background: #fff;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.tutor-title h2 {
    text-align: center;
    color: #154ea1;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 50px;
}

.tutor-swiper {
    padding-bottom: 50px !important;
}

.tutor-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border-radius: 16px;
    margin-left: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
    height: 90%;
    width: 90%;
}

.tutor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 15px 35px rgba(21, 78, 161, 0.1);
}

.tutor-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f8f9fa;
}

.tutor-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tutor-flag {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    z-index: 10;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
}

/* Info Section */
.tutor-info {
    padding: 24px 15px;
    text-align: center;
}

.tutor-info h4 {
    color: #071b38; /* Dark Blue */
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 8px 0;
}

.tutor-info p {
    color: #154ea1; /* Primary Blue */
    font-weight: 500;
    font-size: 15px;
    margin: 0;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e0;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #154ea1 !important;
    width: 25px; /* Membuat dot aktif agak memanjang */
    border-radius: 5px;
}

@media (max-width: 833px) {
    .kelas-section {
        padding: 36px 16px 48px;
    }

    .kelas-wrapper {
        max-width: 100%;
    }

    .kelas-title {
        margin-bottom: 24px;
    }

    .kelas-title h1 {
        font-size: 22px;
        line-height: 1.2;
    }

    .kelas-items {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .kelas-item {
        flex-direction: column !important;
        border-radius: 16px;
        min-height: auto;
    }

    .kelas-img {
        flex: 0 0 170px;
        width: 100%;
        min-height: 170px;
    }

    .kelas-info {
        padding: 18px 16px 20px;
    }

    .kelas-info h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .kelas-info p {
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 12px;
    }

    .kelas-info a {
        font-size: 13px;
    }

    .kelas-info a img {
        width: 14px;
    }
}
