/* RESET DASAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#layanan-kami {
    scroll-margin-top: -430px !important; /* Angka diperbesar dan ditambah !important agar wajib jalan */
}
/* Tambahkan kode html ini agar scroll-nya meluncur lembut */
html {
    scroll-behavior: smooth !important;
}

body {
    color: #ffffff;
    overflow-x: hidden;
    background-color: #000;
}

/* BACKGROUND SLIDESHOW */
.bg-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* 5 GAMBAR SLIDESHOW BERGANGGILAN 10 DETIK BERURUTAN */
.slide1, .slide2, .slide3, .slide4, .slide5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: crossfade 50s infinite; /* total 50 detik = 5 slide x 10 detik */
}

.slide1 { background-image: url('img/general-contractor2.png'); animation-delay: 0s; z-index: 1; }
.slide2 { background-image: url('img/fire-pump2.png'); animation-delay: 10s; z-index: 2; }
.slide3 { background-image: url('img/videotron3.png'); animation-delay: 20s; z-index: 3; }
.slide4 { background-image: url('img/mothershuttlerack.png'); animation-delay: 30s; z-index: 4; }
.slide5 { background-image: url('img/automation2.png'); animation-delay: 40s; z-index: 5; }

@keyframes crossfade {
    0% { opacity: 0; }
    10% { opacity: 1; }   /* fade in selama 5 detik (10% dari 50 = 5 detik) */
    30% { opacity: 1; }   /* tampil sempurna dari detik ke-5 sampai ke-15 (10 detik tampil) */
    40% { opacity: 0; }   /* fade out 5 detik */
    100% { opacity: 0; }
}

/* NAVBAR DEFAULT */
nav {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed; 
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    transition: color 0.4s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.nav-links li a:hover, 
.nav-links li a.active {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 5px;
}

/* NAVBAR KETIKA DI-SCROLL */
nav.nav-scrolled {
    background-color: #ffffff;
    border-bottom: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
}

nav.nav-scrolled .logo-text,
nav.nav-scrolled .nav-links li a {
    color: #111111;
    text-shadow: none;
}

nav.nav-scrolled .nav-links li a:hover, 
nav.nav-scrolled .nav-links li a.active {
    color: #cc0000;
    border-bottom: 2px solid #cc0000;
}

/* ========================================= */
/* #4. HERO SECTION - TAMPILAN FULL 100%     */
/* ========================================= */
.hero-section {
    height: 100vh; /* Pastikan selalu setinggi layar */
    display: flex;
    justify-content: center;
    padding-top: 80px; /* Jarak untuk navbar */
}

.hero-container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    /* Tinggi kontainer adalah: Tinggi Layar dikurang Tinggi Navbar */
    height: calc(100vh - 80px); 
}

/* KOLOM KIRI (GAMBAR ORANG) */
.hero-image {
    flex: 1.3;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end; 
    height: 100%;
    min-height: 85vh; 
}

.hero-image img {
    height: 100%; 
    width: 100%;  
    max-height: none; /* UBAH INI: Hapus batas maksimal tinggi agar bisa bebas membesar */
    object-fit: contain; 
    object-position: bottom left; 
    transform-origin: bottom left; /* TAMBAHAN PENTING: Kunci perbesaran di sudut kiri bawah agar kaki tidak bergeser */
    transform: scale(1.35); /* UBAH INI: Di-zoom 35% agar kepalanya naik sejajar tulisan "SPESIALIS" */
}

/* KOLOM KANAN (TEKS) */
.hero-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Membuat teks berada tepat di tengah layar secara vertikal */
    padding: 0 0 0 40px;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #f8f8f8;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

/* BUTTONS */
.btn-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.btn-green {
    background-color: #61ce70;
    color: #ffffff;
    border: 2px solid #61ce70;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    background-color: rgba(0,0,0,0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.btn-green:hover {
    background-color: #4ebf5c;
    border-color: #4ebf5c;
}

