/* Fonts */
/* html {
    zoom: 90%;
    height: 111.11vh;
    width: 111.11vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
} */

:root {
    font-size: 14.4px;
}

.container-boxed {
    max-width: 1320px;
    padding-left: 32px;
    padding-right: 32px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1400px) {
    .container-boxed {
        max-width: 1440px;
        padding-left: 48px;
        padding-right: 48px;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body.modal-open {
    padding-right: 0 !important;
}

@media (max-width: 991px) {
    html {
        font-size: 14px;
    }
}

:root {
    --default-font: "Poppins", "Open Sans", system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
        sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Poppins", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #062937; /* Color for headings, subheadings and title throughout the website */
    --accent-color: rgb(
        14,
        65,
        112
    ); /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #062937; /* The default color of the main navmenu links */
    --nav-hover-color: #0e4170; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #47b2e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: color-mix(
        in srgb,
        var(--default-color),
        transparent 96%
    );
    --surface-color: #f5f6f8;
}

.dark-background {
    --background-color: #062937;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #4668a2;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    min-height: 100%;
    overflow-x: hidden;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.section_gap {
    padding: 100px 0;
}
@media (max-width: 991px) {
    .section_gap {
        padding: 80px 0;
    }
}

.section_gap_top_75 {
    padding: 75px 0;
}
@media (max-width: 991px) {
    .section_gap_top_75 {
        padding: 70px 0;
    }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: #3d4d6a;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 40px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

/* Index Page Header
------------------------------*/
.index-page .header {
    --background-color: rgba(255, 255, 255, 0);
    --heading-color: #ffffff;
    --nav-color: #062937;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: #ffffff;
    --heading-color: #062937;
    --nav-color: #062937;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }

    .navmenu .megamenu {
        position: static;
    }

    .navmenu .megamenu ul {
        margin: 0;
        padding: 10px;
        background: var(--nav-dropdown-background-color);
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        display: flex;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }

    .navmenu .megamenu ul li {
        flex: 1;
    }

    .navmenu .megamenu ul li a,
    .navmenu .megamenu ul li:hover > a {
        padding: 10px 20px;
        font-size: 15px;
        color: var(--nav-dropdown-color);
    }

    .navmenu .megamenu ul li a:hover,
    .navmenu .megamenu ul li .active,
    .navmenu .megamenu ul li .active:hover {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .megamenu:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dd-box-shadow {
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

.footer .footer-newsletter {
    padding: 50px 0;
}

.footer .footer-newsletter h4 {
    font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: 0.3s;
    border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    margin-right: 3px;
    font-size: 12px;
    line-height: 0;
    color: var(--accent-color);
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    display: inline-block;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-about a {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color)
        transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --background-color: color-mix(
        in srgb,
        var(--default-color),
        transparent 96%
    );
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    position: relative;
}

.page-title h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 88px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.search-bar {
    display: flex;
    width: 100%;
    border: 2px solid #005baa;
    border-radius: 50px; /* Biar membulat semua */
    overflow: hidden; /* Hilangkan border terpisah */
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 91, 170, 0.2); /* 🔥 Efek bayangan */
    transition: box-shadow 0.3s ease-in-out;
}

.hero .search-bar {
    width: 80%;
    max-width: 450px;
}

.search-bar:hover {
    box-shadow: 0 6px 20px rgba(0, 91, 170, 0.35);
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 15px;
    font-size: 16px;
    background: transparent;
}

.search-bar button {
    background-color: white;
    border: none;
    padding: 0 20px;
    color: #005baa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    background-color: #005baa;
    color: white;
}

.hero .trust-indicators {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 20px;
}

.hero .indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px; /* bikin simetris */
    text-align: center;
}

/* ICON WRAPPER – bulat premium-style */
.hero .indicator .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e7f1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.hero .indicator .icon-wrapper i {
    font-size: 22px;
    color: #005baa;
}

/* Text styling */
.hero .indicator .title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
    color: #1f3c88;
}

.hero .indicator .subtitle {
    font-size: 12px;
    color: #1f3c88;
    margin: 0;
}

/* ============================
   RESPONSIVE (MOBILE)
============================ */

@media (max-width: 575.98px) {
    .trust-indicators {
        gap: 15px !important;
        padding: 0 20px;
    }

    .trust-indicators .indicator {
        width: 35%;
        justify-content: space-between !important;
        min-width: unset;
    }

    .trust-indicators .title {
        font-size: 13px;
    }

    .trust-indicators .subtitle {
        font-size: 12px;
        white-space: nowrap;
    }
}

.hero {
    width: 100%;
    height: 55.55vh;
    min-height: 55.55vh;
    position: relative;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
}

.hero h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 56px;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 5px 0 30px 0;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 12px 28px;
    border-radius: 50px;
    transition: 0.5s;
}

.hero .btn-get-started:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--default-color);
    font-weight: 600;
}

.hero .btn-watch-video i {
    color: var(--contrast-color);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991.98px) {
    .hero {
        /* Bikin tinggi section otomatis & padding lebih pendek */
        height: auto;
        min-height: auto;
        padding: 80px 0 40px 0; /* Atas 80, bawah 40 */
    }

    /* Bikin teks di kolom kiri jadi rata tengah */
    .hero .order-lg-1 {
        text-align: center;
    }

    /* Bikin kolom kanan (search) juga rata tengah */
    .hero .order-lg-2 {
        align-items: center !important;
    }

    .hero h1 {
        /* Kecilin font H1 di HP */
        font-size: 28px;
        line-height: 1.3;
    }

    .hero p {
        /* Kecilin font paragraf di HP */
        font-size: 16px;
        margin-bottom: 20px;
    }

    /* Bikin search bar dan indicators 100% lebarnya */
    .hero .search-bar {
        width: 100%;
        max-width: 450px; /* Max-width tetap boleh */
    }
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 12px 0;
}

