/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --primary-orange: #f97316;
    --primary-orange-dark: #ea580c;
    --primary-orange-light: #fb923c;
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --primary-blue-light: #3b82f6;
    --dark-bg: #0f172a;
    --dark-surface: #1e293b;
    --light-bg: #f5eded;
    --light-surface: #f1f5f9;
    --text-dark: #0f172a;
    --text-light: #f8fafc;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    transition: var(--transition);
    line-height: 1.6;
}

body.dark-mode {
    background: var(--dark-bg);
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
}
.btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}
.btn-outline:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-outline-light:hover {
    background: white;
    color: var(--primary-orange);
    transform: translateY(-2px);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--light-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.dark-mode .header {
    background: var(--dark-surface);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}
.lang-switcher a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 6px;
    transition: var(--transition);
}
.dark-mode .lang-switcher a {
    color: var(--text-light);
}
.lang-switcher a.active {
    background: var(--primary-orange);
    color: white;
}
.lang-switcher a:hover:not(.active) {
    color: var(--primary-orange);
}

.dark-mode-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}
.dark-mode .dark-mode-toggle {
    color: var(--text-light);
}
.dark-mode-toggle:hover {
    background: var(--light-surface);
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    display: none;
    padding: 8px;
}
.dark-mode .menu-toggle {
    color: var(--text-light);
}

/* Navigation */
.main-nav {
    padding: 10px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.dark-mode .main-nav {
    border-color: #334155;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}
.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}
.dark-mode .main-nav a {
    color: var(--text-light);
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-orange);
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Search Bar */
.search-bar {
    padding: 10px 0;
}
.search-bar form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}
.search-bar input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--light-bg);
    color: var(--text-dark);
}
.dark-mode .search-bar input {
    background: var(--dark-surface);
    border-color: #334155;
    color: var(--text-light);
}
.search-bar input:focus {
    outline: none;
    border-color: var(--primary-orange);
}
.search-bar button {
    padding: 10px 20px;
    background: var(--primary-orange);
    border: none;
    border-radius: 0 8px 8px 0;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}
.search-bar button:hover {
    background: var(--primary-orange-dark);
}

/* ============================================
   RUNNING TEXT - WARNA OREN
   ============================================ */
.running-text {
    background: #f97316; /* OREN, BUKAN BIRU */
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: block !important;
    z-index: 999;
}

.running-text-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.running-text-content {
    display: inline-block;
    white-space: nowrap;
    animation: scrollText 30s linear infinite;
    padding: 0 20px;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.running-text-item {
    margin: 0 30px;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
}

.running-text-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
    display: inline-block;
}

/* Dark mode - tetap oren */
.dark-mode .running-text {
    background: #f97316; /* TETAP OREN */
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .running-text-item {
        font-size: 12px;
        margin: 0 20px;
    }
    .running-text {
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .running-text-item {
        font-size: 11px;
        margin: 0 15px;
    }
}

/* ============================================
   HERO SECTION - TANPA BIRU SAMA SEKALI
   ============================================ */

/* Hero Section - Base */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #000000; /* Hitam pekat */
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

/* HERO IMAGE */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image img {
    display: none;
}

/* OVERLAY - HITAM PEKAT, BUKAN BIRU */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Hitam transparan, BUKAN biru */
    z-index: 2;
}

/* Gradient bawah - hitam, BUKAN biru */
.hero-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    z-index: 2;
    pointer-events: none;
}

/* Gradient atas - hitam, BUKAN biru */
.hero-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 3;
}

.hero-content .container {
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    max-width: 600px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    max-width: 500px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    max-width: 500px;
    font-size: 16px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

/* Hero Controls - DISEMBUNYIKAN */
.hero-controls,
.hero-prev,
.hero-next {
    display: none !important;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.hero-dot.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   RESPONSIVE HERO - TANPA BIRU
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 36px;
        max-width: 80%;
    }
    
    .hero-content p {
        font-size: 18px;
        max-width: 80%;
    }
    
    .hero-description {
        font-size: 15px;
        max-width: 80%;
    }
}

/* HP - Landscape dan Portrait */
@media (max-width: 768px) {
    .hero-section {
        height: 450px;
        min-height: 400px;
        max-height: 100vh;
    }
    
    .hero-image {
        background-size: contain !important;
        background-position: center center !important;
        background-color: #000000;
    }
    
    .hero-content {
        padding: 0 15px;
        align-items: center;
        text-align: center;
    }
    
    .hero-content .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
    }
    
    .hero-content h1 {
        font-size: 26px;
        max-width: 100%;
        margin-bottom: 10px;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.95);
    }
    
    .hero-content p {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 10px;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.95);
    }
    
    .hero-description {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 15px;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.95);
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 4px 12px;
        margin-bottom: 10px;
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .hero-overlay-bottom {
        height: 60%;
        background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.85));
    }
    
    .hero-overlay-top {
        height: 30%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
    }
    
    .hero-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-dot.active {
        width: 25px;
    }
    
    .hero-content .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* HP Kecil - Portrait */
@media (max-width: 480px) {
    .hero-section {
        height: 400px;
        min-height: 350px;
    }
    
    .hero-image {
        background-size: contain !important;
        background-position: center center !important;
    }
    
    .hero-content h1 {
        font-size: 22px;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.98);
    }
    
    .hero-content p {
        font-size: 14px;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.98);
    }
    
    .hero-description {
        font-size: 13px;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.98);
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.6);
    }
    
    .hero-overlay-bottom {
        height: 65%;
        background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
    }
    
    .hero-dots {
        bottom: 12px;
        gap: 6px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-dot.active {
        width: 20px;
    }
}