/* ========================================= */
/* EPC SERVICES SECTION (KARTU LAYANAN)      */
/* ========================================= */
.services-section {
    background-color: #f5f5f5; 
    position: relative;
    z-index: 5;
    padding-top: 40px; /* Jarak atas diperkecil */
    padding-bottom: 50px; /* Jarak bawah diperkecil agar lebih dekat ke Layanan Kami */
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Jarak antar kotak dirapatkan */
    max-width: 1000px; /* Lebar maksimal dikurangi agar kotak tidak terlalu memanjang */
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 15px 20px; /* Bantalan (padding) dalam kotak diperkecil */
    flex: 1; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* Efek bayangan disesuaikan */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
    background-color: #8c1414; 
    color: #ffffff;
    width: 50px; /* Ukuran kotak ikon diperkecil dari 65px */
    height: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px; /* Ukuran ikon di dalamnya diperkecil */
    margin-right: 15px; /* Jarak ikon ke tulisan dirapatkan */
    flex-shrink: 0;
}

.service-text h3 {
    color: #8c1414;
    font-size: 17px; /* Ukuran teks diperkecil dari 20px */
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.5px;
}

/* WHATSAPP FLOAT */
.wa-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    text-decoration: none;
    transition: 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
}

/* ========================================= */
/* SECTION LAYANAN KAMI - PREMIUM VERSION    */
/* ========================================= */

.our-services-section {
    background: linear-gradient(135deg, #fdf8f0 0%, #fce8d5 50%, #f8dcc4 190%);
    background-size: 150% 150%;
    animation: softGradientShift 15s ease infinite;
    padding: 30px 0px 70px 0px;
}

.our-services-section::before {
    background: repeating-linear-gradient(90deg, 
        rgba(210, 100, 30, 0.08) 0px, 
        rgba(210, 100, 30, 0.08) 2px,
        transparent 2px,
        transparent 8px),
        repeating-linear-gradient(0deg, 
        rgba(180, 80, 20, 0.05) 0px,
        rgba(180, 80, 20, 0.05) 1px,
        transparent 1px,
        transparent 30px);
}

.our-services-section::after {
    background: radial-gradient(ellipse, rgba(210, 100, 40, 0.12), transparent 70%);
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #a31414);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.2rem;
    color: #334155;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1280px;
    margin: 0 auto;
}

/* Card Premium */
.service-detail-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    border-radius: 28px;
    padding: 28px;
    transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: #a31414;
    box-shadow: 0 25px 35px -12px rgba(163, 20, 20, 0.25);
}

.service-detail-card h3 {
    color: #a31414;
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    border-left: 4px solid #a31414;
    padding-left: 15px;
}

.service-detail-card p {
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.85;
}

/* Wrapper gambar */
.card-images {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex: 1;
}

.card-images img {
    width: 50%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.service-detail-card:hover .card-images img {
    transform: scale(1.02);
    box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.2);
    border-color: #a31414;
}

/* Tombol aksi */
.card-action {
    text-align: right;
    margin-top: 15px;
}

.btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #a31414 !important;
    padding: 10px 0;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    border-bottom: 2px solid #a31414;
    letter-spacing: 0.3px;
}

.btn-readmore i {
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.btn-readmore:hover {
    color: #cc0000 !important;
    gap: 14px;
    border-bottom-color: #cc0000;
}

.btn-readmore:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .section-header h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .card-images img {
        height: 140px;
    }
    .service-detail-card {
        padding: 22px;
    }
    .section-header h2 {
        font-size: 1.9rem;
    }
    .section-header p {
        font-size: 1rem;
    }
}

/* ========================================= */
/* TEKS DESKRIPSI BAWAH 3 KOTAK EPC          */
/* ========================================= */
.company-description {
    max-width: 1000px; /* Lebarnya sejajar dengan kotak di atasnya */
    margin: 50px auto 0 auto; /* Memberi jarak 50px dari 3 kotak di atasnya */
    padding: 0 20px;
    text-align: left; /* Teks rata kiri sesuai gambar referensi */
}
/* Update pada bagian judul agar ke tengah */
.company-description h3 {
    font-size: 24px;
    font-weight: 800;
    color: #a31414; 
    margin-bottom: 15px;
    text-transform: uppercase; 
    letter-spacing: 1px;
    text-align: center; /* Ini yang membuat judul ke tengah */
}

