/* =====================================================================
   1. RESET & GENERAL STYLES (Tema Dasar Website)
   ===================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #ffffff;
}

/* =====================================================================
   2. GLOBAL HEADER & NAVIGATION (Fixed Transparent Top Mode)
   ===================================================================== */
header {
    position: fixed !important;
    top: 0;
    width: 100%;
    padding: 25px 50px !important; /* Jarak longgar awal agar logo terlihat megah */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; 
    /* background: rgba(0, 0, 0, 0.75) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important; */
    transition: all 0.4s ease-in-out !important;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px; 
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease; 
}

.logo img.logo-white { display: block !important; }
.logo img.logo-red { display: none !important; }

/* Hamburger Menu Toggle (Mobile Only) */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    padding: 10px 0;
    display: block;
    color: #ffffff !important;
}

nav ul li a:hover {
    color: #cccccc;
}

/* --- Kondisi Aktif Saat Halaman Di-scroll Kebawah (Dipicu JS) --- */
header.header-scrolled {
    background: #ffffff !important; 
    padding: 16px 50px !important; /* Ukuran menyusut proporsional & sleek */
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important; 
}

header.header-scrolled .logo img.logo-white { display: none !important; }
header.header-scrolled .logo img.logo-red { display: block !important; }
header.header-scrolled .logo img { height: 75px !important; } /* Logo merah tampil tegas */

