/* style.css - CSS UNIFIED untuk semua halaman ListrikPro */

:root {
    --midnight-blue: #0F172A;
    --electric-blue: #2563EB;
    --safety-yellow: #FACC15;
    --cool-gray: #CBD5E1;
    --white: #FFFFFF;
    --radius: 10px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--midnight-blue);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== HEADER STYLES ========== */
header {
    padding: 24px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: transparent;
    transition: var(--transition);
}

header.scrolled {
    padding: 16px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    background-color: rgba(15, 23, 42, 0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* old logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

/*
.logo-icon {
    color: var(--safety-yellow);
    font-size: 2.2rem;
}*/

/* new logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    height: 45px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}
/* end */

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--safety-yellow);
}

.nav-link.active {
    color: var(--safety-yellow);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--safety-yellow);
    border-radius: 2px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
}

/* ========== HERO SECTION (HOME PAGE) ========== */
.hero {
    padding: 140px 0 100px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)),
        url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 10px;
    color: transparent;
    background: linear-gradient(90deg, #FFFFFF 0%, #FACC15 50%, #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(250, 204, 21, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    font-weight: 900;
    line-height: 1.1;
}

.hero-content h1 span {
    display: block;
    font-size: 3.8rem;
    background: linear-gradient(90deg, #FFFFFF 0%, #60A5FA 50%, #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-content.animated h1 {
    opacity: 1;
    transform: translateY(0);
    animation: gradientShift 3s ease infinite;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--cool-gray);
    margin-bottom: 40px;
    max-width: 90%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
    line-height: 1.8;
}

.hero-content.animated p {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.hero-content.animated .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.hero-content.animated .features-grid {
    opacity: 1;
    transform: translateY(0);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    color: var(--safety-yellow);
    font-size: 1.8rem;
    min-width: 30px;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--white);
}

.feature-content p {
    font-size: 1rem;
    color: var(--cool-gray);
    margin: 0;
    line-height: 1.5;
}

/* 24 Hours Badge */
.hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(37, 99, 235, 0.15);
    color: var(--electric-blue);
    padding: 5px 10px; 
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
	margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.hero-content.animated .hours-badge {
    opacity: 1;
    transform: translateY(0);
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #10B981;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.hero-visual.animated {
    opacity: 1;
    transform: translateX(0);
}

.tech-image {
    width: 100%;
    height: 100%;
    background-color: #1E293B;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-image: linear-gradient(to bottom right, #1E293B, #334155);
}

.tech-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.8;
    mix-blend-mode: overlay;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    background-color: rgba(30, 41, 59, 0.7);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none; /* Supaya tidak mengganggu klik di belakang */
}

.floating-icon {
    position: absolute;
    display: inline-flex;
    align-items: center;
    /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2); */
    border-radius: 50px;
    /* padding: 10px 20px; */
    gap: 15px;
    animation: float 6s ease-in-out infinite;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); */
    pointer-events: auto; /* Aktifkan untuk hover */
    transition: all 0.3s ease;
    z-index: 10;
}

/* Icon styling */
.floating-icon i {
    color: var(--safety-yellow, #FFD700);
    font-size: 2.2rem;
    min-width: 40px;
    text-align: center;
}

/* Text di samping kanan icon */
.icon-text {
    color: white;
    /* font-size: 1.1rem; */
    /* font-weight: 600; */
    white-space: nowrap;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    padding-right: 10px;
}

/* Hover effect */
.floating-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Posisi masing-masing icon */
.icon-1 { top: 95%; left: 0%; animation-delay: 0s; }
.icon-2 { top: 0%; right: 0%; animation-delay: 1s; }
.icon-3 { bottom: 17%; left: 0%; animation-delay: 2s; }
.icon-4 { bottom: 70%; right: 0%; animation-delay: 3s; }

/* Animasi float */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsif */
@media (max-width: 768px) {
    .floating-icon {
        /* padding: 1px 1px; */
        gap: 10px;
    }
    
    .floating-icon i {
        font-size: 1.8rem;
        min-width: 35px;
    }
    
    .icon-text {
        font-size: 1rem; 
        white-space: normal;
        max-width: 120px;
    }
    
    .icon-1 { top: 95%; left: 0%; }
    .icon-2 { top: 0%; right: 0%; }
    .icon-3 { bottom: 35%; left: 5%; }
    .icon-4 { bottom: 10%; right: 5%; }
}

/* ========== SERVICES SECTION (HOME PAGE) ========== */
.services-section {
    padding: 100px 0;
    background-color: #1E293B;
    /* border-radius: 30px 30px 0 0; */
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--midnight-blue);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(203, 213, 225, 0.1);
    opacity: 0;
    transform: translateY(40px);
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    border-color: var(--electric-blue);
}

.card-icon {
    font-size: 3rem;
    color: var(--safety-yellow);
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.card-desc {
    color: var(--cool-gray);
}

/* ========== EMERGENCY BANNER ========== */
.emergency-banner {
    background-color: #1E293B;
    padding: 60px 0;
    margin: 40px 0;
   /* border-radius: var(--radius); */
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.banner-text h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.banner-text p {
    color: var(--cool-gray);
    font-size: 1.1rem;
    max-width: 600px;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--safety-yellow);
    color: var(--midnight-blue);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    white-space: nowrap;
}

.banner-button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.3);
}