/* Update pada bagian paragraf agar rata kiri-kanan (justify) */
.company-description p {
    font-size: 18px;
    color: #111111;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify; /* Ini yang membuat teks rata kiri-kanan */
}

.company-description p:last-child {
    margin-bottom: 0;
}

.company-description strong {
    font-weight: 800;
    color: #000000;
}

/* ========================================= */
/* FOOTER PREMIUM STYLES                     */
/* ========================================= */
.premium-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #161616 100%);
    color: #a0a0a0;
    padding-top: 80px;
    border-top: 3px solid #8c1414;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Dekorasi cahaya merah tipis di latar belakang */
.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(140, 20, 20, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    position: relative;
    z-index: 2;
}

/* STYLE LOGO PREMIUM */
.footer-logo-link {
    display: inline-block;
    background-color: transparent; /* Diubah menjadi transparan */
    padding: 0; /* Padding dihilangkan */
    border-radius: 0; /* Border radius dihilangkan */
    margin-bottom: 25px;
    box-shadow: none; /* Bayangan kotak dihilangkan */
    transition: transform 0.4s ease;
}

.footer-logo-link:hover {
    transform: translateY(-5px);
}

.footer-logo {
    max-width: 200px; /* Ukuran logo sedikit dibesarkan agar pas karena kotaknya hilang */
    display: block;
}

.footer-desc {
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

/* SOCIAL MEDIA BULAT ELEGAN */
.social-links-premium {
    display: flex;
    gap: 15px;
}

.social-links-premium a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.social-links-premium a:hover {
    background-color: #8c1414;
    border-color: #8c1414;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(140, 20, 20, 0.4);
}

/* TYPOGRAPHY JUDUL */
.premium-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.premium-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: #8c1414;
    transition: width 0.3s ease;
}

.footer-col:hover .premium-title::after {
    width: 60px; /* Garis merah memanjang saat di-hover */
}

/* LIST KONTAK */
.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    line-height: 1.6;
}

.icon-box {
    color: #e32b2b;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
}

/* MENU LINKS */
.premium-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-menu li {
    margin-bottom: 15px;
}

.premium-menu li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Efek slide ke kanan saat menu disentuh */
.premium-menu li a:hover {
    color: #e32b2b;
    transform: translateX(8px); 
}

/* NEWSLETTER KAPSUL / PILL SHAPE */
.newsletter-col p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.premium-newsletter {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px; /* Bentuk melengkung seperti kapsul */
    padding: 5px;
    transition: border-color 0.3s ease;
}

.premium-newsletter:focus-within {
    border-color: #8c1414;
}

.premium-newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    font-size: 14px;
    outline: none;
}

.premium-newsletter input::placeholder {
    color: #666666;
}

.premium-newsletter button {
    background-color: #8c1414;
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-newsletter button:hover {
    background-color: #e32b2b;
    transform: scale(1.05);
}

/* BOTTOM BAR */
.footer-bottom-premium {
    background-color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 25px 20px;
    font-size: 14px;
    color: #777777;
}

.footer-bottom-premium strong {
    color: #ffffff;
    font-weight: 600;
}

/* ========================================= */
/* UPDATE STYLE HERO KONTAK (BOX ATAS)       */
/* ========================================= */

.cp-hero {
    /* Memaksa browser HANYA membaca gambar asli tanpa filter/warna gelap tambahan */
    background-image: url('img/bg-kantor.png') !important;
    background-color: transparent !important;
    background-blend-mode: normal !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    
    position: relative;
    padding: 80px 20px; 
    text-align: center;
    color: #ffffff;
    
    /* Bayangan teks hitam tebal agar tulisan putih tetap nyata di background terang */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 2px 5px rgba(0, 0, 0, 1) !important; 
}

/* Mematikan paksa jika ada efek bayangan/overlay tersembunyi dari class lain */
.cp-hero::before, 
.cp-hero::after {
    display: none !important;
}

.cp-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.cp-hero-content {
    position: relative;
    z-index: 2;
}

.cp-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #ffffff;
}

