/**
* Beinsoft - Main CSS
* Web Agency Stylesheet
*/

/* =================================================================
   # VARIABLES & COLORS
   ================================================================= */
:root {
    --default-font: "Poppins", sans-serif;
    --heading-font: "Poppins", sans-serif;
    --nav-font: "Poppins", sans-serif;

    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #37517e;
    --accent-color: #47b2e4;
    --surface-color: #ffffff;
    --section-alt-color: #f4f8ff;
    --contrast-color: #ffffff;
    --bein-blue: #0061f2;
    --bein-green: #00cfd5;
    --bein-text: #2c3e50;

    --nav-color: #ffffff;
    --nav-hover-color: #0096a0;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #444444;
    --nav-dropdown-hover-color: #47b2e4;

    scroll-behavior: smooth;
}

.light-background {
    --background-color: #f5f6f8;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #ffffff;
    --default-color: #1a2e5a;
    --heading-color: #0d47a1;
    --surface-color: #e6f0fa;
    --contrast-color: #003366;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

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);
}

/* 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: #1a3a52;
    --heading-color: #ffffff;
    color: var(--default-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: all 0.2s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
    background: transparent;
    padding: 10px 5px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
}

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

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: #ffffff;
    background: linear-gradient(-45deg, #5eb3d6, #00d4ff, #00c9a7, #5eb3d6);
    background-size: 300% 300%;
    animation: colorShift 8s ease infinite;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 28px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: #ffffff;
}

@keyframes colorShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@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: rgb(255, 2, 2);
  --heading-color: #ffffff;
  --nav-color: #ffffff;
} */

/* Index Page Header on Scroll  
------------------------------*/
.index-page.scrolled .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/*--------------------------------------------------------------
# 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: #1a3a52;
        padding: 18px 15px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: all 0.4s ease;
        border-bottom: 2px solid transparent;
        position: relative;
    }

    .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: #0088aa;
        border-bottom-color: #0088aa;
        text-shadow: 0 0 8px rgba(0, 136, 170, 0.4);
        padding-bottom: 16px;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: linear-gradient(135deg, #1a3a52 0%, #2d5a80 100%);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.2s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(26, 58, 82, 0.3);
    }

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

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: #ffffff;
    }

    .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: linear-gradient(135deg, #1a3a52 0%, #2d5a80 100%);
        box-shadow: 0px 0px 20px rgba(26, 58, 82, 0.3);
        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: #ffffff;
    }

    .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: #ffffff;
        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: linear-gradient(135deg, #1a3a52 0%, #2d5a80 100%);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(26, 58, 82, 0.3);
    }

    .navmenu a,
    .navmenu a:focus {
        color: #ffffff;
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 600;
        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: linear-gradient(135deg, #0d1f2d 0%, #1a3a52 100%);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: none;
        transition: all 0.25s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(13, 31, 45, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(255, 255, 255, 0.05);
    }

    .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: linear-gradient(
            135deg,
            rgba(240, 247, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.95) 100%
        );
        transition: 0.3s;
    }

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

/*--------------------------------------------------------------
# Global Footer - Beinsoft Refined Version
--------------------------------------------------------------*/
.footer {
    color: rgba(255, 255, 255, 0.7);
    background-color: #071120; /* Deep Navy agar terlihat premium */
    font-size: 14px;
    padding-bottom: 0;
    position: relative;
    font-family: "Inter", sans-serif;
}

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

/* Memastikan Grid tidak tumpang tindih */
.footer .row {
    display: flex;
    flex-wrap: wrap;
}

/* Styling Judul Section Footer */
.footer h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #4154ff; /* Accent Blue */
}

/* Link Navigasi */
.footer .footer-links {
    margin-bottom: 30px;
}

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

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

.footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
}

.footer .footer-links ul a:hover {
    color: #4154ff;
    padding-left: 8px; /* Efek interaktif halus */
}

/* Social Media Icons */
.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    font-size: 18px;
    color: #fff;
    margin-right: 12px;
    transition: 0.3s;
    border: none; /* Buang border kaku lama */
}

.footer .social-links a:hover {
    background: #4154ff;
    color: #fff;
    transform: translateY(-5px);
}

/* About & Contact Section */
.footer .footer-about .logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer .footer-contact p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer .footer-contact i {
    color: #ffffff;
    font-size: 18px;
    margin-right: 10px;
}

/* Tombol WA di Footer agar interaktif */
.btn-footer-wa {
    background: #4154ff;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 10px;
    text-decoration: none;
}

.btn-footer-wa:hover {
    background: #4154ff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(65, 84, 255, 0.3);
}