/* ========== TESTIMONI PAGE STYLES ========== */
/* Hero Testimoni */
.testimoni-hero {
    padding: 160px 0 80px;
    position: relative;
    background: 
        linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)),
        url('https://images.unsplash.com/photo-1620121478247-ec786b9be2cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=2064&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: transparent;
    background: linear-gradient(90deg, #FFFFFF 0%, #FACC15 50%, #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(250, 204, 21, 0.2);
    animation: gradientShift 3s ease infinite;
    font-weight: 900;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--cool-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Stats Container */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--safety-yellow);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--cool-gray);
}

/* Rating Section */
.rating-section {
    padding: 80px 0;
    background-color: #1E293B;
}

.rating-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.average-rating {
    text-align: center;
    background-color: var(--midnight-blue);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 250px;
}

.rating-stars {
    color: var(--safety-yellow);
    font-size: 2rem;
    margin-bottom: 15px;
}

.rating-score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.rating-total {
    color: var(--cool-gray);
    font-size: 1.1rem;
}

.rating-bars {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.rating-label {
    width: 100px;
    color: var(--white);
    font-weight: 500;
}

.bar-container {
    flex: 1;
    height: 10px;
    background-color: rgba(203, 213, 225, 0.2);
    border-radius: 5px;
    overflow: hidden;
    margin: 0 15px;
}

.bar-fill {
    height: 100%;
    background-color: var(--safety-yellow);
    border-radius: 5px;
    width: 0;
    transition: width 1.5s ease;
}

.bar-percentage {
    width: 40px;
    text-align: right;
    color: var(--white);
    font-weight: 600;
}

/* Testimoni Grid */
.testimoni-section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--cool-gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 60px;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimoni-card {
    background-color: #1E293B;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(203, 213, 225, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.testimoni-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.testimoni-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    border-color: var(--electric-blue);
}

.testimoni-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--midnight-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--safety-yellow);
    font-weight: 700;
}

.client-info h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 5px;
}

.client-location {
    color: var(--cool-gray);
    font-size: 0.95rem;
}

.testimoni-stars {
    color: var(--safety-yellow);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimoni-text {
    color: var(--cool-gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimoni-service {
    display: inline-block;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--electric-blue);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Video Testimoni */
.video-testimoni {
    padding: 80px 0;
    background-color: #1E293B;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background-color: var(--midnight-blue);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.video-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.video-thumbnail {
    position: relative;
    height: 250px;
    background-color: #0A0F1C;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(37, 99, 235, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background-color: var(--electric-blue);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.video-info p {
    color: var(--cool-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.video-client {
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-client span {
    color: var(--safety-yellow);
    font-weight: 600;
}

/* ========== CLIENT SECTION ========== */
/* Simple Version CSS */
.clients-section.simple {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.clients-section.simple h2 {
    color: #1a2a6c;
    margin-bottom: 40px;
    font-size: 2rem;
}

.simple-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.05);
}

.logo-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--midnight-blue);
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-text {
    color: var(--cool-gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========== BUTTON STYLES ========== */
.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--electric-blue);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.primary-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.3);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid var(--electric-blue);
}

.secondary-btn:hover {
    background-color: rgba(37, 99, 235, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.2);
}

/* ========== FOOTER STYLES ========== */
.main-footer {
    background-color: #0A0F1C;
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(203, 213, 225, 0.1);
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-description {
    color: var(--cool-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--cool-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--safety-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--cool-gray);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(203, 213, 225, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--electric-blue);
    transform: translateY(-3px);
}

/* ========== NETLIFY BADGE ========== */
.netlify-badge {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 100;
}

.netlify-badge img {
    width: 60px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.netlify-badge img:hover {
    opacity: 1;
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1200px) {
    .hero-grid {
        gap: 50px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h1 span {
        font-size: 3rem;
    }
    
    .services-grid, .testimoni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        background-attachment: scroll;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(15, 23, 42, 0.98);
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .banner-content, .rating-container {
        flex-direction: column;
    }
    
    .banner-text p {
        max-width: 100%;
    }
    
    .rating-bars {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h1 span {
        font-size: 2.4rem;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
    }
    
    .hero-visual {
        height: 350px;
        order: -1;
    }
    
    .services-grid, .testimoni-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title, .cta-title {
        font-size: 2.2rem;
    }
    
    .hero, .testimoni-hero {
        padding: 120px 0 60px;
    }
    
    .services-section, .testimoni-section {
        padding: 60px 0;
    }
    
    .floating-icon {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .stats-container {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 span {
        font-size: 1.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .primary-btn, .secondary-btn, .banner-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .section-title, .cta-title {
        font-size: 1.8rem;
    }
    
    .service-card, .testimoni-card {
        padding: 30px 20px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* END */

/* ========== HASIL PEKERJAAN / PORTFOLIO SECTION ========== */
.portfolio-section {
    padding: 100px 0;
    background-color: #1E293B;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.portfolio-item {
    background: var(--midnight-blue);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    border-color: var(--electric-blue);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,23,42,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-zoom {
    color: white;
    font-size: 2rem;
    background: var(--electric-blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.portfolio-info p {
    color: var(--cool-gray);
    margin-bottom: 15px;
}

.portfolio-category {
    display: inline-block;
    background: rgba(37,99,235,0.1);
    color: var(--electric-blue);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.portfolio-cta {
    text-align: center;
    background: var(--midnight-blue);
    padding: 40px;
    border-radius: var(--radius);
    margin-top: 60px;
}

.portfolio-cta p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
}

/* Responsive */
@media (max-width: 1200px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-image { height: 220px; }
}