.clients .swiper {
    padding: 10px 0;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-slide img {
    transition: 0.3s;
    padding: 0 10px;
}

.clients .swiper-slide img:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.tentang-p {
    text-align: justify;
}
.about ul {
    list-style: none;
    padding: 0;
}

.about ul li {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}

.about ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.about .read-more {
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 8px 28px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
}

.about .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.about .read-more:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.about .read-more:hover i {
    transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
/* ======================================================
   UPGRADE UI/UX UNTUK KARTU LAYANAN (HOMEPAGE)
   ====================================================== */

/* 1. Mengganti style .service-item bawaan */
.services .service-item {
    background: #ffffff;
    border-radius: 12px; /* Sudut lebih bulat */
    overflow: hidden; /* Sembunyikan gambar yg "meluber" */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Shadow lebih halus */
    transition: all 0.3s ease-in-out;
    padding: 0; /* Hapus padding lama */
    height: 100%; /* Pastikan tinggi sama (karena ada d-flex) */
    display: flex;
    flex-direction: column;
}

/* 2. Efek Hover */
.services .service-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px); /* Efek "terangkat" */
}

/* 3. Wrapper untuk Gambar (PENGGANTI IKON) */
.service-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10; /* Rasio gambar (bisa diubah) */
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Trik anti-gepeng! */
    transition: transform 0.3s ease;
}

.services .service-item:hover .service-image-wrapper img {
    transform: scale(1.05); /* Efek zoom-in gambar saat hover */
}

/* 4. Wrapper untuk Konten Teks */
.service-content-wrapper {
    padding: 20px 25px 25px 25px; /* Padding untuk teks */
    flex-grow: 1; /* Bikin konten ini ngisi sisa ruang */
    display: flex;
    flex-direction: column;
}

.service-content-wrapper h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-content-wrapper h4 a {
    color: var(--heading-color); /* Ambil warna dari template */
    transition: color 0.3s ease;
    text-decoration: none; /* Hapus garis bawah */
}

.service-content-wrapper h4 a:hover {
    color: var(--accent-color); /* Ambil warna aksen */
}

.service-content-wrapper p {
    font-size: 14px;
    color: #6c757d; /* Warna abu-abu */
    flex-grow: 1; /* Mendorong tombol "Read More" ke bawah */
    margin-bottom: 20px;
}

/* 5. Tombol CTA "Read More" */
.service-content-wrapper .read-more-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-content-wrapper .read-more-btn i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.service-content-wrapper .read-more-btn:hover {
    color: var(--heading-color);
}

.service-content-wrapper .read-more-btn:hover i {
    margin-left: 10px; /* Efek panah bergeser */
}

/* 6. Hapus style ikon lama yang tidak terpakai */
.services .service-item .icon {
    display: none;
}

/* ======================================================
   STYLING UNTUK PROGRESS BAR SLIDER LAYANAN
   ====================================================== */

/* Wrapper untuk slider, kasih padding bawah untuk progress bar */
.services-slider-wrapper {
    padding-bottom: 40px !important;
}

/* Garis progress bar */
.services-slider-wrapper .swiper-pagination.swiper-pagination-progressbar {
    position: absolute;
    bottom: 10px !important; /* Posisikan di bawah slider */
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1); /* Warna garis dasarnya */
}

/* Garis yang "keisi" (progres-nya) */
.services-slider-wrapper
    .swiper-pagination-progressbar
    .swiper-pagination-progressbar-fill {
    background: var(--accent-color) !important; /* Pakai warna aksen tema */
    height: 100%;
    transform-origin: left;
}

.portfolio-details-slider .swiper-slide {
    /* 1. Buat "Bingkai" dengan rasio 16:9 */
    aspect-ratio: 16 / 9;

    /* 2. Sembunyikan bagian gambar yang "meluber" */
    overflow: hidden;

    /* 3. Kasih warna latar belakang saat gambar loading */
    background-color: #f0f0f0;
}

.portfolio-details-slider .swiper-slide img {
    /* 4. Paksa gambar untuk mengisi bingkai */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Posisikan gambar di tengah sebelum di-crop */
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Call to Action Section Slider
--------------------------------------------------------------*/
.call-to-action .swiper {
    padding-top: 20px;
    padding-bottom: 20px;
}

.call-to-action .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 260px; /* Lebar gambar di tengah */
    height: 276px; /* Tinggi gambar di tengah */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.call-to-action .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Styling untuk pagination (titik-titik) */
.call-to-action .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.6);
}

.call-to-action .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffffff;
}

.call-to-action {
    min-height: 55.55vh; /* 1. Atur tinggi minimal menjadi 50% dari tinggi layar */
    height: 55.55vh;
    display: flex; /* 2. Aktifkan Flexbox */
    align-items: center; /* 3. Posisikan konten di tengah secara vertikal */
    position: relative;
    clip-path: inset(0);
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 35%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action .container-boxed {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    color: var(--default-color);
    font-size: 28px;
    font-weight: 700;
}

.call-to-action p {
    color: var(--default-color);
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

#call-to-action .swiper-slide {
    filter: none !important;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

#call-to-action .swiper-slide:not(.swiper-slide-active) {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

#call-to-action .swiper-slide:not(.swiper-slide-active)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(
        45,
        42,
        42,
        0.4
    ); /* WARNA PUTIH 40% TRANSPARAN (ATUR ANGKA INI) */
    z-index: 1; /* Pastikan overlay di atas gambar */
    pointer-events: none; /* Biar nggak nge-block klik */
}

#call-to-action .swiper-button-prev,
#call-to-action .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: rgb(255, 219, 30, 0.8);
    border-radius: 50%;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
    color: #ffff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
}

#call-to-action .swiper-button-prev::after,
#call-to-action .swiper-button-next::after {
    content: none;
}

#call-to-action .swiper-button-prev::before,
#call-to-action .swiper-button-next::before {
    font-family: "bootstrap-icons";
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    width: 100%;
    text-align: center;
    display: block;
}

#call-to-action .swiper-button-prev::before {
    content: "\F284";
}