/* HP Sangat Kecil */
@media (max-width: 360px) {
    .hero-section {
        height: 350px;
        min-height: 300px;
    }
    
    .hero-image {
        background-size: contain !important;
        background-position: center center !important;
    }
    
    .hero-content h1 {
        font-size: 18px;
    }
    
    .hero-content p {
        font-size: 13px;
    }
    
    .hero-description {
        font-size: 12px;
    }
    
    .hero-badge {
        font-size: 9px;
        padding: 3px 10px;
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .hero-content .btn {
        font-size: 13px;
        padding: 10px 16px;
        max-width: 200px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .hero-image {
        background-size: cover !important;
        background-position: center !important;
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.35);
    }
    
    .hero-overlay-bottom {
        height: 40%;
        background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
    }
}
/* ============================================
   SECTION COMMON
   ============================================ */
.section-tag {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-orange);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header {
    margin-bottom: 40px;
}
.section-header.text-center {
    text-align: center;
}
.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-header p {
    color: #64748b;
    font-size: 18px;
}
.dark-mode .section-header p {
    color: #94a3b8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 80px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-content p {
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.8;
}
.dark-mode .about-content p {
    color: #94a3b8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-surface);
    border-radius: var(--radius);
    transition: var(--transition);
}
.dark-mode .stat-item {
    background: var(--dark-surface);
}
.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-orange);
}
.stat-label {
    font-size: 14px;
    color: #64748b;
    margin-top: 5px;
}
.dark-mode .stat-label {
    color: #94a3b8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 80px 0;
    background: var(--light-surface);
}
.dark-mode .services-section {
    background: var(--dark-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.dark-mode .service-card {
    background: var(--dark-bg);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 28px;
    color: var(--primary-orange);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.service-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}
.dark-mode .service-card h3 a {
    color: var(--text-light);
}
.service-card h3 a:hover {
    color: var(--primary-orange);
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}
.dark-mode .service-card p {
    color: #94a3b8;
}

.service-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}
.service-link:hover {
    gap: 10px;
}

/* ============================================
   LANGUAGES SECTION
   ============================================ */
.languages-section {
    padding: 60px 0;
}
.languages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.language-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--light-surface);
    border-radius: 30px;
    transition: var(--transition);
}
.dark-mode .language-item {
    background: var(--dark-surface);
}
.language-item:hover {
    background: var(--primary-orange);
    color: white;
}
.language-flag {
    font-size: 24px;
}
.language-name {
    font-weight: 500;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: 80px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.dark-mode .blog-card {
    background: var(--dark-surface);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-body {
    padding: 20px;
}
.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
}
.dark-mode .blog-meta {
    color: #94a3b8;
}
.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-body h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}
.dark-mode .blog-body h3 a {
    color: var(--text-light);
}
.blog-body h3 a:hover {
    color: var(--primary-orange);
}

.blog-body p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.dark-mode .blog-body p {
    color: #94a3b8;
}

.read-more {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}
.read-more:hover {
    gap: 10px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-surface);
}
.dark-mode .testimonials-section {
    background: var(--dark-surface);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-item {
    flex: 0 0 100%;
    padding: 0 15px;
}
.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.dark-mode .testimonial-card {
    background: var(--dark-bg);
}
.testimonial-content {
    margin-bottom: 20px;
}
.testimonial-content i {
    color: var(--primary-orange);
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}
.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author h4 {
    font-weight: 600;
}
.testimonial-author p {
    color: #64748b;
    font-size: 14px;
}
.dark-mode .testimonial-author p {
    color: #94a3b8;
}
.testimonial-rating {
    color: #f59e0b;
    font-size: 14px;
}
.testimonial-rating i {
    margin-right: 2px;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.testimonials-controls button {
    background: var(--light-bg);
    border: 2px solid #e2e8f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.dark-mode .testimonials-controls button {
    background: var(--dark-surface);
    border-color: #334155;
    color: var(--text-light);
}
.testimonials-controls button:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

/* ============================================
   CLIENTS
   ============================================ */
.clients-section {
    padding: 60px 0;
}
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.client-item {
    padding: 20px 30px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}
.client-item:hover {
    filter: grayscale(0);
    opacity: 1;
}
.client-item img {
    max-height: 60px;
    width: auto;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
    color: white;
    text-align: center;
}
.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}
.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-surface);
    color: var(--text-light);
    padding: 60px 0 20px;
}
.footer-logo {
    max-height: 40px;
    width: auto;
    margin-bottom: 15px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-about p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}
.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}
.footer ul {
    list-style: none;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}
.footer ul li a:hover {
    color: var(--primary-orange);
}
.footer ul li i {
    width: 20px;
    color: var(--primary-orange);
}
.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}
.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float a:hover {
    transform: scale(1.1) rotate(-5deg);
}
@keyframes pulse {
    0% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
}

/* ============================================
   PAGE HEADER (untuk semua halaman)
   ============================================ */
.page-header {
    text-align: center;
    padding: 40px 0 30px;
}
.page-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}
.page-header p {
    color: #64748b;
    font-size: 18px;
}
.dark-mode .page-header p {
    color: #94a3b8;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    padding: 10px 0;
}
.dark-mode .breadcrumb {
    color: #94a3b8;
}
.breadcrumb a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb span {
    margin: 0 8px;
    color: #94a3b8;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page {
    padding: 40px 0 60px;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.about-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}
.dark-mode .about-text p {
    color: #94a3b8;
}
.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Values */
.values-section {
    padding: 60px 0;
    background: var(--light-surface);
    border-radius: var(--radius);
    margin-bottom: 60px;
}
.dark-mode .values-section {
    background: var(--dark-surface);
}
.values-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 20px;
}
.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.dark-mode .value-item {
    background: var(--dark-bg);
}
.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 30px;
    color: var(--primary-orange);
}
.value-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.value-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}
.dark-mode .value-item p {
    color: #94a3b8;
}

