@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont,
        'Segoe UI', Roboto, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

header .logo img,
.footer-brand img,
.hero-logo img,
.login-container .login-icon img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

header .logo img,
.hero-logo img {
    border-radius: 50%;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e0e0;
    --dark-gray: #95a5a6;
}

html {
    scroll-behavior: smooth;
    overscroll-behavior: none;
}

.smooth-scroll {
    cursor: pointer;
}

body {
    padding-top: 66px;
    min-height: calc(100dvh - 66px);
    overscroll-behavior: none;
    background: #fff;
}

input,
textarea,
button,
select,
a {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    outline: none;
}

button,
a,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

input[type="submit"],
input[type="button"],
input[type="date"],
input[type="datetime-local"],
input[type="time"],
input[type="week"],
input[type="month"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media screen and (max-width: 768px) {

    input,
    textarea,
    select {
        font-size: 16px;
    }
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

input[type="search"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 4px;
}

textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 5px;
    position: relative;
    top: 3px;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
    background-color: #485f48;
    border-color: #485f48;
}

input[type="radio"] {
    border-radius: 50%;
}

input::placeholder,
textarea::placeholder {
    color: #999;
    opacity: 1;
}

input[type="file"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #f4f4f4;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 4px;
}

input[type="color"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 1px solid #ccc;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

input[type="number"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="password"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="email"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


input[type="url"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

input[type="search"]::-webkit-search-results-button {
    -webkit-appearance: none;
    appearance: none;
}

input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
}

.web-main {
    flex: 1;
    width: 100%;
    margin: 0 auto;
    min-height: 100dvh;
    padding: 0;
}

.max-1200px {
    max-width: 1200px;
}

.inner-padding {
    padding: 8px 14px 14px 14px;
}

.article-inner-padding {
    padding: 4px;
}

.blank-content {
    padding: 8px 20px;
}

@media (max-width: 768px) {
    .web-main {
        width: 100%;
        background: #fff;
        margin: 0 auto;
        padding: 0;
        min-height: calc(100dvh - 66px);
    }

    .inner-padding {
        padding: 4px 6px 6px 6px;
    }

    .article-inner-padding {
        padding: 5px;
    }
}

.nodata {
    padding: 20px;
}

/* Navigation Start */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 66px;
    background-color: #1a3e50;
    background-image: linear-gradient(90deg, #1a3e50 0%, #233e50 52%, #2c3e50 100%);
    border-bottom: 1.5px solid rgba(103, 143, 160, 0.48);
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transition: opacity 0.25s ease-in-out,
        box-shadow 0.3s ease-in-out;
}

header.header-scrolled {
    box-shadow: 0 4px 16px rgba(7, 27, 40, 0.3);
}

header.header-scrolling-down {
    opacity: 0.8;
}

header .logo {
    color: #fff;
    font-size: 1.4em;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

header .logo img {
    width: 40px;
    height: 40px;
    display: block;
    flex: 0 0 40px;
}

header ul {
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header ul li {
    position: relative;
    list-style: none;
    float: left;
}

header ul li a {
    color: #fff;
    font-size: 1em;
    padding: 17px 17px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

header ul li a:hover {
    background-color: #123241;
    color: #fdfbd8;
}

header ul li ul {
    position: absolute;
    left: 0;
    width: auto;
    background-color: #1a3e50;
    display: none;
}

header ul li:hover ul {
    display: block;
}

header ul li ul li {
    position: relative;
    width: 100%;
    background-color: #163646;
}

header ul li ul li:last-child {
    border-bottom: none;
}

header ul li ul li a {
    text-wrap: nowrap;
}

.user-link .icon {
    display: inline;
}

.user-link .text {
    display: none;
}

@media screen and (max-width: 900px) {
    .user-link .icon {
        display: none;
    }

    .user-link .text {
        display: inline;
    }
}

@media (min-width: 901px) and (max-width: 960px) {
    header {
        padding: 0 80px;
    }

    header ul li a {
        padding: 14.5px;
    }
}

/* Mobile Navigation */

@media (max-width: 900px) {
    header {
        padding: 10px 20px;
    }

    header nav {
        position: absolute;
        width: 100%;
        top: 66px;
        left: 0;
        background-color: #0c2838;
        background-image: linear-gradient(90deg, #0c2838 0%, #123443 52%, #183c4b 100%);
        display: none;
        color: white;
    }

    header.active nav {
        display: initial;
    }

    header.active,
    header.active.header-scrolling-down {
        opacity: 1;
    }

    header nav ul li {
        width: 100%;
    }

    header nav ul li ul {
        position: relative;
        width: 100%;
        left: 0;
    }

    header nav ul li ul li {
        background-color: #123847;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    header nav ul li ul li a {
        color: #fff;
    }

    header ul li a:hover {
        background-color: #071f2c;
    }

    .menuToggle {
        position: relative;
        width: 40px;
        height: 50px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menuToggle::before {
        content: '';
        position: absolute;
        width: 80%;
        height: 2px;
        background-color: #FFF;
        transform: translateY(-9px);
        box-shadow: 0 9px #fff;
        transition: 0.1s ease-in-out;
    }

    .menuToggle::after {
        content: '';
        position: absolute;
        width: 80%;
        height: 2px;
        background-color: #FFF;
        transform: translateY(9px);
        transition: 0.1s ease-in-out;
    }

    header.active .menuToggle::before {
        transform: rotate(45deg);
        box-shadow: 0 0 #fff;
        transition: 0.1s ease-in-out;
    }

    header.active .menuToggle::after {
        transform: rotate(315deg);
        transition: 0.1s ease-in-out;
    }
}

@media (max-width: 768px) {
    header {
        height: 60px;
    }
}

header a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

header a:hover {
    color: #fdfbd8;
}

/* Navigation End */

/* Hero Section Start */

.hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3e50 0%, #2c3e50 100%);
    margin-top: -66px;
    padding-top: 66px;
}

.hero-container {
    width: 100%;
    position: relative;
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
    padding: 80px 100px;
    z-index: 2;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 62, 80, 0.95) 0%, rgba(44, 62, 80, 0.9) 100%);
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 650px;
    position: relative;
    z-index: 2;
    color: #fff;
    user-select: none;
    pointer-events: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    user-select: none;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
    user-select: none;
}

.hero-description .hero-text-highlight {
    color: #ffd966;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.hero-button.primary {
    background: #fff;
    color: #2c3e50;
}

.hero-button.primary:hover {
    background: #f1f2f3;
    transform: scaleX(1.04);
}

.hero-button.whatsapp {
    background: #21c45d;
    color: #fff;
}

.hero-button.whatsapp:hover {
    background: #1aa851;
    gap: 13px;
}

.hero-button.outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.hero-button.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(1.04);
}

.hero-logo {
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    user-select: none;
    pointer-events: none;
}

.hero-logo img {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
    user-select: none;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Waves Animation */
.waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
    pointer-events: none;
}

.waves {
    position: relative;
    width: 100%;
    height: 80px;
    min-height: 80px;
    max-height: 150px;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 16s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
        min-height: 550px;
    }

    .hero-text {
        margin-bottom: 40px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-logo {
        display: none;
    }

    .hero-logo img {
        width: 150px;
        height: 150px;
    }

    .waves {
        height: 50px;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 40px 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .hero-logo img {
        width: 120px;
        height: 120px;
    }
}

/* Hero Section End */

/* Login Start */

.login-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 60px 40px 68px 40px;
    background: rgba(20, 30, 50, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    border: solid 2px #1c2833;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    overflow: hidden;
    transition: all 0.4s ease;
    background-image:
        radial-gradient(at 25% 30%, rgba(30, 40, 70, 0.3) 0%, transparent 40%),
        radial-gradient(at 75% 70%, rgba(40, 50, 80, 0.3) 0%, transparent 50%);
}

.login-container:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.login-cursor-follower {
    position: fixed;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle,
            rgba(30, 40, 70, 0.4) 0%,
            rgba(50, 60, 90, 0.4) 50%,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.15s ease;
    mix-blend-mode: overlay;
}

.login-light-effect {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle,
            rgba(30, 40, 70, 0.2) 0%,
            rgba(50, 60, 90, 0.2) 45%,
            transparent 70%);
    border-radius: 50%;
    z-index: -1;
    top: 26%;
    transition: transform 0.5s ease-out;
}

.login-light-effect:nth-child(2) {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle,
            rgba(50, 60, 90, 0.3) 0%,
            rgba(30, 40, 70, 0.3) 50%,
            transparent 70%);
    top: 15%;
}

.login-container h2 {
    margin-bottom: 15px;
    color: #192632;
    font-size: 26px;
}

.login-container .login-icon {
    margin-top: 10px;
    justify-content: center;
    text-align: center;
}

.login-container .login-icon img {
    width: 140px;
    background: white;
    margin-bottom: 5px;
    border-radius: 50%;
    border: solid 4px #07212e;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.login-container form .unp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.login-container form .unp label {
    width: 50px;
    height: 50.5px;
    text-align: center;
    border: solid 2px #1c2833;
    padding: 10.5px;
    margin-right: 5px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    font-size: 19px;
    color: #363a45;
}

.unp label i {
    font-size: 18px;
}

.login-container form .unp input {
    height: 50.5px;
    padding: 12.5px;
    flex: 1;
    width: 100%;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: solid 2px #1c2833;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login-container form .unp input::placeholder {
    color: #414141;
    opacity: 1;
}

.login-container form .unp input:focus {
    border-color: #334351;
    box-shadow: 0 0 8px rgba(74, 92, 107, 0.3);
}

.login-container form .unp button {
    flex: 1;
    width: 100%;
    padding: 9px 12px;
    background: #253a4f;
    color: #fff;
    margin: 0;
    margin-bottom: 15px;
    border-radius: 10px;
    border: solid 2px rgba(42, 52, 57, 0.5);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease, transform 0.2s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.login-container form .unp button:hover {
    background: #273747;
    transform: translateY(-2px);
}

.error-message {
    text-align: center;
    margin-top: 5px;
    color: #b53531;
    font-style: italic;
    margin-bottom: -24px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.error-message.hidden {
    opacity: 0;
    pointer-events: none;
    display: block !important;
    margin-bottom: -24px;
}

@media (max-width : 768px) {
    .login-container {
        width: 100%;
        height: calc(100dvh - 65px);
        max-width: none;
        border-radius: 0;
        padding: 24px 18px;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .login-container .login-icon {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .login-container .login-icon img {
        width: 130px;
    }

    .login-container h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .login-container form .unp {
        margin: 15px 0;
    }

    .error-message {
        margin-top: -12px;
        margin-bottom: -12px;
    }

    .error-message.hidden {
        margin-top: -12px;
        margin-bottom: -12px;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        opacity: 0.5;
    }
}

@keyframes lightPulse {
    0% {
        transform: translate(var(--tx), var(--ty)) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(var(--tx), var(--ty)) scale(1.05);
        opacity: 0.9;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(1);
        opacity: 0.7;
    }
}

.login-light-effect.light-effect-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,
            rgba(60, 70, 110, 0.3) 0%,
            rgba(40, 50, 90, 0.3) 45%,
            transparent 70%);
    top: 20%;
    mix-blend-mode: overlay;
    animation: lightPulse 8s infinite ease-in-out;

    --tx: $ {
        animationPositions.light3.x
    }

    px;

    --ty: $ {
        animationPositions.light3.y
    }

    px;
}

/* Login End */

/* Transition Start */

.came-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in-fast {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 2s ease-in-out, transform 1.5s ease-in-out;
}

@media (min-width: 501px) {
    .split-in-l {
        opacity: 0;
        transform: translateX(-50vw);
        transition: opacity 2s ease-in-out, transform 1.5s ease-in-out;
    }
}

@media (min-width: 501px) {
    .split-in-r-fast {
        opacity: 0;
        transform: translateX(50vw);
        transition: opacity 2s ease-in-out, transform 1.5s ease-in-out;
    }
}

@media (max-width: 500px) {

    .split-in-l,
    .split-in-r-fast {
        opacity: 0;
        transform: translateY(35px);
        transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    }
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.justify {
    text-align: justify;
    padding: 20px;
}

.note-float-right {
    padding: 5px 0 5px 9px;
}

.note-float-left {
    padding: 5px 9px 5px 0;
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Transition End */

/* Grid Index Start */

.grid-container {
    display: grid;
    gap: 20px;
    padding: 20px 20px 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2.section-title {
    margin-bottom: 9px;
    padding: 6px 0 3px 0;
    border-bottom: 3px solid rgb(222, 79, 63);
    font-size: clamp(1.3rem, 2.2vw, 1.4rem);
}

h2.section-title a {
    color: #222;
}

h2.section-title-darken {
    margin-bottom: 10px;
    padding: 6px 0 3px 0;
    border-bottom: 3px solid #354051;
    font-size: clamp(1.3rem, 2.2vw, 1.4rem);
}

h2.section-title-darken a {
    color: #222;
}

h2.section-title-middle {
    padding: 6px 0 3px 0;
    text-align: center;
    font-size: clamp(1.3rem, 2.2vw, 1.4rem);
}

h2.section-title-middle a {
    color: #222;
    text-decoration: underline;
    text-decoration-skip-ink: auto;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    text-decoration-color: #222;
    transition: all 0.3s ease-in-out;
}

h2.section-title-middle a:hover {
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {

    h2.section-title,
    h2.section-title-middle {
        padding: 12px 0 3px 0;
    }

    h2.section-title-middle a {
        text-underline-offset: 2px;
    }

    h2.section-title-darken {
        padding: 8px 0 2px 0;
        font-size: clamp(1.3rem, 2.2vw, 1.4rem);
        border: none;
    }

    h2.section-title-darken a {
        color: #222;
        text-decoration: underline;
        text-decoration-skip-ink: auto;
        text-underline-offset: 3px;
        text-decoration-thickness: 2px;
        text-decoration-color: #222;
        transition: all 0.3s ease-in-out;
    }
}

h2.section-title-special-red {
    padding: 6px 0 3px 0;
    font-size: clamp(1.3rem, 2.2vw, 1.4rem);
}

h2.section-title-special-red a {
    color: #222;
    text-decoration: underline;
    text-decoration-skip-ink: auto;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    text-decoration-color: #de4f3f;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {

    h2.section-title,
    h2.section-title-special-red {
        padding: 12px 0 3px 0;
    }

    h2.section-title-special-red a {
        text-underline-offset: 2px;
    }
}

@media (max-width: 768px) {
    .grid-container {
        padding: 14px 14px 20px 14px;
        gap: 10px;
    }

    .mobile-mt {
        padding-top: 10px;
        margin-top: 10px;
    }

    .mobile-mt-o {
        margin-top: 10px;
    }
}

.artikel-populer-grid {
    display: grid;
    grid-template-columns: calc(65% - 10px) calc(35% - 4px);
    gap: 14px;
}

@media (max-width: 938px) {
    .artikel-populer-grid {
        padding: 1px;
        gap: 5px;
    }

    .artikel-populer-grid {
        grid-template-columns: 65% 35%;
    }
}

@media (max-width: 768px) {
    .artikel-populer-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 1px;
    }
}

.populer-grid {
    display: grid;
    gap: 10px;
}

.populer-item {
    background: #f3f3f3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    height: 110px;
    text-decoration: none;
    border-bottom: 1px solid #cacfd1;
}

.populer-item:hover {
    transform: translateY(-2px);
    border-color: #bababa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.populer-image-container {
    flex: 0 0 24%;
    max-width: 24%;
    height: 100%;
    overflow: hidden;
}

.populer-image {
    height: 100%;
    max-height: 110px;
}

.populer-content {
    flex: 0 0 76%;
    max-width: 76%;
    padding: 6px 12px 6px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .populer-image-container {
        flex: 0 0 28%;
        max-width: 28%;
    }

    .populer-content {
        flex: 0 0 72%;
        max-width: 72%;
    }
}

.populer-content h3 {
    margin: 0 0 3px 0;
    font-size: clamp(0.95rem, 1rem + 0.5vw, 1em);
    line-height: 1.4;
    color: #2c4b6b;
}

@media (max-width: 1044px) {
    .populer-item {
        border-radius: 6px;
        border-color: rgb(203, 203, 203);
    }

    .populer-content h3 {
        margin: 0 0 3px 0;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {

    .artikel-item-large .artikel-content h3,
    .artikel-item .artikel-content h3,
    .populer-content h3 {
        font-size: clamp(0.87rem, 1.5vw + 0.5rem, 1em);
    }
}

.populer-meta {
    display: flex;
    gap: 10px;
    font-size: 0.85em;
    color: #5c5c5c;
    justify-content: space-between;
}

.populer-meta i {
    margin-right: 5px;
    color: #567597;
}

/* Grid Index End */

/* Bagian Sertifikasi Start */

.sertifikasi-grid-index {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 10px;
    margin: 0;
}

.sertifikasi-card-index {
    background: #fff;
    border: 2px solid #d8d8d8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: #333;
    padding: 8px;
}

@media (max-width: 768px) {
    .sertifikasi-card-index {
        border-radius: 6px;
    }
}

.sertifikasi-card-index:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-color: #bababa;
}

.sertifikasi-icon-index {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2c334a, #5a6da8);
    height: 100px;
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
    border: 1px solid #2c334a;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sertifikasi-icon-index i {
    color: white;
    font-size: 50px;
}

.sertifikasi-title-index {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #3f4967;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

/* Bagian Sertifikasi End */

/* Galeri Index Start */

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.galeri-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.galeri-item p {
    margin: 5px 0;
    font-size: 0.9em;
    text-align: center;
}

section h2 a {
    text-decoration: none;
    color: #000;
}

/* Galeri Index End */

/* Footer Start */
footer.footer-container {
    background: #0a0a0a;
    color: #fff;
    padding: 50px 20px 25px;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-brand img {
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-owner-link {
    display: inline-block;
    margin-top: 12px;
    color: #c0392b;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-owner-link:hover {
    color: #e74c3c;
    transform: translateX(3px);
}

.footer-links {
    flex: 1;
    min-width: 140px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #de4f3f;
    transform: translateX(4px);
}

.footer-contact {
    flex: 1;
    min-width: 160px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-contact a i {
    width: 28px;
    font-size: 18px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #de4f3f;
    transform: translateX(4px);
}

.footer-contact a:hover i {
    color: #de4f3f;
}

.footer-bottom {
    max-width: 1200px;
    margin: 25px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    footer.footer-container {
        padding: 35px 20px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-links a {
        display: inline-block;
        margin: 0 12px 10px;
    }
    
    .footer-links a:hover {
        transform: translateY(-2px);
    }
    
    .footer-contact a {
        justify-content: center;
    }
    
    .footer-contact a:hover {
        transform: translateY(-2px);
    }
    
    .footer-bottom {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .footer-links a {
        margin: 0 8px 8px;
        font-size: 0.8rem;
    }
    
    .footer-contact a {
        font-size: 0.8rem;
    }
}
/* Footer End */

/* Card Sertifikasi Start */

.container-info-sertifikasi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

@media (max-width: 768px) {
    .container-info-sertifikasi {
        gap: 12px;
        padding: 20px 7px 7px 7px;
    }
}

.sertifikasi-card {
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    display: block;
    text-decoration: none;
    color: inherit;
}

.sertifikasi-card:hover {
    transform: translateY(-5px);
    border: 2px solid #122446;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(139, 139, 139);
    background-image: none;
    height: 145px;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    border: 1px solid rgb(152, 152, 152);
    transition: all 0.3s ease-in-out;
}

.sertifikasi-card:hover .card-icon {
    background-color: rgb(139, 139, 139);
    background-image: linear-gradient(135deg, #122446, #3765b4);
    border: 1px solid #142546;
}

@media (max-width: 768px) {
    .card-icon {
        background-color: transparent;
        background-image: linear-gradient(135deg, #122446, #3765b4);
        border: 1px solid #142546;
    }
}

.card-icon i {
    color: white;
    font-size: 82px;
}

.card-judul-utama {
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #262626;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.centered-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.card-judul {
    font-size: 18px;
    background: #232323;
    color: #fff;
    margin: 10px 0;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 10px;
    width: 100%;
}

@media (max-width: 768px) {
    .card-judul {
        margin: 10px 0 2px 0;
    }
}

.card-konten {
    font-size: 16px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.card-konten textarea {
    width: 100%;
    height: 160px;
    padding: 7px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    resize: none;
    font-size: 15px;
    color: #333;
    background: #eeeeee;
    text-align: justify;
    margin-top: 2px;
}

.card-proglat,
.card-instruktur {
    margin-bottom: 15px;
    min-height: 50px;
    max-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.card-proglat p,
.card-instruktur p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.card-instruktur .nama-instruktur {
    color: #1e3c72;
}

.sertifikasi-card a {
    text-decoration: none;
    color: #1e3c72;
    display: block;
    text-align: center;
    opacity: 0.8;
    transition: ease-in-out 0.3s;
}

@media (max-width: 768px) {
    .sertifikasi-card a {
        opacity: 1;
    }
}

.sertifikasi-card a:hover {
    text-decoration: none;
    opacity: 1;
}

@media (max-width: 768px) {
    .container-info-sertifikasi {
        grid-template-columns: 1fr;
    }
}

/* Card Sertifikasi End */

.outer-jasa {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 20px 0;
}

.container-layanan {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
}

a.layanan-card {
    text-decoration: none;
    color: #1e3c72;
    display: block;
    text-align: center;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
    height: 300px;
}

a.layanan-card:hover {
    text-decoration: none;
    opacity: 1;
    border: 2px solid #122446;
}

.layanan-card {
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.layanan-card i {
    color: white;
    font-size: 96px;
}

.layanan-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.layanan-card .card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: none;
    background-color: rgb(139, 139, 139);
    width: 100%;
    height: 65%;
    margin: 0 auto;
    border-radius: 10px;
    border: 1px solid rgb(152, 152, 152);
    transition: background-color 0.4s ease-in-out, background-image 0.4s ease-in-out, border-color 0.4s ease-in-out;
}

.layanan-card:hover .card-icon {
    background-color: rgb(139, 139, 139);
    background-image: linear-gradient(135deg, #122446, #3765b4);
}

.layanan-card .card-judul-utama {
    margin-top: 0;
    font-size: 20px;
    font-weight: bold;
    color: #262626;
}

.layanan-card .card-deskripsi {
    margin-top: 0;
    font-size: 14px;
    color: #555;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .outer-jasa {
        display: block;
        min-height: auto;
    }

    .container-layanan {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    a.layanan-card {
        opacity: 1;
        height: 220px;
    }

    .layanan-card i {
        font-size: 60px;
    }

    .layanan-card .card-icon {
        background-color: transparent;
        background-image: linear-gradient(135deg, #122446, #3765b4);
        border: 1px solid #142546;
        height: 55%;
    }

    .layanan-card .card-deskripsi {
        font-size: 13px;
        padding: 0 5px;
    }

    .layanan-card .card-judul-utama {
        margin: 0;
        padding: 0;
    }
}

/* Custom Alert Start */

.custom-alert {
    position: fixed;
    top: 20px;
    left: 75%;
    transform: translateX(-25%);
    padding: 15px;
    background-color: #dd3125;
    color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .custom-alert {
        top: 0;
        left: 0;
        transform: translateX(0);
        padding: 15px 12px;
        width: 100%;
        min-width: 200px;
        border-radius: 0;
        font-size: 1.2rem;
    }
}

.custom-alert.success {
    background: #457437;
    border-left: 4px solid #39622c;
}

.custom-alert.error {
    background: #bd2b20;
    border-left: 4px solid #ac241b;
}

.custom-alert.show {
    opacity: 1;
    visibility: visible;
}

.custom-alert span {
    flex: 1;
    text-align: left;
}

button.bg-clear {
    background: none;
}

.alert-container {
    position: fixed;
    top: 20px;
    left: 75%;
    transform: translateX(-25%);
    background: #bd2b20;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    font-size: 1.3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .alert-container {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        font-size: 1.2rem;
        border-radius: 0;
    }
}

/* Custom Alert End */

/* Artikel Start */

.article-list-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.article-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.article-list-item {
    background: #f0f0f0;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 293px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.article-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: #a52e2130;
}

.article-list-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-list-image {
    width: 100%;
    height: 190px;
    object-fit: contain;
    background: #f5f5f5;
}

.article-list-content {
    flex: 1;
    padding: 12px;
    align-content: center;
    background: white;
}

.article-list-title {
    font-size: clamp(14px, 2.8vw, 16px);
    margin: 0 0 4px 0;
    color: #21303f;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-list-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #555;
    margin-top: 6px;
}

.article-list-meta div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-list-meta i {
    font-size: 12px;
    color: #c0392b;
}

@media (max-width: 768px) {
    .article-list-container {
        padding: 5px;
    }

    .article-list-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .article-list-item {
        height: auto;
        flex-direction: row;
        align-items: flex-start;
    }

    .article-list-item a {
        flex-direction: row;
    }

    .article-list-image {
        width: 27%;
        height: auto;
        margin-right: 2px;
        padding: 0;
        background: #fff;
        object-fit: contain;
    }

    .article-list-content {
        width: 73%;
        min-height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 9px;
    }

    .article-list-title {
        font-size: 13px;
        margin: 0 0 3px 0;
    }

    .article-list-meta {
        flex-direction: row;
        align-items: center;
        gap: 5px;
        font-size: 11px;
    }
}

.article-detail-container {
        width: 100%;
        max-width: 920px;
        margin: 0 auto;
        padding: 14px 17px 17px 17px;
    }

/* Tampilan baca panjang: hanya berlaku untuk halaman detail artikel. */
.article-detail-header {
    margin: 0 0 2rem;
}

.article-detail-title {
    display: table;
    max-width: 100%;
    margin: 0;
    padding: 0 0 .45rem;
    border-bottom: 3px solid #c88a22;
    color: #1f2d3a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.article-detail-body {
    width: 100%;
    max-width: none;
    color: #262626;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

.article-detail-container .article-detail-body,
.article-detail-container .article-detail-body * {
    font-family: Arial, Helvetica, sans-serif !important;
}

.article-detail-body p,
.article-detail-body li,
.article-detail-body td,
.article-detail-body th {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.article-detail-body p {
    margin: 0 0 1.45rem;
}

.article-detail-body h1,
.article-detail-body h2,
.article-detail-body h3,
.article-detail-body h4,
.article-detail-body h5,
.article-detail-body h6 {
    margin: 2.1rem 0 .8rem;
    color: #1f2d3a;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.article-detail-body h1 { font-size: 1.9rem; }
.article-detail-body h2 { font-size: 1.65rem; }
.article-detail-body h3 { font-size: 1.4rem; }
.article-detail-body h4 { font-size: 1.2rem; }
.article-detail-body h5,
.article-detail-body h6 { font-size: 1.05rem; }

.article-detail-body ul,
.article-detail-body ol {
    margin: 0 0 1.45rem;
    padding-left: 1.5rem;
}

.article-detail-body li {
    margin-bottom: .45rem;
}

.article-detail-body img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 1.6rem 0;
}

@media (max-width: 768px) {
    .article-detail-header { margin-bottom: 1.5rem; }
    .article-detail-title { font-size: 1.85rem; }
    .article-detail-body { font-size: 1rem; line-height: 1.7; }
}

    @media (max-width: 768px) {
        .article-detail-container {
            padding: 8px 12px 8px 12px;
        }
    }

/* Article End */

/* Article Container Reset Start */

.article-detail-container h1,
.article-detail-container h2,
.article-detail-container h3,
.article-detail-container h4,
.article-detail-container h5,
.article-detail-container h6 {
    margin: 1em 0 0.3em;
    color: #111;
}

.article-detail-container h1:first-of-type,
.article-detail-container h2:first-of-type,
.article-detail-container h3:first-of-type,
.article-detail-container h4:first-of-type,
.article-detail-container h5:first-of-type,
.article-detail-container h6:first-of-type {
    margin: 0.3em 0 0.3em;
}

.article-detail-container h1 {
    font-size: clamp(1.8rem, 4.4vw, 2.8rem);
    margin-top: 1.2em;
}

.article-detail-container h2 {
    font-size: clamp(1.6rem, 3.8vw, 2.3rem);
}

.article-detail-container h3 {
    font-size: clamp(1.15rem, 3.2vw, 1.9rem);
}

.article-detail-container h4 {
    font-size: clamp(1.1rem, 2.6vw, 1.5rem);
}

.article-detail-container h5,
.article-detail-container h6 {
    font-size: clamp(1rem, 2.3vw, 1.3rem);
}

.article-detail-container p {
    margin-bottom: 1.2em;
    line-height: 1.6;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #222;
}

.article-detail-container blockquote {
    margin: 1.5em 0;
    padding: 1em 1.5em;
    border-left: 4px solid #ddd;
    background-color: #f8f8f8;
    color: #444;
    font-style: italic;
}

.article-detail-container blockquote p {
    margin-bottom: 0;
}

.article-detail-container a {
    color: #005ebc;
    text-decoration: none;
    transition: color 0.2s;
}

.article-detail-container a:hover {
    color: #003c84;
    text-decoration: underline;
}

.article-detail-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
    box-shadow: 0 0 0 1px #d6d6d6;
    border-radius: 7px;
    border: 2px solid #b8b8b8;
    overflow: hidden;
}

.article-detail-container table th,
.article-detail-container table td {
    padding: 0.65em 0.8em;
    border: 2px solid #dbdbdb;
}

.article-detail-container table th {
    background-color: #e7e7e7;
    font-weight: 600;
    color: #222;
}

.article-detail-container table tr {
    transition: background-color 0.3s;
}

.article-detail-container table tr:last-child td {
    border-bottom: none;
}

.article-detail-container table tr:nth-child(odd) {
    background-color: #f3f3f3;
}

.article-detail-container table tr:hover {
    background-color: #e4e4e4;
}

.article-detail-container table caption {
    font-size: 0.9em;
    padding: 0.5em;
    color: #555;
    caption-side: bottom;
    text-align: right;
}

.article-detail-container img {
    margin: 7px 0;
    border-radius: 7px;
}

.article-detail-container pre,
.article-detail-container code {
    font-family: monospace;
    background-color: #f5f5f5;
    border-radius: 7px;
}

.article-detail-container pre {
    padding: 1em;
    overflow-x: auto;
    margin: 1em 0;
}

.article-detail-container code {
    padding: 0.2em 0.4em;
    font-size: 0.9em;
}

.article-detail-container hr {
    margin: 2em 0;
    border: 0;
    height: 1px;
    background-color: #eee;
}

/* Article Container Reset End */

/* Article Element Reset Start */

.article-detail-container ul,
.article-detail-container ol {
    margin: 0.3em 0;
    padding-left: 1.5em;
    line-height: 1.4;
}

.article-detail-container li {
    margin-bottom: 0.3em;
    padding-left: 0.1em;
    font-size: 16px;
    color: #222;
}

.article-detail-container li::marker {
    color: #222;
}

.article-detail-container ol {
    list-style-type: decimal;
}

.article-detail-container ul {
    list-style-type: disc;
}

.article-detail-container ul ul,
.article-detail-container ol ol {
    margin-top: 0.3em;
    margin-bottom: 0.3em;
}

.article-detail-container ul ul {
    list-style-type: circle;
}

.article-detail-container ol ol {
    list-style-type: lower-alpha;
}

.article-detail-container .article-detail-content .article-detail-title {
    display: table;
    max-width: 100%;
    margin: 0;
    padding: 0 0 .45rem;
    border-bottom: 3px solid #c88a22;
    color: #1f2d3a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
}

@media (max-width: 768px) {
    .article-detail-container .article-detail-content .article-detail-title {
        font-size: 1.85rem;
    }
}

.article-detail-content {
    font-size: 16px;
    line-height: 1.4;
    color: #222;
}

.article-detail-content mark {
    background-color: #ff0;
    color: #000;
    padding: 0.2em 6px;
    border-radius: 10px;
}

.article-detail-content code {
    background-color: #dddddd;
    padding: 0.2em 0.4em;
    border-radius: 5px;
    font-size: 0.9em;
}

.article-detail-container pre {
    background-color: #dddddd;
    padding: 1em;
    border-radius: 7px;
    overflow-x: auto;
    margin: 1.2em 0;
}

.article-detail-content img {
    height: auto;
    margin: 0;
    max-width: 100%;
}

.article-detail-content p img {
    max-width: 100%;
}

.article-detail-info {
    margin-top: 50px;
    padding: 17px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.article-detail-info .author-info {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 6px;
}

.article-detail-info .author-info img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 7px;
    border: solid 2px #202020;
    background: #383838;
    object-fit: cover;
}

.article-detail-info .keywords {
    font-size: 14.5px;
    color: #666;
    letter-spacing: 0.2px;
}

.article-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    padding: 16px 0 4px 0;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
}

.article-detail-meta div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-detail-meta i {
    font-size: 16px;
}

/* Article Element Reset End */

/* Article Tag Button Start */

.smooth-dark-button {
    background-color: #414141;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin: 2px;
}

.smooth-dark-button:hover {
    background-color: #252525;
    transform: translateY(-2px);
}

.smooth-dark-button:active {
    transform: translateY(2px);
}

.article-tags {
    margin-top: 22px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.article-tags h3 {
    margin-bottom: 6px;
    font-size: 20px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* Article Tag Button End */

/* Link Share Start */

.share-buttons-container {
    margin: 30px 0 -10px 0;
    padding: 10px 20px 20px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.share-buttons-container h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-button {
    display: flex;
    align-items: center;
    padding: 8px 13px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.4s ease-in-out;
}

button.share-button {
    color: white;
    text-decoration: none;
}

.share-button i {
    margin-right: 6px;
    font-size: 16px;
}

.share-button.whatsapp {
    background-color: #15c154;
    border: 2px solid #12b14c;
}

.share-button.facebook {
    background-color: #3b5998;
    border: 2px solid #324d87;
}

.share-button.threads {
    background-color: #000;
    border: 2px solid #333;
    color: white;
}

.share-button.x-twitter {
    background-color: #000;
    border: 2px solid #222;
    color: white;
}

.share-button.copy-link {
    background-color: #545a60;
    border: 2px solid #4b4f54;
    cursor: pointer;
}

button.share-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

button.share-button:active {
    transform: translateY(2px);
    color: white;
    text-decoration: none;
}

/* Link Share End */

/* Index Article Reader Start */

.artikel-section {
    position: relative;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@media (max-width: 768px) {
    .artikel-section {
        padding: 10px;
    }
}

.judul-dan-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.new-article-badge {
    position: absolute;
    top: -41px;
    right: -60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
    color: white;
    padding: 6px 45px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transform: rotate(45deg);
    transform-origin: left bottom;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.new-article-badge::after {
    content: "Artikel Baru";
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

@media (max-width: 768px) {
    .new-article-badge {
        font-size: 0.75rem;
        top: -40px;
        right: -60px;
    }
}

.judul-artikel-utama h3 {
    margin: 0;
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    align-items: center;
}

.judul-artikel-utama h3 a {
    color: #222;
}

.judul-dan-link a {
    text-decoration: none;
}

a.link-semua-artikel {
    display: inline-block;
    padding: 8px 9px;
    border-radius: 8px;
    background-color: #de4f3f;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .judul-dan-link {
        gap: 5px;
    }

    .link-semua-artikel {
        font-size: 1rem;
        padding: 5px 12px;
    }
}

.link-semua-artikel:hover {
    background-color: #ca4131;
    transform: translate(1px, 1px);
}

.single-artikel p.artikel-date {
    margin: 10px 0;
    font-size: 0.9rem;
    color: #666;
}

.single-artikel .artikel-content {
    line-height: 1.6;
    color: #111;
}

.single-artikel .artikel-content ul,
.single-artikel .artikel-content ol {
    margin: 1em 0;
    padding-left: 2em;
}

.single-artikel .artikel-content li {
    margin-bottom: 0.3em;
    padding-left: 0.3em;
}

.single-artikel .artikel-content ul {
    list-style-type: disc;
}

.single-artikel .artikel-content ol {
    list-style-type: decimal;
}

.single-artikel .artikel-content ul ul,
.single-artikel .artikel-content ol ol {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.single-artikel .artikel-content ul ul {
    list-style-type: circle;
}

.single-artikel .artikel-content ol ol {
    list-style-type: lower-alpha;
}

.single-artikel .artikel-content p {
    margin-bottom: 1em;
}

.single-artikel .artikel-content h1,
.single-artikel .artikel-content h2,
.single-artikel .artikel-content h3,
.single-artikel .artikel-content h4,
.single-artikel .artikel-content h5,
.single-artikel .artikel-content h6 {
    margin: 1.3em 0 0.75em 0;
    line-height: 1.3;
}

.single-artikel .artikel-content img {
    max-width: 100%;
    height: auto;
    margin: 1em 0;
    display: block;
}

.single-artikel .artikel-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}

.single-artikel .artikel-content th,
.single-artikel .artikel-content td {
    padding: 0.5em;
    border: 1px solid #ddd;
}

.single-artikel .artikel-content th {
    background-color: #e3e3e3;
}

.single-artikel .artikel-content blockquote {
    margin: 1em 0;
    padding: 0.5em 1em;
    border-left: 3px solid #ccc;
    background-color: #f9f9f9;
    color: #555;
    font-style: italic;
}

a.baca-selengkapnya {
    display: inline-block;
    padding: 8px 9px;
    border-radius: 8px;
    background-color: #3f7ad3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a.baca-selengkapnya:hover {
    background-color: #376ec1;
    transform: translate(1px, 1px);
}

/* Index Article Reader End */

/* Gallery Section Start */
.gallery-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    background-color: #fff;
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.gallery-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-bottom: 1px;
    position: relative;
    display: inline-block;
}

.gallery-header h2:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    border-radius: 2px;
}

.gallery-header h2 a {
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-header h2 a:hover {
    opacity: 0.9;
}

.gallery-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-expand {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #2c3e50;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.gallery-item:hover .gallery-expand {
    transform: scale(1);
}

.gallery-expand i {
    font-size: 18px;
}

.gallery-expand:hover {
    background: #de4f3f;
    color: white;
    transform: scale(1.1);
}

.gallery-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.4;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption-overlay {
    transform: translateY(0);
}

.gallery-footer {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.gallery-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #de4f3f;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(222, 79, 63, 0.3);
}

.gallery-view-all:hover {
    background: #c23a2b;
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(222, 79, 63, 0.4);
}

.gallery-view-all i {
    font-size: 14px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-header {
        margin-bottom: 30px;
    }
    
    .gallery-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 15px;
    }

    .gallery-item {
        border-radius: 8px;
    }
    
    .gallery-expand {
        width: 36px;
        height: 36px;
    }
    
    .gallery-expand i {
        font-size: 14px;
    }
    
    .gallery-caption-overlay {
        font-size: 0.75rem;
        padding: 8px;
    }
    
    .gallery-footer {
        margin-top: 30px;
    }
    
    .gallery-view-all {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        gap: 8px;
        padding: 0 12px;
    }
    
    .gallery-expand {
        width: 32px;
        height: 32px;
    }
    
    .gallery-expand i {
        font-size: 12px;
    }
    
    .gallery-caption-overlay {
        font-size: 0.7rem;
        padding: 6px;
    }
    
    .gallery-view-all {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}
/* Gallery Section End */

.two-button {
    display: flex;
    gap: 10px;
}

.daftar-gambar {
    padding: 20px 0;
}

@media (max-width: 480px) {
    .two-button {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .two-button a {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 12px;
        white-space: nowrap;
        min-width: 0;
        box-sizing: border-box;
        font-size: 0.85rem;
    }

    .daftar-gambar {
        padding: 10px 0;
    }
}

/* Single Sertifikasi View Start */

.sertifikasi-single-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
}

.sertifikasi-single-header {
    text-align: center;
    margin-bottom: 30px;
}

.sertifikasi-single-header h1 {
    color: #122446;
    font-size: 2rem;
    margin-bottom: 10px;
}

.sertifikasi-single-icon {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.sertifikasi-single-icon i {
    font-size: 100px;
    color: #3765b4;
    background: linear-gradient(135deg, #122446, #3765b4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sertifikasi-single-section {
    margin-bottom: 30px;
}

.sertifikasi-single-section h2 {
    color: #122446;
    border-bottom: 2px solid #3765b4;
    padding-bottom: 2px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.sertifikasi-single-content {
    font-size: 1.1rem;
    line-height: 1.2;
    color: #333;
    text-align: justify;
}

.sertifikasi-single-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .sertifikasi-single-container {
        padding: 40px 15px 15px 15px;
    }

    .sertifikasi-single-header h1 {
        font-size: 1.6rem;
    }

    .sertifikasi-single-icon i {
        font-size: 80px;
    }

    .sertifikasi-single-content {
        font-size: 0.95rem;
    }

    .sertifikasi-single-actions {
        flex-direction: column;
        gap: 10px;
    }
}

/* Single Sertifikasi View End */

.outer-container-20 {
    padding: 20px;
}

@media (max-width: 768px) {
    .outer-container-20 {
        padding: 10px;
    }
}

/* Articles Tag Start */

.tag-legend {
    background-color: rgb(238, 238, 238);
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 8px solid #3498db;
}

.tag-title {
    color: rgb(23, 35, 46);
    margin-bottom: 2px;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.tag-description {
    color: rgb(41, 59, 76);
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
}

.all-tags-container,
.tag-not-found-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

@media (max-width: 768px) {

    .all-tags-container,
    .tag-not-found-container {
        padding: 10px;
    }
}

.tags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .tags-grid {
        gap: 10px;
    }
}

.tag-item {
    background-color: #f2f2f2;
    border-radius: 8px;
    padding: 20px;
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.tag-item:hover {
    transform: translateY(-4px);
    background-color: rgb(236, 236, 236);
}

.tag-link {
    text-decoration: none;
    color: inherit;
}

.tag-name {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tag-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.tag-count {
    background-color: rgb(233, 233, 233);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag-count.bgPrimary,
a.bgPrimary {
    background-color: #3498db;
    color: white;
}

.tag-item:hover .tag-count:not(.bgPrimary) {
    background-color: rgb(210, 210, 210);
}

.tag-item:hover .tag-count.bgPrimary,
a.bgPrimary:hover {
    background-color: rgb(34, 114, 168);
}

.page-title {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

.no-tags,
.no-articles {
    text-align: center;
    color: rgb(108, 116, 117);
    padding: 40px 0;
    grid-column: 1 / -1;
}

.view-all-articles {
    text-align: center;
    margin-top: 30px;
}

.btn-view-all-arti {
    display: inline-block;
    padding: 12px 25px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
}

.btn-view-all-arti:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.small-show-tags-container {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 30px 20px;
    background: white;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 5px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.small-show-tags-title {
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
}

.small-show-tags-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #c0392b, #2c3e50);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .small-show-tags-container {
        width: calc(100% - 20px);
        padding: 15px;
        margin-top: 15px;
    }

    .small-show-tags-title {
        margin-bottom: 12px;
        font-size: 1rem;
    }
}

.small-show-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.small-show-tag-item {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.small-show-tag-item:hover {
    background: #c0392b;
    color: white;
    transform: translateY(-1px);
}

.small-show-tag-item .tag-count {
    margin-left: 6px;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.7rem;
    background: #e0e0e0;
    color: #555;
    transition: all 0.2s ease;
}

.small-show-tag-item:hover .tag-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.small-show-tag-item .tag-count.bgPrimary {
    background: #c0392b;
    color: white;
}

.small-show-tag-item:hover .tag-count.bgPrimary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}


/* Articles Tag End */

/* Services Carousel Section Start */
.services-carousel-section {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(135deg, #eef2f5 0%, #e8edf2 100%);
    position: relative;
    overflow-x: clip;
}

.services-carousel-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.services-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.services-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-bottom: 1px;
    position: relative;
    display: inline-block;
}

.services-header h2:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    border-radius: 2px;
}

.services-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-carousel {
    position: relative;
    overflow: visible;
    width: 100%;
}

.services-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    border-radius: 12px;
}

.services-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: 100%;
}

.services-carousel-slide {
    flex: 0 0 auto;
    box-sizing: border-box;
    padding: 0 15px;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(44, 62, 80, 0.68);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.95);
}

.carousel-nav:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: white;
}

.carousel-nav:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.carousel-prev {
    left: -24px;
}

.carousel-next {
    right: -24px;
}

.carousel-nav i {
    font-size: 20px;
    color: #2c3e50;
    transition: transform 0.2s ease;
}

.carousel-nav:hover:not(:disabled) i {
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: #3498db;
    transform: scale(1.2);
}

.carousel-dot.active {
    width: 30px;
    border-radius: 5px;
    background: #3498db;
}

.service-card-premium {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.085);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0 auto;
    max-width: 100%;
    height: 100%;
    position: relative;
    cursor: default;
}

.card-1 {
    background: linear-gradient(to bottom, #2c5a7a 12%, #ffffff 12%);
}
.card-1 .service-icon-premium i {
    color: #2c5a7a;
}
.card-1 .premium-features i {
    color: #2c5a7a;
}
.card-1 .service-button {
    background: #2c5a7a;
}
.card-1 .service-icon-premium {
    border: 4px solid #2c5a7a;
}

.card-2 {
    background: linear-gradient(to bottom, #2c3e50 12%, #ffffff 12%);
}
.card-2 .service-icon-premium i {
    color: #2c3e50;
}
.card-2 .premium-features i {
    color: #2c3e50;
}
.card-2 .service-button {
    background: #2c3e50;
}
.card-2 .service-icon-premium {
    border: 4px solid #2c3e50;
}

.card-3 {
    background: linear-gradient(to bottom, #1e6f8c 12%, #ffffff 12%);
}
.card-3 .service-icon-premium i {
    color: #1e6f8c;
}
.card-3 .premium-features i {
    color: #1e6f8c;
}
.card-3 .service-button {
    background: #1e6f8c;
}
.card-3 .service-icon-premium {
    border: 4px solid #1e6f8c;
}

.card-4 {
    background: linear-gradient(to bottom, #2d6a4f 12%, #ffffff 12%);
}
.card-4 .service-icon-premium i {
    color: #2d6a4f;
}
.card-4 .premium-features i {
    color: #2d6a4f;
}
.card-4 .service-button {
    background: #2d6a4f;
}
.card-4 .service-icon-premium {
    border: 4px solid #2d6a4f;
}

.card-5 {
    background: linear-gradient(to bottom, #6c5b7b 12%, #ffffff 12%);
}
.card-5 .service-icon-premium i {
    color: #6c5b7b;
}
.card-5 .premium-features i {
    color: #6c5b7b;
}
.card-5 .service-button {
    background: #6c5b7b;
}
.card-5 .service-icon-premium {
    border: 4px solid #6c5b7b;
}

.card-6 {
    background: linear-gradient(to bottom, #b83b2c 12%, #ffffff 12%);
}
.card-6 .service-icon-premium i {
    color: #b83b2c;
}
.card-6 .premium-features i {
    color: #b83b2c;
}
.card-6 .service-button {
    background: #b83b2c;
}
.card-6 .service-icon-premium {
    border: 4px solid #b83b2c;
}

@media (max-width: 1024px) {
    .card-1 {
        background: linear-gradient(to bottom, #2c5a7a 11%, #ffffff 11%);
    }
    .card-2 {
        background: linear-gradient(to bottom, #2c3e50 11%, #ffffff 11%);
    }
    .card-3 {
        background: linear-gradient(to bottom, #1e6f8c 11%, #ffffff 11%);
    }
    .card-4 {
        background: linear-gradient(to bottom, #2d6a4f 11%, #ffffff 11%);
    }
    .card-5 {
        background: linear-gradient(to bottom, #6c5b7b 11%, #ffffff 11%);
    }
    .card-6 {
        background: linear-gradient(to bottom, #b83b2c 11%, #ffffff 11%);
    }
}

@media (max-width: 768px) {
    .card-1 {
        background: linear-gradient(to bottom, #2c5a7a 13%, #ffffff 13%);
    }

    .card-2 {
        background: linear-gradient(to bottom, #2c3e50 13%, #ffffff 13%);
    }

    .card-3 {
        background: linear-gradient(to bottom, #1e6f8c 13%, #ffffff 13%);
    }

    .card-4 {
        background: linear-gradient(to bottom, #2d6a4f 13%, #ffffff 13%);
    }

    .card-5 {
        background: linear-gradient(to bottom, #6c5b7b 13%, #ffffff 13%);
    }

    .card-6 {
        background: linear-gradient(to bottom, #b83b2c 13%, #ffffff 13%);
    }
}

.card-header-premium {
    padding: 30px 25px 20px 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-icon-premium {
    width: 85px;
    height: 85px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    padding: 10px;
}

.service-card-premium:hover .service-icon-premium {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-icon-premium i {
    font-size: 42px;
    transition: transform 0.3s ease;
}

.service-title-premium {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.service-subtitle-premium {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.card-body-premium {
    padding: 0 25px 20px 25px;
    background: white;
    position: relative;
    z-index: 2;
}

.service-desc-premium {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.premium-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.premium-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #2c3e50;
}

.premium-features i {
    font-size: 12px;
}

.card-footer-premium {
    padding: 0 25px 30px 25px;
    background: white;
    position: relative;
    z-index: 2;
}

.service-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: white;
    cursor: pointer;
}

.service-button:hover {
    gap: 12px;
    filter: brightness(0.95);
    transform: translateY(-2px);
}

@media (min-width: 769px) {
    .services-carousel-slide {
        flex: 0 0 calc(50% - 30px);
        min-width: calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media (min-width: 1025px) {
    .carousel-prev {
        left: -64px;
    }

    .carousel-next {
        right: -64px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-carousel-container {
        padding: 0 50px;
    }

    .carousel-prev {
        left: -20px;
    }

    .carousel-next {
        right: -20px;
    }

    .carousel-nav {
        width: 44px;
        height: 44px;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .card-header-premium {
        padding: 25px 20px 15px 20px;
    }

    .service-icon-premium {
        width: 70px;
        height: 70px;
    }

    .service-icon-premium i {
        font-size: 36px;
    }

    .service-title-premium {
        font-size: 1.4rem;
    }

    .card-body-premium {
        padding: 0 20px 15px 20px;
    }

    .card-footer-premium {
        padding: 0 20px 25px 20px;
    }
}

@media (max-width: 768px) {
    .services-carousel-section {
        padding: 40px 0;
    }

    .services-carousel-container {
        max-width: 100%;
        padding: 0 40px;
    }

    .services-header {
        margin-bottom: 15px;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .services-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .services-carousel-slide {
        flex: 0 0 calc(100% - 28px);
        min-width: calc(100% - 28px);
        max-width: calc(100% - 28px);
        padding: 0 14px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: -16px;
    }

    .carousel-next {
        right: -16px;
    }

    .carousel-nav i {
        font-size: 18px;
    }

    .carousel-dots {
        margin-top: 30px;
        gap: 5px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dot.active {
        width: 24px;
    }

    .card-header-premium {
        padding: 25px 20px 15px 20px;
    }

    .service-icon-premium {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .service-icon-premium i {
        font-size: 32px;
    }

    .service-title-premium {
        font-size: 1.4rem;
    }

    .service-subtitle-premium {
        font-size: 0.85rem;
    }

    .card-body-premium {
        padding: 0 20px 15px 20px;
    }

    .service-desc-premium {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .premium-features {
        gap: 8px;
        margin-bottom: 15px;
    }

    .premium-features span {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .card-footer-premium {
        padding: 0 20px 25px 20px;
    }

    .service-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .services-carousel-container {
        padding: 0 8px;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .carousel-prev {
        left: -8px;
    }

    .carousel-next {
        right: -8px;
    }

    .carousel-nav i {
        font-size: 16px;
    }

    .services-carousel-slide {
        padding: 0 8px;
        flex: 0 0 calc(100% - 16px);
        min-width: calc(100% - 16px);
        max-width: calc(100% - 16px);
    }

    .services-header h2 {
        font-size: 1.6rem;
    }

    .services-subtitle {
        font-size: 0.85rem;
    }

    .card-header-premium {
        padding: 20px 15px 12px 15px;
    }

    .service-icon-premium i {
        font-size: 28px;
    }

    .service-title-premium {
        font-size: 1.2rem;
    }

    .service-subtitle-premium {
        font-size: 0.8rem;
    }

    .card-body-premium {
        padding: 0 15px 12px 15px;
    }

    .service-desc-premium {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .premium-features {
        gap: 6px;
        margin-bottom: 12px;
    }

    .premium-features span {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .card-footer-premium {
        padding: 0 15px 20px 15px;
    }

    .service-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .carousel-dots {
        gap: 8px;
        margin-top: 10px;
    }

    .carousel-dot.active {
        width: 20px;
    }
}

@keyframes subtleBlur {
    0% {
        filter: blur(0px);
        opacity: 1;
    }

    50% {
        filter: blur(2px);
        opacity: 0.7;
    }

    100% {
        filter: blur(0px);
        opacity: 1;
    }
}

.services-carousel-slide.transitioning {
    animation: subtleBlur 0.3s ease;
}

/* Services Carousel Section End */

/* Testimoni Section Start */
.testimoni-section {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow-x: hidden;
}

.testimoni-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimoni-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimoni-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-bottom: 1px;
    position: relative;
    display: inline-block;
}

.testimoni-header h2:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    border-radius: 2px;
}

.testimoni-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.testimoni-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    user-select: none;
    cursor: pointer;
}

.testimoni-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.25);
}

.testimoni-card-inner {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.testimoni-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimoni-rating i {
    color: #ffc927;

    -webkit-text-stroke: 1.2px #5e4808;

    text-shadow:
        1px 1px 0 #5e4808,
        -1px -1px 0 #5e4808,
        1px -1px 0 #5e4808,
        -1px 1px 0 #5e4808;

    filter: drop-shadow(0 3px 6px #5e4808);

    font-size: 18px;
    animation: breath-star 1.5s ease-in-out infinite;
}

.testimoni-rating i:nth-child(1) {
    animation-delay: 0s;
}

.testimoni-rating i:nth-child(2) {
    animation-delay: 0.15s;
}

.testimoni-rating i:nth-child(3) {
    animation-delay: 0.3s;
}

.testimoni-rating i:nth-child(4) {
    animation-delay: 0.45s;
}

.testimoni-rating i:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes breath-star {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.17);
        opacity: 0.85;
    }
}

.testimoni-logo {
    width: 82px;
    height: 82px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;

    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    display: flex;
    padding: 6px;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimoni-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.testimoni-quote {
    margin-bottom: 20px;
}

.testimoni-quote i {
    font-size: 28px;
    color: rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    display: block;
}

.testimoni-quote p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

.testimoni-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature-bubble {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.05);
    color: #555;
    transition: all 0.3s ease;
}

.feature-bubble:hover {
    transform: translateY(-2px);
}

.feature-premium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.testimoni-client h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #2c3e50;
}

.testimoni-client p {
    font-size: 0.8rem;
    color: #7f8c8d;
}

/* ========== GARUMEDANG - SUBTLE ROCKY BACKGROUND ========== */
.rocky-card {
    background: linear-gradient(135deg, #3a2c1e 0%, #4a3c2a 100%);
    position: relative;
    border: 3px solid #291e14;
}

.rocky-subtle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image: radial-gradient(circle at 20% 30%, rgba(80, 65, 45, 0.25) 1.5px, transparent 1.5px),
        radial-gradient(circle at 70% 60%, rgba(100, 80, 55, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 85% 20%, rgba(70, 55, 40, 0.2) 1.2px, transparent 1.2px),
        radial-gradient(circle at 40% 80%, rgba(90, 70, 50, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 10% 70%, rgba(85, 65, 45, 0.18) 1px, transparent 1px),
        radial-gradient(circle at 60% 15%, rgba(75, 60, 40, 0.2) 1.2px, transparent 1.2px);
    background-size: 40px 40px, 35px 35px, 45px 45px, 50px 50px, 30px 30px, 55px 55px;
    background-repeat: repeat;
}

.rocky-card .testimoni-card-inner {
    background: rgba(58, 44, 30, 0.88);
    z-index: 2;
    position: relative;
}

.rocky-card .testimoni-quote p,
.rocky-card .testimoni-client h4,
.rocky-card .testimoni-client p {
    color: #fff9f0;
}

.rocky-card .testimoni-quote i {
    color: rgba(255, 245, 220, 0.4);
}

.rocky-card .feature-bubble {
    background: rgba(255, 235, 200, 0.25);
    color: #fff5e6;
}

.rocky-card .feature-premium {
    background: linear-gradient(135deg, #df8e0d, #c06414);
    color: white;
}

/* ========== HITRAV - TRAVEL WARMTH ========== */
.hitrav-card {
    position: relative;
    overflow: hidden;
    background: #f8f3ea;
    border: 2px solid #c98512;
    box-shadow: inset 0 4px 0 #f4be4b, 0 12px 26px rgba(33, 26, 18, 0.14);
}

.hitrav-card::before {
    content: '';
    position: absolute;
    inset: 12px;
    z-index: 1;
    pointer-events: none;
    border: 1px solid rgba(201, 133, 18, 0.28);
    border-radius: 13px;
    transition: inset 320ms ease, border-color 320ms ease;
}

.hitrav-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 22px;
    left: 22px;
    height: 4px;
    z-index: 3;
    border-radius: 0 0 4px 4px;
    background: #f4be4b;
    transform-origin: center;
    transition: transform 320ms ease, opacity 320ms ease;
}

.hitrav-card:hover {
    box-shadow: inset 0 4px 0 #f4be4b, 0 18px 34px rgba(33, 26, 18, 0.2);
}

.hitrav-card:hover::after { opacity: 0.86; transform: scaleX(0.78); }

.hitrav-card .testimoni-card-inner { position: relative; z-index: 2; }
.hitrav-card .testimoni-client h4,
.hitrav-card .testimoni-quote p { color: #1d2430; }
.hitrav-card .testimoni-client p { color: #5e6673; }
.hitrav-card .feature-bubble { background: #ede3cf; color: #211a12; }
.hitrav-card .hitrav-bubble-feature { background: #c98512; color: #fff; }

/* ========== ZHONG YANG - TRUE GLASS GRADIENT ========== */
.true-glass-card {
    background: linear-gradient(135deg,
            rgba(220, 60, 50, 0.55) 0%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(30, 80, 150, 0.55) 100%);
    backdrop-filter: blur(0px);
    border: 3px solid rgb(26, 60, 109);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.true-glass-card .testimoni-card-inner {
    background: transparent;
    backdrop-filter: blur(0px);
}

.true-glass-card .testimoni-quote p,
.true-glass-card .testimoni-client h4,
.true-glass-card .testimoni-client p {
    color: #1a2a3a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.true-glass-card .feature-bubble {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ========== DUVET FARM - EGG BROWN THEME ========== */
.egg-card {
    background: linear-gradient(135deg, #8B5A2B 0%, #C68E3A 100%);
    border: 3px solid #6a4a2a;
}

.egg-card .testimoni-card-inner {
    background: rgba(255, 248, 225, 0.94);
}

.egg-card .testimoni-quote p {
    color: #2c2418;
    font-weight: 500;
}

.egg-card .testimoni-client h4 {
    color: #4a2a1a;
    font-weight: 700;
}

.egg-card .testimoni-client p {
    color: #6a4a2a;
}

.egg-card .feature-bubble {
    background: rgba(139, 90, 43, 0.15);
    color: #4a2a1a;
    font-weight: 500;
}

/* ========== ALLODHA TECH - FULL STRIPES THEME ========== */
.full-stripes-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #b83b2c 100%);
    position: relative;
    border: 3px solid #1e3a5f;
}

.full-stripes-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.25) 0px,
            rgba(255, 255, 255, 0.25) 3px,
            transparent 3px,
            transparent 15px),
        repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.2) 0px,
            rgba(255, 255, 255, 0.2) 2px,
            transparent 2px,
            transparent 12px);
    pointer-events: none;
    z-index: 1;
}

.full-stripes-card .testimoni-card-inner {
    background: rgba(255, 255, 255, 0.92);
    position: relative;
    z-index: 2;
}

.full-stripes-card .testimoni-quote p,
.full-stripes-card .testimoni-client h4,
.full-stripes-card .testimoni-client p {
    color: #1a2a3a;
}

.full-stripes-card .feature-bubble {
    background: rgba(30, 58, 95, 0.1);
    color: #2c3e50;
    font-weight: 500;
}

/* ========== KING HORSE - DARK PURPLE COMMERCE ========== */
.kinghorse-card {
    position: relative;
    overflow: hidden;
    background: #0a0a0b;
    border: 2px solid #312036;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045), 0 12px 30px rgba(0, 0, 0, 0.3);
}

.kinghorse-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 46%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.58;
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 11px),
        linear-gradient(180deg, rgba(124, 41, 122, 0.2) 0%, rgba(10, 10, 11, 0) 100%);
    transition: opacity 320ms ease, height 320ms ease;
}

.kinghorse-card .testimoni-card-inner { position: relative; z-index: 2; background: transparent; }
.kinghorse-card:hover::before { height: 52%; opacity: 0.72; }
.kinghorse-card .testimoni-quote p,
.kinghorse-card .testimoni-client h4 { color: #fff; }
.kinghorse-card .testimoni-client p { color: #bdb6c0; }
.kinghorse-card .testimoni-quote i { color: #8d438b; }
.kinghorse-card .feature-bubble { background: #19151b; color: #ded8e0; }
.kinghorse-card .kinghorse-bubble-feature { background: #7c297a; color: #fff; }

/* ========== DESA SUKAMANDI - GLASS CYAN & GREEN ========== */
.glass-cyan-card {
    background: linear-gradient(135deg, rgba(30, 120, 100, 0.55), rgba(0, 180, 160, 0.45));
    backdrop-filter: blur(8px);
    border: 3px solid rgba(30, 120, 100, 1);
}

.glass-cyan-card .testimoni-card-inner {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(4px);
}

.glass-cyan-card .testimoni-quote p,
.glass-cyan-card .testimoni-client h4,
.glass-cyan-card .testimoni-client p {
    color: #1a4a3a;
    font-weight: 500;
}

.glass-cyan-card .feature-bubble {
    background: rgba(30, 120, 100, 0.15);
    color: #1a5a4a;
    font-weight: 500;
}

/* ========== YUSUF MART - PURPLE RED THEME ========== */
.purple-red-card {
    background: linear-gradient(135deg, #6b3e8a 0%, #b83b2c 100%);
    position: relative;
    border: 3px solid #b83b2c;
}

.purple-red-card .testimoni-card-inner {
    background: rgba(255, 255, 255, 0.94);
}

.purple-red-card .testimoni-quote p,
.purple-red-card .testimoni-client h4,
.purple-red-card .testimoni-client p {
    color: #2a1a3a;
}

.purple-red-card .feature-bubble {
    background: rgba(107, 62, 138, 0.1);
    color: #4a2a6a;
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimoni-section {
        padding: 40px 0;
    }

    .testimoni-header {
        margin-bottom: 40px;
    }

    .testimoni-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimoni-card-inner {
        padding: 20px;
    }

    .testimoni-logo {
        width: 55px;
        height: 55px;
    }
    .testimoni-card:hover {
        transform: translateY(0);
        box-shadow: 0 7px 12px rgba(0, 0, 0, 0.25);
    }
}

@media (max-width: 480px) {
    .testimoni-header h2 {
        font-size: 1.6rem;
    }

    .testimoni-features {
        gap: 6px;
    }

    .feature-bubble {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
}

.true-glass-card .glass-bubble-feature {
    background: linear-gradient(135deg, #dc3c32, #1e5096);
    color: white;
    border: none;
    box-shadow: 0 2px 6px rgba(220, 60, 50, 0.3);
}

.egg-card .egg-bubble-feature {
    background: linear-gradient(135deg, #c68e3a, #a56e2a);
    color: white;
}

.full-stripes-card .stripes-bubble-feature {
    background: linear-gradient(135deg, #1e3a5f, #b83b2c);
    color: white;
}

.glass-cyan-card .cyan-bubble-feature {
    background: linear-gradient(135deg, #1e7880, #0aa8a0);
    color: white;
}

.purple-red-card .purple-bubble-feature {
    background: linear-gradient(135deg, #8a4eaa, #c44a3a);
    color: white;
}

/* Testimoni Section End */

/* Testimoni Mobile Upgrade Start */

@media (max-width: 768px) {
    .testimoni-section {
        position: relative;
        overflow-x: clip;
    }

    .testimoni-container {
        padding: 0 12px;
        position: relative;
    }

    .testimoni-grid {
        display: block !important;
        position: relative;
        padding: 0;
    }

    .testimoni-carousel-outer {
        position: relative;
        width: 100%;
        padding: 0 38px;
        box-sizing: border-box;
    }

    .testimoni-carousel-wrapper {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding: 0;
        border-radius: 12px;
    }

    .testimoni-carousel-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform;
        width: 100%;
    }

    .testimoni-carousel-slide {
        flex: 0 0 auto;
        box-sizing: border-box;
        padding: 0 12px;
        transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .testimoni-carousel-slide .testimoni-card {
        margin: 0;
        cursor: pointer;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .testimoni-carousel-slide .testimoni-card-inner {
        padding: 22px 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .testimoni-carousel-slide .testimoni-rating {
        flex-shrink: 0;
    }

    .testimoni-carousel-slide .testimoni-logo {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
        flex-shrink: 0;
    }

    .testimoni-carousel-slide .testimoni-quote {
        flex: 1;
    }

    .testimoni-carousel-slide .testimoni-features {
        flex-shrink: 0;
    }

    .testimoni-carousel-slide .testimoni-client {
        flex-shrink: 0;
    }

    .testimoni-carousel-slide .testimoni-rating i {
        font-size: 15px;
    }

    .testimoni-carousel-slide .testimoni-quote p {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .testimoni-carousel-slide .testimoni-features {
        gap: 6px;
        margin-bottom: 18px;
    }

    .testimoni-carousel-slide .feature-bubble {
        font-size: 0.68rem;
        padding: 4px 10px;
    }

    .testimoni-carousel-slide .testimoni-client h4 {
        font-size: 0.95rem;
    }

    .testimoni-carousel-slide .testimoni-client p {
        font-size: 0.75rem;
    }

    .testimoni-carousel-prev,
    .testimoni-carousel-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 20;
        backdrop-filter: blur(4px);
        background: rgba(255, 255, 255, 0.95);
    }

    .testimoni-carousel-prev:hover:not(:disabled),
    .testimoni-carousel-next:hover:not(:disabled) {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        background: white;
    }

    .testimoni-carousel-prev:active:not(:disabled),
    .testimoni-carousel-next:active:not(:disabled) {
        transform: translateY(-50%) scale(0.95);
    }

    .testimoni-carousel-prev:disabled,
    .testimoni-carousel-next:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        transform: translateY(-50%);
    }

    .testimoni-carousel-prev {
        left: -16px;
    }

    .testimoni-carousel-next {
        right: -16px;
    }

    .testimoni-carousel-prev i,
    .testimoni-carousel-next i {
        font-size: 18px;
        color: #2c3e50;
        transition: transform 0.2s ease;
    }

    .testimoni-carousel-prev:hover:not(:disabled) i,
    .testimoni-carousel-next:hover:not(:disabled) i {
        transform: scale(1.1);
    }

    /* Dots */
    .testimoni-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 35px;
    }

    .testimoni-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .testimoni-dot:hover {
        background: #3498db;
        transform: scale(1.2);
    }

    .testimoni-dot.active {
        width: 30px;
        border-radius: 5px;
        background: #3498db;
    }

    .testimoni-carousel-slide .testimoni-card,
    .testimoni-carousel-slide .testimoni-card:hover {
        box-shadow: none;
    }
}

@media (min-width: 769px) {
    .testimoni-carousel-wrapper,
    .testimoni-carousel-prev,
    .testimoni-carousel-next,
    .testimoni-carousel-dots {
        display: none;
    }

    .testimoni-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)) !important;
        gap: 30px !important;
    }
}

@media (max-width: 480px) {
    .testimoni-carousel-outer {
        padding: 0 8px;
    }

    .testimoni-carousel-slide {
        padding: 0 8px;
    }

    .testimoni-carousel-slide .testimoni-card-inner {
        padding: 18px 15px;
    }

    .testimoni-carousel-slide .testimoni-logo {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .testimoni-carousel-slide .testimoni-rating {
        margin-bottom: 12px;
    }

    .testimoni-carousel-slide .testimoni-rating i {
        font-size: 13px;
    }

    .testimoni-carousel-slide .testimoni-quote p {
        font-size: 0.85rem;
        line-height: 1.45;
    }

    .testimoni-carousel-slide .testimoni-features {
        gap: 5px;
        margin-bottom: 15px;
    }

    .testimoni-carousel-slide .feature-bubble {
        font-size: 0.68rem;
        padding: 3px 8px;
    }

    .testimoni-carousel-slide .testimoni-client h4 {
        font-size: 0.88rem;
    }

    .testimoni-carousel-slide .testimoni-client p {
        font-size: 0.7rem;
    }

    .testimoni-carousel-prev {
        left: -8px;
    }

    .testimoni-carousel-next {
        right: -8px;
    }

    .testimoni-carousel-prev,
    .testimoni-carousel-next {
        width: 36px;
        height: 36px;
    }

    .testimoni-carousel-prev i,
    .testimoni-carousel-next i {
        font-size: 14px;
    }

    .testimoni-carousel-dots {
        gap: 8px;
        margin-top: 25px;
    }

    .testimoni-dot {
        width: 8px;
        height: 8px;
    }

    .testimoni-dot.active {
        width: 24px;
    }
}

/* Testimoni Mobile Upgrade End */

/* Full Width Section Break - Counter Styles Start */
.full-width-break {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(135deg, #1a3e50 0%, #2c3e50 100%);
    padding: 60px 0;
    overflow-x: hidden;
    overflow-y: hidden;
    user-select: none;
}

.counter-section {
    position: relative;
    min-height: 300px;
    user-select: none;
    overflow-x: hidden;
    width: 100%;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -1px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="white" d="M20,20 L30,20 L25,30 Z M70,70 L80,70 L75,80 Z M40,80 L50,80 L45,90 Z M80,30 L90,30 L85,40 Z"/><circle cx="50" cy="50" r="8"/><circle cx="15" cy="85" r="5"/><circle cx="85" cy="15" r="5"/></svg>');
    background-repeat: repeat;
    background-size: 30px;
    pointer-events: none;
    user-select: none;
}

.counter-waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.counter-waves {
    position: relative;
    width: 100%;
    height: 40px;
    min-height: 40px;
    max-height: 80px;
}

.counter-parallax>use {
    animation: counter-move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.counter-parallax use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.counter-parallax use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.counter-parallax use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.counter-parallax use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 16s;
}

@keyframes counter-move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.counter-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -50px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    pointer-events: none;
    user-select: none;
    animation: bubbleRise linear infinite;
    will-change: transform, opacity;
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.9;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) scale(1.3);
        opacity: 0;
    }
}

.bubble-sm {
    width: 6px;
    height: 6px;
    animation-duration: 5s;
}

.bubble-md {
    width: 10px;
    height: 10px;
    animation-duration: 7s;
}

.bubble-lg {
    width: 16px;
    height: 16px;
    animation-duration: 9s;
}

.bubble-xl {
    width: 25px;
    height: 25px;
    animation-duration: 11s;
}

.counter-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    user-select: none;
    box-sizing: border-box;
}

.counter-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}

.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    letter-spacing: 2px;
    animation: counterPulse 0.6s ease-out;
    user-select: none;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd966;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    user-select: none;
}

.counter-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    user-select: none;
}

@keyframes counterPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 968px) {
    .full-width-break {
        padding: 40px 0;
    }

    .counter-container {
        flex-direction: column;
        gap: 20px;
    }

    .counter-item {
        min-width: 270px;
        padding: 15px;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    .counter-label {
        font-size: 1rem;
    }

    .counter-desc {
        font-size: 0.75rem;
    }

    .counter-waves {
        height: 30px;
        min-height: 30px;
    }
}

@media (max-width: 480px) {
    .counter-item {
        min-width: 250px;
        padding: 12px;
    }

    .counter-number {
        font-size: 2rem;
    }

    .counter-waves {
        height: 25px;
        min-height: 25px;
    }
}

/* Full Width Section Break - Counter Styles End */

/* FAQ Section Start */
.full-width-break-faq {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(135deg, #1a3e50 0%, #2c3e50 100%);
    padding: 60px 0;
    overflow-x: hidden;
    overflow-y: visible;
    user-select: none;
}

.faq-section {
    position: relative;
    min-height: 400px;
    user-select: none;
    overflow-x: hidden;
    width: 100%;
}

.faq-waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.faq-waves {
    position: relative;
    width: 100%;
    height: 80px;
    min-height: 80px;
    max-height: 150px;
}

.faq-parallax>use {
    animation: faq-move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.faq-parallax use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.faq-parallax use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.faq-parallax use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.faq-parallax use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 16s;
}

@keyframes faq-move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.faq-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.faq-bubble {
    position: absolute;
    bottom: -50px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    pointer-events: none;
    user-select: none;
    animation: faqBubbleRise linear infinite;
    will-change: transform, opacity;
}

@keyframes faqBubbleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.9;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) scale(1.3);
        opacity: 0;
    }
}

.faq-bubble-sm {
    width: 6px;
    height: 6px;
    animation-duration: 6s;
}

.faq-bubble-md {
    width: 10px;
    height: 10px;
    animation-duration: 8s;
}

.faq-bubble-lg {
    width: 16px;
    height: 16px;
    animation-duration: 10s;
}

.faq-bubble-xl {
    width: 25px;
    height: 25px;
    animation-duration: 12s;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 12px;
    padding-bottom: 1px;
    position: relative;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.faq-header h2:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    border-radius: 2px;
}

.faq-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #2c3e50;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-question i {
    font-size: 14px;
    color: #d64231;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    border-top-color: #eef2f5;
}

.faq-answer p {
    padding: 20px 24px;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #343;
    margin: 0;
}

.faq-answer ul {
    padding: 0 24px 10px 40px;
    margin: 0;
}

.faq-answer li {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #343;
    margin-bottom: 8px;
}

.faq-answer strong {
    color: #d64231;
    font-weight: 600;
}

.faq-answer .highlight {
    color: #d64231;
    font-weight: 600;
    background: rgba(222, 79, 63, 0.15);
    padding: 3px 12px;
    border-radius: 25px;
    display: inline-block;
}

.faq-link {
    color: #d64231;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-link:hover {
    color: #b83b2c;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .full-width-break-faq {
        padding: 40px 0;
    }

    .faq-header {
        margin-bottom: 30px;
    }

    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .faq-answer p{
        padding: 16px 20px 8px 20px;
        font-size: 0.85rem;
    }

    .faq-answer li {
        padding: 2px;
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .faq-answer ul {
        padding: 0 20px 8px 35px;
    }

    .faq-grid {
        gap: 12px;
    }

    .faq-waves {
        height: 50px;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .faq-header h2 {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .faq-answer p {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .faq-answer li {
        padding: 2px;
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .faq-answer ul {
        padding: 0 16px 6px 35px;
    }

    .faq-waves {
        height: 40px;
        min-height: 40px;
    }
}

/* FAQ Section End */

/* Blog Section Start */
.blog-section {
    width: 100%;
    padding: 60px 0 20px 0;
    background: #fff;
    position: relative;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 25px;
}

.blog-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-bottom: 1px;
    position: relative;
    display: inline-block;
}

.blog-header h2:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    border-radius: 2px;
}

.blog-header h2 a {
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-header h2 a:hover {
    opacity: 0.9;
}

.blog-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 40px 0 10px 0;
    }

    .blog-header {
        text-align: center;
        margin-bottom: 12px;
    }

    
    .blog-header h2 {
        font-size: 1.8rem;
    }
    
    .blog-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .blog-header h2 {
        font-size: 1.6rem;
    }
    
    .blog-subtitle {
        font-size: 0.85rem;
    }
}
/* Blog Section End */

/* Certification Section Start */
.full-width-break-certification {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(135deg, #1a3e50 0%, #2c3e50 100%);
    padding: 60px 0;
    overflow-x: hidden;
    overflow-y: visible;
    user-select: none;
}

.certification-main-section {
    position: relative;
    min-height: 500px;
    user-select: none;
    overflow-x: hidden;
    width: 100%;
}

.certification-waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.certification-waves {
    position: relative;
    width: 100%;
    height: 80px;
    min-height: 80px;
    max-height: 150px;
}

.certification-parallax > use {
    animation: certification-move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.certification-parallax use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.certification-parallax use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.certification-parallax use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.certification-parallax use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 16s;
}

@keyframes certification-move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.certification-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.certification-bubble {
    position: absolute;
    bottom: -50px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08));
    border-radius: 50%;
    pointer-events: none;
    user-select: none;
    animation: certificationBubbleRise linear infinite;
    will-change: transform, opacity;
}

@keyframes certificationBubbleRise {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }
    15% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50vh) scale(1);
    }
    85% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) scale(1.3);
        opacity: 0;
    }
}

.certification-bubble-sm {
    width: 6px;
    height: 6px;
    animation-duration: 6s;
}

.certification-bubble-md {
    width: 10px;
    height: 10px;
    animation-duration: 8s;
}

.certification-bubble-lg {
    width: 16px;
    height: 16px;
    animation-duration: 10s;
}

.certification-bubble-xl {
    width: 25px;
    height: 25px;
    animation-duration: 12s;
}

.certification-main-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
    z-index: 2;
}

.certification-header {
    text-align: center;
    margin-bottom: 40px;
}

.certification-header h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 12px;
    padding-bottom: 1px;
    position: relative;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.certification-header h2:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    border-radius: 2px;
}

.certification-header h2 a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.certification-header h2 a:hover {
    opacity: 0.85;
}

.certification-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.certification-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0;
    border-radius: 12px;
}

.certification-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: 100%;
    gap: 24px;
}

.certification-carousel-slide {
    flex: 0 0 auto;
    box-sizing: border-box;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.certification-glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0 auto;
    max-width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.certification-glass-card:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.certification-glass-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    height: 140px;
    width: 100%;
    border-radius: 28px 28px 0 0;
    transition: all 0.4s ease-in-out;
    backdrop-filter: blur(4px);
}

.certification-glass-card:hover .certification-glass-icon {
    background: rgba(255, 255, 255, 0.3);
}

.certification-glass-icon i {
    color: white;
    font-size: 64px;
    transition: transform 0.3s ease-in-out;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.certification-glass-card:hover .certification-glass-icon i {
    transform: scale(1.05);
}

.certification-glass-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.certification-glass-title {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.certification-glass-program {
    margin: 0 0 16px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.certification-glass-learn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffd966;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.certification-glass-card:hover .certification-glass-learn {
    color: #ffeaa7;
    gap: 10px;
}

.certification-carousel-prev,
.certification-carousel-next {
    position: absolute;
    top: 60%;
    transform: translateY(-60%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.certification-carousel-prev:hover:not(:disabled),
.certification-carousel-next:hover:not(:disabled) {
    transform: translateY(-60%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: white;
}

.certification-carousel-prev:active:not(:disabled),
.certification-carousel-next:active:not(:disabled) {
    transform: translateY(-60%);
}

.certification-carousel-prev:disabled,
.certification-carousel-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-60%);
}

.certification-carousel-prev i,
.certification-carousel-next i {
    font-size: 20px;
    color: #2c3e50;
    transition: transform 0.2s ease;
}

.certification-carousel-prev {
    left: -3px;
}

.certification-carousel-next {
    right: -3px;
}

.certification-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.certification-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.certification-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.certification-dot.active {
    width: 30px;
    border-radius: 5px;
    background: #fff;
}

@media (max-width: 1024px) {
    .certification-main-container {
        padding: 0 60px;
    }
    
    .certification-carousel-prev {
        left: 9px;
    }
    
    .certification-carousel-next {
        right: 9px;
    }
    
    .certification-carousel-prev,
    .certification-carousel-next {
        width: 44px;
        height: 44px;
    }
    
    .certification-carousel-prev i,
    .certification-carousel-next i {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .full-width-break-certification {
        padding: 40px 0;
    }
    
    .certification-main-container {
        padding: 0 50px;
    }

    .certification-carousel-prev {
        left: 4px;
        top: 70%;
        transform: translateY(-70%);
    }
    
    .certification-carousel-next {
        right: 4px;
        top: 70%;
        transform: translateY(-70%);
    }
    
    .certification-header h2 {
        font-size: 1.8rem;
    }
    
    .certification-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .certification-glass-icon {
        height: 110px;
    }
    
    .certification-glass-icon i {
        font-size: 48px;
    }
    
    .certification-glass-content {
        padding: 18px;
    }
    
    .certification-glass-title {
        font-size: 1rem;
    }
    
    .certification-glass-program {
        font-size: 0.75rem;
    }
    
    .certification-waves {
        height: 50px;
        min-height: 50px;
    }
    
    .certification-carousel-prev,
    .certification-carousel-next {
        width: 40px;
        height: 40px;
    }
    
    .certification-carousel-prev i,
    .certification-carousel-next i {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .certification-carousel-prev:hover:not(:disabled),
    .certification-carousel-next:hover:not(:disabled) {
        top: 70%;
        transform: translateY(-70%);
    }
    
    .certification-carousel-prev:active:not(:disabled),
    .certification-carousel-next:active:not(:disabled) {
        top: 70%;
        transform: translateY(-70%);
    }
    
    .certification-carousel-prev:disabled,
    .certification-carousel-next:disabled {
        top: 70%;
        transform: translateY(-70%);
    }
}

@media (max-width: 480px) {
    .certification-main-container {
        padding: 0 45px;
    }
    
    .certification-header h2 {
        font-size: 1.6rem;
    }
    
    .certification-carousel-prev {
        left: 3.5px;
    }
    
    .certification-carousel-next {
        right: 3.5px;
    }
    
    .certification-carousel-prev,
    .certification-carousel-next {
        width: 36px;
        height: 36px;
    }
    
    .certification-carousel-prev i,
    .certification-carousel-next i {
        font-size: 16px;
    }
    
    .certification-glass-icon {
        height: 90px;
    }
    
    .certification-glass-icon i {
        font-size: 40px;
    }
    
    .certification-glass-content {
        padding: 14px;
    }
    
    .certification-waves {
        height: 40px;
        min-height: 40px;
    }
    
    .certification-carousel-dots {
        gap: 8px;
        margin-top: 20px;
    }
    
    .certification-dot {
        width: 8px;
        height: 8px;
    }
    
    .certification-dot.active {
        width: 24px;
    }
}

@media (min-width: 1025px) {
    .certification-carousel-slide {
        flex: 0 0 calc(33.333% - 16px);
        min-width: calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .certification-carousel-slide {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .certification-carousel-slide {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
        max-width: calc(100% - 0px);
    }
}
/* Certification Section End */

/* About Page Styles Start */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.highlight-red {
    color: #c0392b;
    position: relative;
}

.about-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.about-hero {
    margin-bottom: 40px;
}

.about-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-hero-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #c0392b;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
}

.about-hero-image {
    flex: 0 0 280px;
    display: flex;
    justify-content: center;
}

.polaroid-photo {
    background: #fff;
    padding: 0 0 16px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: rotate(4deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 2px;
    max-width: 100%;
}

.polaroid-photo:hover {
    transform: rotate(3deg) scale(1.01);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.polaroid-inner {
    overflow: hidden;
    width: 100%;
}

.polaroid-inner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: 3/4;
    max-width: 100%;
}

.polaroid-caption {
    text-align: center;
    margin-top: 10px;
}

.polaroid-caption p {
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    font-size: 0.9rem;
}

.polaroid-caption p a {
    color: inherit;
    text-decoration: none;
}

.polaroid-caption p a:hover,
.polaroid-caption p a:focus-visible {
    color: #c0392b;
    text-decoration: underline;
}

.polaroid-caption small {
    font-size: 0.7rem;
    color: #888;
    margin-top: -5px;
}

.about-services-section {
    margin-bottom: 60px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-center h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    padding-bottom: 1px;
    position: relative;
    display: inline-block;
}

.section-header-center h2:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    border-radius: 2px;
}

.section-header-center p {
    color: #666;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.about-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eef2f5;
    user-select: none;
}

.about-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c0392b, #2c3e50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 28px;
    color: white;
}

.about-service-card h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

.about-service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-feature-list li {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-feature-list li i {
    font-size: 12px;
    color: #c0392b;
}

.about-advantage-section {
    width: 100%;
    margin-bottom: 10px;
    background: #e1e1e1;
    padding: 50px 0;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantage-item {
    text-align: center;
    padding: 25px;
    user-select: none;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.advantage-icon i {
    font-size: 32px;
    color: #c0392b;
}

.advantage-item h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.advantage-item p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
}

.about-cta {
    padding: 60px 20px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.cta-content p {
    color: #666;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c0392b, #2c3e50);
    background-size: 200% 200%;
    background-position: 0% 0%;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    user-select: none;
}

.cta-button:hover {
    background-position: 100% 100%;
    gap: 15px;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .about-container {
        padding: 30px 20px 5px 20px;
    }

    .about-title {
        font-size: 2rem;
    }
    
    .about-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .about-hero-text h2 {
        text-align: center;
    }
    
    .about-hero-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .polaroid-photo {
        transform: rotate(2deg);
        padding: 0 0 14px 0;
    }
    
    .polaroid-photo:hover {
        transform: rotate(0deg) scale(1.01);
    }
    
    .polaroid-caption p {
        font-size: 0.8rem;
    }
    
    .polaroid-caption small {
        font-size: 0.65rem;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-cta {
        padding: 40px 20px 60px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .about-hero-image {
        width: 100%;
        max-width: 280px;
    }
    
    .about-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
    }
}

.about-hero-text ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.about-hero-text ul li i {
    flex-shrink: 0;
    margin-top: 3px;
}

.about-hero-image-vision {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vision-target-icon {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #c0392b, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-target-icon:hover {
    transform: scale(1.02);
}

.vision-target-icon i {
    font-size: 140px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.vision-target-caption {
    text-align: center;
    margin-top: 20px;
}

.vision-target-caption p {
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    font-size: 0.9rem;
}

.vision-target-caption small {
    font-size: 0.65rem;
    color: #888;
}

@media (max-width: 768px) {
    .about-hero-image-vision {
        width: 100%;
        margin: 0 auto;
        margin-top: -50px;
    }
    
    .vision-target-icon {
        width: 140px;
        height: 140px;
    }
    
    .vision-target-icon i {
        font-size: 120px;
    }
}

@media (max-width: 480px) {
    .vision-target-icon {
        width: 120px;
        height: 120px;
    }
    
    .vision-target-icon i {
        font-size: 100px;
    }
}
/* About Page Styles End */

/* About Advantage Section with Waves & Bubbles Start */
.full-width-break-advantage {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(135deg, #1a3e50 0%, #2c3e50 100%);
    padding: 60px 0;
    overflow-x: hidden;
    overflow-y: visible;
    user-select: none;
}

.about-advantage-section {
    position: relative;
    min-height: 500px;
    user-select: none;
    overflow-x: hidden;
    width: 100%;
}

.advantage-waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.advantage-waves {
    position: relative;
    width: 100%;
    height: 80px;
    min-height: 80px;
    max-height: 150px;
}

.advantage-parallax > use {
    animation: advantage-move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.advantage-parallax use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.advantage-parallax use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.advantage-parallax use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.advantage-parallax use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 16s;
}

@keyframes advantage-move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.advantage-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.advantage-bubble {
    position: absolute;
    bottom: -50px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08));
    border-radius: 50%;
    pointer-events: none;
    user-select: none;
    animation: advantageBubbleRise linear infinite;
    will-change: transform, opacity;
}

@keyframes advantageBubbleRise {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }
    15% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50vh) scale(1);
    }
    85% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) scale(1.3);
        opacity: 0;
    }
}

.advantage-bubble-sm {
    width: 6px;
    height: 6px;
    animation-duration: 6s;
}

.advantage-bubble-md {
    width: 10px;
    height: 10px;
    animation-duration: 8s;
}

.advantage-bubble-lg {
    width: 16px;
    height: 16px;
    animation-duration: 10s;
}

.advantage-bubble-xl {
    width: 25px;
    height: 25px;
    animation-duration: 12s;
}

.advantage-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-advantage-section .section-header-center h2,
.about-advantage-section .section-header-center p {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.about-advantage-section .advantage-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-advantage-section .advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.about-advantage-section .advantage-icon {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.about-advantage-section .advantage-item h3 {
    color: #ffd966;
}

.about-advantage-section .advantage-item p {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .full-width-break-advantage {
        padding: 40px 0;
    }
    
    .advantage-waves {
        height: 50px;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .advantage-waves {
        height: 40px;
        min-height: 40px;
    }
}
/* About Advantage Section with Waves & Bubbles End */

/* Tambahan Untuk Artikel Start */

.background-changer {
    background: rgb(245, 245, 245);
}

.article-background {
    max-width: 1200px;
    background: #fff;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Tambahan Untuk Artikel End */

/* Artikel Skelton Start */

.skeleton-title,
.skeleton-text,
.skeleton-button,
.skeleton-populer-img,
.skeleton-populer-title,
.skeleton-populer-meta {
    background: linear-gradient(90deg, #e0e0e0 0%, #d0d0d0 25%, #e0e0e0 50%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-populer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f3f3f3;
    border-radius: 8px;
    margin-bottom: 10px;
}

.skeleton-populer-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    flex-shrink: 0;
}

.skeleton-populer-content {
    flex: 1;
}

.skeleton-populer-title {
    height: 14px;
    width: 80%;
    margin-bottom: 8px;
}

.skeleton-populer-meta {
    height: 10px;
    width: 50%;
}

.skeleton-button {
    border-radius: 8px;
}

@media (max-width: 768px) {
    .skeleton-populer-img {
        width: 50px;
        height: 50px;
    }
}

/* Artikel Skelton End */

/* Perbaiki Misi Start */
@media (max-width: 768px) {
    .about-hero-image-vision {
        display: none;
    }
    
    .about-hero-text {
        text-align: center;
    }
    
    .about-hero-text h2 {
        text-align: center;
    }
    
    .about-hero-text p {
        text-align: center;
    }
    
    .about-hero-text ul {
        padding-left: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about-hero-text ul li {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        margin-bottom: 15px !important;
        text-align: left !important;
        max-width: 90% !important;
        width: 100% !important;
        justify-content: flex-start !important;
    }
    
    .about-hero-text ul li i {
        flex-shrink: 0 !important;
        margin-top: 3px !important;
    }
    
    .about-hero-text ul li span {
        flex: 1 !important;
        text-align: left !important;
    }
}
/* Perbaiki Misi End */

.hero-mini {
    padding: 20px;
    text-align: center;
    padding-top: 60px;
}

.hero-mini-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-mini-title {
    font-size: 2.5rem;
    color: white;
}

.hero-mini-subtitle {
    font-size: 1rem;
    color: #39546e !important;
    max-width: 600px;
    margin: 0 auto;
}

.hero-mini-container h1 {
    color: #2c3e50 !important;
}

@media (max-width: 600px) {
    .hero-mini {
        padding: 40px 20px 0 20px;
    }

    .hero-mini-container h1 {
        font-size: 1.8rem !important;
        color: white;
        margin-bottom: 8px;
    }
}

::-webkit-scrollbar {
    width: 8px !important;
    height: 8px !important;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #2c3e50;
}

::-webkit-scrollbar-thumb:hover {
    background: #1f2d3a;
}

* {
    scrollbar-width: auto;
    scrollbar-color: auto;
}
