/* ============================================================
   ZANEL CCTV - Company Profile Premium
   CSS Style Sheet
   ============================================================ */

/* CSS Custom Properties */
:root {
    --primary-dark: #0a0e1a;
    --secondary-dark: #111827;
    --ternary-dark: #1a1f2e;
    --blue-primary: #1a3a6b;
    --blue-light: #2563eb;
    --blue-glow: #3b82f6;
    --red-accent: #dc2626;
    --red-light: #ef4444;
    --gold: #f59e0b;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

::selection {
    background: var(--blue-light);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-light);
}

a {
    color: var(--blue-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--red-light);
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--blue-light);
    animation: pulse-logo 1.5s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.3);
}

@keyframes pulse-logo {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(37, 99, 235, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(37, 99, 235, 0.5); }
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--ternary-dark);
    border-radius: 4px;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--blue-light), var(--red-accent));
    border-radius: 4px;
    animation: load-fill 2s ease-in-out forwards;
}

@keyframes load-fill {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
}

.loader-text {
    color: var(--gray-500);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: float-wa 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes float-wa {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all var(--transition-smooth);
    padding: 10px 0;
}

.header.scrolled {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--blue-light);
    transition: var(--transition-fast);
}

.header.scrolled .nav-logo {
    width: 35px;
    height: 35px;
}

.brand-text {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
}

.text-accent {
    color: var(--red-light) !important;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.05);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--red-light);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    border-radius: 50px;
    padding: 8px 20px !important;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 14, 26, 0.95) 0%, 
        rgba(10, 14, 26, 0.7) 50%, 
        rgba(26, 58, 107, 0.4) 100%);
    z-index: 1;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-placeholder {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0e1a 0%, #111827 50%, #1a1f2e 100%);
    background-size: cover;
    background-position: center;
    animation: gradient-shift 10s ease-in-out infinite alternate;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-light);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-subtitle strong {
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-accent {
    background: linear-gradient(135deg, var(--red-accent), #b91c1c);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 35px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-accent:hover::before {
    left: 100%;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50px;
    padding: 14px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
}

.stat-item {
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition-fast);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: var(--blue-light);
    display: block;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    display: inline;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red-light);
}

