*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    border: none;
}

body {
    font-family: --apple-system, 'Montserrat', Arial, Helvetica, sans-serif;
    background-image: url("library/design/bg-photos.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow-y: scroll;
    background-color: var(--default-background-color);
    transition: all 0.3s ease;
}

/* kumpulan-Font-regular-medium-lighter */
@font-face {
    font-family: 'Courier';
    src: url(library/font/CourierPrime-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url(library/font/Poppins-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LondrinaSolid';
    src: url(library/font/LondrinaSolid-Light.ttf) format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url(library/font/Montserrat-Medium.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url(library/font/Montserrat-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* kumpulan-Font-semiBold-bold */
@font-face {
    font-family: 'Courier';
    src: url(library/font/CourierPrime-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url(library/font/Poppins-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url(library/font/Montserrat-Medium.ttf) format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url(library/font/Montserrat-SemiBold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url(library/font/Montserrat-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* indeks-keterangan-element-Global */
.tooltip {
    position: fixed;
    z-index: 99999;
    max-width: 240px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--secondary-default-color);
    color: var(--primary-text-color);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: var(--static-box-shadow);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    visibility: hidden;
    white-space: normal;
    word-break: break-word;
}

.tooltip.is-visible {
    opacity: 1;
    visibility: visible;
}

.tooltip.fast {
    transition: opacity 0.15s ease;
}

/* kumpulan-variabel-CSS (body) */
:root {
    --primary-text-color: #040504;
    --primary-text-white: #f5f5f5;
    --secondary-text-color: #9a9ea1;
    --hover-active-color: #cffff0;
    --hover-navbar-color: #09c989;
    --default-background-color: whitesmoke;
    --dark-background-color: #2a2a2a;
    --paragraph-font-size: 24px;
    --border-radius: 25px;
    --primary-outline-color: 0.1em solid #040504;
    --secondary-outline-color: 0.1em solid #BFC9D1;
    --padding-default: 20px 80px;
    --hover-box-shadow: 0 0.5em 0.3em 0.2em rgba(0, 0, 0, 0.2);
    --static-box-shadow: 0 0.5em 0.5em 0.1em rgba(0, 0, 0, 0.15);
    --hover-button-color: #01956b;
    --card-height: 400px;
    --subheading-text: clamp(28px, 2vw, 36px);
    --column-green-color: var(--hover-active-color);
    --indeks-galeri-section: var(var(--secondary-text-color));
    --secondary-default-color: #dde6ec;
    --default-theme-background-whatsapp: linear-gradient(rgba(133, 133, 133, 0.5), rgba(0, 0, 0, 0.5)), url(library/design/whatsapp-background-light-theme.jpg);
}

body.dark-mode {
    --default-background-color: #202124;
    --primary-text-color: var(--primary-text-white);
    --column-green-color: var(--hover-button-color);
    --index-galeri-section: var(--dark-background-color);
    --secondary-default-color: var(--dark-background-color);
    --secondary-text-color: #BFC9D1;
    --hover-box-shadow: 0 0.5em 0.3em 0.2em rgba(255, 255, 255, 0.2);
    --default-theme-background-whatsapp: linear-gradient(rgba(133, 133, 133, 0.5), rgba(0, 0, 0, 0.5)), url(library/design/whatsapp-background-dark-theme.jpg);
}

/* navbar */
.header-navbar {
    background-color: var(--default-background-color);
    padding: 3px;
    position: relative;
    top: 0;
    z-index: 1;
}

.container-navbar {
    height: 15vh;
    width: 100%;
    padding: 0 60px;
}

.navbar {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.logo-navbar {
    align-items: center;
    height: clamp(40px, 6vw, 80px);
    cursor: pointer;
}

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

.container-navtools {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.navlinks {
    text-decoration: none;
    color: var(--primary-text-color);
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: clamp(15px, 3vw, 20px);
    transition: color 0.3s ease;
}

.navlinks:hover,
.navlinks.active {
    color: #09c989;
}

.theme-btn {
    display: flex;
    cursor: pointer;
    background: none;
    position: relative;
    width: 50px;
    height: 50px;
    overflow: hidden;
}

.light-theme,
.night-theme {
    display: flex;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s ease;
    visibility: 0;
}

.light-theme {
    transform: translateY(-100%);
}

.light-theme.active {
    visibility: 1;
    transform: translateY(0);
}

.night-theme {
    scale: 1.5;
    transform: translateY(100%);
}

.night-theme.active {
    visibility: 1;
    transform: translateY(0);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

body.resizing .nav-links,
body.resizing .overlay,
body.resizing .hamburger span {
    transition: none !important;
}

@media (max-width: 1024px) {

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        background-color: var(--default-background-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 40px;
        transform: translateX(100%);
        will-change: transform;
        transition: transform 0.35s ease;
        z-index: 9999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 9999;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background-color: var(--primary-text-color);
    }

}

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

    .logo-navbar {
        height: clamp(40px, 13vw, 55px);
    }

    .container-navtools {
        gap: 0 12px;
    }

    .theme-btn {
        width: 40px;
        height: 40px;
    }

    .nav-links {
        width: min(65vw, 250px);
        padding: 34px 22px;
        gap: 18px;
    }

    .navlinks {
        font-size: 17px;
    }

    .hamburger span {
        width: 26px;
        height: 3px;
    }
}

/* [ SECTION 1 ] */
.container-section1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    height: 85vh;
    width: 100%;
}

.container-section1::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url("library/design/bg-photos.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.text-section1 {
    flex: 0 0 100%;
    line-height: 1.6;
    padding-left: 60px;
    position: relative;
    transform: translateY(100px);
    z-index: 0;
}

.text-section1 h1 {
    font-size: 80px;
    margin-bottom: 10px;
    color: var(--primary-text-white);
    min-height: 60px;
    order: 2;
}

.text-section1 h2 {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-text-white);
    transform: translateY(15px);
    letter-spacing: 1px;
    text-transform: uppercase;
    order: 1;
}

.text-section1 p {
    font-size: 18px;
    color: var(--primary-text-white);
    order: 3;
}

.typing-text {
    min-height: 1em;
    display: inline-block;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: var(--primary-text-white);
    margin-left: 5px;
    animation: blink 0.5s infinite;
    vertical-align: middle;
}

.cursor.stopped {
    animation: none;
    background-color: var(--primary-text-white);
}

@keyframes blink {

    0%,
    49% {
        background-color: var(--primary-text-white);
    }

    50%,
    100% {
        background-color: transparent;
    }
}

@media (max-width: 1024px) {

    .text-section1 {
        padding-left: 30px;
        padding-right: 30px;
        transform: translateY(70px);
    }

    .text-section1 h1 {
        font-size: clamp(46px, 8vw, 64px);
    }

    .text-section1 h2 {
        font-size: clamp(18px, 2.8vw, 22px);
    }

    .text-section1 p {
        font-size: clamp(15px, 2vw, 18px);
        max-width: 90%;
    }
}

@media (max-width: 768px) {

    .text-section1 {
        padding-left: 18px;
        padding-right: 18px;
        transform: translateY(55px);
    }

    .text-section1 h1 {
        font-size: clamp(34px, 10vw, 48px);
        min-height: 1.1em;
    }

    .text-section1 h2 {
        font-size: clamp(15px, 4vw, 18px);
        transform: translateY(8px);
        letter-spacing: 0.5px;
    }

    .text-section1 p {
        font-size: clamp(14px, 3.5vw, 16px);
        max-width: 100%;
    }

    .cursor {
        width: 2px;
    }
}

.container-section2 {
    background-color: var(--default-background-color);
    display: block;
    justify-content: center;
    align-content: start;
    width: 100%;
    padding: 40px 0;
}

.container-section2 h2 {
    text-align: center;
    font-size: 45px;
    color: var(--primary-text-color);
    font-weight: bold;
    padding-bottom: 30px;
}

.carousel-container2 {
    width: 80%;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: auto;
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 5px;
}

.carousel-track img {
    height: 250px;
    width: calc((100% - 40px) / 3);
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
    outline: var(--secondary-outline-color);
}

@media (max-width: 1024px) {
    .container-section2 {
        padding: 30px 0;
    }

    .container-section2 h2 {
        font-size: clamp(30px, 5vw, 40px);
        padding-bottom: 20px;
    }

    .carousel-container2 {
        width: 80%;
    }

    .carousel-track {
        gap: auto;
    }

    .carousel-track img {
        height: 220px;
        width: calc((100% - 16px) / 2);
    }
}

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

    .container-section2 h2 {
        font-size: clamp(24px, 7vw, 34px);
        padding-bottom: 18px;
    }

    .carousel-track img {
        height: 150px;
        width: 100%;
    }
}

.container-section3 {
    display: grid;
    height: fit-content;
    grid-template-columns: repeat(3, 1fr);
    background-color: var(--default-background-color);
    padding: var(--padding-default);
    width: 100%;
    color: var(--primary-text-color);
}

.column {
    display: inline-block;
    padding: 20px;
}

.column-a {
    margin-bottom: 15px;
}

.image-block {
    display: inline-flex;
    width: 100%;
    object-fit: cover;
    height: clamp(50px, 10vw, 300px);
    border-radius: 12px;
    margin-bottom: 10px;
}

.column h2 {
    font-size: 30px;
    margin-bottom: 5px;
}

.column p,
.our-services p {
    font-size: 1.5vw;
    line-height: 1.6;
}

.our-services {
    display: block;
    background-color: var(--column-green-color);
    border-radius: var(--border-radius);
    padding: 1vw;
    height: fit-content;
}

.col-title {
    font-family: 'Poppins';
    font-weight: 700;
    background-color: var(--hover-navbar-color);
    display: block;
    margin-bottom: 3vw;
    font-weight: bold;
    padding: 1vw 1.5vw;
    border-radius: var(--border-radius);
}

.col-title h2 {
    color: var(--primary-text-white);
    font-size: clamp(32px, 5vw, 55px);
}

.col-title h3 {
    color: var(--primary-text-white);
    font-size: clamp(24px, 3vw, 42px);
}

.btn-our-services {
    font-family: 'Montserrat';
    padding: 1vw 1.6vw;
    font-size: clamp(12px, 1.2vw, 24px);
    font-weight: bold;
    color: var(--primary-text-white);
    background: var(--hover-button-color);
    outline: var(--secondary-outline-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2vw;
}

.btn-our-services:hover {
    color: var(--primary-text-color);
    transform: translateY(-0.1em);
    background: var(--default-background-color);
    box-shadow: var(--static-box-shadow);
}

.btn-our-services:active {
    transform: scale(0.95);
}

@media (max-width: 1024px) {
    .container-section3 {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px;
    }

    .column {
        padding: 0;
    }

    .image-block {
        height: clamp(180px, 30vw, 260px);
    }

    .column h2 {
        font-size: clamp(24px, 4vw, 30px);
    }

    .column p,
    .our-services p {
        font-size: clamp(14px, 1.8vw, 16px);
    }

    .our-services {
        padding: 20px;
    }

    .col-title {
        margin-bottom: 20px;
        padding: 16px 18px;
    }

    .col-title h2 {
        font-size: clamp(26px, 4.5vw, 40px);
    }

    .col-title h3 {
        font-size: clamp(18px, 3vw, 28px);
    }

    .btn-our-services {
        padding: 14px 18px;
        font-size: clamp(13px, 1.8vw, 18px);
    }
}

@media (max-width: 768px) {
    .container-section3 {
        padding: 24px 18px;
        gap: 18px;
    }

    .column h2 {
        font-size: clamp(22px, 5vw, 28px);
    }

    .column p,
    .our-services p {
        font-size: 14px;
    }

    .image-block {
        height: 200px;
    }

    .our-services {
        padding: 16px;
    }

    .col-title {
        margin-bottom: 16px;
        padding: 14px;
    }

    .col-title h2 {
        font-size: clamp(22px, 7vw, 30px);
    }

    .col-title h3 {
        font-size: clamp(16px, 5vw, 22px);
    }

    .btn-our-services {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        margin-top: 16px;
    }
}

.container-gallery {
    background-color: var(--default-background-color);
    display: inline-block;
    height: fit-content;
    width: 100%;
}

.gallery-title {
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--primary-text-color);
}

.gallery {
    display: flex;
    justify-content: center;
    height: fit-content;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(10vw, 1fr));
    gap: 3vw;
    margin: auto;
}

.gallery-item {
    position: relative;
    width: 43vw;
    height: 25vw;
    overflow: hidden;
    transform: translateY(0) scale(1);
    transition: all 0.5s ease;
    box-shadow: var(--static-box-shadow);
    border-radius: var(--border-radius);
    outline: var(--secondary-outline-color);
}

.gallery-item:hover,
.gallery-item img:hover {
    box-shadow: var(--hover-box-shadow);
    transform: translateY(-12px) scale(1.03);
}

.gallery-item:active {
    transform: translateY(-5px) scale(1);
}

.gallery-item img {
    transform: translateY(0) scale(1);
    transition: transform 0.5s ease;
    object-fit: cover;
    width: 100%;
    height: 106%;
}

.overlay-text-gallery {
    position: absolute;
    pointer-events: none;
    bottom: 0;
    left: 0;
    padding: 2vw;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    background: linear-gradient(to top, rgba(55, 231, 178, 0.455), transparent);
    width: 100%;
}

.overlay-text-gallery h2 {
    margin: 0;
    color: var(--primary-text-color);
    font-size: 40px;
    text-shadow: 3px 5px 5px rgba(9, 109, 101, 0.726);
}

.gallery-item:hover .overlay-text-gallery {
    transform: translateY(0);
    opacity: 1;
}

.button-gallery {
    display: flex;
    justify-content: center;
    margin: 35px 0;
}

.btn-more-portfolio {
    text-decoration: none;
    padding: 20px;
    font-family: 'Montserrat';
    font-size: 35px;
    font-weight: 700;
    color: var(--default-background-color);
    background: var(--hover-button-color);
    outline: var(--secondary-outline-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-more-portfolio:hover {
    transform: translateY(-0.1em);
    color: var(--primary-text-color);
    background: var(--default-background-color);
    box-shadow: var(--hover-box-shadow);
}

.btn-more-portfolio:active {
    transform: translateY(0), scale(95%);
}

@media (max-width: 1024px) {
    .gallery-title {
        font-size: clamp(30px, 5vw, 42px);
        margin-bottom: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        width: 100%;
        padding: 0 24px;
    }

    .gallery-item {
        width: 100%;
        height: 52vw;
        min-height: 240px;
    }

    .overlay-text-gallery {
        padding: 18px;
    }

    .overlay-text-gallery h2 {
        font-size: clamp(22px, 4vw, 34px);
    }

    .btn-more-portfolio {
        font-size: clamp(18px, 3vw, 28px);
        padding: 16px 20px;
    }
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: clamp(24px, 7vw, 34px);
        margin-bottom: 22px;
    }

    .gallery-grid {
        padding: 0 18px;
        gap: 18px;
    }

    .gallery-item {
        height: 58vw;
        min-height: 210px;
    }

    .overlay-text-gallery {
        padding: 14px;
    }

    .overlay-text-gallery h2 {
        font-size: clamp(18px, 6vw, 26px);
    }

    .button-gallery {
        margin: 6vw 0;
    }

    .btn-more-portfolio {
        font-size: clamp(16px, 5vw, 22px);
        padding: 14px 16px;
    }
}

.container-spotlight {
    display: block;
    background-color: var(--default-background-color);
    padding-top: 40px;
    padding-bottom: 10px;
}

.spotlight-title {
    text-align: center;
    font-size: var(--subheading-text);
    font-weight: bold;
    font-family: 'Poppins';
    color: var(--primary-text-color);
    padding-bottom: 20px;
    height: 10vh;
}

.carousel-spotlight {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-wrapper {
    width: 100%;
    height: 90vh;
}

.container-series {
    display: flex;
    width: 100%;
    height: 100%;
}

.series {
    min-width: 100%;
    box-sizing: border-box;
}

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

.btn-spotlight {
    width: 5vw;
    height: 5vw;
    position: absolute;
    cursor: pointer;
    top: 50%;
    translate: 0 -50%;
    transition: all 0.7s ease;
    border-radius: var(--border-radius);
    padding: 1vw;
    z-index: 9999;
}

.prev {
    background: url(library/design/cursor-prev.png) no-repeat center;
    background-size: 90%;
    left: 0;
    translate: -10px -50%;
    opacity: 0;
}

.next {
    background: url(library/design/cursor-next.png) no-repeat center;
    background-size: 90%;
    right: 0;
    translate: 10px -50%;
    opacity: 0;
}

.btn-spotlight:hover {
    background-color: var(--dark-background-color);
}

.slider-wrapper:hover .prev {
    translate: 3vw -50%;
    opacity: 1;
}

.slider-wrapper:hover .next {
    translate: -3vw -50%;
    opacity: 1;
}

@media (max-width: 1024px) {
    .spotlight-title {
        font-size: clamp(28px, 5vw, 40px);
        height: auto;
    }

    .slider-wrapper {
        height: 55vh;
    }

    .btn-spotlight {
        width: 48px;
        height: 48px;
    }

    .slider-wrapper:hover .prev {
        translate: 18px -50%;
        opacity: 1;
    }

    .slider-wrapper:hover .next {
        translate: -18px -50%;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .container-spotlight {
        padding-top: 28px;
    }

    .spotlight-title {
        font-size: clamp(22px, 6vw, 32px);
        padding-bottom: 16px;
    }

    .slider-wrapper {
        height: 42vh;
    }

    .btn-spotlight {
        width: 42px;
        height: 42px;
        padding: 0.8rem;
    }

    .slider-wrapper:hover .prev,
    .slider-wrapper:hover .next {
        opacity: 0;
    }
}

#scrollTopBtn {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease, background 0.4s ease;
    position: fixed;
    bottom: 60px;
    right: 50px;
    width: 50px;
    height: 50px;
    background: #076ba1 url('library/design/cursor-up.png') no-repeat center;
    background-size: 60%;
    border-radius: var(--border-radius);
    cursor: pointer;
    box-shadow: var(--static-box-shadow);
    z-index: 9999;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn:hover {
    background-color: #065079;
}


#scrollTopBtn:active {
    background-color: transparent;
}

/* [ CONTACT ] */
.section-contact {
    display: flex;
    width: 100%;
    padding: 40px 200px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--primary-text-white);
}

.section-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.contact-grid-1 {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius);
    padding: 30px;
    outline: var(--secondary-outline-color);
}

.inner-contact {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    line-height: 1.6em;
    justify-content: start;
}

.inner-contact h1 {
    line-height: 1.9em;
    font-size: clamp(18px, 6vw, 52px);
}

.inner-contact p {
    font-size: clamp(14px, 3vw, 16px);
}

.cont-contact {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;
}

.cont-contact img {
    width: clamp(30px, 3vw, 40px);
    height: clamp(30px, 3vw, 40px);
    object-fit: cover;
    border-radius: 50%;
}

.cont-contact p {
    font-size: clamp(16px, 3vw, 20px);
}

.service-list {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.service-list a {
    width: fit-content;
    color: var(--secondary-text-color);
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.service-list a:hover,
.service-list a:active {
    opacity: 0.8;
}

.contact-grid-2 {
    display: flex;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: all 0.5s ease-in-out;
    outline: var(--secondary-outline-color);
    background-image: var(--default-theme-background-whatsapp);
}

.wa-panel {
    width: 100%;
    display: flex;
    text-align: center;
    overflow: hidden;
    padding: 30px;
}

.panel-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.panel-content p {
    font-size: clamp(10px, 1vw, 14px);
}

.btn-wa-forward {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 80px;
    padding: 3px;
    color: var(--primary-text-color);
    background-color: var(--secondary-default-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s ease, background-color 0.4s ease, color 0.2s ease, box-shadow 0.4s ease;
    margin: 20px 0;
    padding: 10px;
    outline: var(--secondary-outline-color);
    box-shadow: var(--static-box-shadow);
    overflow: hidden;
}

.btn-wa-forward img {
    display: flex;
    height: 100%;
    border-radius: 50%;
}

.btn-wa-forward h3 {
    font-family: 'Montserrat';
    font-weight: 600;
}

.btn-wa-forward:hover {
    transform: scale(1.05);
    box-shadow: var(--hover-box-shadow);
    color: var(--dark-background-color);
    background-color: var(--hover-navbar-color);
}

.btn-wa-forward:active {
    color: var(--dark-background-color);
    box-shadow: var(--static-box-shadow);
    transform: scale(0.95);
}

.contact-grid-3 {
    grid-column: span 2;
    background-color: rgb(0, 0, 0, 0.5);
    border-radius: var(--border-radius);
    outline: var(--secondary-outline-color);
    gap: 20px;
    align-items: center;
    overflow: hidden;
}

.yt-grid {
    display: grid;
    grid-template-columns: 2fr 5px 1fr;
    text-align: center;
}

.divider {
    width: 0.2vw;
    height: 90%;
    opacity: 0.5;
    border-radius: var(--border-radius);
    background: var(--secondary-text-color);
    margin: auto;
}

.thumb-column {
    width: 100%;
    padding: clamp(20px, 5vw, 30px);
}

.container-thumb {
    display: block;
    background-color: var(--dark-background-color);
    color: var(--primary-text-white);
    padding: 10px;
    border-radius: var(--border-radius);
}

.latest-content {
    text-decoration: none;
    color: inherit;
}

.container-thumb h3 {
    text-align: right;
    color: var(--secondary-text-color);
    padding-right: 2%;
}

.thumbnail-wrapper {
    width: 100%;
    height: 330px;
    outline: var(--secondary-outline-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

#title-thumbnail {
    display: flex;
    text-align: left;
    border-radius: 10px;
    padding: 5px;
    background-color: rgb(0, 0, 0, 0.3);
}

#title-thumbnail:hover {
    color: var(--secondary-text-color);
}

.profile-column {
    display: flex;
    flex-direction: column;
    padding: 20px;
    color: var(--primary-text-white);
    justify-content: center;
}

.container-profile {
    display: flex;
    flex-direction: column;
    background-color: var(--dark-background-color);
    border-radius: var(--border-radius);
    align-items: center;
    padding: 10px;
}

.youtube-icon {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.192);
}

.live-badge {
    display: none;
    font-family: 'Montserrat';
    font-weight: 600;
}

.active-live .live-badge {
    display: block;
}

.profile-wrapper {
    width: 80%;
    position: relative;
    padding: 10px;
    transition: all 0.5s ease;
    overflow: hidden;
}

.profile-wrapper img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.active-live {
    outline: 4px solid #ff0000;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

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

    .section-contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .contact-grid-3 {
        grid-column: auto;
    }

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

    .divider {
        display: none;
    }

    .contact-grid-1,
    .contact-grid-2,
    .contact-grid-3 {
        padding: 15px;
    }

    .cont-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .thumb-column,
    .profile-column {
        padding: 0;
    }

    .thumbnail-wrapper {
        height: 300px;
    }

    .youtube-icon {
        padding: 5px 8px;
        gap: 5px;
    }

    .youtube-icon img,
    .youtube-icon h3 {
        font-size: clamp(14px, 3vw, 24px);
        line-height: 1.4em;
    }

    .container-profile h2 {
        font-size: clamp(15px, 5vw, 32px);
    }

    .container-profile p {
        font-size: clamp(12px, 3vw, 16px);
    }

    .container-footer {
        height: auto;
        padding: 18px 30px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .container-footer h3 {
        padding: 0;
        justify-content: center;
    }

    .footer-image {
        justify-content: center;
    }

    .footer-image img {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .section-contact {
        padding: 24px 18px;
    }

    .section-contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-grid-1,
    .contact-grid-2,
    .contact-grid-3 {
        padding: 18px;
    }

    .inner-contact p {
        line-height: 1.5em;
    }

    .panel-content {
        width: 100%;
    }

    .thumbnail-wrapper {
        height: 180px;
    }

    .profile-wrapper {
        width: 50%;
    }
}

/* [ FOOTER ] */
.container-footer {
    display: flex;
    height: 10vh;
    padding: 15px 90px;
    background-color: rgb(0, 0, 0, 0.9);
    align-items: center;
    justify-content: space-between;
}

.container-footer h3 {
    display: flex;
    padding: 0 10px;
    font-weight: normal;
    color: var(--primary-text-white);
}

.footer-image {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.footer-image img {
    width: 70%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.footer-image p {
    height: 60%;
    align-items: start;
    color: aliceblue;
    font-size: x-small;
    margin: 0;
}

@media (max-width: 768px) {
    .container-footer {
        padding: 16px 18px;
    }

    .container-footer h3 {
        font-size: 14px;
    }

    .footer-image img {
        width: 72%;
    }
}

.section-portfolio {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--default-background-color);
}

/* .toolbar {
    display: flex;
    width: 100%;
    padding: 5vh 5vw;
    position: relative;
    align-items: center;
}

.toolbar .filter,
.toolbar select {
    background-color: inherit;
    color: var(--primary-text-color);
    align-items: center;
    padding: 0 15px;
    width: 10vw;
    height: 3vw;
    font-size: clamp(0.9em, 1vw + 0.5em, 1.2em);
    cursor: pointer;
    border-radius: var(--border-radius);
    outline: var(--secondary-outline-color);
    margin-right: 50px;
    overflow: hidden;
} */

.view-switcher {
    position: absolute;
    display: flex;
    right: 6%;
    outline: var(--secondary-outline-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.view-switcher button {
    display: flex;
    background-color: inherit;
    width: 50px;
    height: 50px;
    padding: 7px;
}

.view-switcher img {
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.view-switcher button:hover,
.view-switcher button.active {
    background-color: var(--hover-active-color);
}

.portfolio-container {
    width: 100%;
    padding: var(--padding-default);
}

.portfolio-content {
    display: flex;
    flex-direction: column;
    height: fit-content;
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 1vw;
    outline: var(--secondary-outline-color);
    box-shadow: var(--static-box-shadow);
    transform: translateY(0);
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-content a {
    text-decoration: none;
}

.portfolio-content:hover {
    transform: translateY(-0.5em);
    box-shadow: var(--hover-box-shadow);
}

.portfolio-content img {
    border-radius: 12px 12px 2px 2px;
    width: 100%;
    height: clamp(220px, 5vw, 280px);
    object-fit: cover;
}

.portfolio-content-text {
    color: var(--primary-text-color);
    font-size: 1.2em;
    margin: 10px 0;
}

.portfolio-content-text span {
    margin: 5px;
}

.title-year {
    display: flex;
    width: fit-content;
    gap: 10px;
}

.title-year .year {
    color: #808080;
    font-weight: 400;
}

.sub-segment {
    float: right;
    font-size: clamp(13px, 1vw, 18vw);
    color: var(--secondary-text-color);
}

.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.list-view {
    grid-template-columns: 1fr;
}

.list-view .portfolio-content img {
    height: clamp(350px, 50vw, 450px);
}

@media (max-width: 1024px) {
    .toolbar {
        flex-wrap: wrap;
        gap: 14px;
        padding: 4vh 30px;
    }

    .toolbar .filter,
    .toolbar select {
        width: 100%;
        max-width: 320px;
        height: 46px;
        margin-right: 0;
    }

    .view-switcher {
        position: static;
        margin-left: auto;
    }

    .portfolio-container {
        padding: 30px;
    }

    .grid-view {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }

    .portfolio-content {
        padding: 12px;
    }

    .portfolio-content img {
        height: 220px;
    }

    .portfolio-content-text {
        font-size: 1em;
    }

    .list-view .portfolio-content img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .toolbar {
        padding: 3vh 18px;
    }

    .toolbar .filter,
    .toolbar select {
        max-width: 100%;
        height: 44px;
        font-size: 14px;
    }

    .view-switcher button {
        width: 44px;
        height: 44px;
        padding: 6px;
    }

    .portfolio-container {
        padding: 18px;
    }

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

    .portfolio-content {
        padding: 10px;
        margin-bottom: 18px;
    }

    .portfolio-content img {
        height: 200px;
    }

    .sub-segment {
        float: none;
        display: block;
        margin-top: 4px;
    }

    .list-view .portfolio-content img {
        height: 220px;
    }
}

/* [ ABOUT PAGE ] */
.about-we {
    display: block;
    background-size: cover;
    background-image: url(library/design/about-bg-image.jpg);
    background-position: center;
    width: 100%;
    padding: 40px 80px;
    overflow: hidden;
    justify-content: center;
    margin: auto;
}

.container-about-info {
    width: 60%;
}

.about-we h2 {
    margin-bottom: 20px;
    font-size: 42px;
    color: var(--primary-text-color);
}

.about-we p {
    font-size: var(--paragraph-font-size);
    color: var(--primary-text-color);
}

.about-team {
    display: flex;
    flex-direction: column;
    gap: 5vw;
    padding: var(--padding-default);
    background-color: var(--default-background-color);
}

.team-content {
    display: flex;
    width: 100%;
    margin-bottom: 5vw;
    align-items: center;
}

.image-area {
    width: 30%;
    padding-right: 20px;
    overflow: hidden;
}

.image-area img {
    width: 20vw;
    height: 20vw;
    object-fit: cover;
    border-radius: 100%;
}

.personal-info {
    display: block;
    width: 70%;
    color: var(--primary-text-color);
}

.personal-info h2 {
    font-size: clamp(20px, 5vw, 42px);
}

.personal-info h3 {
    font-size: clamp(16px, 3vw, 28px);
    color: var(--secondary-text-color);
    cursor: pointer;
    width: fit-content;
    transition: color 0.3s ease;
}

.personal-info h3:hover {
    color: var(--primary-text-color);
}

.personal-info p {
    font-size: clamp(12px, 2vw, 18px);
    line-height: 1.6;
    margin: 1vw 0;
}

.btn-personal-info {
    text-decoration: none;
    float: right;
    padding: 1vw 3vw;
    font-size: clamp(12px, 2vw, 18px);
    font-weight: bold;
    color: var(--default-background-color);
    background-color: var(--hover-button-color);
    outline: var(--secondary-outline-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.5s ease;
}

.btn-personal-info:hover,
.btn-personal-info.active {
    color: var(--primary-text-color);
    background-color: var(--default-background-color);
}

@media (max-width: 1024px) {
    .about-we {
        padding: 30px;
    }

    .container-about-info {
        width: 100%;
    }

    .about-we h2 {
        font-size: clamp(30px, 5vw, 38px);
    }

    .about-team {
        padding: 30px;
        gap: 40px;
    }

    .team-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 0;
    }

    .image-area {
        width: 100%;
        padding-right: 0;
        display: flex;
        justify-content: center;
    }

    .image-area img {
        width: 38vw;
        height: 38vw;
        min-width: 180px;
        min-height: 180px;
    }

    .personal-info {
        width: 100%;
    }

    .btn-personal-info {
        float: none;
        display: inline-block;
        padding: 12px 20px;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .about-we {
        padding: 24px 18px;
    }

    .about-we h2 {
        font-size: clamp(26px, 8vw, 32px);
    }

    .about-we p {
        font-size: 15px;
    }

    .about-team {
        padding: 24px 18px;
        gap: 32px;
    }

    .image-area img {
        width: 52vw;
        height: 52vw;
        min-width: 150px;
        min-height: 150px;
    }

    .personal-info h2 {
        font-size: clamp(20px, 7vw, 28px);
    }

    .personal-info h3 {
        font-size: clamp(15px, 4.5vw, 20px);
    }

    .personal-info p {
        font-size: 14px;
    }

    .btn-personal-info {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
}

/* [ SERVICE PAGE ] */
.service-page {
    width: 100%;
    background-color: var(--default-background-color);
    display: flex;
    flex-direction: column;
    padding: var(--padding-default);
}

.service-content {
    color: var(--primary-text-color);
    background-color: var(--default-background-color);
    background-blend-mode: multiply;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-template-rows: 1fr;
    gap: 20px;
    margin: 20px 0;
}

.service-content::before {
    background-image: url();
}

.image-content-svc {
    width: 100%;
    height: 320px;
    outline: var(--secondary-outline-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--static-box-shadow);
}

.image-content-svc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-content-svc {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    font-size: clamp(18px, 1.5vw, 24px);
    justify-content: end;
}

.list-svc {
    width: fit-content;
    opacity: 0.7;
    margin: 5px 0;
    list-style: none;
    cursor: pointer;
}

.list-svc li:active,
.list-svc li:hover {
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .service-page {
        padding: 30px;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .image-content-svc {
        height: 260px;
    }

    .text-content-svc {
        padding: 0;
        font-size: clamp(16px, 2vw, 20px);
    }
}

@media (max-width: 768px) {
    .service-page {
        padding: 24px 18px;
    }

    .service-content {
        gap: 14px;
    }

    .image-content-svc {
        height: 220px;
    }

    .text-content-svc {
        font-size: 15px;
    }

    .text-content-svc ul {
        margin: 4px 0;
    }
}