/* Copyright Section */
.footer .copyright {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer .copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* Newsletter (Optional, jika ingin dipakai nanti) */
.footer .footer-newsletter .newsletter-form {
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    display: flex;
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
    border: 0;
    padding: 8px 15px;
    width: 100%;
    border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
    border: 0;
    background: #4154ff;
    color: #fff;
    padding: 0 25px;
    border-radius: 50px;
    transition: 0.3s;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.3s 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 1s 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.2s;
}

.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;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    min-height: 100vh;
    height: auto;
    padding: 40px 0;
    background: linear-gradient(135deg, #eaf4ff 0%, #ffffff 48%, #e3f3ff 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--heading-color);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--bein-blue);
    position: relative;
}

.hero h1 span::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bein-blue), var(--bein-green));
    border-radius: 2px;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero .btn-get-started {
    background: linear-gradient(135deg, #0061f2 0%, #0096ff 45%, #00cfd5 100%);
    color: #ffffff;
    border: 2px solid transparent;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
    display: inline-block;
    margin-right: 15px;
    box-shadow: 0 12px 20px rgba(0, 97, 242, 0.12);
}

.hero .btn-get-started:hover {
    background: linear-gradient(135deg, #0048c1 0%, #007ee0 50%, #00cfc0 100%);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0, 97, 242, 0.24);
}

.hero .btn-getstarted {
    background: transparent;
    color: var(--bein-blue);
    border: 2px solid var(--bein-blue);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.hero .btn-getstarted::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 97, 242, 0.1),
        transparent
    );
    transition: left 0.5s;
}

.hero .btn-getstarted:hover {
    background: var(--bein-blue);
    color: #ffffff;
    border-color: var(--bein-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 97, 242, 0.3);
}

.hero .btn-getstarted:hover::before {
    left: 100%;
}

.hero .container {
    padding: 40px 0;
}

/* Container Utama */
.hero-mockup-container {
    position: relative;
    perspective: 1200px; /* Efek perspektif yang lebih kuat untuk 3D */
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
}

/* 1. Jendela Browser (CSS Only) */
.browser-window {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    width: 90%;
    max-width: 500px;
    transform: rotateY(-10deg) rotateX(5deg); /* Miring agar seperti desain sebelumnya */
    border: 1px solid rgba(220, 230, 240, 0.5);
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
    transform-style: preserve-3d;
    box-shadow: 0 10px 40px rgba(0, 97, 242, 0.05);
}

.browser-window:hover {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 97, 242, 0.1);
}

/* Header Browser */
.browser-header {
    background: linear-gradient(135deg, #f4f9ff 0%, #eef6ff 100%);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 97, 242, 0.12);
}

.dots span {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-right: 6px;
    background: #0061f2;
}
.dots span:nth-child(2) {
    background: #00cfd5;
}
.dots span:nth-child(3) {
    background: #47b2e4;
}

.search-bar {
    background: #ffffff;
    flex-grow: 1;
    font-size: 11px;
    padding: 5px 15px;
    border-radius: 20px;
    color: #6b7f99;
    border: 1px solid rgba(0, 97, 242, 0.15);
    text-align: center;
}

/* Konten Dashboard (Skeleton) */
.browser-content {
    padding: 25px;
    gap: 20px;
}
.skeleton-title {
    height: 12px;
    width: 60%;
    background: #e3e9f0;
    border-radius: 6px;
    margin-bottom: 25px;
}
.skeleton-chart {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}
.skeleton-chart span {
    height: 60px;
    flex: 1;
    background: #f0f4f8;
    border-radius: 8px;
}
.skeleton-chart span:nth-child(2) {
    background: #e3e9f0;
    height: 80px;
    align-self: flex-end;
}
.skeleton-lines span {
    display: block;
    height: 8px;
    background: #f0f4f8;
    margin-bottom: 10px;
    border-radius: 4px;
    width: 100%;
}

/* 2. Kartu Melayang (Floating Cards - Glassmorphism) */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8); /* Warna dasar transparan */
    backdrop-filter: blur(8px); /* Efek kaca buram di belakang kartu */
    padding: 20px;
    border-radius: 18px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.6); /* Border putih tipis agar efek kaca menonjol */
    box-shadow: 0 8px 32px rgba(0, 97, 242, 0.05); /* Shadow tipis */
    animation: floatAnim 4s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    cursor: pointer;
}

.float-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 60px rgba(0, 97, 242, 0.15);
    transform: translateY(-8px) rotateX(5deg) rotateY(-5deg) scale(1.05);
    animation-play-state: paused;
}

.float-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 40px rgba(0, 97, 242, 0.15);
}