/* Tulisan kecil Home / Kontak Kami (Breadcrumb) */
.cp-breadcrumb {
    font-size: 14px;
    color: #bbb;
}

.cp-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.cp-breadcrumb a:hover {
    color: #8c1414;
}

.cp-breadcrumb span {
    margin: 0 10px;
}

.cp-hero-content p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
}

/* Bagian Bawah Hero (Layout Kiri-Kanan) */
.cp-main-section {
    padding: 60px 20px 100px 20px;
    background-color: #f8f9fa; /* Latar abu-abu sangat terang */
}

.cp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: -80px; /* Efek kotak terangkat menutupi hero */
    position: relative;
    z-index: 10;
}

/* SISI KIRI (INFO & PETA) */
.cp-left-box {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cp-info-cards {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cp-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eeeeee;
}

.cp-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cp-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(140, 20, 20, 0.1);
    color: #8c1414;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cp-text h4 {
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cp-text p {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
}

.cp-map-wrapper {
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 350px;
    overflow: hidden;
}

.cp-map-wrapper iframe {
    border-radius: 8px;
}

/* SISI KANAN (FORM) */
.cp-right-box {
    flex: 1.2;
    min-width: 300px;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.cp-form-header {
    margin-bottom: 30px;
}

.cp-form-header h2 {
    font-size: 28px;
    color: #111111;
    font-weight: 800;
    margin-bottom: 10px;
}

.cp-form-header p {
    color: #777777;
    font-size: 15px;
    line-height: 1.6;
}

.cp-form-group {
    margin-bottom: 20px;
}

.cp-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.cp-form-group input, 
.cp-form-group select, 
.cp-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    font-family: inherit;
    font-size: 15px;
    color: #333333;
    transition: all 0.3s ease;
    outline: none;
}

.cp-form-group input:focus, 
.cp-form-group select:focus, 
.cp-form-group textarea:focus {
    border-color: #8c1414;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(140, 20, 20, 0.1);
}

.cp-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #8c1414;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cp-submit-btn:hover {
    background-color: #a31818;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 20, 20, 0.3);
}