/* Team */
.team-section {
    padding: 40px 0;
}
.team-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    justify-content: center;
    align-items: start;
    gap: 35px;
    max-width: 1280px;
    margin: 0 auto;
}
.team-member {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.dark-mode .team-member {
    background: var(--dark-surface);
}
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-orange);
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-member h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}
.team-position {
    color: var(--primary-orange);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
}
.team-bio {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.dark-mode .team-bio {
    color: #94a3b8;
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-surface);
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}
.dark-mode .team-social a {
    background: var(--dark-bg);
    color: var(--text-light);
}
.team-social a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page {
    padding: 40px 0 60px;
}
.services-grid-full {
    display: grid;
    gap: 40px;
    margin-top: 30px;
}
.service-card-full {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    align-items: start;
}
.dark-mode .service-card-full {
    background: var(--dark-surface);
}
.service-card-full:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}
.service-icon-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius);
    font-size: 36px;
    color: var(--primary-orange);
}
.service-content-full h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-content-full p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}
.dark-mode .service-content-full p {
    color: #94a3b8;
}

/* ============================================
   SERVICE DETAIL
   ============================================ */
.service-detail {
    padding: 40px 0 60px;
}
.service-detail-content {
    max-width: 800px;
    margin: 0 auto;
}
.service-detail-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius);
    font-size: 36px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}
.service-detail-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.service-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
}
.dark-mode .service-description {
    color: #94a3b8;
}
.service-description p {
    margin-bottom: 15px;
}
.service-image {
    margin: 30px 0;
}
.service-image img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}
.service-cta {
    margin-top: 40px;
    padding: 30px;
    background: var(--light-surface);
    border-radius: var(--radius);
    text-align: center;
}
.dark-mode .service-cta {
    background: var(--dark-surface);
}
.service-cta h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-cta p {
    color: #64748b;
    margin-bottom: 20px;
}
.dark-mode .service-cta p {
    color: #94a3b8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
    padding: 40px 0 60px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}
.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--light-surface);
    border-radius: var(--radius);
    transition: var(--transition);
}
.dark-mode .contact-item {
    background: var(--dark-surface);
}
.contact-item:hover {
    transform: translateX(5px);
}
.contact-item i {
    font-size: 24px;
    color: var(--primary-orange);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}
.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}
.contact-item p {
    color: #64748b;
    font-size: 14px;
}
.dark-mode .contact-item p {
    color: #94a3b8;
}
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
.contact-link:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}
.contact-map {
    margin-top: 20px;
    border-radius: var(--radius);
    overflow: hidden;
}
.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.contact-form {
    background: var(--light-surface);
    padding: 30px;
    border-radius: var(--radius);
}
.dark-mode .contact-form {
    background: var(--dark-surface);
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: var(--light-bg);
    color: var(--text-dark);
    transition: var(--transition);
}
.dark-mode .contact-form input,
.dark-mode .contact-form textarea {
    background: var(--dark-bg);
    border-color: #334155;
    color: var(--text-light);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-page {
    padding: 40px 0 60px;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-category-title {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-orange);
}
.faq-list {
    display: grid;
    gap: 12px;
}
.faq-item {
    background: var(--light-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}
.dark-mode .faq-item {
    background: var(--dark-surface);
}
.faq-item:hover {
    box-shadow: var(--shadow-lg);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}
.dark-mode .faq-question {
    color: var(--text-light);
}
.faq-question:hover {
    color: var(--primary-orange);
}
.faq-question i {
    transition: var(--transition);
    font-size: 14px;
    color: #94a3b8;
    flex-shrink: 0;
    margin-left: 15px;
}
.faq-question.active i {
    transform: rotate(180deg);
    color: var(--primary-orange);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer.active {
    max-height: 500px;
}
.faq-answer p {
    padding: 0 20px 20px;
    color: #64748b;
    line-height: 1.8;
}
.dark-mode .faq-answer p {
    color: #94a3b8;
}
.faq-contact {
    margin-top: 50px;
    padding: 40px;
    background: var(--light-surface);
    border-radius: var(--radius);
    text-align: center;
}
.dark-mode .faq-contact {
    background: var(--dark-surface);
}
.faq-contact h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.faq-contact p {
    color: #64748b;
    margin-bottom: 20px;
}
.dark-mode .faq-contact p {
    color: #94a3b8;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-page {
    padding: 40px 0 60px;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    background: var(--light-bg);
}
.dark-mode .page-link {
    border-color: #334155;
    color: var(--text-light);
    background: var(--dark-surface);
}
.page-link:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}
.page-link.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

/* ============================================
   SEARCH PAGE
   ============================================ */
.search-page {
    padding: 40px 0 60px;
}
.search-results {
    max-width: 800px;
    margin: 0 auto;
}
.result-count {
    font-weight: 500;
    color: #64748b;
    margin-bottom: 20px;
}
.dark-mode .result-count {
    color: #94a3b8;
}
.search-grid {
    display: grid;
    gap: 20px;
}
.search-item {
    background: var(--light-bg);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.dark-mode .search-item {
    background: var(--dark-surface);
}
.search-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}
.search-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.search-link h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    transition: var(--transition);
}
.dark-mode .search-link h3 {
    color: var(--text-light);
}
.search-link h3:hover {
    color: var(--primary-orange);
}
.search-link p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}
.dark-mode .search-link p {
    color: #94a3b8;
}
.search-meta {
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    gap: 15px;
}
.search-meta i {
    margin-right: 4px;
}

/* ============================================
   ARCHIVE PAGE
   ============================================ */
.archive-page {
    padding: 40px 0 60px;
}
.archive-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}
.archive-items {
    display: grid;
    gap: 15px;
}
.archive-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: var(--light-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.dark-mode .archive-item {
    background: var(--dark-surface);
}
.archive-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}
.archive-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-orange);
    white-space: nowrap;
}
.archive-title {
    flex: 1;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}
.dark-mode .archive-title {
    color: var(--text-light);
}
.archive-title:hover {
    color: var(--primary-orange);
}
.archive-author {
    font-size: 13px;
    color: #94a3b8;
}

.archive-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}
.archive-widget {
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.dark-mode .archive-widget {
    background: var(--dark-surface);
}
.archive-widget h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-orange);
}
.archive-months {
    list-style: none;
}
.archive-months li {
    margin-bottom: 8px;
}
.archive-months li a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}
.dark-mode .archive-months li a {
    color: var(--text-light);
}
.archive-months li a:hover {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-orange);
}
.archive-months li.active a {
    background: var(--primary-orange);
    color: white;
}