/* Kartu Performance */
.performance-card {
    top: 12%;
    left: 0;
    width: 170px;
    transform: rotateY(10deg);
    border-left: 5px solid #00cfd5; /* Ambil aksen hijau toska dari desain Anda */
}

/* Kartu Status Secured */
.status-card {
    bottom: 18%;
    right: 0;
    background: #0061f2;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transform: rotateY(5deg);
    animation-delay: 1s; /* Variasi animasi melayang */
    backdrop-filter: blur(2px);
    border: 1px solid rgba(0, 97, 242, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-card:hover {
    background: #0061f2; /* Tetap biru */
    color: white; /* Font tetap putih */
}

/* Elemen di Dalam Kartu (Sesuai image_10.png) */
.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.mini-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}
.blue-icon {
    background: linear-gradient(135deg, #0061f2, #00cfd5);
}
.green-icon {
    background: linear-gradient(135deg, #00cfd5, #27c93f);
}

.card-label {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
}
.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 50px;
    margin: 15px 0;
}
.bar {
    flex: 1;
    background: #00cfd5;
    border-radius: 3px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}
.value {
    font-size: 16px;
    font-weight: 800;
}
.arrow {
    color: #ccc;
    font-size: 12px;
}

/* Animasi Floating */
@keyframes floatAnim {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsif Mobile */
@media (max-width: 992px) {
    .hero .container {
        padding: 30px 0;
    }
    .hero-mockup-container {
        padding: 30px 0;
    }
    .browser-window {
        max-width: 90%;
        transform: none;
        width: 100%;
        margin: 0 auto;
    }
    .float-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin: 10px auto;
        transform: none;
        animation: none;
        max-width: 300px;
    }
    .browser-content {
        height: 180px;
    }
}

@media (max-width: 1200px) {
    .performance-card {
        top: 10%;
        left: 2%;
        width: 160px;
    }

    .status-card {
        bottom: 16%;
        right: 1%;
        transform: none;
    }
}

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

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

    .hero .btn-get-started,
    .hero .btn-getstarted {
        font-size: 14px;
        padding: 8px 24px 10px 24px;
    }
}

/*--------------------------------------------------------------
# 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;
    transition: background-color 0.35s ease;
}

section:nth-of-type(even),
.section:nth-of-type(even),
.section.section-alt {
    background-color: var(--section-alt-color);
}

@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;
}

/* Animasi Melayang untuk Hero Section */
@keyframes float-badge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes float-badge-alt {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

.main-browser-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.03) !important;
    box-shadow: 0 30px 80px rgba(0, 97, 242, 0.15);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 12px 0;
}

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

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

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

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

#clients img:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.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.2s;
    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.2s;
}

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

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

.about .section-title h2 {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--bein-blue), var(--bein-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--bein-text);
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.highlight-text {
    color: var(--bein-blue);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 207, 213, 0.2);
    z-index: -1;
}

.custom-card {
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.custom-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 97, 242, 0.15);
    border-color: var(--bein-green);
}

.custom-card::before {
    content: "→";
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 80px;
    color: rgba(0, 207, 213, 0.05);
    font-weight: 900;
    transition: 0.4s;
}

.custom-card:hover::before {
    color: rgba(0, 207, 213, 0.15);
    right: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bein-blue), var(--bein-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 15px rgba(0, 207, 213, 0.3);
}

.custom-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--bein-blue);
}

.custom-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
    padding: 30px 0;
}

.why-us .section-title h3 {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--bein-blue), var(--bein-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
}

.why-us .content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--bein-text);
}

.why-us .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--bein-text);
    margin-bottom: 30px;
}

.why-us .faq-container {
    margin-top: 30px;
}

.tech-stack-layers {
    position: relative;
    perspective: 1100px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-card {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 320px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 30px 70px rgba(0, 97, 242, 0.14);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease;
    transform-style: preserve-3d;
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.04) rotateY(-15deg) rotateX(10deg);
    box-shadow: 0 32px 90px rgba(0, 97, 242, 0.22);
    z-index: 10;
}

.tech-card-top {
    top: 0;
    transform: translateY(-72px) rotateY(-15deg) rotateX(10deg);
    animation: floatLayerTop 6s ease-in-out infinite;
    z-index: 3;
}

.tech-card-middle {
    top: 120px;
    transform: translateY(0px) rotateY(-15deg) rotateX(10deg);
    animation: floatLayerMid 7s ease-in-out infinite;
    z-index: 2;
}

.tech-card-bottom {
    top: 240px;
    transform: translateY(72px) rotateY(-15deg) rotateX(10deg);
    animation: floatLayerBottom 8s ease-in-out infinite;
    z-index: 1;
}

.card-header-stack {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.stack-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    font-size: 1.2rem;
}

