/* ===================================
   ArsiTek 
   =================================== */


/* Anti scroll horizontal global */
   html, body {
    overflow-x: hidden;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette */
    --gold: #D4AF37;
    --gold-light: #F4E4B0;
    --gold-dark: #B8941E;
    --silver: #C0C0C0;
    --silver-light: #E8E8E8;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --charcoal: #2D2D2D;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    
    /* Neon Accents */
    --neon-gold: #FFD700;
    --neon-blue: #00D4FF;
    --neon-purple: #B026FF;
    
    /* Functional Colors */
    --primary: var(--gold);
    --secondary: var(--silver);
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: var(--neon-blue);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Global Background Settings
   =================================== */

/* Set background hitam untuk semua section */
section {
    background-color: var(--black);
    color: var(--white);
    border-bottom: 2px solid var(--gold);
    padding: 60px 0;
}

/* Background untuk body */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
}

/* Container adjustments */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: transparent;
}

/* Card styling untuk layanan */
.service-card,
.portfolio-card,
.team-card,
.client-card {
    background: var(--dark-gray);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover,
.portfolio-card:hover,
.team-card:hover,
.client-card:hover {
    background: var(--charcoal);
    border-color: var(--neon-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Stats/Counter boxes */
.stat-box,
.counter-box {
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

/* Text adjustments */
h1, h2, h3, h4, h5, h6 {
    color: var(--gold);
}

p {
    color: var(--off-white);
}

/* Button styling */
.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--neon-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    padding: 12px 30px;
    border: 2px solid var(--gold);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

/* Footer */
footer {
    background: var(--dark-gray);
    border-top: 3px solid var(--gold);
    color: var(--off-white);
    padding: 40px 0 20px;
}

/* Form inputs */
input, textarea, select {
    background: var(--dark-gray);
    border: 1px solid var(--gold);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--neon-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Ensure all backgrounds are dark */
.hero-section,
.about-section,
.services-section,
.portfolio-section,
.team-section,
.clients-section,
.contact-section,
.testimonials-section {
    background-color: var(--black) !important;
}

/* ===================================
   FORCE BLACK BACKGROUND - All Sections
   =================================== */

/* Hero Section */
.hero {
    background-color: var(--black) !important;
    color: var(--white) !important;
}

/* Stats Section */
.stats-section {
    background-color: var(--black) !important;
    color: var(--white) !important;
    border-bottom: 2px solid var(--gold);
}

/* Services Section */
.services-section {
    background-color: var(--black) !important;
    color: var(--white) !important;
    border-bottom: 2px solid var(--gold);
}

/* Featured Projects Section */
.featured-section {
    background-color: var(--black) !important;
    color: var(--white) !important;
    border-bottom: 2px solid var(--gold);
}

/* Categories Section */
.categories-section {
    background-color: var(--black) !important;
    color: var(--white) !important;
    border-bottom: 2px solid var(--gold);
}

/* Latest Projects Section */
.latest-section {
    background-color: var(--black) !important;
    color: var(--white) !important;
    border-bottom: 2px solid var(--gold);
}

/* Partners/Clients Section */
.partners-section {
    background-color: var(--black) !important;
    color: var(--white) !important;
    border-bottom: 2px solid var(--gold);
}

/* CTA WhatsApp Section */
.cta-section {
    background-color: var(--black) !important;
    color: var(--white) !important;
    border-bottom: 2px solid var(--gold);
}

/* Footer */
.footer {
    background-color: var(--dark-gray) !important;
    color: var(--off-white) !important;
    border-top: 3px solid var(--gold);
}

/* Override any inline styles or default backgrounds */
section[class*="section"] {
    background-color: var(--black) !important;
    color: var(--white) !important;
}

/* Text adjustments for all sections */
.stats-section h2,
.services-section h2,
.featured-section h2,
.categories-section h2,
.latest-section h2,
.partners-section h2 {
    color: var(--gold) !important;
}

.stats-section p,
.services-section p,
.featured-section p,
.categories-section p,
.latest-section p,
.partners-section p {
    color: var(--off-white) !important;
}

/* ===================================
   Buttons - Premium Style
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #059669);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--black);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

/* ===================================
   Navigation - Premium Black with Gold
   =================================== */
.navbar {
    background: linear-gradient(180deg, var(--black), var(--dark-gray));
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

.navbar .container {
    max-width: 100%;
    overflow-x: hidden;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo dengan efek hexagon */
.logo-wrapper {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    background: var(--black);
}

.logo-wrapper::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(60deg, var(--neon-gold), var(--white), var(--neon-gold));
    clip-path: inherit;
    z-index: -1;
    filter: blur(4px);
    opacity: 0.8;
}

.logo-image {
    width: 55px;
    height: 55px;
    object-fit: cover;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .brand-name {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--neon-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.logo-text .brand-subtitle {
    font-size: 11px;
    font-weight: 500;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--neon-gold));
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.hide-mobile {
    display: inline-flex;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gold);
    cursor: pointer;
}

/* ============================================
   HERO SECTION - Fixed Button Overflow
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px; /* Tambah padding top */
    background: var(--black);
    position: relative;
}

.hero h1 {
    font-size: 48px; /* Dikurangi dari terlalu besar */
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--white);
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 18px; /* Dikurangi dari terlalu besar */
    color: var(--silver);
    max-width: 800px;
    margin: 0 auto 35px; /* Tambah jarak ke button */
    line-height: 1.8;
}

.hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px; /* Tambah jarak dari paragraf */
}

.hero .btn-primary,
.hero .btn-secondary {
    padding: 14px 35px; /* Kurangi padding horizontal */
    font-size: 15px; /* Kurangi ukuran font */
    white-space: nowrap;
}

/* ============================================
   SERVICES SECTION - 4 Columns Per Row
   ============================================ */

.services-section {
    padding-top: 80px !important;
    z-index: 5;
    position: relative;
    background: var(--black) !important;
}

.layer-gradient {
    pointer-events: none;
    z-index: 0 !important;
}


.services-section h2 {
    text-align: center;
    font-size: 32px; /* Dikurangi */
    color: var(--gold);
    margin-top: 30px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-section > p {
    text-align: center;
    color: var(--silver);
    margin-bottom: 50px; /* Kurangi jarak */
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolom per baris */
    gap: 25px; /* Kurangi gap */
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--black);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 35px 25px; /* Kurangi padding */
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden !important;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3);
    min-height: 280px; /* Kurangi tinggi minimum */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-gold), transparent);
    transition: width 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    z-index: 0;
}