#call-to-action .swiper-button-next::before {
    content: "\F285";
}

#call-to-action .swiper-button-prev:hover,
#call-to-action .swiper-button-next:hover {
    background-color: rgba(255, 219, 30, 1);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}

#call-to-action .swiper-button-prev {
    left: 120px;
}
#call-to-action .swiper-button-next {
    right: 120px;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 0 10px 0;
    }
}

.portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -100%;
    z-index: 3;
    transition: all ease-in-out 0.5s;
    background: color-mix(in srgb, var(--background-color), transparent 10%);
    padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 14px);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: 0.3s;
    line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 14px;
    font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--background-color);
    padding: 60px 40px;
    height: 100%;
    border-radius: 5px;
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}

.pricing h4 {
    color: var(--accent-color);
    font-size: 48px;
    font-weight: 400;
    font-family: var(--heading-font);
    margin-bottom: 0;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 18px;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
}

.pricing ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    color: var(--accent-color);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    transition: 0.3s;
    border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .featured {
    border-top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Recent Blog Postst Section
--------------------------------------------------------------*/
.recent-blog-postst .post-item {
    background: var(--surface-color);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.recent-blog-postst .post-item .post-img img {
    transition: 0.5s;
}

.recent-blog-postst .post-item .post-date {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.recent-blog-postst .post-item .post-content {
    padding: 30px;
}

.recent-blog-postst .post-item .post-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}

.recent-blog-postst .post-item .meta i {
    font-size: 16px;
    color: var(--accent-color);
}

.recent-blog-postst .post-item .meta span {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-blog-postst .post-item hr {
    color: color-mix(in srgb, var(--default-color), transparent 80%);
    margin: 20px 0;
}

.recent-blog-postst .post-item .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-postst .post-item .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.recent-blog-postst .post-item:hover .post-title,
.recent-blog-postst .post-item:hover .readmore {
    color: var(--accent-color);
}

.recent-blog-postst .post-item:hover .post-img img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    padding: 30px;
    height: 100%;
}

@media (max-width: 575px) {
    .contact .info-wrap {
        padding: 20px;
    }
}

.contact .info-item {
    margin-bottom: 40px;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid
        color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/* ======================================================
   UPGRADE UI/UX: KARTU PEMESANAN (DETAIL LAYANAN)
   ====================================================== */

.service-booking-card {
    /* Bikin 'sticky' di desktop biar ngikutin scroll */
    position: -webkit-sticky;
    position: sticky;
    top: 100px; /* Jarak dari atas (sesuaikan dengan tinggi header) */
}

.service-booking-card .service-info-box {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.service-booking-card .service-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #e0e0e0;
    opacity: 1;
}

.service-booking-card .service-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.service-booking-card .service-info-list li strong {
    color: var(--heading-color);
}

.service-booking-card .service-info-list li span {
    color: #6c757d;
    text-align: right;
}

.service-booking-card .btn-primary {
    font-weight: 700;
    padding: 12px;
    font-size: 16px;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}

.blog-posts .post-img {
    max-height: 440px;
    margin: -30px -30px 0 -30px;
    overflow: hidden;
}

.blog-posts .title {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-posts .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.blog-posts .title a:hover {
    color: var(--accent-color);
}

.blog-posts .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-posts .meta-top ul li + li {
    padding-left: 20px;
}

.blog-posts .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-posts .content {
    margin-top: 20px;
}

.blog-posts .content .read-more {
    text-align: right;
}

.blog-posts .content .read-more a {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 30px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination-2 li {
    margin: 0 5px;
    transition: 0.3s;
}

.pagination-2 li a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-2 li a.active,
.pagination-2 li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pagination-2 li a.active a,
.pagination-2 li a:hover a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-details .hero-img {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 auto 3rem;
    border-radius: 16px;
    overflow: hidden;
}

.blog-details .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details .hero-img .meta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
    color: var(--contrast-color);
    margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
    color: var(--contrast-color);
    font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .blog-details .hero-img {
        height: 350px;
        margin-top: -30px;
        margin-bottom: 2rem;
    }
}

.blog-details .article-content {
    padding: 0 1rem;
}

.blog-details .article-content .content-header {
    margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .blog-details .article-content .content-header .title {
        font-size: 2rem;
    }
}

.blog-details .article-content .content-header .author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-details
    .article-content
    .content-header
    .author-info
    .author-details
    .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-details
    .article-content
    .content-header
    .author-info
    .author-details
    .info
    h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--heading-color);
}

.blog-details
    .article-content
    .content-header
    .author-info
    .author-details
    .info
    .role {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
    margin-right: 0.3rem;
}

.blog-details
    .article-content
    .content-header
    .author-info
    .post-meta
    .divider {
    margin: 0 0.75rem;
}

.blog-details .article-content .content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.blog-details .article-content .content h2 {
    font-size: 2rem;
    color: var(--heading-color);
    margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
    margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
    margin-bottom: 2rem;
    padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
    margin-bottom: 0.75rem;
    position: relative;
}

.blog-details .article-content .content .content-image {
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
    float: right;
    max-width: 450px;
    margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
    .blog-details .article-content .content .content-image.right-aligned {
        float: none;
        max-width: 100%;
        margin: 2rem 0;
    }
}

.blog-details .article-content .content .content-image img {
    width: 100%;
    height: auto;
}

.blog-details .article-content .content .content-image figcaption {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
    color: var(--heading-color);
    font-weight: 500;
}

.blog-details .article-content .content .content-grid {
    margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
    transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.blog-details .article-content .content blockquote {
    position: relative;
    margin: 3rem 0;
    padding: 2rem 3rem;
    background: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .article-content .content blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: color-mix(in srgb, var(--accent-color), transparent 85%);
    font-family: serif;
    line-height: 1;
}

.blog-details .article-content .content blockquote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--heading-color);
    margin: 0 0 1rem;
    position: relative;
}

.blog-details .article-content .content blockquote cite {
    font-style: normal;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
    display: block;
}

.blog-details .article-content .meta-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
    display: grid;
    gap: 2rem;
}