.performance-icon {
    background: linear-gradient(135deg, #0061f2 0%, #00cfd5 100%);
}

.code-icon {
    background: linear-gradient(
        135deg,
        rgba(0, 97, 242, 0.9),
        rgba(0, 207, 213, 0.7)
    );
}

.security-icon {
    background: linear-gradient(135deg, #0061f2 0%, #0048c1 100%);
}

.stack-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #16304a;
}

.card-header-stack p {
    margin: 0;
    font-size: 0.82rem;
    color: #0061f2;
    opacity: 0.9;
}

.stack-bars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: end;
    height: 90px;
}

.stack-bars .bar {
    border-radius: 999px;
    background: linear-gradient(180deg, #00cfd5 0%, #0061f2 100%);
    transition: transform 0.3s ease;
}

.bar-1 {
    height: 38%;
}
.bar-2 {
    height: 62%;
}
.bar-3 {
    height: 78%;
}
.bar-4 {
    height: 92%;
}

.stack-code {
    margin: 0;
    background: rgba(0, 97, 242, 0.05);
    border: 1px solid rgba(0, 97, 242, 0.1);
    border-radius: 14px;
    padding: 16px;
    color: #0f2a51;
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
    font-size: 0.82rem;
    line-height: 1.5;
}

.stack-code .code-highlight {
    color: #0061f2;
    font-weight: 700;
}

.security-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(0, 97, 242, 0.08);
    color: #0f3e8d;
    font-weight: 600;
    border: 1px solid rgba(0, 97, 242, 0.14);
}

.security-chip i {
    font-size: 1.1rem;
    color: #0061f2;
}

@keyframes floatLayerTop {
    0%,
    100% {
        transform: translateY(-72px) rotateY(-15deg) rotateX(10deg);
    }
    50% {
        transform: translateY(-82px) rotateY(-15deg) rotateX(10deg);
    }
}

@keyframes floatLayerMid {
    0%,
    100% {
        transform: translateY(0px) rotateY(-15deg) rotateX(10deg);
    }
    50% {
        transform: translateY(-10px) rotateY(-15deg) rotateX(10deg);
    }
}

@keyframes floatLayerBottom {
    0%,
    100% {
        transform: translateY(72px) rotateY(-15deg) rotateX(10deg);
    }
    50% {
        transform: translateY(62px) rotateY(-15deg) rotateX(10deg);
    }
}

@media (max-width: 991px) {
    .tech-stack-layers {
        min-height: auto;
        perspective: none;
        padding-top: 20px;
    }

    .tech-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none !important;
        width: 100%;
        max-width: 100%;
        margin-bottom: 24px;
        animation: none !important;
    }
}

.why-us .faq-container .faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.why-us .faq-container .faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 97, 242, 0.15);
    border-color: var(--bein-green);
}

.why-us .faq-container .faq-item.faq-active {
    background: linear-gradient(
        135deg,
        rgba(0, 97, 242, 0.05),
        rgba(0, 207, 213, 0.05)
    );
    border-color: var(--bein-blue);
}

.why-us .faq-container .faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #16304a;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
}

.why-us .faq-container .faq-item h3 span {
    background: linear-gradient(135deg, #0f4b7a, #0a7d8f);
    color: #ffffff;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    padding: 0 6px;
    margin-right: 0;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(15, 75, 122, 0.16);
}

.why-us .faq-container .faq-item .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.why-us .faq-container .faq-item .faq-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
    padding-top: 10px;
}

.why-us .faq-container .faq-item.faq-active .faq-content {
    max-height: 200px;
}