.service-card:hover::after {
    width: 90%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--neon-gold);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 215, 0, 0.5);
}

/* Icon Service */
.service-card .service-icon {
    width: 110px; /* Kurangi ukuran */
    height: 110px;
    margin: 0 auto 20px; /* Kurangi jarak */
    background: linear-gradient(135deg, var(--gold) 0%, var(--neon-gold) 50%, var(--gold-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(255, 215, 0, 0.4);
    transition: all 0.4s ease;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.7),
        0 0 50px rgba(255, 215, 0, 0.6);
}

.service-card .service-icon i {
    font-size: 60px; /* Kurangi ukuran */
    color: var(--black);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.15);
}

/* Title Service */
.service-card h3 {
    font-size: 17px; /* Kurangi ukuran */
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 12px 0; /* Tambah jarak bawah */
    line-height: 1.5;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--neon-gold);
    letter-spacing: 2px;
}

.service-card p {
    font-size: 14px; /* Kurangi ukuran */
    color: var(--silver);
    opacity: 0.9;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    padding-top: 12px; /* Tambah padding atas */
}

.service-card h3,
.service-card p,
.service-card .service-icon {
    position: relative;
    z-index: 10; /* naikkan agar selalu di atas efek glow */
}

.service-card i,
.service-card .icon {
    font-size: 45px !important;   /* Besarkan ikon */
    margin-bottom: 15px;
}


/* Paksa 4 kolom di desktop */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.container {
    max-width: 1400px; /* dari 1200 jadi 1400 */
}





/* ============================================
   PORTFOLIO/PROJECT SECTION - 4 Columns
   ============================================ */

.featured-section,
.latest-section {
    padding: 80px 0;
    background: var(--black) !important;
}