/* ============================================
   ERROR 404
   ============================================ */
.error-page {
    padding: 80px 0 100px;
    text-align: center;
}
.error-content {
    max-width: 500px;
    margin: 0 auto;
}
.error-code {
    font-size: 120px;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 20px;
}
.error-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}
.error-content p {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 30px;
}
.dark-mode .error-content p {
    color: #94a3b8;
}
.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}
.empty-state i {
    font-size: 60px;
    color: var(--primary-orange);
    opacity: 0.5;
    margin-bottom: 20px;
}
.empty-state p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 20px;
}
.dark-mode .empty-state p {
    color: #94a3b8;
}

/* ============================================
   ALERT
   ============================================ */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}
.alert-success {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}
.alert-error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* ============================================
   UTILITY
   ============================================ */
.text-center {
    text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-image img {
        max-height: 400px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .archive-grid {
        grid-template-columns: 1fr;
    }
    .archive-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light-bg);
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }
    .dark-mode .main-nav {
        background: var(--dark-surface);
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-section {
        height: 500px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cta-content h2 {
        font-size: 28px;
    }

    .service-card-full {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    .service-icon-large {
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    .archive-item {
        flex-wrap: wrap;
        gap: 10px;
    }
    .archive-date {
        width: 100%;
    }
    .archive-author {
        width: 100%;
    }
    .error-code {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .header-top {
        flex-direction: column;
        gap: 10px;
    }
    .logo-img {
        max-height: 40px;
    }

    .hero-section {
        height: 400px;
    }
    .hero-content h1 {
        font-size: 24px;
    }
    .hero-content p {
        font-size: 16px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .stat-number {
        font-size: 28px;
    }
    .section-header h2 {
        font-size: 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 20px;
    }
    .faq-question {
        font-size: 14px;
        padding: 14px 16px;
    }
    .service-detail-content h1 {
        font-size: 24px;
    }
    .error-code {
        font-size: 60px;
    }
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}
/* ============================================
   SERVICE PAGE (service.php)
   ============================================ */
.service-page {
    padding: 40px 0 60px;
}

.service-page .breadcrumb {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    padding: 10px 0;
}

.service-page .breadcrumb a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition);
}

.service-page .breadcrumb a:hover {
    text-decoration: underline;
}

.service-page .breadcrumb span {
    margin: 0 8px;
    color: #94a3b8;
}

.service-page h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-icon-large {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.service-description {
    line-height: 1.8;
    color: #64748b;
    font-size: 16px;
}

.dark-mode .service-description {
    color: #94a3b8;
}

.service-description p {
    margin-bottom: 15px;
}

.service-image {
    margin: 30px 0;
}

.service-image img {
    max-width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}

.service-cta-box {
    margin-top: 40px;
    padding: 30px;
    background: var(--light-surface);
    border-radius: var(--radius);
    text-align: center;
}

.dark-mode .service-cta-box {
    background: var(--dark-surface);
}

.service-cta-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-cta-box p {
    color: #64748b;
    margin-bottom: 20px;
}

.dark-mode .service-cta-box p {
    color: #94a3b8;
}

@media (max-width: 768px) {
    .service-page h1 {
        font-size: 24px;
    }
    
    .service-icon-large {
        font-size: 36px;
    }
    
    .service-cta-box {
        padding: 20px;
    }
}
/* ============================================
   MOBILE FIRST - PERBAIKAN TAMPILAN HP
   ============================================ */

/* Reset untuk mobile */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Header - Perbaikan untuk HP */
    .header {
        padding: 10px 0;
    }

    .header-top {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 0;
    }

    .logo {
        flex: 1;
        min-width: 120px;
    }

    .logo-img {
        max-height: 40px;
        width: auto;
    }

    .header-right {
        gap: 10px;
    }

    .lang-switcher a {
        font-size: 12px;
        padding: 4px 8px;
    }

    .dark-mode-toggle {
        font-size: 16px;
        padding: 6px;
    }

    /* Navigation Mobile */
    .main-nav {
        padding: 0;
        border: none;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .main-nav ul li {
        border-bottom: 1px solid #e2e8f0;
        padding: 0;
    }

    .main-nav ul li a {
        display: block;
        padding: 12px 15px;
        font-size: 14px;
    }

    .dark-mode .main-nav ul li {
        border-color: #334155;
    }

    /* Search Bar Mobile */
    .search-bar {
        padding: 8px 0;
    }

    .search-bar form {
        max-width: 100%;
    }

    .search-bar input {
        font-size: 13px;
        padding: 8px 12px;
    }

    .search-bar button {
        padding: 8px 15px;
        font-size: 14px;
    }

    /* Hero Section Mobile */
    .hero-section {
        height: 450px;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 24px;
        max-width: 100%;
    }

    .hero-content p {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-description {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    .hero-controls button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .hero-dots {
        bottom: 15px;
        gap: 8px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-dot.active {
        width: 25px;
    }

    /* About Section Mobile */
    .about-section {
        padding: 40px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    /* Languages Section Mobile */
    .languages-section {
        padding: 30px 0;
    }

    .languages-grid {
        gap: 10px;
    }

    .language-item {
        padding: 8px 15px;
        font-size: 13px;
    }

    .language-flag {
        font-size: 18px;
    }

    /* Blog Section Mobile */
    .blog-section {
        padding: 40px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card {
        margin: 0;
    }

    .blog-image {
        height: 180px;
    }

    .blog-body {
        padding: 15px;
    }

    .blog-body h3 {
        font-size: 16px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    /* Clients Section Mobile */
    .clients-section {
        padding: 30px 0;
    }

    .clients-grid {
        gap: 20px;
    }

    .client-item {
        padding: 10px 15px;
    }

    .client-item img {
        max-height: 40px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
        padding: 0 10px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about p {
        font-size: 14px;
    }

    .footer h4 {
        font-size: 16px;
    }

    .footer ul li {
        font-size: 14px;
    }

    /* Buttons Mobile */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-primary,
    .btn-outline,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

/* Perbaikan untuk HP kecil (max-width: 480px) */
@media (max-width: 480px) {
    .hero-section {
        height: 400px;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-description {
        font-size: 13px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-number {
        font-size: 24px;
    }

    .services-grid {
        gap: 15px;
    }

    .service-card {
        padding: 15px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
    }

    .blog-image {
        height: 150px;
    }

    .blog-body h3 {
        font-size: 15px;
    }

    .blog-body p {
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .section-header p {
        font-size: 13px;
    }

    .cta-content h2 {
        font-size: 20px;
    }

    .cta-content p {
        font-size: 13px;
    }
}

/* Perbaikan untuk tablet (max-width: 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}

/* Perbaikan untuk layar sangat kecil (max-width: 360px) */
@media (max-width: 360px) {
    .hero-section {
        height: 350px;
        min-height: 280px;
    }

    .hero-content h1 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .logo-img {
        max-height: 32px;
    }

    .header-right {
        gap: 6px;
    }

    .lang-switcher a {
        font-size: 11px;
        padding: 3px 6px;
    }

    .stat-number {
        font-size: 20px;
    }

    .btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}

/* Smooth transition untuk semua elemen */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Perbaikan scroll horizontal */
body {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Perbaikan untuk hero slider di HP */
@media (max-width: 768px) {
    .hero-slide {
        background-size: cover;
        background-position: center;
    }

    .hero-image img {
        object-position: center;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    }
}
/* ============================================
   HERO BACKGROUND - MODE COVER/CONTAIN
   ============================================ */

/* Default: Cover untuk desktop */
.hero-image {
    background-size: cover !important;
    background-position: center !important;
}

/* HP: Contain agar tidak terpotong */
@media (max-width: 768px) {
    .hero-image {
        background-size: contain !important;
        background-position: center center !important;
        background-color: var(--dark-bg);
    }
    
    /* Tambahan: jika ingin cover dengan posisi tertentu */
    .hero-image.cover-on-mobile {
        background-size: cover !important;
        background-position: center 30% !important;
    }
}

/* HP kecil: tetap contain */
@media (max-width: 480px) {
    .hero-image {
        background-size: contain !important;
        background-position: center center !important;
        background-color: var(--dark-bg);
    }
}
/* ============================================
   FLAG ICON - CSS
   ============================================ */

/* Flag icon untuk languages */
.language-flag {
    font-size: 28px;
    width: 36px;
    height: 24px;
    display: inline-block;
    background-size: cover;
    background-position: center;
    border-radius: 3px;
    border: 1px solid #e2e8f0;
}

/* Atau menggunakan emoji sebagai fallback */
.language-flag-emoji {
    font-size: 28px;
    line-height: 1;
}

/* Dark mode */
.dark-mode .language-flag {
    border-color: #334155;
}
/* ============================================
   LANGUAGE FLAGS - DESKTOP & HP
   ============================================ */

.language-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--light-surface);
    border-radius: 30px;
    transition: var(--transition);
}

.dark-mode .language-item {
    background: var(--dark-surface);
}

.language-item:hover {
    background: var(--primary-orange);
    color: white;
}

/* Flag menggunakan emoji - bekerja di semua device dengan font-size besar */
.language-flag {
    font-size: 32px;
    line-height: 1.2;
    display: inline-block;
    width: 36px;
    text-align: center;
    flex-shrink: 0;
}

/* Fallback untuk desktop Windows yang tidak support flag emoji */
@supports not (font-variant-emoji: emoji) {
    .language-flag {
        font-size: 28px;
    }
}

/* Untuk Windows 10/11 yang tidak support flag emoji */
@media (max-width: 1024px) {
    .language-flag {
        font-size: 30px;
    }
}

.language-name {
    font-weight: 500;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .language-flag {
        font-size: 28px;
        width: 30px;
    }
    .language-item {
        padding: 8px 14px;
    }
    .language-name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .language-flag {
        font-size: 24px;
        width: 26px;
    }
    .language-item {
        padding: 6px 12px;
    }
    .language-name {
        font-size: 12px;
    }
}
/* ============================================
   SPECIAL SECTION - WHAT MAKES US SPECIAL
   ============================================ */
.special-section {
    padding: 80px 0;
    background: var(--light-surface);
}
.dark-mode .special-section {
    background: var(--dark-surface);
}
.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.special-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.dark-mode .special-item {
    background: var(--dark-bg);
}
.special-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.special-item i {
    font-size: 40px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}
.special-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.special-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}
.dark-mode .special-item p {
    color: #94a3b8;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: 80px 0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}
.process-step {
    text-align: center;
    padding: 25px 15px;
    background: var(--light-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.dark-mode .process-step {
    background: var(--dark-surface);
}
.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
}
.process-step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.process-step p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}
.dark-mode .process-step p {
    color: #94a3b8;
}

/* ============================================
   CAT TOOLS SECTION
   ============================================ */
.cattools-section {
    padding: 80px 0;
    background: var(--light-surface);
}
.dark-mode .cattools-section {
    background: var(--dark-surface);
}
.cattools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.cattool-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--light-bg);
    border-radius: 50px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-weight: 500;
}
.dark-mode .cattool-item {
    background: var(--dark-bg);
}
.cattool-item:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.cattool-item i {
    font-size: 24px;
    color: var(--primary-orange);
}
.cattool-item:hover i {
    color: white;
}

/* ============================================
   VALUE SECTION - UPDATE
   ============================================ */
.values-section {
    padding: 60px 0;
    margin: 0;
}
.dark-mode .values-section {
    background: var(--dark-surface);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.dark-mode .value-item {
    background: var(--dark-bg);
}
.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.value-item .value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 30px;
    color: var(--primary-orange);
}
.value-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.value-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}
.dark-mode .value-item p {
    color: #94a3b8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .special-grid {
        grid-template-columns: 1fr 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cattools-grid {
        gap: 12px;
    }
    .cattool-item {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .special-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .cattool-item {
        padding: 8px 16px;
        font-size: 13px;
    }
    .cattool-item i {
        font-size: 18px;
    }
}
/* ============================================
   ABOUT SERVICES SUMMARY
   ============================================ */
.about-services-summary {
    padding: 60px 0;
    background: var(--light-surface);
    border-radius: var(--radius);
    margin: 40px 0;
}

.dark-mode .about-services-summary {
    background: var(--dark-surface);
}

.about-services-summary h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.services-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.service-summary-item {
    background: var(--light-bg);
    padding: 25px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.dark-mode .service-summary-item {
    background: var(--dark-bg);
}

.service-summary-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-summary-item i {
    font-size: 36px;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.service-summary-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-summary-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.dark-mode .service-summary-item p {
    color: #94a3b8;
}

/* ============================================
   SERVICES PAGE - CTA
   ============================================ */
.services-cta {
    margin-top: 50px;
    padding: 40px;
    background: var(--light-surface);
    border-radius: var(--radius);
    text-align: center;
}

.dark-mode .services-cta {
    background: var(--dark-surface);
}

.services-cta h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-cta p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 16px;
}

.dark-mode .services-cta p {
    color: #94a3b8;
}

/* Quote style */
.about-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--primary-orange);
    font-weight: 600;
    padding: 15px 0;
    border-top: 2px solid var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
    margin-top: 20px;
}

.dark-mode .about-quote {
    color: var(--primary-orange-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .services-summary-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 10px;
    }
    
    .service-summary-item {
        padding: 20px 15px;
    }
    
    .service-summary-item i {
        font-size: 28px;
    }
    
    .about-quote {
        font-size: 17px;
    }
    
    .services-cta {
        padding: 25px 20px;
    }
    
    .services-cta h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .services-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .about-quote {
        font-size: 15px;
        padding: 12px 0;
    }
    
    .services-cta {
        padding: 20px 15px;
    }
    
    .services-cta h3 {
        font-size: 18px;
    }
}

/* ============================================
   ARTICLE CONTENT - STYLE HTML TAGS
   ============================================ */
.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #1a202c;
}

.dark-mode .article-content {
    color: #e2e8f0;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #0f172a;
}

.dark-mode .article-content h1,
.dark-mode .article-content h2,
.dark-mode .article-content h3,
.dark-mode .article-content h4 {
    color: #f8fafc;
}

.article-content h2 {
    font-size: 28px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.dark-mode .article-content h2 {
    border-color: #334155;
}

.article-content h3 {
    font-size: 22px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-orange);
    padding: 15px 25px;
    margin: 25px 0;
    background: var(--light-surface);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.dark-mode .article-content blockquote {
    background: var(--dark-surface);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 20px 0;
}

.article-content a {
    color: var(--primary-orange);
    text-decoration: underline;
}

.article-content strong,
.article-content b {
    font-weight: 700;
    color: #0f172a;
}

.dark-mode .article-content strong,
.dark-mode .article-content b {
    color: #f8fafc;
}

.article-content code {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

.dark-mode .article-content code {
    background: #1e293b;
    color: #f8fafc;
}

.article-content pre {
    background: #f1f5f9;
    padding: 20px;
    border-radius: var(--radius);
    overflow-x: auto;
    margin: 20px 0;
}

.dark-mode .article-content pre {
    background: #1e293b;
    color: #f8fafc;
}

/* Article Time */
.article-date {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.article-time-ago {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #64748b;
}

.dark-mode .article-time-ago {
    color: #94a3b8;
}

#time-ago-text {
    font-weight: 500;
}

@media (max-width: 768px) {
    .article-content {
        font-size: 16px;
    }
    .article-content h2 {
        font-size: 24px;
    }
    .article-content h3 {
        font-size: 20px;
    }
    .article-date {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .article-content {
        font-size: 15px;
    }
    .article-content h2 {
        font-size: 20px;
    }
    .article-content h3 {
        font-size: 18px;
    }
    .article-content blockquote {
        padding: 10px 15px;
    }
}
/* ============================================
   AUTHOR STYLE - DENGAN FOTO BULAT
   ============================================ */
.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px; /* ✅ PERBAIKAN: 60px bukan 500 */
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
    flex-shrink: 0;
}

.author-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-color, #1a1a2e);
}

.dark-mode .author-name {
    color: #f1f5f9;
}

.author-bio {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

.dark-mode .author-bio {
    color: #94a3b8;
}
/* ============================================
   WORKING PROCESS FLOW (tanpa angka, berbentuk alur)
   ============================================ */
.process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px 15px;
    padding: 20px 0;
}

.process-step-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    min-width: 80px;
    transition: var(--transition);
}

.dark-mode .process-step-flow {
    background: var(--dark-surface);
}

.process-step-flow:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    font-size: 22px;
    color: var(--primary-orange);
}

.process-step-flow span {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.process-arrow {
    color: var(--primary-orange);
    font-size: 20px;
}

.dark-mode .process-arrow {
    color: var(--primary-orange-light);
}

/* ============================================
   CAT TOOLS MARQUEE (bergerak)
   ============================================ */
.cattools-marquee {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.cattools-track {
    display: flex;
    gap: 30px;
    animation: scrollCAT 25s linear infinite;
    width: max-content;
}

.cattool-tag {
    padding: 10px 25px;
    background: var(--light-bg);
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
    transition: var(--transition);
}

.dark-mode .cattool-tag {
    background: var(--dark-surface);
}

.cattool-tag:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.05);
}

@keyframes scrollCAT {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .process-flow {
        gap: 5px 10px;
    }
    .process-step-flow {
        padding: 10px 15px;
        min-width: 60px;
    }
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .process-step-flow span {
        font-size: 11px;
    }
    .process-arrow {
        font-size: 16px;
    }
    .cattool-tag {
        padding: 8px 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .process-flow {
        gap: 3px 8px;
    }
    .process-step-flow {
        padding: 8px 12px;
        min-width: 50px;
    }
    .step-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .process-step-flow span {
        font-size: 10px;
    }
    .process-arrow {
        font-size: 12px;
    }
    .cattool-tag {
        padding: 6px 14px;
        font-size: 12px;
        gap: 20px;
    }
}
/* ============================================
   NAV & SEARCH BAR - SEJAJAR
   ============================================ */
.nav-search-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.dark-mode .nav-search-wrapper {
    border-color: #334155;
}

.main-nav {
    flex: 1;
    padding: 0;
    border: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.dark-mode .main-nav ul li a {
    color: var(--text-light);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary-orange);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

/* Search Bar - Sejajar dengan nav */
.search-bar {
    flex-shrink: 0;
    padding: 0;
}

.search-bar form {
    display: flex;
    max-width: 250px;
    margin: 0;
}

.search-bar input {
    padding: 8px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px 0 0 8px;
    font-size: 13px;
    transition: var(--transition);
    background: var(--light-bg);
    color: var(--text-dark);
    width: 180px;
}

.dark-mode .search-bar input {
    background: var(--dark-surface);
    border-color: #334155;
    color: var(--text-light);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.search-bar button {
    padding: 8px 14px;
    background: var(--primary-orange);
    border: none;
    border-radius: 0 8px 8px 0;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background: var(--primary-orange-dark);
}

/* Responsive */
@media (max-width: 992px) {
    .search-bar form {
        max-width: 200px;
    }
    .search-bar input {
        width: 140px;
        font-size: 12px;
        padding: 6px 10px;
    }
    .search-bar button {
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .nav-search-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px 0;
    }
    
    .main-nav {
        display: none;
        width: 100%;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .main-nav ul li {
        border-bottom: 1px solid #e2e8f0;
        padding: 0;
    }
    
    .dark-mode .main-nav ul li {
        border-color: #334155;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .search-bar {
        width: 100%;
        order: -1;
    }
    
    .search-bar form {
        max-width: 100%;
    }
    
    .search-bar input {
        width: 100%;
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .search-bar button {
        padding: 8px 16px;
    }
    
    /* Tampilkan menu toggle di mobile */
    .menu-toggle {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .search-bar input {
        font-size: 12px;
        padding: 6px 10px;
    }
    .search-bar button {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ============================================
   FOOTER - LAYOUT BARU (tanpa Tautan Cepat)
   ============================================ */
.footer {
    background: var(--dark-surface);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* About */
.footer-about p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-logo {
    max-height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Services */
.footer-services h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-services ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-services ul li {
    margin-bottom: 10px;
}

.footer-services ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-services ul li a:hover {
    color: var(--primary-orange);
}

/* Contact - lebih lebar */
.footer-contact {
    min-width: 280px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact ul li i {
    color: var(--primary-orange);
    width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Phone item - agar tidak 2 baris */
.phone-item {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
}

.phone-item .phone-label {
    font-weight: 500;
    color: #cbd5e1;
    white-space: nowrap;
}

.phone-item .phone-number {
    color: #94a3b8;
    white-space: nowrap;
}

.address-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

.address-item span {
    flex: 1;
    word-break: break-word;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-contact {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-contact {
        min-width: auto;
    }
    .phone-item {
        flex-wrap: wrap !important;
    }
    .phone-item .phone-number {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    .footer-about p {
        font-size: 13px;
    }
    .footer-services ul li a,
    .footer-contact ul li {
        font-size: 13px;
    }
    .phone-item {
        flex-wrap: wrap !important;
    }
}

/* ============================================
   ABOUT US SECTION - PROFESIONAL
   ============================================ */
.about-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.dark-mode .about-section {
    background: var(--dark-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* KONTEN KIRI */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-content .section-tag {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-orange);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    margin-bottom: 4px;
}

.about-content h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.dark-mode .about-content h2 {
    color: var(--text-light);
}

.about-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

.dark-mode .about-content p {
    color: #94a3b8;
}

.about-content .btn-outline {
    margin-top: 8px;
    align-self: flex-start;
}

/* STATS - KANAN */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background: var(--light-surface);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.dark-mode .stat-item {
    background: var(--dark-surface);
    border-color: #334155;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    margin-top: 6px;
    font-weight: 500;
}

.dark-mode .stat-label {
    color: #94a3b8;
}

/* ============================================
   RESPONSIVE ABOUT US
   ============================================ */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .about-content h2 {
        font-size: 28px;
    }
    .about-grid {
        gap: 40px;
    }
    .stat-number {
        font-size: 30px;
    }
}

/* Tablet kecil - 768px */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-content h2 {
        font-size: 24px;
        white-space: normal;
    }
    .about-content p {
        font-size: 15px;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .stat-item {
        padding: 20px 15px;
    }
    .stat-number {
        font-size: 28px;
    }
    .stat-label {
        font-size: 13px;
    }
    .about-content .btn-outline {
        align-self: center;
        width: 100%;
        justify-content: center;
    }
}

/* HP - 480px */
@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    .about-content h2 {
        font-size: 20px;
        white-space: normal;
    }
    .about-content p {
        font-size: 14px;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .stat-item {
        padding: 15px 10px;
    }
    .stat-number {
        font-size: 24px;
    }
    .stat-label {
        font-size: 12px;
    }
}

/* HP kecil - 360px */
@media (max-width: 360px) {
    .about-content h2 {
        font-size: 18px;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .stat-number {
        font-size: 20px;
    }
    .stat-label {
        font-size: 11px;
    }
}

/* =========================================================
   CAT TOOLS - LOGO MARQUEE
========================================================= */

.cattools-section {
    padding: 90px 0;
    overflow: hidden;
    background: var(--light-bg);
}

.cattools-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 45px;
    position: relative;
}

/* Efek memudar di sisi kiri dan kanan */
.cattools-marquee::before,
.cattools-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.cattools-marquee::before {
    left: 0;
    background: linear-gradient(
        to right,
        var(--light-bg),
        transparent
    );
}

.cattools-marquee::after {
    right: 0;
    background: linear-gradient(
        to left,
        var(--light-bg),
        transparent
    );
}

.cattools-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 24px;

    animation:
        catToolsMove
        30s
        linear
        infinite;
}

.cattool-item {
    flex-shrink: 0;

    width: 180px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;

    background: var(--light-surface);

    border:
        1px solid
        rgba(15, 23, 42, 0.08);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition: var(--transition);
}

.cattool-item:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-lg);
}


/* LOGO */

.cattool-logo {
    display: block;

    max-width: 140px;
    max-height: 55px;

    width: auto;
    height: auto;

    object-fit: contain;
}


/* FALLBACK JIKA LOGO BELUM ADA */

.cattool-tag {
    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 130px;

    padding:
        13px
        22px;

    font-size: 17px;
    font-weight: 700;

    color: var(--text-dark);

    text-align: center;

    white-space: nowrap;
}


/* ANIMASI */

@keyframes catToolsMove {

    from {
        transform:
            translateX(0);
    }

    to {
        transform:
            translateX(-50%);
    }

}


/* BERHENTI SAAT DIHOVER */

.cattools-marquee:hover
.cattools-track {
    animation-play-state:
        paused;
}


/* RESPONSIVE */

@media (
    max-width: 768px
) {

    .cattools-section {
        padding:
            65px
            0;
    }

    .cattools-track {
        gap: 15px;

        animation-duration:
            22s;
    }

    .cattool-item {
        width: 145px;
        height: 75px;
    }

    .cattool-logo {
        max-width: 115px;
        max-height: 45px;
    }

    .cattool-tag {
        min-width: 100px;

        padding:
            10px
            15px;

        font-size:
            14px;
    }

}
/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    padding: 80px 0 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 700px;
}

.page-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.page-hero-content p {
    font-size: 18px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    max-width: 500px;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    .page-hero-content h1 {
        font-size: 30px;
    }
    .page-hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 50px 0 30px;
    }
    .page-hero-content h1 {
        font-size: 24px;
    }
    .page-hero-content p {
        font-size: 14px;
    }
}
/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 60px;
    color: var(--primary-orange);
    opacity: 0.4;
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 20px;
}

.dark-mode .empty-state p {
    color: #94a3b8;
}

/* =====================================================
   ABOUT PAGE - WORKING PROCESS CAROUSEL
===================================================== */

.about-process-carousel {
    position: relative;

    width: 100%;
    max-width: 780px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 22px;

    background: #fffdf5;

    box-shadow:
        0 18px 50px
        rgba(31, 41, 55, 0.15);
}


/* TRACK */

.about-process-track {
    display: flex;

    width: 100%;

    transition:
        transform
        0.6s
        ease;
}


/* SLIDE */

.about-process-slide {
    flex:
        0 0 100%;

    width: 100%;
}


/* GAMBAR */

.about-process-slide img {
    display: block;

    width: 100%;

    height: auto;

    aspect-ratio:
        16 / 9;

    object-fit:
        contain;

    background:
        #fff9e8;
}


/* TOMBOL */

.about-process-button {
    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.92);

    color:
        #d99a00;

    font-size:
        17px;

    cursor: pointer;

    z-index: 5;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.15);

    transition:
        all
        0.3s
        ease;
}


.about-process-button:hover {
    background:
        #fbbf24;

    color:
        #ffffff;

    transform:
        translateY(-50%)
        scale(1.08);
}


/* POSISI TOMBOL */

.about-process-prev {
    left:
        16px;
}


.about-process-next {
    right:
        16px;
}


/* DOT */

.about-process-dots {
    position: absolute;

    left: 50%;

    bottom: 16px;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    z-index: 5;
}


.about-process-dot {
    width: 9px;

    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.7);

    cursor: pointer;

    transition:
        all
        0.3s
        ease;
}


.about-process-dot.active {
    width: 28px;

    border-radius:
        20px;

    background:
        #fbbf24;
}


/* =====================================================
   TABLET
===================================================== */

@media (
    max-width: 992px
) {

    .about-process-carousel {
        max-width:
            100%;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (
    max-width: 768px
) {

    .about-process-carousel {
        border-radius:
            16px;
    }


    .about-process-slide img {
        aspect-ratio:
            16 / 9;
    }


    .about-process-button {
        width:
            38px;

        height:
            38px;

        font-size:
            14px;
    }


    .about-process-prev {
        left:
            8px;
    }


    .about-process-next {
        right:
            8px;
    }


    .about-process-dots {
        bottom:
            8px;
    }

}

/* =========================
   Related Articles
========================= */

.related-articles .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 artikel per baris */
    gap: 30px;
}

.related-articles .article-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: .3s;
}

.related-articles .article-card:hover {
    transform: translateY(-5px);
}

.related-articles .article-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.related-articles .article-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.related-articles .article-body h3 {
    margin-bottom: 15px;
    font-size: 1.15rem;
    line-height: 1.5;
}

.related-articles .article-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .9rem;
}

/* Tablet = 2 kolom */
@media (max-width: 991px) {
    .related-articles .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile = 1 kolom */
@media (max-width: 576px) {
    .related-articles .articles-grid {
        grid-template-columns: 1fr;
    }
}
/* ===========================
   Related Articles Heading
=========================== */

.related-articles{
    margin-top:60px;
}

.related-heading{
    position:relative;
    text-align:center;
    border-top:2px solid #F6D365; /* kuning muda */
    margin:60px 0 40px;
}

.related-title{
    display:inline-block;
    background:#fff; /* atau var(--background-color) */
    padding:0 28px;
    margin-top:-24px;   /* sebelumnya -18px */
    font-size:2rem;
    font-weight:700;
    color:#222;
    line-height:1;
}