.stat-label {
    display: block;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.bg-dark-alt {
    background: var(--secondary-dark);
}

/* ============================================================
   INSTALASI CCTV CARDS
   ============================================================ */
.instalasi-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.instalasi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(220, 38, 38, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instalasi-card:hover::before {
    opacity: 1;
}

.instalasi-card:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(37, 99, 235, 0.05);
}

.instalasi-card .card-icon {
    font-size: 2.5rem;
    color: var(--blue-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.instalasi-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.instalasi-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ============================================================
   TIMELINE / PROSES PEMESANAN
   ============================================================ */
.pemesanan-section {
    background: var(--secondary-dark);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue-light), var(--red-accent));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 25px 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.timeline-content:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateX(5px);
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.timeline-content p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================================
   HARGA PAKET CCTV
   ============================================================ */
.harga-section {
    background: var(--primary-dark);
}

.paket-card {
    background: linear-gradient(145deg, rgba(26, 58, 107, 0.2), rgba(17, 24, 39, 0.9));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.paket-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
    animation: rotate-glow 15s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.paket-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(37, 99, 235, 0.05);
    transform: translateY(-5px);
}

.paket-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: linear-gradient(135deg, var(--red-accent), #991b1b);
    color: white;
    padding: 6px 45px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 2;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.paket-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.paket-logo {
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.paket-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.paket-price {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white), var(--blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.paket-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.paket-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-300);
}

.paket-list li:last-child {
    border-bottom: none;
}

.paket-list li i {
    color: var(--blue-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ============================================================
   BRAND SECTIONS (Hikvision, Dahua, Ezviz)
   ============================================================ */
.brand-logo-wrapper {
    margin: 20px 0;
}

.brand-logo-img {
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: var(--transition-fast);
}

.brand-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.brand-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: default;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.brand-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(37, 99, 235, 0.05);
}

.brand-card i {
    font-size: 2.5rem;
    color: var(--blue-light);
    display: block;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.brand-card:hover i {
    color: var(--red-light);
    transform: scale(1.15);
}

.brand-card span {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

/* ============================================================
   KEUNGGULAN
   ============================================================ */
.keunggulan-section {
    background: var(--secondary-dark);
}

.keunggulan-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.keunggulan-item:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.keunggulan-item i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--blue-light), var(--red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.keunggulan-item span {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

/* ============================================================
   GALERI
   ============================================================ */
.galeri-section {
    background: var(--primary-dark);
}

.gallery-grid {
    margin: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item a {
    display: block;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 12px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-radius: 0 0 12px 12px;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* ============================================================
   TESTIMONI
   ============================================================ */
.testimoni-section {
    background: var(--secondary-dark);
}

.testimoniSwiper {
    padding: 20px 10px 60px;
    overflow: hidden;
}

.testimoni-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    height: 100%;
}

.testimoni-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimoni-rating {
    margin-bottom: 15px;
}

.testimoni-rating i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-right: 2px;
}

.testimoni-text {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimoni-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimoni-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--blue-light);
}

.testimoni-user h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.testimoni-user span {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.swiper-pagination-bullet {
    background: var(--blue-light);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--blue-light);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--blue-light);
    background: rgba(255, 255, 255, 0.05);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    background: var(--primary-dark);
}

.accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.accordion-button {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 25px;
    box-shadow: none;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(37, 99, 235, 0.1);
    color: var(--white);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgba(255,255,255,0.8)'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 25px 20px;
    color: var(--gray-300);
    font-size: 0.95rem;
}

/* ============================================================
   KONTAK
   ============================================================ */
.kontak-section {
    background: var(--secondary-dark);
}

.kontak-info {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
}

.kontak-logo-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.kontak-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--blue-light);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
}

.kontak-info h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.kontak-desc {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 30px;
}

.kontak-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.kontak-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.kontak-item i {
    font-size: 1.5rem;
    color: var(--blue-light);
    flex-shrink: 0;
    margin-top: 5px;
}

.kontak-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 3px;
}

.kontak-item p {
    margin: 0;
    font-size: 0.95rem;
}

.kontak-item a {
    color: var(--white);
}

.kontak-item a:hover {
    color: var(--blue-light);
}

.kontak-map {
    height: 100%;
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #060912;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 0;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--blue-light);
    margin-bottom: 15px;
}

.footer-brand h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-partner-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.partner-logo {
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(0.6);
    transition: var(--transition-fast);
}

.partner-logo:hover {
    filter: brightness(0) invert(1);
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--red-light);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--blue-light);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--blue-light);
    margin-top: 4px;
}

.footer-contact a {
    color: var(--gray-500);
}

.footer-contact a:hover {
    color: var(--blue-light);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--blue-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    border-color: var(--blue-light);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-stats {
        margin-top: 40px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .navbar-nav {
        background: rgba(10, 14, 26, 0.98);
        padding: 20px;
        border-radius: 16px;
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px !important;
    }
    
    .btn-whatsapp {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 15px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .paket-card {
        padding: 30px 20px;
    }
    
    .kontak-info {
        padding: 25px;
    }
    
    .kontak-map {
        min-height: 300px;
    }
    
    .footer {
        padding: 50px 0 0;
    }
    
    .gallery-item img {
        height: 180px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .brand-card {
        padding: 20px 10px;
    }
    
    .brand-card i {
        font-size: 2rem;
    }
    
    .brand-card span {
        font-size: 0.8rem;
    }
    
    .testimoni-card {
        padding: 25px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .timeline-content {
        padding: 20px;
    }
}

/* ============================================================
   AOS CUSTOM OVERRIDES
   ============================================================ */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================================
   LIGHTBOX CUSTOMIZATION
   ============================================================ */
.lb-data .lb-caption {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
}

/* ============================================================
   GLASSMORPHISM UTILITY
   ============================================================ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