.featured-section h2,
.latest-section h2 {
    text-align: center;
    font-size: 32px; /* Dikurangi */
    color: var(--gold);
    margin-bottom: 15px; /* Kurangi jarak */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.featured-section > p,
.latest-section > p {
    text-align: center;
    color: var(--silver);
    margin-bottom: 35px; /* Kurangi jarak */
    font-size: 16px;
}

/* Button Lihat Semua */
.featured-section .view-all-btn,
.latest-section .view-all-btn {
    text-align: center;
    margin-top: 50px; /* Tambah jarak dari card */
}

.featured-section .btn-secondary,
.latest-section .btn-secondary {
    padding: 12px 30px;
    font-size: 14px;
}

.portfolio-grid,
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolom per baris */
    gap: 25px; /* Kurangi gap */
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-card,
.project-card {
    background: var(--black);
    border: 2px solid var(--gold);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3);
}

.portfolio-card::after,
.project-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-gold), transparent);
    transition: width 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    z-index: 1;
}

.portfolio-card:hover::after,
.project-card:hover::after {
    width: 90%;
}

.portfolio-card:hover,
.project-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--neon-gold);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 215, 0, 0.5);
}

/* Image Container */
.portfolio-card img,
.project-card img {
    width: 100%;
    height: 200px; /* Kurangi tinggi */
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover img,
.project-card:hover img {
    transform: scale(1.1);
}

/* Content Area */
.portfolio-card .card-content,
.project-card .card-content {
    padding: 20px; /* Kurangi padding */
    background: var(--black);
    position: relative;
    z-index: 2;
}

.portfolio-card .card-badge,
.project-card .card-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 4px 12px; /* Kurangi padding */
    border-radius: 20px;
    font-size: 10px; /* Kurangi ukuran */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.portfolio-card h3,
.project-card h3 {
    font-size: 16px; /* Kurangi ukuran */
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.portfolio-card:hover h3,
.project-card:hover h3 {
    color: var(--neon-gold);
}

.portfolio-card p,
.project-card p {
    font-size: 13px; /* Kurangi ukuran */
    color: var(--silver);
    line-height: 1.6;
    margin: 0;
}

/* Meta Info (lokasi, views, dll) */
.portfolio-card .card-meta,
.project-card .card-meta {
    display: flex;
    gap: 15px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gold);
}

.portfolio-card .card-meta span,
.project-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px; /* Kurangi ukuran */
    color: var(--silver);
}

.portfolio-card .card-meta i,
.project-card .card-meta i {
    color: var(--gold);
    font-size: 12px;
}

/* ============================================
   CATEGORIES SECTION - 4 Columns (Sama seperti Services)
   ============================================ */

.categories-section {
    padding: 80px 0;
    background: var(--black) !important;
}

.categories-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.categories-section > p {
    text-align: center;
    color: var(--silver);
    margin-bottom: 50px;
    font-size: 16px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolom per baris */
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: var(--black);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-gold), transparent);
    transition: width 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    z-index: 0;
}

.category-card:hover::after {
    width: 90%;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--neon-gold);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 215, 0, 0.5);
}

/* Icon Category */
.category-card .category-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--neon-gold) 50%, var(--gold-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(255, 215, 0, 0.4);
    transition: all 0.4s ease;
    z-index: 2;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.7),
        0 0 50px rgba(255, 215, 0, 0.6);
}

.category-card .category-icon i {
    font-size: 42px;
    color: var(--black);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon i {
    transform: scale(1.15);
}

/* Title Category */
.category-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 12px 0;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-card:hover h3 {
    color: var(--neon-gold);
    letter-spacing: 2px;
}

.category-card p {
    font-size: 13px;
    color: var(--silver);
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    padding-top: 12px;
}

/* ============================================
   PARTNERS/CLIENTS SECTION - 4 Columns
   ============================================ */

.partners-section,
.clients-section {
    padding: 80px 0;
    background: var(--black) !important;
}

.partners-section h2,
.clients-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-section > p,
.clients-section > p {
    text-align: center;
    color: var(--silver);
    margin-bottom: 50px;
    font-size: 16px;
}

.partners-grid,
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolom per baris */
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-card,
.client-card {
    background: var(--black);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card:hover,
.client-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-gold);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 215, 0, 0.5);
}