/* Alert Messages PHP */
.cp-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.cp-alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.cp-alert-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Responsive Tablet & Mobile */
@media (max-width: 992px) {
    .cp-container {
        flex-direction: column;
        margin-top: -40px;
    }
    .cp-right-box {
        padding: 30px 20px;
    }
    .cp-hero {
        padding: 80px 20px;
    }
    .cp-hero-content h1 {
        font-size: 32px;
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(140, 20, 20, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(140, 20, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(140, 20, 20, 0); }
}

.map-card-info h3 { margin: 0 0 5px 0; color: #1a1a1a; font-size: 18px; }
.map-card-info p { margin: 0; color: #666; font-size: 14px; }

/* Quick Contact Boxes */
.q-item { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    background: #f9f9f9; 
    padding: 15px 20px; 
    border-radius: 12px; 
    flex: 1;
    transition: 0.3s;
    border: 1px solid transparent;
}

.q-item:hover {
    background: #fff;
    border-color: #8c1414;
    box-shadow: 0 10px 20px rgba(140, 20, 20, 0.05);
    transform: translateY(-3px);
}

.q-icon {
    width: 40px; height: 40px;
    background: rgba(140, 20, 20, 0.1);
    color: #8c1414;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

.q-text span { font-size: 12px; color: #888; text-transform: uppercase; font-weight: 700; }
.q-text p { font-size: 16px; font-weight: 800; color: #1a1a1a; margin: 2px 0 0 0; }

/* ========================================= */
/* KHUSUS HALAMAN TENTANG KAMI (ABOUT)       */
/* ========================================= */

.ab-hero {
    background-image: url('img/bg-kantor2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.ab-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Overlay gelap */
}

.ab-hero-content {
    position: relative;
    z-index: 2;
}

.ab-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.ab-breadcrumb {
    font-size: 14px;
    color: #bbb;
}

.ab-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.ab-breadcrumb span {
    margin: 0 10px;
}

/* Main Content Area */
.ab-main-section {
    /* Sebelumnya padding: 100px 20px; */
    padding: 50px 20px 30px 20px; /* Jarak bawah dikurangi jadi 40px */
    background-color: #ffffff;
}

.ab-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Sejajar tengah secara vertikal */
    gap: 60px;
    flex-wrap: wrap;
}

/* SISI KIRI: TEXT */
.ab-content-left {
    flex: 1.5;
    min-width: 300px;
}

.ab-sub-title {
    color: #8c1414;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.ab-main-title {
    font-size: 36px;
    color: #111;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.ab-description {
    text-align: justify; /* Teks Rata Kiri Kanan */
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.ab-description p {
    margin-bottom: 20px;
}

.ab-features {
    margin-top: 30px;
}

.ab-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
}

.ab-feature-item i {
    color: #8c1414;
    font-size: 18px;
}

/* SISI KANAN: LOGO */
.ab-logo-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.ab-logo-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.ab-logo-card:hover {
    transform: translateY(-10px);
}

.ab-logo-card img {
    max-width: 100%;
    height: auto;
    width: 280px; /* Ukuran logo di halaman about */
}

/* Responsive */
@media (max-width: 992px) {
    .ab-container {
        flex-direction: column-reverse; /* Logo di atas jika di HP */
        text-align: center;
        gap: 40px;
    }
    
    .ab-description {
        text-align: center; /* Rata tengah di HP agar lebih rapi */
    }
    
    .ab-hero-content h1 {
        font-size: 32px;
    }
}

/* ========================================= */
/* VISI MISI - PREMIUM FLOATING CARDS       */
/* ========================================= */

.ab-vm-section-v2 {
    padding: 80px 20px;
    position: relative;
    
    /* Memanggil gambar lokal Anda */
    background-image: url('img/bgvisimisi.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Membuat efek gambar diam saat discroll (Parallax) */
}

/* Membuat overlay (lapisan gelap) agar kotak putih Visi Misi lebih menonjol */
.ab-vm-section-v2::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Transparansi hitam 70% */
    z-index: 1;
}

.ab-vm-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Memastikan kotak berada di atas gambar dan overlay */
}

.ab-vm-card-v2 {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    border-top: 6px solid #8c1414; /* Aksen garis tebal di atas */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ab-vm-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(140, 20, 20, 0.12);
}

.ab-vm-card-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.ab-vm-icon-v2 {
    width: 55px;
    height: 55px;
    background: rgba(140, 20, 20, 0.05);
    color: #8c1414;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
}

.ab-vm-card-head h3 {
    font-size: 24px;
    color: #111;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ab-vm-card-body p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
    margin: 0;
    text-align: justify;
}

/* Style Khusus List Misi */
.ab-misi-list-v2 {
    list-style: none;
    padding: 0;
}

.ab-misi-list-v2 li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.ab-misi-list-v2 li:last-child {
    margin-bottom: 0;
}

.ab-misi-list-v2 li i {
    color: #8c1414;
    font-size: 16px;
    margin-top: 4px;
}

.ab-misi-list-v2 li p {
    font-size: 14.5px;
    text-align: left; /* Misi lebih bagus rata kiri */
    font-weight: 500;
}

/* ========================================= */
/* WHY CHOOSE US - PREMIUM LIGHT COMPACT     */
/* ========================================= */

.why-choose-us {
    padding: 60px 0; /* Padding diperkecil agar tidak terlalu tinggi */
    background: #f5f7fa; /* Background diubah jadi putih bersih */
    position: relative;
    overflow: hidden;
}

/* Tambahkan sedikit aksen cahaya merah halus di background */
.why-choose-us::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(140, 20, 20, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .section-header {
    margin-bottom: 40px;
    text-align: center;
}

.why-choose-us .section-header h2 {
    font-size: 26px; /* Ukuran font judul diperkecil */
    color: #111111; /* Judul diubah jadi hitam pekat */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    font-weight: 800;
}

.why-choose-us .header-line {
    width: 50px;
    height: 3px;
    background: #8c1414;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* Jarak antar kartu diperkecil */
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-card {
    background: #fdfdfd; /* Background kotak putih agak keabuan */
    padding: 25px 20px; /* Padding dalam diperkecil */
    border-radius: 10px;
    border: 1px solid #eaeaea; /* Garis pinggir abu-abu halus */
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02); /* Bayangan lembut */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card:hover {
    background: #ffffff; 
    transform: translateY(-8px);
    border-color: #8c1414;
    /* Bayangan berubah jadi kemerahan halus saat dihover */
    box-shadow: 0 15px 30px rgba(140, 20, 20, 0.08); 
}

.why-icon {
    font-size: 32px; /* Ukuran ikon diperkecil */
    color: #8c1414;
    margin-bottom: 15px;
    transition: 0.3s;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    color: #ff2a2a;
}

.why-card h3 {
    font-size: 16px; /* Ukuran judul kartu diperkecil */
    margin-bottom: 10px;
    color: #222222; /* Teks judul kartu diubah jadi hitam gelap */
    font-weight: 700;
    text-transform: uppercase;
}

.why-card p {
    font-size: 13px; /* Ukuran teks keterangan diperkecil */
    line-height: 1.5;
    color: #555555; /* Teks deskripsi diubah jadi abu-abu gelap */
    margin: 0;
}

/* Responsif */
@media (max-width: 992px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-choose-us { padding: 40px 0; }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ab-vm-grid-v2 {
        grid-template-columns: 1fr;
    }
    .ab-vm-card-v2 {
        padding: 30px;
    }
}

/* Pengaturan gambar di dalam kartu layanan */
.card-images {
    display: flex;       /* Membuat gambar berjajar ke samping */
    gap: 10px;           /* Jarak antar gambar */
    margin: 15px 0;      /* Jarak atas dan bawah dari teks */
}

.card-images img {
    width: 50%;          /* Membagi dua agar pas di dalam kotak */
    height: 130px;       /* Tinggi seragam agar rapi */
    object-fit: cover;    /* Gambar tidak akan gepeng */
    border-radius: 6px;  /* Sudut gambar sedikit tumpul */
    border: 1px solid #ddd;
}

/* Penyesuaian untuk tampilan HP */
@media (max-width: 480px) {
    .card-images img {
        height: 100px;
    }
}

/* Responsif Mobile */
@media (max-width: 992px) {
    .ab-vm-grid {
        grid-template-columns: 1fr;
    }
    .ab-vm-card {
        padding: 40px 25px;
    }
    .ab-vm-section::before {
        font-size: 8rem;
    }
}

/* ======================================================= */
/* DROPDOWN LEVEL DEWA (ULTRA PREMIUM) - PT NAYMAS         */
/* ======================================================= */

.nav-links li.nav-dropdown {
    position: relative;
}

/* Kotak Utama Dropdown dengan Efek 3D Swing */
.dropdown-menu {
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%) rotateX(-20deg); /* Posisi awal agak miring ke belakang */
    transform-origin: top;
    width: 320px; /* Lebih lebar agar lega */
    background: rgba(10, 18, 30, 0.85); /* Kaca transparan gelap */
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 4px solid #e63946; /* Garis merah tegas di atas */
    border-radius: 12px;
    padding: 15px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 
                0 0 30px rgba(230, 57, 70, 0.15); /* Glow merah halus di bawah */
    z-index: 1000;
}

/* Memunculkan Dropdown */
.nav-links li.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 110%;
    transform: translateX(-50%) rotateX(0deg); /* Tegak kembali */
}

/* Jarak antar menu */
.dropdown-menu li {
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

/* Animasi Muncul Berurutan (Staggered) */
.nav-links li.nav-dropdown:hover .dropdown-menu li {
    opacity: 1;
    transform: translateY(0);
}
.nav-links li.nav-dropdown:hover .dropdown-menu li:nth-child(1) { transition-delay: 0.05s; }
.nav-links li.nav-dropdown:hover .dropdown-menu li:nth-child(2) { transition-delay: 0.10s; }
.nav-links li.nav-dropdown:hover .dropdown-menu li:nth-child(3) { transition-delay: 0.15s; }
.nav-links li.nav-dropdown:hover .dropdown-menu li:nth-child(4) { transition-delay: 0.20s; }
.nav-links li.nav-dropdown:hover .dropdown-menu li:nth-child(5) { transition-delay: 0.25s; }
.nav-links li.nav-dropdown:hover .dropdown-menu li:nth-child(6) { transition-delay: 0.30s; }
.nav-links li.nav-dropdown:hover .dropdown-menu li:nth-child(7) { transition-delay: 0.35s; }
.nav-links li.nav-dropdown:hover .dropdown-menu li:nth-child(8) { transition-delay: 0.40s; }
.nav-links li.nav-dropdown:hover .dropdown-menu li:nth-child(9) { transition-delay: 0.45s; }

/* Desain Kartu Tiap Menu */
.dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03); /* Background seperti kartu */
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efek Cahaya Lewat (Light Sweep) */
.dropdown-menu li a::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

/* Icon Utama (Kiri) */
.dropdown-menu li a i:first-child {
    width: 30px;
    font-size: 18px;
    color: #4da8da; 
    transition: all 0.4s ease;
    text-shadow: 0 0 10px rgba(77, 168, 218, 0.3);
}

/* Panah (Kanan) */
.dropdown-menu li a i:last-child {
    margin-left: auto;
    font-size: 12px;
    color: #e63946;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ========================================= */
/* EFEK HOVER (SAAT DISENTUH MOUSE)          */
/* ========================================= */
.dropdown-menu li a:hover {
    background: rgba(77, 168, 218, 0.1);
    border: 1px solid rgba(77, 168, 218, 0.4); /* Muncul bingkai biru */
    color: #ffffff;
    transform: scale(1.03); /* Kartu membesar sedikit (Pop-up 3D) */
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.dropdown-menu li a:hover::before {
    left: 100%; /* Animasi cahaya lewat dari kiri ke kanan */
}

.dropdown-menu li a:hover i:first-child {
    color: #e63946; /* Berubah merah */
    transform: translateY(-2px) scale(1.1); /* Icon loncat sedikit */
    text-shadow: 0 5px 15px rgba(230, 57, 70, 0.6);
}

.dropdown-menu li a:hover i:last-child {
    opacity: 1;
    transform: translateX(0); /* Panah meluncur dari kiri ke kanan */
}
/* ======================================================= */
/* FIX: KUNCI WARNA TEKS DROPDOWN SAAT DI-SCROLL           */
/* ======================================================= */

/* Mengunci teks menu dropdown agar tetap abu-abu terang / putih */
#navbar.nav-scrolled .nav-links li.nav-dropdown .dropdown-menu li a {
    color: #cbd5e0 !important;
}

/* Mengunci warna teks saat kursor disentuh (hover) jadi putih bersih */
#navbar.nav-scrolled .nav-links li.nav-dropdown .dropdown-menu li a:hover {
    color: #ffffff !important;
}

/* Mengunci icon sebelah kiri agar tetap warna biru Naymas */
#navbar.nav-scrolled .nav-links li.nav-dropdown .dropdown-menu li a i:first-child {
    color: #4da8da !important;
}

/* Mengunci icon saat di-hover agar tetap merah */
#navbar.nav-scrolled .nav-links li.nav-dropdown .dropdown-menu li a:hover i:first-child {
    color: #e63946 !important;
}



/* Penyesuaian untuk layar HP */
@media (max-width: 768px) {
    .company-description p {
        font-size: 16px; /* Sedikit lebih kecil di HP agar enak dibaca */
    }
}

.service-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Ini adalah kunci untuk memindahkan gambar ke kanan dan teks ke kiri */
.service-layout.reverse {
    flex-direction: row-reverse;
}

.service-img, .service-text {
    flex: 1;
}

.service-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Untuk tampilan HP agar tetap rapi (gambar di atas, teks di bawah) */
@media (max-width: 992px) {
    .service-layout.reverse {
        flex-direction: column; /* Kembali ke urutan normal di HP */
    }
}

/* ========================================= */
/* MEGA DROPDOWN 3 KOLOM - GESER KE KANAN    */
/* ========================================= */

/* Reset gaya yang mengganggu */
.nav-links li.nav-dropdown .dropdown-menu.mega-dropdown,
.nav-links li.nav-dropdown .dropdown-menu.mega-dropdown * {
    text-align: left !important;
    direction: ltr !important;
}

/* Kotak utama dropdown - DIPAKSA GESER KE KANAN */
.nav-links li.nav-dropdown .dropdown-menu.mega-dropdown {
    display: flex !important;
    flex-wrap: wrap;
    width: 800px;
    max-width: 90vw;
    padding: 25px 20px 25px 35px !important; /* padding kiri lebih besar */
    gap: 25px;
    background: #0f1a24;
    border-radius: 16px;
    border-top: 3px solid #e63946;
    box-shadow: 0 20px 35px rgba(0,0,0,0.4);
    left: 60% !important;          /* geser ke kanan */
    transform: translateX(-50%) !important;
    top: 140%;
    margin: 0;
    overflow: visible !important;
}

/* Kolom dalam dropdown */
.nav-links li.nav-dropdown .dropdown-menu.mega-dropdown .mega-col {
    flex: 1;
    min-width: 180px;
}

/* Judul kolom */
.nav-links li.nav-dropdown .dropdown-menu.mega-dropdown .mega-col h4 {
    color: #e63946;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 15px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Daftar menu */
.nav-links li.nav-dropdown .dropdown-menu.mega-dropdown .mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li.nav-dropdown .dropdown-menu.mega-dropdown .mega-col ul li {
    margin-bottom: 8px;
}

/* Link: ikon di kiri, teks di kanan */
.nav-links li.nav-dropdown .dropdown-menu.mega-dropdown .mega-col ul li a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #cbd5e0;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 0 !important;
    text-decoration: none;
    background: transparent !important;
    border: none !important;
    transition: all 0.2s ease;
}

/* IKON - tampilkan dengan lebar penuh */
.nav-links li.nav-dropdown .dropdown-menu.mega-dropdown .mega-col ul li a i {
    width: 64px !important;
    min-width: 24px !important;
    color: #4da8da;
    font-size: 15px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
}

/* Hover efek */
.nav-links li.nav-dropdown .dropdown-menu.mega-dropdown .mega-col ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}
.nav-links li.nav-dropdown .dropdown-menu.mega-dropdown .mega-col ul li a:hover i {
    color: #e63946;
}

/* Efek muncul dropdown */
.nav-links li.nav-dropdown:hover .dropdown-menu.mega-dropdown {
    opacity: 1;
    visibility: visible;
    top: 110%;
    transform: translateX(-50%) rotateX(0deg) !important;
}

/* Warna saat navbar discroll (background putih) */
#navbar.nav-scrolled .nav-links li.nav-dropdown .dropdown-menu.mega-dropdown {
      background: #0f1a24;
    border-top-color: #8c1414;
}
#navbar.nav-scrolled .dropdown-menu.mega-dropdown .mega-col h4 {
    color: #8c1414;
    border-bottom-color: #ddd;
}
#navbar.nav-scrolled .dropdown-menu.mega-dropdown .mega-col ul li a {
    color: #333;
}
#navbar.nav-scrolled .dropdown-menu.mega-dropdown .mega-col ul li a i {
    color: #8c1414;
}
#navbar.nav-scrolled .dropdown-menu.mega-dropdown .mega-col ul li a:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 850px) {
    .nav-links li.nav-dropdown .dropdown-menu.mega-dropdown {
        width: 95vw;
        flex-direction: column;
        left: 50% !important;
        transform: translateX(-50%) !important;
        padding: 20px !important;
    }
    .nav-links li.nav-dropdown:hover .dropdown-menu.mega-dropdown {
        transform: translateX(-50%) !important;
    }
}