.blog-details .article-content .meta-bottom h4 {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.blog-details .article-content .meta-bottom .social-links {
    display: flex;
    gap: 1rem;
}

.blog-details .article-content .meta-bottom .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
    font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
    padding: 20px 0;
}

.blog-comments .comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
    color: var(--heading-color);
    font-size: 32px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin: 0;
}

.blog-comments .comments-header .comments-stats {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 8px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
    font-size: 18px;
    font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-comments .comments-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-comments .comment-thread {
    position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 25px;
    top: 80px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        color-mix(in srgb, var(--accent-color), transparent 40%),
        color-mix(in srgb, var(--accent-color), transparent 90%)
    );
    z-index: 0;
}

@media (min-width: 768px) {
    .blog-comments .comment-thread:not(:last-child)::after {
        left: 35px;
    }
}

.blog-comments .comment-box {
    position: relative;
    transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
    margin-left: 50px;
    margin-top: 25px;
}

@media (min-width: 768px) {
    .blog-comments .comment-box.reply {
        margin-left: 70px;
    }
}

.blog-comments .comment-wrapper {
    display: flex;
    gap: 20px;
    position: relative;
}

.blog-comments .avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid var(--surface-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .blog-comments .avatar-wrapper img {
        width: 70px;
        height: 70px;
    }
}

.blog-comments .avatar-wrapper img:hover {
    transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4caf50;
    border: 2px solid var(--surface-color);
    z-index: 1;
}

.blog-comments .comment-content {
    flex: 1;
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
    font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 20px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
    font-size: 13px;
}

.blog-comments .comment-body p {
    color: var(--default-color);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-comments .comment-actions {
    display: flex;
    gap: 15px;
}

.blog-comments .comment-actions .action-btn {
    background: none;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
    font-size: 15px;
    transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
    transform: scale(1.2);
    color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
    transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
    transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
    color: #ff4b6e;
}

.blog-comments .replies-container {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media (max-width: 768px) {
    .blog-comments .comments-header {
        margin-bottom: 30px;
    }

    .blog-comments .comments-header .title {
        font-size: 24px;
    }

    .blog-comments .comments-header .comments-stats {
        padding: 6px 15px;
    }

    .blog-comments .comments-header .comments-stats .count {
        font-size: 20px;
    }

    .blog-comments .comments-header .comments-stats .label {
        font-size: 12px;
    }

    .blog-comments .comment-content {
        padding: 20px;
    }

    .blog-comments .comment-header .user-info h4 {
        font-size: 16px;
    }

    .blog-comments .comment-header .user-info .time-badge {
        font-size: 13px;
    }

    .blog-comments .comment-body p {
        font-size: 14px;
    }

    .blog-comments .comment-actions .action-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
    max-width: 900px;
    margin: 30px auto 0 auto;
    padding-top: 10px;
}

.blog-comment-form form {
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-comment-form .form-header h3 {
    color: var(--heading-color);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.blog-comment-form .form-header p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.9375rem;
}

.blog-comment-form .input-group {
    margin-bottom: 1rem;
    position: relative;
}

.blog-comment-form .input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
    font-weight: 500;
    font-size: 0.875rem;
}

.blog-comment-form .input-group input,
.blog-comment-form .input-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    background-color: var(--surface-color);
    color: var(--default-color);
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.blog-comment-form .input-group input::placeholder,
.blog-comment-form .input-group textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .input-group input:hover,
.blog-comment-form .input-group textarea:hover {
    border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .input-group input:focus,
.blog-comment-form .input-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px
        color-mix(in srgb, var(--accent-color), transparent 90%);
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown),
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.blog-comment-form
    .input-group
    input:invalid:not(:placeholder-shown)
    + .error-text,
.blog-comment-form
    .input-group
    textarea:invalid:not(:placeholder-shown)
    + .error-text {
    opacity: 1;
    transform: translateY(0);
}

.blog-comment-form .input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.blog-comment-form .input-group .error-text {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: #dc3545;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.blog-comment-form button[type="submit"] {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-comment-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
}

.blog-comment-form button[type="submit"]:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .blog-comment-form {
        padding: 1.5rem;
    }

    .blog-comment-form .form-header h3 {
        font-size: 1.5rem;
    }

    .blog-comment-form button[type="submit"] {
        width: 100%;
        padding: 0.875rem 1rem;
    }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    padding: 80px 0;
    margin: 0 auto;
}

.error-404 .error-icon {
    font-size: 5rem;
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: color-mix(in srgb, var(--heading-color), transparent 10%);
    font-family: var(--heading-font);
    line-height: 1;
}

.error-404 .error-title {
    font-size: 2rem;
    color: var(--heading-color);
    font-weight: 600;
}

.error-404 .error-text {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    max-width: 600px;
    margin: 0 auto;
}

.error-404 .search-box {
    max-width: 500px;
    margin: 0 auto;
}

.error-404 .search-box .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-404 {
        padding: 60px 0;
    }

    .error-404 .error-code {
        font-size: clamp(4rem, 12vw, 8rem);
    }

    .error-404 .error-title {
        font-size: 1.5rem;
    }

    .error-404 .error-text {
        font-size: 1rem;
        padding: 0 20px;
    }

    .error-404 .search-box {
        margin: 0 20px;
    }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    margin: 60px 0 30px 0;
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 600;
    padding: 0 0 0 10px;
    margin: 0 0 20px 0;
    border-left: 4px solid var(--accent-color);
}