.partner-card img,
.client-card img {
    max-width: 120px; /* Kurangi ukuran */
    height: auto;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.partner-card:hover img,
.client-card:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid,
    .categories-grid,
    .portfolio-grid,
    .projects-grid,
    .partners-grid,
    .clients-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 kolom di tablet besar */
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .services-grid,
    .categories-grid,
    .portfolio-grid,
    .projects-grid,
    .partners-grid,
    .clients-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom di mobile */
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .categories-grid {
        grid-template-columns: 1fr; /* 1 kolom di mobile kecil */
    }
}

/* ============================================
   STATISTICS SECTION - IMPROVED VERSION
   Background: Hitam dengan Neon Gold Accent
   ============================================ */

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}

/* Efek cahaya background */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 kolom dalam 1 baris */
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Kartu statistik dengan border neon gold */
.stats-section .stat-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: var(--black);
    border: 2px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3),
        inset 0 0 20px rgba(212, 175, 55, 0.05);
}

/* Efek glow saat hover */
.stats-section .stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stats-section .stat-item:hover::before {
    opacity: 1;
}

/* Garis bawah dengan efek neon */
.stats-section .stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-gold), transparent);
    transition: width 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.stats-section .stat-item:hover::after {
    width: 90%;
}

/* Hover effect */
.stats-section .stat-item:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--neon-gold);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 215, 0, 0.5),
        inset 0 0 30px rgba(212, 175, 55, 0.1);
}

/* Icon dengan background gold gradient - LEBIH BESAR */
.stats-section .stat-item .stat-icon {
    width: 100px; /* Diperbesar dari 80px */
    height: 100px; /* Diperbesar dari 80px */
    margin: 0 auto 30px; /* Jarak bawah diperbesar */
    background: linear-gradient(135deg, var(--gold) 0%, var(--neon-gold) 50%, var(--gold-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* Efek kilau pada icon */
.stats-section .stat-item .stat-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stats-section .stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.7),
        0 0 50px rgba(255, 215, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Icon symbol dengan warna hitam - LEBIH BESAR */
.stats-section .stat-item .stat-icon i {
    font-size: 48px; /* Diperbesar dari 36px */
    color: var(--black);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-section .stat-item:hover .stat-icon i {
    transform: scale(1.15);
    color: var(--dark-gray);
}

/* Angka statistik dengan ukuran SAMA dengan label */
.stats-section .stat-item h3 {
    font-size: 14px; /* Sama dengan ukuran label */
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-gold) 0%, var(--gold-light) 50%, var(--neon-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.4;
    letter-spacing: 2px; /* Sama dengan label */
    text-transform: uppercase; /* Sama seperti label */
    position: relative;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.stats-section .stat-item:hover h3 {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

/* Label/deskripsi dengan warna silver */
.stats-section .stat-item p {
    color: var(--silver);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.5;
    margin: 0;
    transition: all 0.3s ease;
}

.stats-section .stat-item:hover p {
    color: var(--silver-light);
    letter-spacing: 2.5px;
}

/* Jika tidak ada paragraf */
.stats-section .stat-item p:empty {
    display: none;
}

.stats-section .stat-item:has(p:empty) h3 {
    font-size: 14px; /* Tetap sama dengan label */
    line-height: 1.5;
    margin-bottom: 0;
}

/* Hilangkan garis pemisah vertical */
.stats-section .stat-item:not(:last-child)::before {
    display: none;
}

/* Responsive - Mobile: 2 kolom */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 kolom di tablet */
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom di mobile */
        gap: 15px;
    }

    .stats-section .stat-item {
        padding: 30px 15px;
    }

    .stats-section .stat-item .stat-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .stats-section .stat-item .stat-icon i {
        font-size: 32px;
    }

    .stats-section .stat-item h3 {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .stats-section .stat-item p {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr; /* 1 kolom di mobile kecil */
    }
}



/* ============================================
   SERVICES SECTION - Premium Gold Style
   ============================================ */

.services-section {
    padding: 80px 0;
    background: var(--black) !important;
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--black);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible; /* Ubah dari hidden */
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-gold), transparent);
    transition: width 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.service-card:hover::after {
    width: 90%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--neon-gold);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 215, 0, 0.5);
}

/* Icon Service */
.service-card .service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--neon-gold) 50%, var(--gold-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(255, 215, 0, 0.4);
    transition: all 0.4s ease;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.7),
        0 0 50px rgba(255, 215, 0, 0.6);
}