.why-us .faq-container .faq-item .faq-toggle {
    position: absolute;
    right: 30px;
    top: 25px;
    font-size: 1.2rem;
    color: var(--bein-blue);
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.why-us .faq-container .faq-item::before {
    content: "⚡";
    position: absolute;
    top: -5px;
    right: 15px;
    font-size: 50px;
    color: rgba(0, 207, 213, 0.08);
    font-weight: 900;
    transition: 0.4s;
}

.why-us .faq-container .faq-item:hover::before {
    color: rgba(0, 207, 213, 0.2);
    right: 25px;
}

.why-us .why-us-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.expertise {
    padding: 40px 0;
    background-color: #fcfdfe;
    min-height: 100vh;
}
.section-title h2 {
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 18px;
}
.section-title .highlight {
    color: #0061f2;
}
.section-title .subtitle {
    color: #0061f2;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}
.section-title .description {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
}

.expertise-card {
    background: #ffffff;
    padding: 18px;
    border-radius: 25px;
    border: 1px solid #eef2f6;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 97, 242, 0.08);
    border-color: #0061f2;
}

.card-header-expertise {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.card-header-expertise h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #2c3e50;
}

.icon-box-small {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.icon-box-small.blue {
    background: #e7f1ff;
    color: #0061f2;
}
.icon-box-small.purple {
    background: #f3e8ff;
    color: #9333ea;
}
.icon-box-small.orange {
    background: #fff7ed;
    color: #ea580c;
}
.icon-box-small.red {
    background: #fef2f2;
    color: #dc2626;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

.tech-item i {
    font-size: 40px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.tech-item span {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-item:hover {
    background: #ffffff;
    border-color: #0061f2;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 97, 242, 0.15);
}

.tech-item:hover i {
    transform: scale(1.1);
}

/* Responsive adjustments for tech grid */
@media (max-width: 768px) {
    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .expertise-card {
        padding: 30px;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.2s;
    height: 100%;
    border-radius: 20px;
}

.services .service-item .icon {
    margin-bottom: 10px;
}

.services .service-item .icon i {
    color: var(--accent-color);
    font-size: 36px;
    transition: 0.2s;
}

.services .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.services .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.2s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item:hover {
    transform: translateY(-10px);
}

.services .service-item:hover h4 a {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Work Process Section
--------------------------------------------------------------*/
.work-process .steps-item {
    background: var(--surface-color);
    border-radius: 20px;
    height: 100%;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 5px 20px
        color-mix(in srgb, var(--default-color), transparent 92%);
}

.work-process .steps-item .steps-image {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.work-process .steps-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px
        color-mix(in srgb, var(--accent-color), transparent 85%);
}

.work-process .steps-item:hover .steps-number {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.work-process .steps-item:hover .steps-image img {
    transform: scale(1.1);
}

.work-process .steps-image {
    position: relative;
    height: 280px;
}

.work-process .steps-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.work-process .steps-content {
    position: relative;
    padding: 40px 30px 30px;
}

.work-process .steps-content .steps-number {
    position: absolute;
    left: 30px;
    top: -30px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.work-process .steps-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.work-process .steps-content p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 25px;
}

.work-process .steps-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.work-process .steps-features .feature-item:last-child {
    margin-bottom: 0;
}

.work-process .steps-features .feature-item i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 10px;
}

.work-process .steps-features .feature-item span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 1199px) {
    .work-process .steps-image {
        height: 240px;
    }

    .work-process .steps-content {
        padding: 35px 25px 25px;
    }

    .work-process .steps-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .work-process .steps-item {
        margin-bottom: 30px;
    }

    .work-process .steps-image {
        height: 220px;
    }

    .work-process .steps-content {
        padding: 30px 20px 20px;
    }

    .work-process .steps-content .steps-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        left: 25px;
        top: -25px;
    }

    .work-process .steps-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .work-process .steps-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 120px 0;
    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 {
    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.2s;
    margin: 10px;
    border: 2px solid #1a3a52;
    color: #ffffff;
    background: #1a3a52;
}

.call-to-action .cta-btn:hover {
    background: #2d5a80;
    border: 2px solid #2d5a80;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(26, 58, 82, 0.3);
}

/*--------------------------------------------------------------
# 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.2s 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.25s;
    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.2s;
    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;
}

.portfolio-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-img {
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 5px;
    transition: 0.2s;
    padding: 30px;
    height: 100%;
}

@media (max-width: 468px) {
    .team .team-member {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }
}

.team .team-member .pic {
    overflow: hidden;
    width: 150px;
    border-radius: 50%;
    flex-shrink: 0;
}

.team .team-member .pic img {
    transition: ease-in-out 0.2s;
}

.team .team-member:hover {
    transform: translateY(-10px);
}

.team .team-member .member-info {
    padding-left: 30px;
}

@media (max-width: 468px) {
    .team .team-member .member-info {
        padding: 30px 0 0 0;
        text-align: center;
    }
}

.team .team-member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
}

.team .team-member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .team-member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 85%);
    bottom: 0;
    left: 0;
}

@media (max-width: 468px) {
    .team .team-member span::after {
        left: calc(50% - 25px);
    }
}

.team .team-member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .team-member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

@media (max-width: 468px) {
    .team .team-member .social {
        justify-content: center;
    }
}

.team .team-member .social a {
    background: color-mix(in srgb, var(--default-color), transparent 94%);
    transition: ease-in-out 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 36px;
    height: 36px;
}

.team .team-member .social a i {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 16px;
    margin: 0 2px;
}

.team .team-member .social a:hover {
    background: var(--accent-color);
}

.team .team-member .social a:hover i {
    color: var(--contrast-color);
}

.team .team-member .social a + a {
    margin-left: 8px;
}

/*--------------------------------------------------------------
# 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: #1a3a52;
    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.2s;
    border: 1px solid #1a3a52;
}

.pricing .buy-btn:hover {
    background: #1a3a52;
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(26, 58, 82, 0.3);
}

.pricing .featured {
    border-top-color: #1a3a52;
}

.pricing .featured .buy-btn {
    background: #1a3a52;
    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;
    }
}

/* New Pricing Card Styling (for pricing.blade.php page) */
.pricing-section {
    padding: 60px 0;
}

.pricing-card {
    border-radius: 18px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none !important;
    background: var(--surface-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.pricing-card.featured {
    transform: scale(1.03);
    border: 2px solid var(--accent-color) !important;
    background: linear-gradient(
        135deg,
        rgba(71, 178, 228, 0.02),
        rgba(255, 255, 255, 0.5)
    );
}

.pricing-card.featured:hover {
    transform: scale(1.06) translateY(-10px);
    box-shadow: 0 25px 50px rgba(71, 178, 228, 0.2) !important;
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(71, 178, 228, 0.05),
        rgba(255, 255, 255, 0.05)
    );
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 0;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card .card-body {
    position: relative;
    z-index: 2;
}

.pricing-card h5 {
    color: var(--heading-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-card h2 {
    color: var(--accent-color);
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0 5px 0;
}

.pricing-card .text-muted {
    color: var(--default-color);
    opacity: 0.7;
    font-size: 16px;
}

.pricing-card ul {
    margin: 30px 0;
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    padding: 12px 0;
    color: var(--default-color);
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    transition: all 0.2s ease;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    margin-top: 10px;
}

.pricing-card .btn-outline-primary {
    color: #1a3a52;
    border-color: #1a3a52;
}

.pricing-card .btn-outline-primary:hover {
    background: #1a3a52;
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(26, 58, 82, 0.3);
}

.pricing-card .btn-primary {
    background: #1a3a52;
    border-color: #1a3a52;
}

.pricing-card .btn-primary:hover {
    background: #2d5a80;
    border-color: #2d5a80;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(26, 58, 82, 0.3);
}

.pricing-card .btn-dark {
    background: var(--default-color);
    color: var(--contrast-color);
}

.pricing-card .btn-dark:hover {
    background: var(--heading-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.pricing-card .badge {
    background-color: var(--accent-color) !important;
    padding: 6px 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# 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%;
    }
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-container {
    margin-top: 15px;
}

.faq-2 .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

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

.faq-2 .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 32px;
    transition: 0.2s;
    cursor: pointer;
}

.faq-2 .faq-container .faq-item h3 span {
    color: var(--accent-color);
    padding-right: 5px;
}

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

.faq-2 .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.2s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq-2 .faq-container .faq-item .faq-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    font-size: 20px;
    line-height: 0;
    transition: 0.2s;
    color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.2s;
    cursor: pointer;
}

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

.faq-2 .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq-2 .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

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

/*--------------------------------------------------------------
# Subscribe Section
--------------------------------------------------------------*/
.subscribe .container {
    padding: 80px 80px 0 80px;
    background: color-mix(in srgb, var(--default-color), transparent 96%);
    border-radius: 15px;
}

@media (max-width: 992px) {
    .subscribe .container {
        padding: 60px 60px 0 60px;
    }
}

@media (max-width: 575px) {
    .subscribe .container {
        padding: 25px 15px 0 15px;
        border-radius: 0;
    }
}

.subscribe .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.subscribe .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.subscribe .cta-form .form-control {
    height: 50px;
    border-radius: 25px 0 0 25px;
    border: 1px solid var(--accent-color);
    padding-left: 20px;
}

.subscribe .cta-form .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.subscribe .cta-form .btn {
    height: 50px;
    border-radius: 0 25px 25px 0;
    background-color: #1a3a52;
    border-color: #1a3a52;
    color: var(--contrast-color);
    padding: 0 30px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.subscribe .cta-form .btn:hover {
    background-color: #2d5a80;
    border-color: #2d5a80;
}

@media (max-width: 575px) {
    .subscribe .cta-form .btn {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .subscribe .cta-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .subscribe .cta-image {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# 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.2s;
}

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

.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.2s;
    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.2s;
    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.2s 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 .info-item:hover h3,
.contact .info-item:hover p {
    color: white;
}

.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.2s;
    border-radius: 50px;
    font-weight: 600;
}

.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(71, 178, 228, 0.3);
}

/*--------------------------------------------------------------
# Button Styles - Outline Success (Footer WhatsApp Button)
--------------------------------------------------------------*/
.btn-outline-success {
    color: #198754;
    border-color: #198754;
    transition: all 0.2s ease;
    font-weight: 600;
}

.btn-outline-success:hover {
    background-color: #198754;
    border-color: #198754;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(25, 135, 84, 0.3);
    font-weight: 700;
}

.btn-outline-success:focus {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}

/*--------------------------------------------------------------
# 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);
}

/*--------------------------------------------------------------
# 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: "Poppins", sans-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;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* .starter-section {
  /* Add your styles here */
/* }  */

/*--------------------------------------------------------------
# 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;
}

/* Home1 extracted inline styles */
.bar.bar-h-60 {
    height: 60%;
}

.bar.bar-h-90 {
    height: 90%;
}

.bar.bar-h-40 {
    height: 40%;
}

.bar.bar-h-100 {
    height: 100%;
}

.cta-bg-image {
    z-index: -1;
    object-fit: cover;
    height: 100%;
}

.cta-overlay-container {
    background-color: rgba(240, 248, 255, 0.55);
    padding: 40px 20px;
    border-radius: 15px;
}

.cta-text-dark {
    color: #222222;
}

.cta-action-button,
.pricing-action-button {
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.cta-action-button {
    background-color: #1a3a52;
    transition: 0.2s;
}

.pricing-action-button {
    background-color: #007bff;
    transition: 0.3s;
}

.clients-section {
    background: #fff;
    padding: 60px 0;
}

.clients-title-wrap {
    margin-bottom: 30px;
}

.clients-heading {
    font-size: 28px;
    font-weight: 700;
    color: #37517e;
    margin-bottom: 10px;
}

.clients-subtitle {
    color: #6c757d;
    font-size: 16px;
}

.clients-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.clients-logo-img {
    max-height: 70px;
    transition: 0.3s;
}

.contact-map-frame {
    border: 0;
    width: 100%;
    height: 270px;
}

/* Home1 section harmonization (hero/about/why-us concept) */
#services,
#work-process,
#pricing,
#portfolio,
#clients,
#call-to-action {
    position: relative;
    overflow: hidden;
}

#services .section-title h2,
#work-process .section-title h2,
#pricing .section-title h2,
#portfolio .section-title h2,
#clients .clients-heading {
    background: linear-gradient(90deg, var(--bein-blue), var(--bein-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#services .service-item,
#work-process .steps-item,
#pricing .pricing-item,
#portfolio .portfolio-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(0, 97, 242, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 97, 242, 0.08);
}

#services .service-item {
    padding: 36px 28px;
}

#services .service-item .icon i {
    color: var(--bein-blue);
}

#services .service-item h4 a {
    color: #173a5e;
}

#services .service-item p {
    color: #5f6f82;
    line-height: 1.7;
}

#services .service-item:hover,
#work-process .steps-item:hover,
#pricing .pricing-item:hover,
#portfolio .portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 97, 242, 0.14);
    border-color: rgba(0, 97, 242, 0.18);
}

#work-process .steps-content h3 {
    font-size: 1.3rem;
    color: #173a5e;
}

#work-process .steps-content p {
    color: #5f6f82;
    line-height: 1.7;
}

#work-process .steps-content .steps-number {
    background: linear-gradient(135deg, var(--bein-blue), var(--bein-green));
    box-shadow: 0 10px 24px rgba(0, 97, 242, 0.2);
}

#call-to-action .cta-overlay-container {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.72),
        rgba(240, 248, 255, 0.86)
    );
    border: 1px solid rgba(0, 97, 242, 0.1);
    backdrop-filter: blur(4px);
}

.cta-action-button,
.pricing-action-button,
#pricing .buy-btn,
.hero .btn-get-started,
.hero .btn-getstarted {
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.cta-action-button,
.pricing-action-button,
#pricing .buy-btn {
    border: 1px solid transparent;
    box-shadow: 0 10px 24px rgba(0, 97, 242, 0.2);
}

#pricing .pricing-item {
    padding: 34px 28px;
}

#pricing .pricing-item.featured {
    border-color: rgba(0, 97, 242, 0.28);
    background: linear-gradient(180deg, #f5faff 0%, #ffffff 100%);
}

#pricing .pricing-item h3 {
    font-size: 1.35rem;
    color: #173a5e;
}

#pricing .pricing-item p {
    color: #5f6f82;
    line-height: 1.7;
}