.widget-item {
    margin-bottom: 30px;
    background-color: color-mix(in srgb, var(--default-color), transparent 98%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 30px;
    border-radius: 5px;
}

.widget-item:last-child {
    margin-bottom: 0;
}

.search-widget form {
    background: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
    padding: 3px 10px;
    position: relative;
    border-radius: 50px;
    transition: 0.3s;
}

.search-widget form input[type="text"] {
    border: 0;
    padding: 4px 10px;
    border-radius: 4px;
    width: calc(100% - 40px);
    background-color: var(--background-color);
    color: var(--default-color);
}

.search-widget form input[type="text"]:focus {
    outline: none;
}

.search-widget form button {
    background: none;
    color: var(--default-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 16px;
    transition: 0.3s;
    line-height: 0;
}

.search-widget form button i {
    line-height: 0;
}

.search-widget form button:hover {
    color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
    border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
    margin-bottom: 0;
}

.recent-posts-widget .post-item img {
    width: 80px;
    margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
    color: var(--default-color);
    transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
    color: var(--accent-color);
}

.recent-posts-widget .post-item time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget ul li {
    padding-bottom: 10px;
}

.categories-widget ul li:last-child {
    padding-bottom: 0;
}

.categories-widget ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.categories-widget ul a:hover {
    color: var(--accent-color);
}

.categories-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.tags-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-widget ul li {
    display: inline-block;
}

.tags-widget ul a {
    background-color: color-mix(in srgb, var(--default-color), transparent 94%);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    border-radius: 50px;
    font-size: 14px;
    padding: 5px 15px;
    margin: 0 6px 8px 0;
    display: inline-block;
    transition: 0.3s;
}

.tags-widget ul a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.tags-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 14px;
}

/* Target dropdown menu yang terhubung ke tombol #dropdownUser */
.dropdown-menu[aria-labelledby="dropdownUser"] {
    border-radius: 0.5rem; /* Sudut lebih melengkung */
    border: 1px solid #e9ecef; /* Border halus */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); /* Shadow lebih halus */
}

/* Target item di dalam dropdown profil */
.dropdown-menu[aria-labelledby="dropdownUser"] .dropdown-item {
    padding: 0.5rem 1rem; /* Sesuaikan padding */
    color: #495057; /* Warna teks agak abu */
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out; /* Transisi halus */
}

/* HILANGKAN EFEK BIRU SAAT FOKUS/KLIK */
.dropdown-menu[aria-labelledby="dropdownUser"] .dropdown-item:focus,
.dropdown-menu[aria-labelledby="dropdownUser"] .dropdown-item:active {
    background-color: #f8f9fa;
    color: #212529; /* Warna teks jadi hitam */
    outline: none; /* Hilangkan outline default */
    box-shadow: none; /* Hilangkan shadow default */
}

/* EFEK HOVER YANG LEBIH HALUS */
.dropdown-menu[aria-labelledby="dropdownUser"] .dropdown-item:hover {
    background-color: #f8f9fa; /* Background abu muda */
    color: #212529; /* Warna teks hitam */
}

/* Styling KHUSUS untuk tombol Logout di dalam form */
.dropdown-menu[aria-labelledby="dropdownUser"] form button.dropdown-item {
    background: none; /* Hapus background default tombol */
    border: none; /* Hapus border default tombol */
    padding: 0.5rem 1rem; /* Samakan padding */
    width: 100%; /* Lebar penuh */
    text-align: left; /* Teks rata kiri */
    color: #495057; /* Warna teks awal */
    cursor: pointer; /* Tanda bisa diklik */
}

/* Efek hover untuk tombol logout */
.dropdown-menu[aria-labelledby="dropdownUser"] form button.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #212529;
}

/* Efek fokus/klik untuk tombol logout (samakan dengan hover) */
.dropdown-menu[aria-labelledby="dropdownUser"] form button.dropdown-item:focus,
.dropdown-menu[aria-labelledby="dropdownUser"]
    form
    button.dropdown-item:active {
    background-color: #f8f9fa;
    color: #212529;
    outline: none;
    box-shadow: none;
}

.portfolio-details-slider {
    padding: 10px; /* Kasih padding 10px di semua sisi */
    margin: -10px; /* Tarik lagi posisinya biar layout nggak rusak */
}

/* 2. Terapkan shadow & radius ke SLIDE-nya */
.portfolio-details-slider .swiper-slide {
    /* Aturan rasio & overflow (biarkan seperti sebelumnya) */
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #f0f0f0;

    /* === INI YANG BARU === */
    border-radius: 8px; /* Sudut melengkung */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08); /* Bayangan halus yang lebih bagus */
}

/* 3. Pastikan gambar di dalamnya juga ikut melengkung */
.portfolio-details-slider .swiper-slide img {
    /* Aturan object-fit (biarkan seperti sebelumnya) */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    /* === INI YANG BARU === */
    border-radius: 8px; /* Samakan dengan parent-nya */
}

/* ======================================================
   SECTION ABOUT & WHY US (FAQ)
   ====================================================== */

/* ------ Judul Section ------ */
.section-title p.sub-title {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.about .about-content {
    padding-right: 1rem; /* Jaga jarak */
}
.about .about-content p.fst-italic {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
}

/* ------ Bagian Tentang Kami (V2) ------ */
/* Poin keunggulan <ul> */
.about .about-features {
    margin-top: 30px;
}
.about .about-features .feature-item {
    margin-bottom: 20px;
}
.about .about-features .feature-item i {
    font-size: 28px;
    color: var(--accent-color);
    margin-right: 15px;
    flex-shrink: 0;
    line-height: 1;
}
.about .about-features .feature-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
}
.about .about-features .feature-item p {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 0;
}

.about .about-image-container {
    display: grid;
    place-items: center;
    position: relative;
    min-height: 450px;
    overflow: visible;
}

.about .about-image-container .about-main-image {
    grid-area: 1 / 1;
    z-index: 2;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #fff;
}

.about .about-image-container:hover .about-main-image {
    transform: scale(1.03);
}

.about .about-image-container .about-image-blob {
    grid-area: 1 / 1; /* KUNCI 2: Taruh di sel 1/1 (numpuk sama gambar) */
    z-index: 1; /* Lapisan belakang */
    content: "";
    display: block;
    width: 100%;
    height: 90%;
    background: linear-gradient(
        45deg,
        var(--surface-color),
        var(--nav-hover-color)
    );
    opacity: 0.5;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(
        -15deg
    ); /* Posisikan di tengah & putar dikit (nggak perlu translate) */
    animation: blobMorph 10s ease-in-out infinite alternate;
}

