.site-header {
    background-color: #ffffff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.main-nav {
    display: flex;
}

.burger-menu {
    width: 40px;
    height: auto;
    aspect-ratio: 1/1;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.burger-menu [class*="line-"] {
    height: 4px;
    width: 40px;
    background-color: var(--primary);
    position: absolute;
    border-radius: 4px;
}

.burger-menu .line-1 {
    top: 10px;
    transform: translateY(-1px);
    transition: 0.3s ease;
}

.burger-menu .line-2 {
    top: calc(50% - 2px);
    transition: 0.3s ease;
}

.burger-menu .line-3 {
    bottom: 10px;
    transform: translateY(0px);
    transition: 0.3s ease;
}

.burger-menu.active .line-1 {
    top: 10px;
    transform: translateY(8px) rotate(calc(360deg + 45deg));
}

.burger-menu.active .line-2 {
    top: calc(50% - 2px);
    transform: scale(0);
}

.burger-menu.active .line-3 {
    bottom: 10px;
    transform: translateY(-8px) rotate(calc(-360deg + -45deg));
}

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

.nav-list a {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item {
    color: var(--bs-dark);
    transition: 0.3s ease;
    position: relative;
}

.nav-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    bottom: -5px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-item.active {
    color: #fab852;
}

.nav-item:not(.active):hover {
    color: var(--primary);
}

.nav-item:not(.active):hover::after {
    transform: scaleX(0.8);
}

.icon-down {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

/* Remove the nav-item underline ::after on dropdown parents (conflicts with bridge) */
.nav-item.has-dropdown::after {
    display: none;
}

.has-dropdown > .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
    /* transition-delay: .25s; */
    z-index: 200;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.has-dropdown > .dropdown-menu::after {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.has-dropdown > .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}

/* Invisible bridge to prevent gap between nav-item and dropdown */
.has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(5px);
    transition-delay: 0s;
}

.has-dropdown:hover > a .icon-down {
    transform: rotate(180deg);
}

.has-dropdown > .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.25s ease;
    white-space: nowrap;
    position: relative;
}

.has-dropdown > .dropdown-menu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #007e90, #10bbe3);
    border-radius: 0 3px 3px 0;
    transition: height 0.25s ease;
}

.has-dropdown > .dropdown-menu a.active {
    background-color: rgba(5, 143, 163, 0.06);
    color: var(--primary);
    padding-left: 26px;
}

.has-dropdown > .dropdown-menu a:hover {
    background-color: rgba(5, 143, 163, 0.06);
    color: var(--primary);
    padding-left: 26px;
}

.has-dropdown > .dropdown-menu a:hover::before {
    height: 60%;
}

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

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