.service-card .service-icon i {
    font-size: 48px;
    color: var(--black);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.15);
}

/* Title Service */
.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--neon-gold);
    letter-spacing: 2.5px;
}

.service-card p {
    font-size: 14px;
    color: var(--silver);
    margin-top: 10px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ============================================
   PORTFOLIO/PROJECT SECTION - Premium Gold Style
   ============================================ */

.featured-section,
.latest-section {
    padding: 80px 0;
    background: var(--black) !important;
}

.featured-section h2,
.latest-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.featured-section p,
.latest-section p {
    text-align: center;
    color: var(--silver);
    margin-bottom: 40px;
}

.portfolio-grid,
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-card,
.project-card {
    background: var(--black);
    border: 2px solid var(--gold);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3);
}

.portfolio-card::after,
.project-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-gold), transparent);
    transition: width 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.portfolio-card:hover::after,
.project-card:hover::after {
    width: 90%;
}

.portfolio-card:hover,
.project-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--neon-gold);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 215, 0, 0.5);
}

/* Image Container */
.portfolio-card img,
.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover img,
.project-card:hover img {
    transform: scale(1.1);
}

/* Content Area */
.portfolio-card .card-content,
.project-card .card-content {
    padding: 25px;
    background: var(--black);
    position: relative;
    z-index: 2;
}

.portfolio-card .card-badge,
.project-card .card-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.portfolio-card h3,
.project-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.portfolio-card:hover h3,
.project-card:hover h3 {
    color: var(--neon-gold);
}

.portfolio-card p,
.project-card p {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.6;
    margin: 0;
}

/* Meta Info (lokasi, views, dll) */
.portfolio-card .card-meta,
.project-card .card-meta {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gold);
}

.portfolio-card .card-meta span,
.project-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--silver);
}

.portfolio-card .card-meta i,
.project-card .card-meta i {
    color: var(--gold);
}

/* ============================================
   CLIENTS/PARTNERS SECTION - Premium Gold Style
   ============================================ */

.partners-section,
.clients-section {
    padding: 80px 0;
    background: var(--black) !important;
}

.partners-section h2,
.clients-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-section p,
.clients-section p {
    text-align: center;
    color: var(--silver);
    margin-bottom: 40px;
}

.partners-grid,
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-card,
.client-card {
    background: var(--black);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card:hover,
.client-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-gold);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 215, 0, 0.5);
}

.partner-card img,
.client-card img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.partner-card:hover img,
.client-card:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid,
    .portfolio-grid,
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .partners-grid,
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* ===================================
   Projects Section - Premium
   =================================== */
.featured-section,
.latest-section {
    padding: 80px 0;
}

.featured-section {
    background: var(--off-white);
}

.latest-section {
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid var(--silver-light);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.15);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.85), rgba(212,175,55,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.btn-view {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-view:hover {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-badge.featured {
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold), var(--neon-gold));
    color: var(--white);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.project-badge.category {
    bottom: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    color: var(--black);
    border: 1px solid var(--gold);
}

.project-info {
    padding: 25px;
}

.project-category {
    display: inline-block;
    background: var(--gold-light);
    color: var(--gold-dark);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.project-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--black);
}

.project-info h3 a:hover {
    color: var(--gold);
}

.project-location {
    color: var(--charcoal);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--charcoal);
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===================================
   CTA Section - Premium Dark
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--neon-gold), var(--gold), transparent);
}

.cta-content i {
    font-size: 72px;
    margin-bottom: 25px;
    color: var(--gold);
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    color: var(--silver-light);
}

/* ===================================
   Partners Section - Premium
   =================================== */
.partners-section {
    padding: 80px 0;
    background: var(--off-white);
    overflow: hidden;
}

.partners-slider {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid var(--silver-light);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.partner-logo {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   WhatsApp Float Button - Premium
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366, #128c4a);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse-gold 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-gold {
    0% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 6px 35px rgba(212, 175, 55, 0.7); }
    100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); }
}

/* ===================================
   Badge - Premium
   =================================== */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.badge-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
}