#portfolio .portfolio-card {
    border-radius: 18px;
}

#portfolio .portfolio-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 97, 242, 0.2),
        rgba(11, 42, 72, 0.55)
    );
}

#portfolio .card-title {
    color: #173a5e !important;
}

#clients .clients-subtitle {
    color: #5f6f82;
}

#clients .clients-logo-grid {
    gap: 30px;
}

#clients .clients-logo-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
}

#clients .clients-logo-img:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.03);
}

@media (max-width: 991px) {
    #services .service-item,
    #work-process .steps-item,
    #pricing .pricing-item,
    #portfolio .portfolio-card {
        border-radius: 16px;
    }

    #services .service-item,
    #pricing .pricing-item {
        padding: 28px 22px;
    }

    #work-process .steps-content {
        padding: 30px 22px 24px;
    }

    #clients .clients-logo-grid {
        gap: 20px;
    }

    #clients .clients-logo-img {
        max-height: 56px;
    }
}

@media (max-width: 575px) {
    #services .section-title h2,
    #work-process .section-title h2,
    #pricing .section-title h2,
    #portfolio .section-title h2,
    #clients .clients-heading {
        font-size: 1.7rem;
    }

    .cta-action-button,
    .pricing-action-button,
    #pricing .buy-btn,
    .hero .btn-get-started,
    .hero .btn-getstarted {
        width: 100%;
        text-align: center;
        padding: 11px 20px;
    }

    #clients .clients-logo-grid {
        gap: 16px;
    }

    #clients .clients-logo-img {
        max-height: 48px;
    }

    #work-process .steps-image {
        height: 200px;
    }
}