@keyframes blobMorph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* 1. Reset <li> container-nya (biarin) */
.mobile-nav-active .navmenu ul .nav-button-container {
    padding: 0;
    margin: 10px 15px 15px 15px;
}
.mobile-nav-active .navmenu .nav-button-container > a {
    padding: 0;
    background: none !important;
}
.mobile-nav-active .navmenu .nav-button-container > a:hover {
    background: none !important;
    color: inherit;
}
/* 2. Style dasar tombol (KUNCI PERBAIKAN JARAK) */
.mobile-nav-active .navmenu .nav-logout-button,
.mobile-nav-active .navmenu .nav-login-button {
    display: flex !important;
    justify-content: center !important; /* <-- PAKSA RATA KIRI (BIAR TENGAH) */
    align-items: center !important;
    width: 80%;
    max-width: 150px;
    padding: 10px 15px !important;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 600;
}

/* 3. Style TEKS (span) (KUNCI BIAR KELIHATAN) */
.mobile-nav-active .navmenu .nav-login-button span,
.mobile-nav-active .navmenu .nav-logout-button span {
    font-size: 14px;
    font-weight: 600;
    /* Hapus flex-grow biar nempel */
}

/* 4. Style Tombol Masuk (Biru) */
.mobile-nav-active .navmenu .nav-login-button {
    background: var(--accent-color, #0d6efd) !important;
    border: 1px solid var(--accent-color, #0d6efd);
}
.mobile-nav-active .navmenu .nav-login-button span,
.mobile-nav-active .navmenu .nav-login-button i {
    color: #fff !important; /* Paksa warna putih */
}
.mobile-nav-active .navmenu .nav-login-button:hover {
    background: color-mix(
        in srgb,
        var(--accent-color, #0d6efd),
        #000 10%
    ) !important;
}

/* 5. Style Tombol Logout (DESAIN BARU: ABU-ABU) */
.mobile-nav-active .navmenu .nav-logout-button {
    background: transparent !important;
    border: 1px solid #ddd; /* Border abu-abu muda */
}
.mobile-nav-active .navmenu .nav-logout-button span,
.mobile-nav-active .navmenu .nav-logout-button i {
    color: #555 !important; /* Warna teks abu tua (bukan merah) */
}
/* HOVER: Hanya ubah background, teks tetap */
.mobile-nav-active .navmenu .nav-logout-button:hover {
    background: #f8f8f8 !important; /* Background abu-abu sangat muda */
    color: #222 !important; /* Teks jadi lebih gelap dikit pas hover */
}
/* Pastikan warna ikon & teks ikut berubah pas hover */
.mobile-nav-active .navmenu .nav-logout-button:hover span,
.mobile-nav-active .navmenu .nav-logout-button:hover i {
    color: #222 !important;
}

/* 6. Atur Ikon-nya (KUNCI JARAK NEMPEL) */
.mobile-nav-active .navmenu .nav-logout-button i,
.mobile-nav-active .navmenu .nav-login-button i {
    margin-left: 10px !important; /* Jarak 10px dari teks */
    font-size: 1rem;
}

body.mobile-nav-active .navmenu .nav-button-container > a.nav-login-button {
    background: var(--accent-color, #0d6efd) !important;
    border: 1px solid var(--accent-color, #0d6efd) !important;
    color: #fff !important;
}

@media (max-width: 991.98px) {
    /* 1. Perbaikan Hero Section */
    .hero {
        /* Hapus tinggi paksa, biarkan konten yg ngatur */
        height: auto;
        min-height: auto;

        /* Kasih padding yang pas buat HP */
        padding: 80px 0 40px 0;

        /* Bikin teks rata tengah di HP */
        text-align: center;
    }

    .header {
        margin-bottom: 100px;
    }

    /* 2. Perbaikan Call-to-Action Section */
    .call-to-action {
        /* Hapus tinggi paksa, biarkan konten yg ngatur */
        height: auto;
        min-height: auto;

        /* Padding standar section di HP */
        padding: 60px 0;
    }

    /* 3. Perbaikan Background Image (PENTING) */
    /* Hentikan efek parallax 'fixed' di HP (boros & bikin aneh) */
    .call-to-action img {
        position: absolute; /* Ganti dari 'fixed' jadi 'absolute' */
        height: 100%; /* Cover 100% section-nya aja */
    }

    /* 4. Perbaikan Teks CTA di HP */
    .call-to-action .col-lg-6 {
        text-align: center; /* Bikin teks rata tengah */
    }

    /* 5. Perbaikan Posisi Panah Slider Coverflow di HP */
    /* Biar nggak terlalu ke tengah */
    #call-to-action .swiper-button-prev {
        left: 10px;
    }
    #call-to-action .swiper-button-next {
        right: 10px;
    }
}

/* ============================
   CTA BUTTONS
============================ */
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Tombol Biru (Primary) */
.btn-hero-primary {
    background: #0e4170;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px; /* SAMA dengan button Masuk */
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-hero-primary:hover {
    background: #0b3256;
    color: #fff;
}

/* Tombol Outline WhatsApp */
.btn-hero-outline {
    border: 2px solid #25d366;
    color: #25d366;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.btn-hero-outline:hover {
    background: #25d366;
    color: #fff;
}

@media (max-width: 575.98px) {
    body, html {
        overflow-x: hidden;
    }
    
    .hero {
        overflow: hidden;
    }

    .container-boxed {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
    }

    .hero-cta {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px;
        justify-content: center !important;
        width: 100%;
        margin-top: 15px;
    }

    .hero-cta .btn-cta a {
        flex: 1 !important;
        text-align: center !important;
        padding: 12px 0 !important;
        border-radius: 50px !important;
    }

    #hero .search-bar {
        display: none !important;
    }

    #hero h1 {
        text-align: center;
        font-size: 24px !important; /* Turunin dikit biar ga lebar */
        line-height: 1.3 !important;
        word-wrap: break-word;
    }
    #hero p {
        text-align: center;
    }
    .trust-indicators {
        width: auto !important;
        flex: 1 1 30% !important; 
        min-width: 80px;
        justify-content: center !important;
        margin-top: 20px !important;
    }

    .mobile-search-trigger {
        font-size: 20px;
        margin-left: 10px;
        cursor: pointer;
        color: #0e4170;
    }

    /* Search Panel */
    .mobile-search-panel {
        position: absolute;
        left: 0;
        right: 0;
        top: 60px; /* tepat di bawah navbar */
        background: transparent;
        padding: 15px 20px;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: all 0.35s ease;
        z-index: 999;
    }

    /* Saat terbuka */
    .mobile-search-panel.show {
        max-height: 200px;
        opacity: 1;
    }

    .mobile-search-panel input {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .mobile-search-panel input:focus {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    /* Search bar content */
    .search-slide-inner {
        background: white;
        border-radius: 50px;
        padding: 10px 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .search-slide-inner input {
        border: none;
        outline: none;
        flex: 1;
        font-size: 15px;
    }

    .search-slide-inner button {
        border: none;
        background: none;
        font-size: 20px;
        color: #0e4170;
        cursor: pointer;
    }
}

/* =====================================
   MOBILE SEARCH ICON IN NAVBAR
===================================== */
.mobile-search-trigger {
    font-size: 20px;
    color: #0e4170;
    margin-left: 12px;
    cursor: pointer;
}

/* =====================================
   MOBILE SEARCH PANEL (HIDDEN BY DEFAULT)
===================================== */
.mobile-search-panel {
    width: 100%;
    background: transparent;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: none; /* hidden */
    position: relative;
    z-index: 999;
}

.mobile-search-panel .search-inner {
    display: flex;
    background: #fff;
    border: 1px solid #0e4170;
    border-radius: 50px;
    align-items: center;
    padding: 8px 18px;
}

.mobile-search-panel input {
    border: none;
    outline: none;
    flex: 1;
}

.mobile-search-panel button {
    border: none;
    background: none;
    font-size: 20px;
    color: #0e4170;
}

/* Smooth slide animation */
.mobile-search-panel.show {
    display: block;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.call-to-action .swiper {
    padding-bottom: 30px !important;
}

/* ====== MOBILE + TABLET 0–1024px ====== */
@media (max-width: 1024px) {
    /* HERO STRUCTURE */
    #hero .row {
        flex-direction: column;
        text-align: center;
    }

    #hero h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    #hero p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    #hero .search-bar {
        display: none !important;
    }

    /* CTA BUTTONS → FULL MOBILE STYLE */
    .hero-cta {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px;
        justify-content: center !important;
        width: 100%;
        margin-top: 15px;
    }

    .hero-cta a {
        padding: 10px 20px;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .mobile-search-trigger {
        font-size: 20px;
        margin-left: 10px;
        cursor: pointer;
        color: #0e4170;
    }

    /* Search Panel */
    .mobile-search-panel {
        position: absolute;
        left: 0;
        right: 0;
        top: 60px; /* tepat di bawah navbar */
        background: transparent;
        padding: 15px 20px;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: all 0.35s ease;
        z-index: 999;
    }

    /* Saat terbuka */
    .mobile-search-panel.show {
        max-height: 200px;
        opacity: 1;
    }

    .mobile-search-panel input {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .mobile-search-panel input:focus {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    /* Search bar content */
    .search-slide-inner {
        background: white;
        border-radius: 50px;
        padding: 10px 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .search-slide-inner input {
        border: none;
        outline: none;
        flex: 1;
        font-size: 15px;
    }

    .search-slide-inner button {
        border: none;
        background: none;
        font-size: 20px;
        color: #0e4170;
        cursor: pointer;
    }

    /* TRUST INDICATORS - 3 kolom rapi */
    .trust-indicators {
        gap: 15px !important;
        padding: 0 20px;
    }

    .trust-indicators .indicator {
        width: 35%;
        justify-content: space-between !important;
        min-width: unset;
    }

    .trust-indicators .title {
        font-size: 13px;
    }

    .trust-indicators .subtitle {
        font-size: 12px;
        white-space: nowrap;
    }

    /* CALL TO ACTION SECTION (SWIPER) MOBILE/TABLET FIX */
    .call-to-action .swiper {
        width: 90%;
        margin: 0 auto;
        padding-bottom: 30px !important;
    }

    .swiper-pagination {
        bottom: 5px !important;
    }
}

/* ====== DESKTOP 1025px+ — PAKAI DESKTOP VERSION NORMAL ====== */
@media (min-width: 1025px) {
    /* Desktop maintain default layout */
    #hero .row {
        flex-direction: row;
        text-align: left;
    }

    .search-bar {
        max-width: 550px;
        margin-left: 0;
    }

    .hero-cta {
        justify-content: flex-start;
    }

    .trust-indicators {
        justify-content: flex-start;
        gap: 40px;
    }
}

@media (min-width: 574px) and (max-width: 1024px) {
    .trust-indicators {
        gap: 40px !important; /* lebih longgar */
        padding: 0 40px; /* tambah padding samping */
        margin-top: 15px;
    }

    .trust-indicators .indicator {
        width: auto; /* jangan fixed biar fleksibel */
        min-width: 120px; /* biar ga kekecilan */
        text-align: center;
    }

    .trust-indicators .icon-wrapper i {
        font-size: 30px; /* icon sedikit lebih besar */
    }

    .trust-indicators .title {
        font-size: 15px;
    }

    .trust-indicators .subtitle {
        font-size: 13px;
        white-space: nowrap;
    }
}

/* ======================================================
   PERBAIKAN RESPONSIVE: GOOGLE MAPS IFRAME
   ====================================================== */

/* 1. Bikin 'div' pembungkusnya jadi "bingkai" */
.gmaps-responsive-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Rasio aspek 4:3 (ketinggian 75% dari lebar) */
    /* Kalau mau rasio 16:9, ganti jadi 56.25% */
    height: 0;
    overflow: hidden;
    margin-top: 15px; /* Kasih jarak dari info kontak di atasnya */
}

/* 2. "Paksa" iframe di dalamnya buat ngisi bingkai */
.gmaps-responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important; /* <-- 'Maksa' lebar jadi 100% */
    height: 100% !important; /* <-- 'Maksa' tinggi jadi 100% */
    border: 0;
}

[data-aos] {
    /* Pastikan elemen beneran sembunyi sebelum animasi jalan */
    pointer-events: none;
}
[data-aos].aos-animate {
    /* Aktifkan lagi pas animasi jalan */
    pointer-events: auto;
}

[data-aos] {
    /* Gunakan GPU biar smooth */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;

    /* Paksa transisi lebih halus */
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.footer .consultation-box h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.footer .consultation-box p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 25px;
    font-size: 16px;
}

/* Tombol Konsultasi yang Stand Out */
.footer .btn-consultation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(14, 65, 112, 0.2); /* Sesuaikan warna bayangan */
    text-decoration: none;
}

.footer .btn-consultation:hover {
    transform: translateY(-3px); /* Efek naik dikit pas hover */
    box-shadow: 0 8px 20px rgba(14, 65, 112, 0.3);
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Why Us Section (FAQ) – versi Arsha disesuaikan
--------------------------------------------------------------*/

.why-us {
    padding: 30px 0;
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.why-us .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Card FAQ */
.why-us .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.why-us .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

/* Judul FAQ */
.why-us .faq-container .faq-item h3 {
    font-weight: 500;
    font-size: 17px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.why-us .faq-container .faq-item h3 span {
    /* nomor / teks utama */
    color: var(--accent-color);
    font-weight: 600;
}

.why-us .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

/* ===== ANIMASI CONTENT (GRID TRICK) ===== */
.why-us .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr; /* tertutup */
    transition: grid-template-rows 0.35s ease, opacity 0.3s ease,
        padding-top 0.35s ease;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* supaya isi di dalam nggak “gepeng” pas 0fr */
.why-us .faq-container .faq-item .faq-content > div {
    overflow: hidden;
    min-height: 0;
}

/* paragraf / list di dalam */
.why-us .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
}

/* STATE AKTIF (KEBuka) */
.why-us .faq-container .faq-item.faq-active .faq-content {
    grid-template-rows: 1fr; /* kebuka mulus */
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 5px;
}

/* Icon toggle (chevron) */
.why-us .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.why-us .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

/* warna judul & rotasi icon saat aktif */
.why-us .faq-container .faq-item.faq-active h3 {
    color: var(--accent-color);
}

.why-us .faq-container .faq-item.faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/* Gambar kanan tetap sama */
.why-us .why-us-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us .why-us-img img {
    max-height: 70%;
}

/* ===== CUSTOM BULLET FAQ LIST (BALIKIN YANG HILANG) ===== */

.why-us .faq-list {
    list-style: none; /* Hilangin bullet default */
    padding-left: 25px; /* Jarak dari kiri biar nggak kepotong */
    margin-top: 15px;
    margin-bottom: 0;
}

.why-us .faq-list li {
    position: relative;
    padding-left: 14px; /* Jarak teks dari icon */
    margin-bottom: 8px;
}

/* Icon bullet pakai Bootstrap Icons */
.why-us .faq-list li::before {
    content: "\F26A"; /* contoh: check-circle (bi-check-circle / bi-check2) */
    font-family: "bootstrap-icons";
    position: absolute;
    left: -18px; /* Geser ke kiri dikit */
    top: 2px;
    color: var(--accent-color);
    font-size: 16px;
}

/* Card lupa password biar ada napas */
#forgot-password .card-body {
    padding: 2.75rem 2.75rem;
}

@media (max-width: 576px) {
    #forgot-password .card-body {
        padding: 2rem 1.5rem;
    }
}

/* Input group custom dengan border 1 garis halus */
#forgot-password .hc-input-group {
    border: 1px solid #d3d9e5;
    border-radius: 12px;
    background-color: #ffffff;
    overflow: hidden; /* radius rapi */
}

/* Icon di kiri */
#forgot-password .hc-input-group .input-group-text {
    border: none;
    background-color: transparent;
    color: #6c7a8c;
    padding: 0 14px;
    font-size: 1rem;
}

/* Field input */
#forgot-password .hc-input-group .form-control {
    border: none;
    box-shadow: none;
    padding: 12px 16px; /* ini bikin teks nggak mepet */
    font-size: 0.95rem;
}

/* Fokus: kasih glow lembut, bukan border biru default */
#forgot-password .hc-input-group .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(23, 66, 114, 0.18);
}

/* Saat error (Laravel is-invalid) tetap pakai border merah luar */
#forgot-password .hc-input-group .form-control.is-invalid {
    box-shadow: none;
}

#forgot-password .hc-input-group .form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

.btn-hero-animated {
    padding: 14px 36px;
    border-radius: 999px;
    background: var(--accent-color);
    color: #fff;
    font-weight: 700;
    transition: all 0.3s ease;
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0% {
        box-shadow: 0 0 0 0 rgba(23, 66, 114, 0.4);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(23, 66, 114, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(23, 66, 114, 0);
    }
}

.btn-hero-animated:hover {
    transform: translateY(-2px);
    background: var(--nav-hover-color);
}

@media (max-width: 991px) {
    .hero,
    .call-to-action {
        height: auto !important;
        min-height: auto !important;
    }
}

@media (max-width: 768px) {
    .container-boxed {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 991px) {
    .cta-container {
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 576px) {
    .cta-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .call-to-action h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .call-to-action .cta-btn {
        width: 100%;
        text-align: center;
    }
}
