/* ==============================
   GENERAL & RESET
============================== */
:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary: #6c757d;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --accent: #38bdf8;
    --gradient: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 16px;
    --transition: all 0.3s ease;
}

/* Language Switcher */
.lang-switcher .btn {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 8px;
    transition: all 0.3s;
}
.lang-switcher .btn:hover,
.lang-switcher .btn:focus {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}
.header.scrolled .lang-switcher .btn {
    border-color: rgba(0,0,0,0.2);
    color: #333;
}
.header.scrolled .lang-switcher .btn:hover {
    background: rgba(13,110,253,0.08);
    border-color: var(--primary);
    color: var(--primary);
}
.lang-switcher .dropdown-menu {
    min-width: 150px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 6px;
}
.lang-switcher .dropdown-item {
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 14px;
    transition: all 0.2s;
}
.lang-switcher .dropdown-item:hover {
    background: rgba(13,110,253,0.08);
}
.lang-switcher .dropdown-item.active {
    background: var(--primary);
    color: #fff;
}

/* Floating Language Selector */
.floating-lang {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9999;
}
.floating-lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(13,110,253,0.45);
    transition: all 0.3s ease;
}
.floating-lang-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(13,110,253,0.55);
}
.floating-lang-btn i {
    font-size: 18px;
}
.floating-lang-options {
    position: absolute;
    bottom: 60px;
    left: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.18);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.25s ease;
}
.floating-lang.open .floating-lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.lang-option:hover {
    background: #f0f7ff;
    color: #0d6efd;
}
.lang-option.active {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
}
.lang-flag {
    font-size: 22px;
    line-height: 1;
}
.lang-name {
    font-family: 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Open Sans', sans-serif;
    color: #444;
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

a { text-decoration: none; transition: var(--transition); }

section { padding: 80px 0; }

.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(13,110,253,0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.light-background { background: #f8faff; }

img { max-width: 100%; }

/* ==============================
   HEADER
============================== */
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    height: 70px;
    z-index: 997;
    transition: var(--transition);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.logo-icon span {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.navbar-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.sitename {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 10px;
    color: #666;
    display: block;
    line-height: 1.2;
    margin-top: 1px;
}

.navmenu ul {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.navmenu a {
    color: #444;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.navmenu a:hover,
.navmenu a.active {
    color: var(--primary);
    background: rgba(13,110,253,0.08);
}

.btn-getstarted {
    background: var(--gradient);
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.btn-getstarted:hover {
    box-shadow: 0 4px 20px rgba(13,110,253,0.4);
    transform: translateY(-1px);
}

/* Mobile Nav */
.mobile-nav-toggle {
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
    display: none;
}

@media (max-width: 1199px) {
    .mobile-nav-toggle { display: block; }
    .navmenu ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 0;
    }
    .navmenu ul.active { display: flex; }
    .navmenu a { display: block; padding: 12px 16px; border-radius: 8px; }
}

/* ==============================
   HERO SECTION
============================== */
.hero {
    background: #0a1628;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

/* Hero Background Slider */
.hero-slider-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-swiper {
    width: 100%;
    height: 100%;
}

.hero-bg-swiper .swiper-wrapper {
    height: 100%;
}

.hero-bg-swiper .swiper-slide {
    height: 100%;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: heroZoom 8s ease-in-out infinite alternate;
}

.hero-slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(13,110,253,0.4) 50%, rgba(10,22,40,0.85) 100%);
    z-index: 1;
}

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-nav-btn:hover {
    background: rgba(255,255,255,0.25);
    border-color: #fff;
}

.hero-pagination {
    display: flex;
    gap: 8px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 40px;
    background: #fff;
}

.hero .container { position: relative; z-index: 2; }

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0 10px;
}

.text-highlight {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.btn-get-started {
    background: var(--gradient);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    box-shadow: 0 4px 20px rgba(13,110,253,0.4);
    transition: var(--transition);
    display: inline-block;
}

.btn-get-started:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(13,110,253,0.5);
}

.btn-outline-light {
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

.hero-stats {
    gap: 40px !important;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.stat-item span:last-of-type {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 4px 0 0;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 20px !important; }
    .stat-item .stat-number { font-size: 1.8rem; }
}

/* ==============================
   ABOUT SECTION
============================== */
.about-image-wrap {
    position: relative;
    padding-bottom: 40px;
}

.about-img-main img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
}

.about-img-badge {
    position: absolute;
    bottom: 0;
    right: -20px;
    background: var(--gradient);
    color: #fff;
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(13,110,253,0.3);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    opacity: 0.9;
}

.about-img-floating {
    position: absolute;
    top: 20px;
    right: -20px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-img-floating i {
    font-size: 22px;
    color: var(--primary);
}

.about-img-floating p {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    color: var(--dark);
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.about-content .lead {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.info-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f8faff;
    border-radius: 12px;
    border: 1px solid #e8f0ff;
}

.info-card i { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.info-card h6 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }

.info-card small { font-size: 12px; color: #666; }

/* Visi Misi */
.visi-misi-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #eee;
}

.visi-misi-tabs {
    background: #f8faff;
    border-bottom: 2px solid #e8f0ff;
    padding: 16px 24px 0;
    gap: 8px;
}

.visi-misi-tabs .nav-link {
    color: #666;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
}

.visi-misi-tabs .nav-link.active {
    background: #fff;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.visi-misi-content {
    padding: 28px;
}

.visi-misi-content h5 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #555;
}

/* ==============================
   VALUES SECTION
============================== */
.value-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #eef2ff;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.value-card.featured {
    background: var(--gradient);
    border-color: transparent;
}

.value-card.featured h4,
.value-card.featured p {
    color: #fff;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(13,110,253,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon i {
    font-size: 28px;
    color: var(--primary);
}

.value-card.featured .value-icon {
    background: rgba(255,255,255,0.2);
}

.value-card.featured .value-icon i { color: #fff; }

.value-card h4 { font-size: 1.1rem; margin-bottom: 12px; }

.value-card p { color: #666; font-size: 14px; line-height: 1.7; }

/* Counter */
.counter-row {
    background: var(--gradient);
    border-radius: var(--radius);
    padding: 40px;
}

.counter-item {
    text-align: center;
    color: #fff;
}

.counter-item i { font-size: 2rem; opacity: 0.8; display: block; margin-bottom: 8px; }

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    display: block;
}

.counter-item p {
    font-size: 13px;
    opacity: 0.85;
    margin: 6px 0 0;
}

/* ==============================
   FEATURES SECTION
============================== */
.feature-item {
    padding: 30px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(13,110,253,0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(13,110,253,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--primary);
}

.feature-icon i { font-size: 24px; color: var(--primary); transition: var(--transition); }

.feature-item:hover .feature-icon i { color: #fff; }

.feature-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }

.feature-item p { color: #666; font-size: 14px; line-height: 1.7; }

/* ==============================
   SERVICES SECTION
============================== */
.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 35px 28px;
    box-shadow: var(--shadow);
    border: 1px solid #eef2ff;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before { width: 100%; opacity: 0.05; }

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(13,110,253,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon i { font-size: 28px; color: var(--primary); transition: var(--transition); }

.service-card:hover .service-icon i { color: #fff; }

.service-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 12px; line-height: 1.4; }

.service-card p { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.service-btn {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.service-btn:hover { color: var(--primary-dark); gap: 8px; }

/* ==============================
   FAQ SECTION
============================== */
.faq-sidebar {
    padding: 30px;
    background: var(--gradient);
    border-radius: var(--radius);
    color: #fff;
    height: 100%;
}

.faq-sidebar .section-badge {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.faq-sidebar h2 { color: #fff; font-size: 1.8rem; margin: 12px 0; }

.faq-sidebar p { color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.7; }

.faq-item {
    margin-bottom: 12px;
    border: 1px solid #e8f0ff;
    border-radius: 12px;
    overflow: hidden;
}

.faq-item .accordion-button {
    background: #fff;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    padding: 18px 20px;
    box-shadow: none;
    border: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: rgba(13,110,253,0.05);
    color: var(--primary);
}

.faq-item .accordion-button::after {
    background-size: 14px;
}

.faq-item .accordion-body {
    padding: 16px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    background: #fafbff;
    border-top: 1px solid #eef2ff;
}

/* ==============================
   PORTFOLIO SECTION
============================== */
.portfolio-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.portfolio-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img img { transform: scale(1.1); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,30,60,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.portfolio-lightbox {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: var(--transition);
}

.portfolio-lightbox:hover { background: var(--primary); color: #fff; }

.portfolio-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.portfolio-info h4 { font-size: 1rem; color: #fff; margin-bottom: 4px; }

.portfolio-info span {
    font-size: 12px;
    background: var(--primary);
    padding: 3px 10px;
    border-radius: 50px;
    color: #fff;
}

/* ==============================
   TESTIMONIALS SECTION
============================== */
.testimonials-slider {
    padding-bottom: 50px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #eef2ff;
    height: 100%;
}

.testimonial-text {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author h6 { font-size: 15px; margin: 0; }

.testimonial-author small { color: #888; font-size: 12px; }

/* ==============================
   TEAM SECTION
============================== */
.team-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #eef2ff;
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-img {
    position: relative;
    background: linear-gradient(135deg, #e8f0ff 0%, #dbeafe 100%);
    padding: 30px 0 0;
    overflow: hidden;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.team-avatar i {
    font-size: 52px;
    color: rgba(255,255,255,0.9);
}

.team-social {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateX(0);
}

.team-social a {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-social a:hover { background: var(--primary); color: #fff; }

.team-info {
    padding: 20px;
}

.team-info h4 { font-size: 15px; margin-bottom: 4px; }

.team-info span {
    display: block;
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.team-info p { font-size: 13px; color: #888; margin: 0; }

/* ==============================
   CLIENTS SECTION
============================== */
.clients-slider { padding-bottom: 40px; }

.client-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eef2ff;
    transition: var(--transition);
}

.client-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(13,110,253,0.1);
}

.client-logo {
    width: 60px;
    height: 60px;
    background: rgba(13,110,253,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.client-logo i { font-size: 28px; color: var(--primary); }

.client-item p { font-size: 13px; color: #666; font-weight: 500; margin: 0; }

/* ==============================
   CONTACT SECTION
============================== */
.contact-info-wrap {
    padding: 30px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #eef2ff;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f4ff;
}

.contact-info-item:last-of-type { border-bottom: none; }

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(13,110,253,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i { font-size: 18px; color: var(--primary); }

.contact-info-item h5 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }

.contact-info-item p, .contact-info-item a {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.contact-info-item a:hover { color: var(--primary); }

.contact-form-wrap {
    padding: 35px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #eef2ff;
}

.form-group { margin-bottom: 0; }

.form-group label { font-size: 13px; font-weight: 600; color: #444; margin-bottom: 8px; display: block; }

.form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,110,253,0.1);
}

.btn-send {
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    background: var(--gradient);
    border: none;
    transition: var(--transition);
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13,110,253,0.4);
}

/* ==============================
   FOOTER
============================== */
.footer {
    background: var(--dark) !important;
    color: #ccc;
    padding-top: 60px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}

.footer p { color: #aaa; font-size: 14px; line-height: 1.7; }

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

.footer-links li { padding: 5px 0; }

.footer-links a {
    color: #aaa;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact p { font-size: 14px; color: #aaa; margin-bottom: 5px; }

.footer-contact a { color: #aaa; }
.footer-contact a:hover { color: var(--primary); }

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    margin-right: 8px;
    transition: var(--transition);
}

.social-links a:hover { background: var(--primary); transform: translateY(-3px); }

.copyright {
    padding: 20px 0;
    color: #888;
    font-size: 14px;
}

/* ==============================
   SCROLL TOP
============================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    font-size: 24px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(13,110,253,0.4);
}

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

.scroll-top:hover {
    color: #fff;
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==============================
   PAGE HERO (Detail Layanan)
============================== */
.page-hero {
    background: var(--gradient-hero);
    padding: 80px 0 60px;
}

.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

.page-hero-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.page-hero-icon i { font-size: 30px; color: #fff; }

.page-hero h1 {
    color: #fff;
    font-size: 2.2rem;
}

/* ==============================
   SERVICE DETAIL
============================== */
.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-check-item {
    font-size: 14px;
    color: #555;
    padding: 10px 16px;
    background: #f8faff;
    border-radius: 8px;
    border: 1px solid #eef2ff;
}

.service-sidebar .sidebar-cta {
    background: var(--gradient);
    color: #fff;
    padding: 28px;
    border-radius: var(--radius);
}

.sidebar-cta h5 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,0.85); font-size: 13px; margin-bottom: 0; }

.sidebar-contact {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #eef2ff;
}

.sidebar-contact h5 { font-size: 15px; margin-bottom: 14px; }
.sidebar-contact li { font-size: 13px; color: #666; padding: 6px 0; }

/* ==============================
   SWIPER PAGINATION
============================== */
.swiper-pagination-bullet { background: var(--primary); }
.swiper-pagination-bullet-active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ==============================
   BUTTONS
============================== */
.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13,110,253,0.3);
    background: var(--gradient);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ==============================
   AOS ANIMATIONS
============================== */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ==============================
   LIVE CHAT WIDGET
============================== */
.livechat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

/* Toggle Button */
.livechat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    animation: livechat-pulse 2s infinite;
}
.livechat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.6);
}
@keyframes livechat-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(59, 130, 246, 0.45); }
    50% { box-shadow: 0 6px 32px rgba(59, 130, 246, 0.7), 0 0 0 8px rgba(59, 130, 246, 0.15); }
}
.livechat-toggle-icon,
.livechat-toggle-close {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Unread Badge */
.livechat-unread-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    animation: badge-bounce 1s infinite;
}
@keyframes badge-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Chat Window */
.livechat-window {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 380px;
    max-height: 560px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.livechat-window.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Header */
.livechat-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.livechat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.livechat-header h6 {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
}
.livechat-header small {
    opacity: 0.85;
    font-size: 12px;
}
.livechat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
}
.online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #1e40af;
}
.livechat-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
}
.livechat-close:hover {
    background: rgba(255,255,255,0.3);
}

/* Start Form */
.livechat-start {
    padding: 32px 24px;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.livechat-start-inner { width: 100%; }
.livechat-welcome-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #3b82f6;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.livechat-start h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}
.livechat-start p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}
.livechat-start .form-control {
    border-radius: 12px;
    padding: 10px 16px;
    border: 2px solid #e2e8f0;
    font-size: 14px;
    transition: border-color 0.2s;
}
.livechat-start .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.livechat-start .btn {
    border-radius: 12px;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border: none;
}

/* Chat Body */
.livechat-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    max-height: 360px;
}
.livechat-messages {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    flex: 1;
}

/* Date Separator */
.chat-date-separator {
    text-align: center;
    margin: 8px 0;
}
.chat-date-separator span {
    background: #e2e8f0;
    padding: 3px 14px;
    border-radius: 12px;
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

/* Chat Bubbles */
.lchat-bubble {
    display: flex;
    max-width: 82%;
    animation: bubble-in 0.3s ease;
}
@keyframes bubble-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.lchat-visitor { align-self: flex-end; }
.lchat-admin { align-self: flex-start; }
.lchat-bubble-content {
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 100%;
}
.lchat-visitor .lchat-bubble-content {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.lchat-admin .lchat-bubble-content {
    background: #f1f5f9;
    color: #1e293b;
    border-top-left-radius: 4px;
}
.lchat-bubble-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
}
.lchat-time {
    font-size: 10px;
    opacity: 0.65;
    display: block;
    margin-top: 4px;
}

/* Chat Footer */
.livechat-footer {
    border-top: 1px solid #e2e8f0;
    background: #fff;
}
.livechat-input-wrap {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    align-items: center;
}
.livechat-input-wrap .form-control {
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    padding: 8px 16px;
    font-size: 13px;
    flex: 1;
}
.livechat-input-wrap .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.livechat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.livechat-send-btn:hover {
    transform: scale(1.08);
}
.livechat-powered {
    text-align: center;
    padding: 0 16px 10px;
    font-size: 11px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 480px) {
    .livechat-window {
        width: calc(100vw - 32px);
        right: -8px;
        bottom: 70px;
        max-height: 75vh;
    }
    .livechat-toggle {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    .livechat-widget {
        bottom: 16px;
        right: 16px;
    }
}