/* Home1 visual polish pass */
#services .service-item::before,
#pricing .pricing-item::before,
#portfolio .portfolio-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        145deg,
        rgba(0, 97, 242, 0.05),
        rgba(0, 207, 213, 0.02)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#services .service-item:hover::before,
#pricing .pricing-item:hover::before,
#portfolio .portfolio-card:hover::before {
    opacity: 1;
}

#services .service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

#services .service-item p,
#pricing .pricing-item p {
    font-size: 0.97rem;
}

#work-process .steps-item {
    overflow: hidden;
}

#work-process .steps-image img {
    filter: saturate(1.03) contrast(1.02);
}

#pricing .pricing-preview .row {
    row-gap: 24px !important;
}

#pricing .pricing-item {
    position: relative;
    transform: translateY(0) scale(1);
    transform-origin: center;
    will-change: transform, box-shadow;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        background 0.35s ease;
}

#pricing .pricing-item:hover {
    transform: translateY(-6px) scale(1.01);
}

#pricing .pricing-item.featured {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 20px 44px rgba(0, 97, 242, 0.18);
}

#pricing .pricing-item.featured:hover {
    transform: translateY(-8px) scale(1.015);
}

#pricing .pricing-item.featured h3 {
    color: #0f4b7a;
}

#pricing .pricing-action-button {
    background: linear-gradient(135deg, #0061f2 0%, #0f8bff 100%);
}