header.header-scrolled nav ul li a { color: #111111 !important; }
header.header-scrolled nav ul li a:hover { color: #d9411e !important; }
header.header-scrolled .hamburger div { background-color: #111111 !important; }

header.header-scrolled .dropdown-content {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-top: 3px solid #111111 !important;
}
header.header-scrolled .dropdown-content li a { color: #333333 !important; }

/* =====================================================================
   3. SOCIAL MEDIA NAVIGATION STYLES (Header Right Component)
   ===================================================================== */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 5px;
}

.nav-socials .follow-text {
    font-size: 12px;
    color: #888888;
    text-transform: none;
    font-weight: 500;
    white-space: nowrap;
}

.nav-socials a {
    font-size: 16px;
    color: #ffffff;
    transition: color 0.3s ease;
    display: inline-block;
}

.nav-socials a.ig-link:hover { color: #E4405F; }
.nav-socials a.wa-link { display: none; } /* Hidden on desktop view */

header.header-scrolled .nav-socials a { color: #111111 !important; }
header.header-scrolled .nav-socials a.ig-link:hover { color: #E4405F !important; }

/* =====================================================================
   4. DROPDOWN SUB-MENU NAVIGATION STYLES
   ===================================================================== */
.dropdown {
    position: relative;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%; left: 0; width: 100%; height: 20px;
    background: transparent;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    top: calc(100% + 10px);
    left: -10px;
    min-width: 220px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #ffffff;
    border-radius: 0px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    gap: 5px;;
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content li { width: 100%; }

.dropdown-content li a {
    padding: 10px 15px;
    display: block;
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 500;
    color: #dddddd;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-content li a:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding-left: 22px;
}

.dropdown-content li a::before {
    content: '';
    position: absolute;
    left: 0; top: 0; height: 100%; width: 3px;
    background-color: #ffffff;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.dropdown-content li a:hover::before { transform: scaleY(1); }

/* =====================================================================
   5. HERO SLIDER SECTION (Home Page Components)
   ===================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
}

.swiper-main {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-text {
    position: absolute;
    top: 45%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    z-index: 10;
    backdrop-filter: blur(8px);
    border-radius: 10px;
}

.swiper-thumb {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 90px;
    box-sizing: border-box;
    padding: 10px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-thumb .swiper-slide {
    height: 100%;
    border-radius: 8px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.swiper-thumb .swiper-slide:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.swiper-thumb .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* =====================================================================
   6. FLOATING CHAT COMPONENT (WhatsApp Button)
   ===================================================================== */
.desktop-floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1002;
}

.chat-button {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.chat-button:hover {
    transform: scale(1.05);
    background-color: #1ebe5d;
}

.chat-button i { font-size: 20px; }
.chat-button span { font-size: 16px; font-weight: 600; }

/* =====================================================================
   7. ART DIRECTION: HOME DESKTOP IMAGES
   ===================================================================== */
@media (min-width: 993px) {
    .slide-1 { background-image: url('https://images.unsplash.com/photo-1546519638-68e109498ffc?q=80&w=1920&auto=format&fit=crop'); }
    .slide-2 { background-image: url('https://images.unsplash.com/photo-1513364776144-60967b0f800f?q=80&w=1920&auto=format&fit=crop'); }
    .slide-3 { background-image: url('https://images.unsplash.com/photo-1518998053901-5348d3961a04?q=80&w=1920&auto=format&fit=crop'); }
    .slide-4 { background-image: url('https://images.unsplash.com/photo-1500462918059-b1a0cb512f1d?q=80&w=1920&auto=format&fit=crop'); }
    .slide-5 { background-image: url('https://images.unsplash.com/photo-1492037766660-2a56f9eb3fcb?q=80&w=1920&auto=format&fit=crop'); }
}

/* =====================================================================
   8. ABOUT HERO BANNER & BREADCRUMBS
   ===================================================================== */
.about-hero-banner {
    position: relative !important;
    width: 100%;
    height: 60vh; 
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.banner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.banner-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    width: 100%;
    margin-top: 40px !important;
}

.banner-title-left h1 {
    font-size: 58px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.banner-desc-right {
    max-width: 480px;
    border-left: 2px solid rgba(255, 255, 255, 0.25); 
    padding-left: 25px;
}

.banner-desc-right .sub-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    display: block;
    margin-bottom: 6px;
    opacity: 0.9;
}

.banner-desc-right p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.breadcrumbs-pill {
    position: absolute;
    bottom: 0px; left: 50%;
    transform: translate(-50%, 0);
    background-color: #ffffff; 
    padding: 12px 40px;
    border-radius: 25px 25px 0 0; 
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.03);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.breadcrumbs-pill a {
    color: #666666 !important;
    transition: color 0.2s ease;
}

.breadcrumbs-pill a:hover { color: #111111 !important; }
.breadcrumbs-pill .divider { color: #cccccc; }
.breadcrumbs-pill .current { color: #111111; }

/* =====================================================================
   9. MAIN NARRATIVE PROFILE CONTAINER (About Us Top Split Section)
   ===================================================================== */
.about-wrapper {
    padding-top: 80px !important; 
    padding-bottom: 60px !important;
    background-color: #ffffff; 
    color: #333333;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.about-grid {
    display: grid !important;
    grid-template-columns: 58% 38% !important; 
    justify-content: space-between !important;
    align-items: stretch !important; 
    width: 100% !important;
}

.about-text-block {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
}

.about-text-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    text-align: justify; 
}

.about-text-block p strong {
    color: #111111;
    font-weight: 700;
}

.about-side-block {
    width: 100% !important;
    position: relative !important;
    background-image: url('https://imaginartive.com/backend/galeri/profile/profile.png') !important;
    background-size: cover !important;         
    background-position: center !important;      
    background-repeat: no-repeat !important;    
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    min-height: 450px; 
}

/* =====================================================================
   10. OUR CREATIVE SERVICE CATEGORIES (Sektor Kartu Mengotak-Ngotak)
   ===================================================================== */
.about-services-categories-section {
    width: 100% !important;
    background-color: #f4f6f8 !important; /* Latar abu-abu terang premium */
    padding: 90px 0 !important;
    color: #111111 !important;
    display: block !important;
}

.categories-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    width: 100% !important;
}

.categories-header {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.categories-header h2 {
    font-size: 32px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111111 !important;
    margin-bottom: 10px !important;
}

.categories-header p {
    font-size: 15px !important;
    color: #555555 !important;
}

/* --- Pengaturan Teks Paragraf Deskripsi Kartu (Mantra Line-Clamp 2 Baris) --- */
.category-text p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #555555 !important;
    text-align: left !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    height: 3.2em !important; /* Tinggi seragam serasi lurus horizontal */
}

/* Komponen Ikon Kiri di Dalam Kartu */
.category-icon-wrapper {
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.category-icon-wrapper i {
    font-size: 36px !important; 
    color: #d9411e !important;   
}

.category-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.category-text h3 {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #111111 !important;
}

/* =====================================================================
   ISOLASI KUNCI MUTLAK DESKTOP: EMAS 3 KOLOM SEJAJAR (Anti-Patah)
   ===================================================================== */
@media (min-width: 993px) {
    .categories-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important; /* MEMAKSA PAS 3 KOTAK SEBARIS */
        gap: 30px 25px !important;
        width: 100% !important;
        flex-direction: unset !important;
        flex-wrap: unset !important;
    }

    .category-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 20px !important;
        background: #ffffff !important;
        border: 1px solid #000000 !important; /* Kotak tajam bersiku hitam tegas 1px */
        padding: 30px 24px !important;
        border-radius: 0px !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02) !important;
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        cursor: pointer !important; /* Indikator kartu interaktif bisa diklik */
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .category-item:hover {
        transform: translateY(-4px) !important;
        border-color: #d9411e !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06) !important;
    }
}

/* =====================================================================
   11. STYLE INTERAKTIF MODAL POPUP (Senada Dengan Tema Kotak Tajam)
   ===================================================================== */
.service-modal-overlay {
    position: fixed !important;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7) !important;
    z-index: 99999 !important; /* Di atas seluruh elemen halaman */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.service-modal-overlay.modal-active {
    opacity: 1 !important;
    visibility: visible !important;
}

.service-modal-content {
    background-color: #ffffff !important;
    border: 2px solid #000000 !important;
    padding: 40px !important;
    max-width: 600px;
    width: 90%;
    position: relative !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-modal-overlay.modal-active .service-modal-content {
    transform: scale(1) !important;
}

.modal-close-btn {
    position: absolute !important;
    top: 10px; right: 20px;
    background: none !important;
    border: none !important;
    font-size: 35px !important;
    font-weight: 700;
    color: #111111 !important;
    cursor: pointer !important;
    transition: color 0.2s ease;
}

.modal-close-btn:hover { color: #d9411e !important; }

.modal-body h2 {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #111111 !important;
    text-transform: uppercase;
    margin-bottom: 15px !important;
    padding-bottom: 10px;
    border-bottom: 2px solid #111111;
}

.modal-body p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #444444 !important;
    text-align: justify !important;
}

/* =====================================================================
   12. VIDEO BACKGROUND CALL-TO-ACTION CARD (Footer Area)
   ===================================================================== */
.about-cta-wrapper-container {
    width: 100%;
    padding: 40px 0 100px 0;
    background-color: #ffffff;
}

.about-cta-fullwidth {
    position: relative !important;    
    width: 100% !important;
    padding: 60px 40px !important;
    border-radius: 16px !important;   
    overflow: hidden !important;       
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    background-color: #111111;         
}

.cta-video-bg {
    position: absolute !important;
    top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important;
    object-fit: cover !important;     
    z-index: 1 !important;             
    pointer-events: none !important;  
}

.cta-overlay {
    position: absolute !important;
    top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important;
    background: rgba(0, 0, 0, 0.65) !important; 
    z-index: 2 !important;             
}

.cta-card-content {
    position: relative !important;
    z-index: 3 !important;             
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-tagline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b0b0b0;
    font-weight: 700;
}

.cta-card-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.cta-order-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background-color: #ffffff !important;
    color: #000000 !important;
    padding: 14px 35px !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #ffffff !important;
    border-radius: 6px !important;    
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer;
}

.cta-order-btn:hover {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15) !important;
}

.cta-order-btn i { font-size: 12px; }



/* =====================================================================
   13. GLOBAL ANIMATIONS (Page Load & Scroll Trigger)
   ===================================================================== */

/* --- A. ANIMASI SAAT HALAMAN PERTAMA DIMUAT (Page Load) --- */
.page-load-fade-up {
    animation: fadeUpOnLoad 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUpOnLoad {
    from {
        opacity: 0;
        transform: translateY(30px); /* Muncul dari bawah 30px */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- B. ANIMASI SAAT DI-SCROLL (Scroll-Triggered Base State) --- */
.reveal-on-scroll {
    opacity: 0 !important;
    transform: translateY(50px) !important; /* Posisi awal bersembunyi di bawah */
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, opacity; /* Optimasi akselerasi hardware biar tidak patah-patah */
}

/* Kondisi ketika elemen sudah menyentuh area layar (Dipicu oleh JavaScript) */
.reveal-on-scroll.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important; /* Naik ke posisi asli secara anggun */
}

/* Variasi Animasi Efek Zoom Halus (Opsional untuk elemen tertentu) */
.reveal-zoom {
    opacity: 0 !important;
    transform: scale(0.92) !important;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.reveal-zoom.is-visible {
    opacity: 1 !important;
    transform: scale(1) !important;
}





























/* =====================================================================
   14. MAIN FOOTER STYLES (Exact Match Layout - Premium Dark Skeme)
   ===================================================================== */
.main-footer {
    background-color: #191f2b !important; /* Warna dasar gelap slate navy sesuai contoh */
    color: #ffffff !important;
    width: 100% !important;
    position: relative !important;
    padding-top: 80px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    width: 92% !important;        /* Mengambil 92% lebar total layar monitor */
    max-width: 1650px !important;  /* Batas maksimal dilebarkan dari 1200px menjadi 1650px */
    margin: 0 auto !important;
    padding: 0 20px !important;    /* Padding tipis agar tidak benar-benar menabrak bezel monitor */
}

/* Sistem Pembagian 3 Kolom Simetris di Desktop */
.footer-grid {
    display: grid !important;
    grid-template-columns: 1.3fr 1fr 1fr !important; /* Proporsi kolom disesuaikan */
    gap: 50px 60px !important; /* Jarak antar kolom diperlebar agar seimbang */
    padding-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* --- STYLE KOLOM 1: BRAND & SOCIALS --- */
.footer-logo img {
    height: 55px !important; /* Proporsi tinggi logo putih agar seimbang */
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #a0a7b5; /* Warna teks abu-abu redup premium agar mata rileks */
    margin-bottom: 25px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-box {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.06) !important; /* Kotak ikon transparan abu gelap */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-box:hover {
    background-color: #f94a73 !important; /* Aksen pink menyala saat disentuh kursor */
    transform: translateY(-3px);
}

/* --- STYLE KOLOM 2: NEWSLETTER FORM --- */
.footer-col-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
    position: relative;
}

.newsletter-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #a0a7b5;
    margin-bottom: 20px;
}

.footer-newsletter-form {
    position: relative;
    width: 100%;
    max-width: 340px;
}

.newsletter-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07) !important; /* Boks input gelap murni */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 14px 55px 14px 18px !important;
    color: #ffffff !important;
    font-size: 14px;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #f94a73 !important; /* Garis tepi menyala pink saat diketik */
}

.newsletter-submit-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    height: calc(100% - 10px);
    width: 45px;
    background: transparent !important;
    border: none !important;
    color: #a0a7b5 !important;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.newsletter-submit-btn:hover {
    color: #f94a73 !important; /* Pesawat kertas berubah warna menjadi pink */
}

/* --- STYLE KOLOM 3: CONTACT INFRASTRUCTURE --- */
.footer-contact-row {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    margin-bottom: 22px;
}

/* Desain Lingkaran Pembungkus Ikon Kontak Merah Muda */
.contact-icon-wrapper {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(249, 74, 115, 0.3) !important; /* Lingkaran transparan pink */
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrapper i {
    font-size: 16px;
    color: #f94a73 !important; /* Warna ikon pink solid murni */
}

.contact-text-wrapper h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.contact-text-wrapper p a {
    font-size: 13.5px;
    color: #a0a7b5 !important;
    transition: color 0.2s ease;
}

.contact-text-wrapper p a:hover {
    color: #f94a73 !important;
}

/* --- STYLE BOTTOM BAR BARIS PALING BAWAH --- */
.footer-bottom-bar {
    width: 100% !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 25px 0 !important;
    margin-top: 20px;
    background-color: #151a24 !important; /* Warna dasar sedikit lebih gelap dari atas */
}

.footer-bottom-container {
    width: 92% !important;        /* Wajib disamakan dengan kontainer atas */
    max-width: 1650px !important;  /* Wajib sejajar lurus vertikal dengan kontainer atas */
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}


.footer-bottom-center p {
    font-size: 13.5px;
    color: #8a92a3;
}

.copyright-link {
    color: #f94a73 !important; /* Nama PT/Agency warna pink menyala */
    font-weight: 600;
}


/* =====================================================================
   PERBAIKAN: COCOK LAYAR - DORONG BOKS CONTACTS KE UJUNG KANAN
   ===================================================================== */
@media (min-width: 993px) {
    .footer-contacts-block {
        justify-self: end !important;   /* Mantra sakti untuk mendorong boks murni ke kanan mentok */
        width: 100% !important;
        max-width: 220px !important;    /* Mengunci lebar boks kontak agar simetris dengan boks lainnya */
    }
}

/* =====================================================================
   15. FOOTER BOTTOM SEO & TRAFFIC OPTIMIZATION STYLES
   ===================================================================== */
.footer-bottom-container {
    width: 92% !important;
    max-width: 1650px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: column !important; /* Diubah menjadi kolom ke bawah agar menampung susunan blok SEO */
    gap: 30px !important;
}

/* Penataan Paragraf SEO */
.footer-seo-paragraph {
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    padding-bottom: 25px !important;
}

.footer-seo-paragraph p {
    font-size: 13px !important;
    line-height: 1.8 !important;
    color: #697282 !important; /* Warna dibuat abu-abu redup (samar) agar mata pengunjung tetap fokus ke menu atas, namun Google bot tetap bisa membacanya 100% */
    text-align: justify !important;
}

.footer-seo-paragraph p strong {
    color: #8c96a8 !important; /* Tebalkan sedikit untuk keyword utama */
    font-weight: 600;
}

/* Penataan Grup Tag Kata Kunci */
.footer-seo-keywords-grid {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    padding-bottom: 30px !important;
}

.seo-tag-group {
    font-size: 12.5px !important;
    color: #555d6b !important;
    line-height: 1.6;
}

.seo-tag-group span {
    font-weight: 700;
    color: #7c8699 !important;
    margin-right: 8px;
}

.seo-tag-group a {
    color: #697282 !important;
    transition: color 0.2s ease !important;
    display: inline-block;
    margin: 0 3px;
}

.seo-tag-group a:hover {
    color: #f94a73 !important; /* Berubah pink saat disentuh kursor */
    text-decoration: underline !important;
}

/* Penataan Baris Hak Cipta Paling Bawah Sendiri */
.footer-copyright-row {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Penyesuaian Responsif Layar HP */
@media (max-width: 992px) {
    .footer-copyright-row {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center !important;
    }
}