.hero-section {
    padding: 80px 0;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-logo {
    height: 80px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-graphics {
    flex: 1;
    position: relative;
    height: 400px;
    min-width: 500px;
}

.graphic-rect {
    position: absolute;
    border-radius: 10px;
}

.graphic-rect[class*="cyan-rect-"] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 500;
}

.gray-rect {
    width: 467px;
    height: 336px;
    background-color: var(--bg-gray);
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    transform: translate(-50%, -50%);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1;
    transition: 1s ease;
    transition-delay: 0.01s;
}

.cyan-rect-1 {
    width: 193px;
    height: 42px;
    background-color: var(--secondary);
    top: 5%;
    left: 0;
    z-index: 2;
    transition: 0.5s ease;
    transition-delay: 0.2s;
}

.cyan-rect-2 {
    width: 193px;
    height: 42px;
    background-color: var(--secondary);
    top: 40%;
    right: 0;
    z-index: 2;
    transition: 0.5s ease;
    transition-delay: 0.2s;
}

.cyan-rect-3 {
    width: 193px;
    height: 42px;
    background-color: var(--secondary);
    bottom: 15%;
    left: -10%;
    z-index: 2;
    transition: 0.5s ease;
    transition-delay: 0.2s;
}

.cyan-rect-4 {
    width: 193px;
    height: 42px;
    background-color: var(--secondary);
    bottom: -7%;
    right: 12%;
    z-index: 2;
    transition: 0.5s ease;
    transition-delay: 0.2s;
}

.gray-rect:hover {
    transform: translate(-50%, -50%) scale(1.04);
}

.gray-rect:hover ~ .cyan-rect-4 {
    bottom: -7%;
    right: 2%;
}

.gray-rect:hover ~ .cyan-rect-3 {
    bottom: 15%;
    left: -20%;
}

.gray-rect:hover ~ .cyan-rect-2 {
    top: 40%;
    right: -20%;
}

.gray-rect:hover ~ .cyan-rect-1 {
    top: 5%;
    left: -20%;
}

.merged-svg-container {
    transform-origin: bottom left;
    transition: 0.3s ease;
}

.merged-svg-container:hover {
    transform: scale(1.05) rotate(-2deg);
}

.image-frame-folder {
    width: 440px;
    height: 315px;
    background: lightgray;
    margin-left: 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    z-index: 1;
}

.image-frame-folder.image-frame-folder-small {
    width: calc(100% - 40px);
    height: 100%;
    aspect-ratio: 440 / 315;
    margin: 20px;
}

.image-frame-folder::before {
    display: inherit;
    content: "";
    width: 440px;
    height: 315px;
    background-color: var(--secondary);
    transform-origin: bottom right;
    transform: skew(5deg) scaleY(0.9);
    border-radius: 20px 20px 0 0;
    z-index: -1;
    transition: 0.3s ease;
}

.image-frame-folder.image-frame-folder-small::before {
    min-width: 100px;
    height: 100%;
    border-radius: 20px;
}

.image-frame-folder:hover::before {
    transform: skew(10deg) scaleY(0.85);
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        min-height: 75vh;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-graphics {
        /* width: 100%; */
        /* min-width: auto; */
        /* transform: scale(0.8); */
        display: block;
        height: 500px;
        position: relative;
        top: -5rem;
    }
    .graphic-rect[class*="cyan-rect-"] {
        position: absolute;
    }
}

.about-section {
    padding: 80px 0;
}

.about-top {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.about-graphics-left {
    flex: 1;
    position: relative;
    height: 300px;
}

.merged-svg-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape-back {
    position: absolute;
    left: 0;
    top: 0;
    width: 90%;
}

.shape-front {
    position: absolute;
    left: 10%;
    top: 0;
    width: 80%;
}

.about-text-right {
    flex: 1;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-guide {
    position: relative;
    z-index: -1;
    opacity: 0;
}

.feature-card {
    background-color: var(--bg-light);
    /* min-height: 250px; */
    padding: 30px 20px;
    position: relative;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease;
}

.feature-static {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 30px 20px;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
}

.feature-hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px 20px;
    border-radius: 10px;
    z-index: 1;
    inset: 0;
    background: #007e90ff;
    clip-path: circle(0% at center);
    transition: 0.3s ease;
}

.feature-hover * {
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-hover {
    background: #007e90ff;
    clip-path: circle(100% at center);
}

.feature-card:hover {
    transform: scale(1.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .about-top {
        flex-direction: column;
    }

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

@media (max-width: 576px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

.services-section {
    padding: 80px 0;
}

.services-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.services-content {
    flex: 1;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s ease;
}

.service-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.icon-bg {
    width: 100%;
    height: 100%;
}

.icon-fg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
}

.service-text {
    transition: 0.3s ease;
}

.service-text h4 {
    font-size: 18px;
    margin-bottom: 4px;
    cursor: default;
}

.service-text p {
    font-size: 14px;
    color: var(--text-dark);
    cursor: default;
}

.service-item:hover .service-text {
    transform: translateX(10px);
}

.services-graphics {
    flex: 1;
    position: relative;
    height: 600px;
}

.service-img-large {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 90%;
    background-color: var(--bg-gray);
    border-radius: 50px;
    transition: 0.3s ease;
    overflow: hidden;
}

.service-img-small {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 50%;
    background-color: var(--bg-gray);
    border-radius: 50px;
    border: 10px solid #ffffff;
    transform-origin: bottom left;
    transition: 0.3s ease;
    overflow: hidden;
}

.service-img-large img,
.service-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-graphics:hover .service-img-small {
    width: 90%;
    height: 90%;
}

.services-graphics:hover .service-img-large {
    width: 60%;
    height: 50%;
}

@media (max-width: 992px) {
    .services-container {
        flex-direction: column;
    }

    .services-graphics {
        width: 100%;
        height: 400px;
    }
}

.news-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.news-wave-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    opacity: 0.5;
    pointer-events: none;
}

.relative-z {
    position: relative;
    z-index: 10;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

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

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

.news-card {
    background-color: #ffffff;
    border-radius: 20px;
    /* overflow: hidden; */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.news-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #007e90 0%, #10bbe3 100%);
    transform-origin: bottom left;
    border-radius: 20px;
    transform: skew(-0.75deg);
    z-index: -1;
    transition: 0.3s ease;
}

.news-card:hover::before {
    transform: skew(-2deg);
}

.news-img-wrapper {
    position: relative;
    height: 200px;
    border-radius: 20px 20px 0 0;
}

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

.news-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(90deg, #007e90 0%, #10bbe3 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 500;
    z-index: 2;
}

.news-content {
    padding: 30px 20px 20px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.news-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;

    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-excerpt {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 15px;

    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.news-link:hover {
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .news-grid-2x {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    padding: 80px 0;
}

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

.faq-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.faq-accordion {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-light);
    border-radius: 20px;
    padding: 20px 30px;
    transition: 0.3s ease;
}

.faq-item.active {
    background-color: var(--primary);
    color: white;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer {
    margin-top: 0px;
    font-size: 14px;
    line-height: 1.6;
    max-height: 0px !important;
    opacity: 0;
    overflow: hidden !important;
    transform: translateY(100%);
    transition: 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    margin-top: 15px;
    max-height: 500px !important;
    transform: translateY(0);
    opacity: 1;
}

.faq-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.faq-toggle-icon {
    width: 30px;
    height: 30px;
    position: relative;
}

.faq-toggle-icon .shape-1,
.faq-toggle-icon .shape-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--primary);
    transform: translate(-50%, -50%) rotate(0deg);
    transition: 0.3s ease;
}

.faq-item.active .faq-toggle-icon .shape-1 {
    background-color: var(--bs-light);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-item.active .faq-toggle-icon .shape-2 {
    background-color: var(--bs-light);
    transform: translate(-50%, -50%) rotate(45deg);
}

.contact-card-top {
    background-color: var(--primary);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
}

.contact-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.contact-card-bottom {
    background-color: var(--bg-light);

    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
    position: relative;
}

.bordered-box {
    background-color: var(--bg-light);
    position: relative;
    padding: 20px;
    border-radius: 20px;
}

.border-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.border-svg rect {
    x: 1px;
    y: 1px;

    width: calc(100% - 2px);
    height: calc(100% - 2px);

    fill: none;

    stroke: #007e90;
    stroke-width: 1;

    rx: 20;
    ry: 20;

    stroke-dasharray: 10 10;
}

.phone-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
}

.phone-bg {
    width: 100%;
    height: 100%;
}

.phone-fg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
}

@media (max-width: 992px) {
    .faq-container {
        flex-direction: column;
    }

    .faq-contact {
        width: 100%;
    }
}

.site-footer {
    position: relative;
    background-color: #ffffff;
    margin-top: 30px;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.footer-wave img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-address {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.links-col ul {
    list-style: none;
}

.links-col li {
    margin-bottom: 12px;
}

.links-col a {
    font-size: 14px;
    color: var(--text-dark);
    transition: color 0.3s;
}

.links-col a:hover {
    color: var(--primary);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-item img {
    width: 24px;
    height: 24px;
}

.footer-container {
    padding: 20px 40px;
    padding-bottom: 0px;
    background-color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: rgba(50, 50, 50, 0.5);
}

.footer-ornament {
    aspect-ratio: 2517 / 101;
    width: 100%;
    height: auto;
    background: url("/assets/img/footer-ornament-full.svg") no-repeat center
        center;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-wave {
        top: 50px;
    }
}

.submenu-title {
    aspect-ratio: 1280 / 223;
    width: 100%;
    min-height: 223px;
    background: linear-gradient(90deg, #007e90 0%, #10bbd3 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 88px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 576px) {
    .submenu-title {
        min-height: 223px;
    }
}

.submenu-title h3 {
    padding: 20px 40px;
    padding-top: 0;

    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

.submenu-title h1 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.submenu-title::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 2400px;
    height: 2400px;
    top: 40%;
    right: -25%;
    border-radius: 50%;
    background: #ffffff;
    opacity: 10%;
}

.long-content-box {
    border-radius: 40px;
    background: linear-gradient(90deg, #007e90 0%, #10bbd3 100%);

    padding: 40px;
    text-align: justify;

    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 34px; /* 212.5% */
    position: relative;
}

.long-content-box::before {
    content: "";
    width: calc(calc(100% / 3) * 2);
    height: 100%;
    min-height: 100px;
    position: absolute;
    top: -25px;
    left: 0;

    border-radius: 40px;
    background: #fab952;
    z-index: -1;
    transition: 0.5s ease;
}

.long-content-box::after {
    content: "";
    width: calc(calc(100% / 3) * 2);
    height: 100%;
    min-height: 100px;
    position: absolute;
    bottom: -25px;
    right: 0;

    border-radius: 40px;
    background: #fab952;
    z-index: -1;
    transition: 0.5s ease;
}

.long-content-box:hover::before {
    left: calc(calc(100% / 3));
}

.long-content-box:hover::after {
    right: calc(calc(100% / 3));
}

.search-icon {
    width: 40px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: calc(100% - 60px);
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s ease;
}

.search-input {
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    font-size: 16px;
    margin-left: -20px;
    width: calc(100% - 40px);
    transition: 0.3s ease;
}

.search-input:not(:placeholder-shown),
.search-input:focus,
.search-input:active {
    margin-left: 40px;
}

.search-input:not(:placeholder-shown) ~ .search-icon,
.search-input:focus ~ .search-icon,
.search-input:active ~ .search-icon {
    left: 20px;
}

.gallery-card {
    aspect-ratio: 4/3;
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.5s ease;
}

.gallery-card .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.5s ease;
    overflow: hidden;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

label.required::after {
    content: "*";
    color: #f00;
    margin-left: 5px;
}

.form-control-solid {
    padding: 12px;
    border-radius: 0.5rem;
    border: none;
    outline: none;
    background-color: var(--bg-light);
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    transition: 0.3s ease;
}

/* Nav Mobile */
@media (max-width: 991px) {
    .site-header {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1050;
    }

    body {
        padding-top: 72px;
    }

    .main-nav {
        display: block;
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        z-index: 1049;
        padding: 8px 0 16px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            transform 0.25s ease;
        pointer-events: none;
    }

    .main-nav.open {
        max-height: 80vh;
        overflow-y: auto;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .nav-list > .nav-item {
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list > .nav-item:last-child {
        border-bottom: none;
    }

    .nav-list > a.nav-item {
        display: flex !important;
        align-items: center;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 500;
        color: #222 !important;
        text-decoration: none;
        background: transparent;
        border-bottom: none !important;
        transition:
            background 0.15s,
            color 0.15s;
    }

    .nav-list > a.nav-item:hover {
        background: #f7f9ff;
        color: var(--color-primary, #0ea5e9) !important;
    }

    .nav-list > a.nav-item.active {
        color: var(--color-primary, #0ea5e9) !important;
        font-weight: 600;
    }

    .nav-item.has-dropdown > a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 500;
        color: #222 !important;
        text-decoration: none;
        background: transparent;
        width: 100%;
        transition:
            background 0.15s,
            color 0.15s;
    }

    .nav-item.has-dropdown > a:hover {
        background: #f7f9ff;
        color: var(--color-primary, #0ea5e9) !important;
    }

    .nav-item.has-dropdown > a .icon-down {
        transition: transform 0.25s ease;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .nav-item.has-dropdown.dropdown-open > a .icon-down {
        transform: rotate(180deg);
    }

    .main-nav .nav-item.has-dropdown .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        border: none !important;
        border-top: 1px solid #e8ecf0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background-color: #f4f8ff !important;
        padding: 6px 0 !important;
        display: block !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: none !important;
        inset: unset !important;
        transition:
            max-height 0.3s ease,
            opacity 0.25s ease;
    }

    .main-nav .nav-item.has-dropdown.dropdown-open .dropdown-menu {
        max-height: 400px;
        opacity: 1;
    }

    .main-nav .nav-item.has-dropdown .dropdown-menu a {
        display: flex !important;
        align-items: center;
        width: 100% !important;
        padding: 12px 20px 12px 24px !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        color: #333 !important;
        opacity: 1 !important;
        visibility: visible !important;
        text-decoration: none !important;
        border: none !important;
        border-left: 3px solid transparent !important;
        background: transparent !important;
        transition:
            background 0.15s,
            border-color 0.15s,
            color 0.15s;
        white-space: normal;
        line-height: 1.4;
        box-sizing: border-box !important;
        outline: none !important;
    }

    .main-nav .nav-item.has-dropdown .dropdown-menu a::before {
        content: "–";
        margin-right: 8px;
        color: #aaa;
        font-size: 13px;
        flex-shrink: 0;
    }

    .main-nav .nav-item.has-dropdown .dropdown-menu a:hover {
        background-color: #e0eaff !important;
        border-left-color: var(--color-primary, #0ea5e9) !important;
        color: var(--color-primary, #0ea5e9) !important;
    }

    .main-nav .nav-item.has-dropdown .dropdown-menu a:hover::before {
        color: var(--color-primary, #0ea5e9);
    }

    .main-nav .nav-item.has-dropdown .dropdown-menu a.active {
        color: var(--color-primary, #0ea5e9) !important;
        font-weight: 600 !important;
        border-left-color: var(--color-primary, #0ea5e9) !important;
        background-color: #e8f4ff !important;
    }

    .burger-menu .line-1,
    .burger-menu .line-2,
    .burger-menu .line-3 {
        transition:
            transform 0.25s ease,
            opacity 0.2s ease;
    }

    .burger-menu.active .line-1 {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .burger-menu.active .line-2 {
        opacity: 0;
        transform: scaleX(0);
    }

    .burger-menu.active .line-3 {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .nav-list > a.nav-item::after,
    .nav-list > a.nav-item::before {
        display: none !important;
        content: none !important;
    }

    .main-nav .nav-item.has-dropdown .dropdown-menu {
        border-left: none !important;
    }

    .main-nav .nav-item.has-dropdown .dropdown-menu a::after {
        display: none !important;
        content: none !important;
    }
}

/* Override /home section-hero mobile */
@keyframes badgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.graphic-rect[class*="cyan-rect-"] {
    animation: badgeFloat 3.5s ease-in-out infinite;
}
.cyan-rect-1 {
    animation-delay: 0s;
}
.cyan-rect-2 {
    animation-delay: 0.5s;
}
.cyan-rect-3 {
    animation-delay: 1s;
}
.cyan-rect-4 {
    animation-delay: 1.5s;
}

@media (max-width: 992px) {
    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-graphics {
        width: 100%;
        min-width: unset;
        max-width: 420px;
        aspect-ratio: 467 / 336;
        height: auto;
        position: relative;
        top: 0;
        margin: 0px auto 0;
    }

    .gray-rect {
        width: 86%;
        height: 86%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .graphic-rect[class*="cyan-rect-"] {
        position: absolute;
        width: auto;
        height: auto;
        padding: 7px 15px;
        font-size: 12px;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .cyan-rect-1 {
        top: 6%;
        left: 0;
        bottom: auto;
        right: auto;
    }
    .cyan-rect-2 {
        top: 42%;
        right: 0;
        bottom: auto;
        left: auto;
    }
    .cyan-rect-3 {
        bottom: 24%;
        left: 0;
        top: auto;
        right: auto;
    }
    .cyan-rect-4 {
        bottom: 2%;
        right: 0;
        top: auto;
        left: auto;
    }

    .gray-rect:hover {
        transform: translate(-50%, -50%) !important;
    }
    .gray-rect:hover ~ .hero-badges .cyan-rect-1,
    .cyan-rect-1 {
        top: 6% !important;
        left: 0 !important;
        bottom: auto !important;
        right: auto !important;
    }
    .gray-rect:hover ~ .hero-badges .cyan-rect-2,
    .cyan-rect-2 {
        top: 42% !important;
        right: 0 !important;
        bottom: auto !important;
        left: auto !important;
    }
    .gray-rect:hover ~ .hero-badges .cyan-rect-3,
    .cyan-rect-3 {
        bottom: 24% !important;
        left: 0 !important;
        top: auto !important;
        right: auto !important;
    }
    .gray-rect:hover ~ .hero-badges .cyan-rect-4,
    .cyan-rect-4 {
        bottom: 2% !important;
        right: 0 !important;
        top: auto !important;
        left: auto !important;
    }

    @media (hover: hover) and (pointer: fine) {
        .gray-rect:hover {
            transform: translate(-50%, -50%) scale(1.04);
        }
        .gray-rect:hover ~ .hero-badges .cyan-rect-4 {
            bottom: -7%;
            right: 2%;
        }
        .gray-rect:hover ~ .hero-badges .cyan-rect-3 {
            bottom: 15%;
            left: -20%;
        }
        .gray-rect:hover ~ .hero-badges .cyan-rect-2 {
            top: 40%;
            right: -20%;
        }
        .gray-rect:hover ~ .hero-badges .cyan-rect-1 {
            top: 5%;
            left: -20%;
        }
    }
}

/* Override /home section-news mobile */
@media (max-width: 992px) {
    .news-section .submenu-title {
        aspect-ratio: auto !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 40px 0 50px !important;
        margin-bottom: 40px !important;
    }

    .news-section .news-header {
        margin-top: 10px !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        width: 100%;
    }

    .news-section .news-header .btn-white {
        margin-top: 4px;
    }

    .news-section .relative-z {
        margin-top: 30px !important;
    }
}

/* Override /tentang-kami/latar-belakang section-about mobile */
.about-section .image-frame-folder.image-frame-folder-small {
    height: auto !important;
    aspect-ratio: 440 / 315;
    width: calc(100% - 40px);
}
@media (max-width: 992px) {
    .about-section .row > [class*="col-"] {
        margin-bottom: 28px;
    }

    .about-section .row > [class*="col-"]:last-child {
        margin-bottom: 0;
    }

    .about-section .image-frame-folder.image-frame-folder-small {
        margin: 12px auto !important;
        margin-left: 40px !important;
    }

    .about-section .long-content-box {
        text-align: left;
        padding: 28px;
        line-height: 28px;
    }
}

.btn-icon {
    aspect-ratio: 1/1;
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