#portfolio .card-body {
    padding: 1rem 1rem 0.75rem;
}

#portfolio .card-footer {
    padding: 0 1rem 1rem;
}

#clients .clients-logo-grid > div {
    padding: 8px 14px;
    border-radius: 14px;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

#clients .clients-logo-grid > div:hover {
    transform: translateY(-3px);
    background-color: rgba(0, 97, 242, 0.04);
}

@media (max-width: 991px) {
    #pricing .pricing-item.featured {
        transform: none;
    }

    #pricing .pricing-item:hover {
        transform: translateY(-3px);
    }

    #services .service-item h4 {
        font-size: 1.1rem;
    }
}

/* Contact Section Enhancements */
.sub-title-center {
    display: block;
    text-align: center;
    color: #4154ff;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

/* Info Wrap Modern - Glass Effect */
.info-wrap-modern {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-item-modern {
    margin-bottom: 30px;
    transition: 0.3s;
}

.info-item-modern:hover {
    transform: translateX(10px);
}

.info-item-modern .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(65, 84, 255, 0.1);
    color: #4154ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: 0.3s;
}

.info-item-modern:hover .icon-box {
    background: #4154ff;
    color: #fff;
}

.info-item-modern h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0a192f;
}

.info-item-modern p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Form Styling */
.form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-control-modern {
    width: 100%;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    transition: 0.3s;
}

.form-control-modern:focus {
    background: #fff;
    border-color: #4154ff;
    box-shadow: 0 10px 20px rgba(65, 84, 255, 0.05);
    outline: none;
}

/* Button Modern */
.btn-submit-modern {
    background: #0a192f;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit-modern:hover {
    background: #4154ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(65, 84, 255, 0.2);
}

.map-container {
    overflow: hidden;
    border-radius: 15px;
    filter: grayscale(100%) invert(90%) contrast(90%); /* Bikin map terlihat elegan/BW */
    transition: 0.5s;
}

.map-container:hover {
    filter: grayscale(0%) invert(0%);
}
