@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

/* @font-face {
    font-family: "Adobe Clean UX";
    src: url("../fonts/AdobeCleanUXRegular.otf") format("opentype");
    font-weight: 400;
    font-style: regular;
}

@font-face {
    font-family: "Adobe Clean UX";
    src: url("../fonts/AdobeCleanUXBold.otf") format("opentype");
    font-weight: 400;
    font-style: bold;
} */

@font-face {
  font-family: 'Adobe Clean UX';
  src: url('../fonts/AdobeCleanUXRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Adobe Clean UX';
  src: url('../fonts/AdobeCleanUXBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
    font-family: "Arnika Variable";
    src: url("../fonts/ArnikaVar.ttf") format("opentype");
    /* font-weight: 400;
  font-style: regular; */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Adobe Clean UX", sans-serif;
    font-weight: 300;
    font-style: regular;
    overflow-x: hidden;
    background-color: #f1f2f2;
}

.hero-section {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 60px;
    background-color: #101351;
    transition: background-color 0.3s ease;
    height: 140px;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
}

.nav-container-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.logo {
    height: 41.409061431884766px;
    width: 224.63002014160156px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 100px;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.nav-menu a.active {
    color: #ff6b35;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    font-size: 16px;
}

.language-switcher span {
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-switcher .active {
    color: #ff6b35;
}

.language-switcher .separator {
    color: #666;
    cursor: default;
}

.login-btn {
    background: transparent;
    border: 1.5px solid #ff6b35;
    color: #ff6b35;
    padding: 10px 25px;
    border-radius: 30px 0px 30px 0px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    -webkit-border-radius: 30px 0px 30px 0px;
    -moz-border-radius: 30px 0px 30px 0px;
    -ms-border-radius: 30px 0px 30px 0px;
    -o-border-radius: 30px 0px 30px 0px;
}

.login-btn:hover {
    transform: translateY(-1px);
}

.hero-footer {
    background-size: cover;
    background-position: center;
    height: 740px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 50px;
    margin: 20px;
    border-radius: 30px 0px 30px 0px;
}

.hero-footer h1 {
    color: white;
    font-size: 84px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: "Arnika Variable";
}

.hero-footer p {
    color: white;
    font-size: 35px;
    margin-bottom: 30px;
    max-width: 750px;
    line-height: 49px;
}

.contact-btn {
    font-family: "Arnika Variable";
    background-color: #ff6b47;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px 0px 20px 0px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
    -webkit-border-radius: 20px 0px 20px 0px;
    -moz-border-radius: 20px 0px 20px 0px;
    -ms-border-radius: 20px 0px 20px 0px;
    -o-border-radius: 20px 0px 20px 0px;
}

.contact-btn:hover {
    background-color: #e55a42;
}

.footer {
    padding: 60px 50px 40px 50px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin: 0 auto;
    align-items: start;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.footer-logo h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-description {
    margin-top: 6rem;
    color: #6c757d;
    line-height: 1.6;
    font-size: 22px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.contact-info h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-details {
    color: #6c757d;
    line-height: 1.8;
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-links {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 22px;
    transition: color 0.3s;
}

.contact-links a:hover {
    color: #ff6b47;
}

.nav-footer {
    display: flex;
    flex-direction: column;
    padding-left: 70px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.nav-links a {
    color: #2f427d;
    text-decoration: none;
    font-size: 38px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6b47;
}

.sosial-nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.back-to-top {
    font-family: "Arnika Variable";
    align-items: flex-end;
    background-color: #2f427d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px 0px 20px 0px;
    cursor: pointer;
    font-size: 26px;
    margin-bottom: 20px;
    transition: background-color 0.3s;
    -webkit-border-radius: 20px 0px 20px 0px;
    -moz-border-radius: 20px 0px 20px 0px;
    -ms-border-radius: 20px 0px 20px 0px;
    -o-border-radius: 20px 0px 20px 0px;
}

.back-to-top:hover {
    background-color: #34495e;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.social-links img {
    height: 30px;
    width: auto;
    transition: transform 0.3s, background-color 0.3s;
    -webkit-transition: transform 0.3s, background-color 0.3s;
    -moz-transition: transform 0.3s, background-color 0.3s;
    -ms-transition: transform 0.3s, background-color 0.3s;
    -o-transition: transform 0.3s, background-color 0.3s;
}

.social-links img:hover {
    transform: translateY(-2px);
}

.license-section {
    border-top: 1px solid #dbdddf;
    padding: 30px 50px;
}

.license-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 40px;
}

.license-title {
    color: #6c757d;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
}

.licensed-section {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.license-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.license-text p {
    margin-top: 0;
    margin-bottom: 0;
}

.logo-item {
    gap: 12px;
}

.logo-item img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-item-ojk {
    height: 69.37232971191406px;
    width: 174.35643005371094px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    color: #2c3e50;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.2;
}

.logo-sub {
    color: #6c757d;
    font-size: 0.8rem;
    line-height: 1.2;
}

.license-text {
    margin-top: 0;
}

.license-text p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.4;
    max-width: 300px;
}

.member-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.member-section .license-title-member {
    color: #6c757d;
    font-size: 22px;
    font-weight: 500;
}

.privacy-section {
    display: flex;
    align-items: center;
    text-align: end;
    justify-content: center;
    margin-top: auto;
}

.privacy-links a {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.privacy-links a:hover {
    color: #ff6b47;
}

.copyright p {
    color: #6c757d;
    font-size: 16px;
    margin-left: 50px;
    margin-top: 0;
    margin-bottom: 0;
}

.font-adobe-clean-ux {
    font-family: "Adobe Clean UX", sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .network-content {
        padding: 0 40px;
    }

    .network-header {
        gap: 40px;
    }

    .brand-row {
        margin: 0 -40px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .brand-card {
        width: 260px;
        height: 110px;
        padding: 25px 18px;
    }

    .brand-card img {
        height: 55px;
        max-width: 180px;
    }

    .brand-row-content {
        width: calc(5 * 260px + 4 * 30px);
    }
}

@media (max-width: 768px) {
    .network-section {
        padding: 40px 0;
    }

    .network-content {
        padding: 0 30px;
    }

    .network-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .network-title {
        font-size: 22px;
        white-space: normal;
    }

    .network-description {
        font-size: 12px;
        max-width: 100%;
    }

    .brands-container {
        gap: 30px;
    }

    .brand-row {
        margin: 0 -30px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .brand-card {
        width: 240px;
        height: 100px;
        padding: 20px 15px;
    }

    .brand-card img {
        height: 50px;
        max-width: 160px;
    }

    .brand-row-content {
        width: calc(5 * 240px + 4 * 30px);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .network-section {
        padding: 30px 0;
    }

    .network-content {
        padding: 0 20px;
    }

    .network-title {
        font-size: 20px;
    }

    .network-description {
        font-size: 11px;
        line-height: 1.5;
    }

    .brands-container {
        gap: 25px;
    }

    .brand-row {
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .brand-card {
        width: 220px;
        height: 90px;
        padding: 18px 12px;
        border-radius: 6px;
    }

    .brand-card img {
        height: 45px;
        max-width: 140px;
    }

    .brand-row-content {
        width: calc(5 * 220px + 4 * 25px);
        gap: 20px;
    }
}

@media (hover: hover) {
    .brand-row {
        scroll-snap-type: x mandatory;
    }

    .brand-card {
        scroll-snap-align: start;
    }
}

@media (min-width: 769px) {
    .brand-row::-webkit-scrollbar {
        height: 6px;
        display: block;
    }

    .brand-row::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .brand-row::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 3px;
    }

    .brand-row::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }
}
@media (max-width: 1024px) {
    .hero-footer {
        padding: 0 40px;
        margin: 15px;
        height: 350px;
    }

    .hero-footer h1 {
        font-size: 3rem;
    }

    .footer {
        padding: 50px 40px 35px 40px;
    }

    .footer-content {
        gap: 40px;
    }

    .license-section {
        padding: 25px 40px;
    }

    .license-content {
        gap: 30px;
        flex-direction: row;
        align-items: center;
    }

    .license-text p {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-footer {
        padding: 0 30px;
        margin: 10px;
        height: 300px;
    }

    .hero-footer h1 {
        font-size: 2.5rem;
    }

    .hero-footer p {
        font-size: 1rem;
    }

    .footer {
        padding: 40px 30px 30px 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .sosial-nav {
        align-items: flex-start;
    }

    .license-section {
        padding: 20px 30px;
    }

    .license-content {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .member-section {
        align-items: flex-start;
        width: 100%;
    }

    .member-logos {
        justify-content: flex-start;
    }

    .privacy-section {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .license-text p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-footer {
        padding: 0 20px;
        margin: 5px;
        height: 250px;
    }

    .hero-footer h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-footer p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .contact-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .footer {
        padding: 30px 20px 25px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .contact-details {
        font-size: 0.85rem;
    }

    .contact-links a {
        font-size: 0.85rem;
    }

    .license-section {
        padding: 15px 20px;
    }

    .license-content {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .license-logos {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .license-text p {
        font-size: 0.7rem;
        max-width: 100%;
    }

    .member-logos {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .logo-item img {
        height: 35px;
    }

    .privacy-links a {
        font-size: 0.7rem;
    }

    .copyright p {
        font-size: 0.6rem;
    }
}

@media (max-width: 1024px) {
    .ecosystem-section {
        padding: 40px 30px;
    }

    .ecosystem-header-text {
        gap: 40px;
        margin: 15px;
    }

    .ecosystem-header-text .left {
        font-size: 22px;
    }

    .right-panel {
        max-width: 900px;
    }

    .card {
        padding: 25px 20px;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .ecosystem-section {
        padding: 30px 20px;
    }

    .ecosystem-header-text {
        flex-direction: column;
        gap: 20px;
        margin: 10px;
    }

    .ecosystem-header-text .left,
    .ecosystem-header-text .right {
        width: 100%;
    }

    .ecosystem-header-text .left {
        font-size: 20px;
    }

    .right-panel {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }

    /* Reset borders untuk layout 2 kolom */
    .card {
        border-left: 1px solid #ddd;
        border-right: none;
        min-height: 280px;
    }

    .card:nth-child(even) {
        border-right: 1px solid #ddd;
    }

    .card:nth-child(5),
    .card:nth-child(6) {
        border-bottom: 1px solid #ddd;
    }
}

@media (max-width: 480px) {
    .ecosystem-section {
        padding: 20px 15px;
    }

    .ecosystem-header-text .left {
        font-size: 18px;
    }

    .right-panel {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .card {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        min-height: 250px;
        padding: 20px 15px;
    }

    .card:last-child {
        border-bottom: 1px solid #ddd;
    }

    .card p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .business-section {
        flex-direction: column;
    }

    .left-content {
        flex: none;
        padding: 40px 20px;
    }

    .left-content h1 {
        font-size: 1.8rem;
    }

    .card {
        flex: 0 0 280px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .license-section {
        padding: 20px;
    }

    .license-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .logo-item {
        justify-content: flex-start;
    }

    .privacy-section {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px 0;
    }

    .ecosystem-header-text {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .ecosystem-header-text .left,
    .ecosystem-header-text .right {
        width: 100%;
    }

    .ecosystem-header-text .left {
        font-size: 24px;
    }

    .right-panel {
        max-width: none;
    }

    .right-panel {
        grid-template-columns: 1fr;
    }

    .card {
        border-right: none;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero-footer {
        padding: 0 20px;
        margin: 10px;
        height: 300px;
    }

    .hero-footer-content h1 {
        font-size: 2.5rem;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-nav {
        align-items: center;
    }

    .nav-links {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .network-content {
        padding: 0 20px;
    }

    .network-title {
        font-size: 36px;
    }

    .brand-card {
        padding: 30px 40px;
        min-width: 160px;
    }

    .brands-container {
        gap: 20px;
    }

    .brand-row-content {
        gap: 20px;
    }

    .brand-row {
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 769px) {
    .brand-row {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .brand-row::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 30px;
    }

    .ecosystem-header-text {
        flex-direction: column;
        gap: 30px;
    }

    .ecosystem-header-text .left,
    .ecosystem-header-text .right {
        width: 100%;
    }

    .ecosystem-header-text .left {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-left h1 {
        font-size: 28px;
    }

    .capabilities-section {
        margin: 0 -20px;
        padding: 40px 20px;
    }

    .capabilities-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .capability-description {
        padding-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 30px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content {
        padding: 0 30px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .login-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