.badge-success {
    background: var(--success);
    color: var(--white);
}

.badge-warning {
    background: var(--warning);
    color: var(--white);
}

.badge-klien {
    background: #dbeafe;
    color: #1e40af;
}

.badge-partner {
    background: #dcfce7;
    color: #166534;
}

.badge-vendor {
    background: var(--gold-light);
    color: var(--gold-dark);
}

/* ===================================
   Flash Messages - Premium
   =================================== */
.flash-message {
    padding: 18px 0;
    text-align: center;
    font-weight: 500;
    position: relative;
}

.flash-success {
    background: linear-gradient(135deg, var(--success), #059669);
    color: var(--white);
}

.flash-error {
    background: linear-gradient(135deg, var(--danger), #dc2626);
    color: var(--white);
}

.flash-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    margin-left: 15px;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    color: var(--white);
    padding: 100px 0 70px;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 20px;
    color: var(--silver-light);
}

/* ===================================
   Footer - Premium Dark Design
   =================================== */
.footer {
    background: linear-gradient(180deg, var(--dark-gray), var(--black));
    color: var(--silver-light);
    padding: 60px 0 30px;
    border-top: 2px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    color: var(--silver-light);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--silver-light);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-section ul li a i {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--charcoal);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--charcoal);
    color: var(--silver);
}

.footer-bottom p {
    margin: 0;
}

/* ===================================
   Categories Page - Premium Cards
   =================================== */
.categories-section {
    padding: 80px 0;
    background: var(--off-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid var(--silver-light);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--neon-gold));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
    background: var(--white);
}

.category-card i {
    font-size: 56px;
    background: linear-gradient(135deg, var(--gold), var(--neon-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.category-card:hover i {
    transform: scale(1.15);
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--black);
    font-weight: 600;
}

.category-card p {
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.category-card:hover p {
    color: var(--black);
}

.category-count {
    display: inline-block;
    background: var(--gold-light);
    color: var(--gold-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

/* ===================================
   Contact Page - Premium Forms
   =================================== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--silver-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 600;
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--silver-light);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: var(--off-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--silver-light);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-card:hover {
    border-color: var(--gold);
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 5px;
}

.contact-info-text p {
    color: var(--charcoal);
    margin: 0;
}

.contact-info-text a {
    color: var(--gold);
    font-weight: 500;
}

.contact-info-text a:hover {
    color: var(--gold-dark);
}

/* ===================================
   About/Services Page - Enhanced
   =================================== */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 3px solid var(--gold);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h3 {
    font-size: 32px;
    color: var(--black);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    padding: 12px 0;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list li i {
    color: var(--gold);
    font-size: 20px;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--silver-light);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 80px;
    color: var(--gold-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.testimonial-text {
    margin-bottom: 20px;
    color: var(--charcoal);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    color: var(--black);
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info p {
    color: var(--charcoal);
    font-size: 13px;
    margin: 0;
}

/* ===================================
   Breadcrumb - Premium Style
   =================================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    font-size: 14px;
    background: var(--off-white);
}

.breadcrumb a {
    color: var(--charcoal);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb i {
    color: var(--silver);
    font-size: 12px;
}

.breadcrumb span {
    color: var(--gold);
    font-weight: 600;
}

/* ===================================
   Loading Spinner
   =================================== */
.loader {
    border: 4px solid var(--silver-light);
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================
   Pagination - Premium Style
   =================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    padding: 10px 18px;
    border: 2px solid var(--silver-light);
    border-radius: 8px;
    color: var(--charcoal);
    transition: all 0.3s;
    font-weight: 500;
}

.pagination a:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}

.pagination .active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold);
}

/* ===================================
   Empty State
   =================================== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 100px;
    color: var(--silver-light);
    margin-bottom: 25px;
}

.empty-state h3 {
    font-size: 32px;
    color: var(--black);
    margin-bottom: 15px;
}

.empty-state p {
    color: var(--charcoal);
    font-size: 18px;
    margin-bottom: 30px;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hide-mobile {
        display: none;
    }
    
    .logo-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
    }
    
    .logo-text .brand-name {
        font-size: 20px;
    }
    
    .logo-text .brand-subtitle {
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
}