/* assets/css/style.css */

:root {
    /* 1. Mengubah variabel kustom Anda agar konsisten */
    --primary-color: #00258f; /* Warna baru Anda */
    --primary-dark: #021f70;  /* Versi lebih gelap dari warna baru Anda */
    --secondary-color: #64748b;
    --accent-color: #f1f5f9;
    --gradient-primary: linear-gradient(135deg, #00258f 0%, #0091FA 100%); /* Gradasi baru */
    
    /* Variabel shadow tetap sama */
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* 2. Menimpa variabel warna utama Bootstrap (INI BAGIAN PENTINGNYA) */
    --bs-primary: var(--primary-color);
    --bs-primary-rgb: 0, 37, 143; /* Wajib diisi (nilai RGB dari #262161) */

        /* TAMBAHKAN DUA BARIS INI UNTUK MENGGANTI WARNA WARNING */
    --bs-warning: #FD9702;
    --bs-warning-rgb: 251, 175, 65;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

/* Navbar Styles */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}
.navbar-nav {
    display: flex;
    gap: 15px; /* atur jaraknya di sini */
}
/* NAV harus boleh menampung dropdown */
.navbar { 
  overflow: visible; 
  z-index: 1030; 
}


/* Dropdown Menu on Hover */
.dropdown-hover { 
    position: relative; 
}

/* Tampilkan dropdown saat diklik (Bootstrap menambah .show) */
/* Default disiapkan hidden (untuk animasi) */
.dropdown-hover .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  pointer-events: none;
}

/* Saat .show (hasil klik Bootstrap/JS), tampilkan */
.dropdown-hover .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Desktop: hover/focus juga menampilkan */
@media (min-width: 992px) {
  .dropdown-hover:hover > .dropdown-menu,
  .dropdown-hover:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }
}

/* Mobile: biar dropdown mengalir di navbar collapse */
@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    margin-top: .5rem;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
  }
}

/* Pastikan di atas konten lain */
.navbar .dropdown-menu { z-index: 2000; }


/* Items */
.dropdown-item {
  font-family: 'Montserrat', sans-serif;
  font-size: .8125rem; /* 13px */
  font-weight: 500;
  letter-spacing: .3px;
  padding: .6rem 1rem;
}
.dropdown-item:hover {
  background: #f1f5f9;
  color: var(--brand-700);
}
.dropdown-item.active,
.dropdown-item:active {
  background: #eaf1ff;
  color: var(--brand-700);
}
.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 550; /* light */
    font-size: 0.70rem; /* 12px */
    letter-spacing: 0.5px;      /* spasi antar huruf */
    text-transform: uppercase;/* huruf besar semua */
    color: #000 !important; /* warna hitam */
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 550;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* justify untuk deskripsi*/
.text-justify {
    text-align: justify;
}

/* Section Umum */
/* Offset konten untuk navbar fixed */
.main-content {
  padding-top: var(--nav-h, 70px) !important; /* pakai var kalau ada, fallback 80px */
  display: flow-root; /* putus margin-collapsing */
}

/* Stop margin pertama 'nembus' ke body */
.main-content > *:first-child { margin-top: 0 !important; }


/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" fill-opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" fill-opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    gap: 1rem;
}

.btn-hero {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white; /* Border dibuat putih dari awal */
}

.btn-primary {
    background-color: #00258f;
    border-radius: 50px !important; /* angka besar bikin bulat */
}


/* Tombol "Lihat Produk" */
.btn-hero-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.btn-hero-primary:hover {
    background: transparent; /* Jadi transparan saat di-hover */
    color: white; /* Teks jadi putih */
    transform: translateY(-2px);
    box-shadow: none; /* Hilangkan shadow agar lebih rapi */
    border: 2px solid white;
}

/* Tombol "Pesan Sekarang" */
.btn-hero-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-hero-outline:hover {
    background: white; /* Jadi putih saat di-hover */
    color: var(--primary-color); /* Teks jadi biru */
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}
/* Custom Button untuk WhatsApp (Lebih Spesifik) */
.btn.btn-pesan {
    background-color: #FD9702;
    color: white;
    border: none;
    border-radius: 8px; /* Nilai ini sekarang akan lebih kuat */
}

/* Hover state juga diperbarui */
.btn.btn-pesan:hover {
    background-color: #ffaf37;
    color: white;
}

.btn-order {
    background-color: #00258f;       /* warna hitam */
    color: #fff;                  /* teks putih */
    border: none;
    border-radius: 24px;          /* radius agak bulat */
    padding: 10px 20px;           /* tinggi & lebar tombol */
    font-weight: 500;             /* agak tebal tapi tidak bold */
    font-size: 0.875rem;          /* 14px */
    letter-spacing: 0.5px;        /* jarak huruf sedikit */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-order:hover {
    background-color: #10318e;       /* abu tua saat hover */
    color: #fff; 
    transform: translateY(-2px);  /* efek naik sedikit */
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

/* Cards */
.card-modern {
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
}

.card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.card-modern .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-modern:hover .card-img-top {
    transform: scale(1.05);
}
.product-item.hidden {
    display: none;
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.product-description {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-whatsapp {
    background: #25d366;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    color: white;
}
/* ==== PRODUCT SHOWCASE CARDS ==== */
.products-showcase { padding: 48px 0 64px; }

.prod-card {
  position: relative;
  height: 420px;                    /* tinggi kartu */
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: var(--gradient-silver);
  transition: transform .25s ease, box-shadow .25s ease;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-heavy); }

/* layer foto */
.prod-card .photo {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  filter: saturate(105%);
}

/* bubble judul setengah-lingkaran */
.prod-card .bubble {
  position: absolute;
  top: 22px; left: 22px;
  max-width: 60%;
  padding: 28px 24px;
  border-radius: 28px 120px 120px 28px;  /* bentuk unik (beda dari referensi) */
  color: #1b2b22;
  line-height: 1.15;
  box-shadow: var(--shadow-light);
}
.bubble h3{
  font-weight: 800; letter-spacing:.2px; margin:0; font-size: clamp(1.2rem, 2.6vw, 2rem);
}
.bubble p{ margin:.35rem 0 0; opacity:.9; font-weight:600; }

/* tombol pill */
.prod-card .cta {
  position: absolute; bottom: 24px; left: 24px;
  border: 0; padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700; letter-spacing: .08em;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(4px);
  color: #1a1a1a;
  box-shadow: var(--shadow-light);
  text-transform: uppercase;
}
.prod-card .cta:hover { background: #fff; }

/* VARIAN WARNA BUBBLE (pilih sesuai foto) */
.bubble-amber { background: #E3DDD1; }
.bubble-terracotta { background: #B59F8E; color:#113322; }
.bubble-sage { background:#B5D7F9; }
.bubble-lilac { background: #A9A6B7; color:#2a1f3f; }
.bubble-ocean { background:#98DCB7; }

/* responsive kecil */
@media (max-width: 767.98px){
  .prod-card{ height: 360px; }
  .prod-card .bubble{ max-width: 70%; }
}
 
/* Category Filter */
.category-filter {
    margin-bottom: 3rem;
}
.faq-header.active .faq-icon { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }

.faq-header { transition: background-color 0.3s ease; }
.faq-header.active { background-color: #f8f9fa; }
.faq-header.active .faq-icon { transform: rotate(180deg); transition: transform 0.3s ease; }
.faq-icon { transition: transform 0.3s ease; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }

.filter-btn {
    background: var(--accent-color);
    border: 2px solid transparent;
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 5px 10px 0;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border: none;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--accent-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-name {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-header {
    background: var(--gradient-silver);
    border: none;
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header:hover {
    background: var(--gradient-primary);
    color: white;
}

.faq-header.active {
    background: var(--gradient-primary);
    color: white;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-header.active .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-body.active {
    padding: 1.5rem;
    max-height: 300px;
}

.faq-content {
    color: var(--secondary-color);
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.form-floating > .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.1);
}

.form-floating > label {
    color: var(--secondary-color);
    font-weight: 500;
}

/* About Page Styles */
.about-stats {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.vision-mission {
    background: var(--accent-color);
    padding: 60px 0;
    margin: 60px 0;
}

.vm-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Admin Styles */
.admin-sidebar {
    min-height: 100vh;
    background: var(--gradient-primary);
}

.admin-nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-nav-link:hover,
.admin-nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.admin-card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.table-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.table-modern th {
    background: var(--accent-color);
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.table-modern td {
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #e2e8f0;
}

.btn-action {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 6px;
    margin: 0 2px;
}

/* Utilities */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.bg-gradient-silver {
    background: var(--gradient-silver);
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .vm-card,
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Image Hover Effects */
.image-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay:hover::after {
    opacity: 1;
}

/* Custom Checkbox and Radio */
.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Floating Action Button */
.btn-float {
    display: none; 
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    border: none;
    box-shadow: var(--shadow-heavy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

.btn-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

/* Print Styles */
@media print {
    .navbar,
    .fab,
    #backToTop,
    footer {
        display: none !important;
    }
    
    .main-content {
        padding-top: 0 !important;
    }
    
    .hero-section {
        min-height: auto !important;
        padding: 2rem 0 !important;
    }
}

/* Category tabs (pills) */
.category-tabs { display:flex; justify-content:center; gap:10px; flex-wrap:wrap; }
.category-tabs .pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--brand-300, #93c5fd);
  background:#fff;
  color:#0b1220;
  font-family:'Montserrat', sans-serif;
  font-weight:600;
  font-size:.875rem; /* 14px */
  letter-spacing:.2px;
  text-decoration:none;
  transition:.2s;
}
.category-tabs .pill:hover{
  border-color:var(--brand-600, #2563eb);
  color:var(--brand-700, #1d4ed8);
  background:#f8fbff;
}
.category-tabs .pill.active{
  background: var(--brand-600, #2563eb);
  color:#fff;
  border-color: var(--brand-600, #2563eb);
}
/* ===== CTA Pill ala Costa Vida ===== */
.cta-pill{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
  gap:40px;
  padding:48px 56px;
  border-radius:120px;                  /* kapsul super bulat */
  background: linear-gradient(135deg, #00258f 0%, #0091FA 100%); /* biru; ganti jika mau teal */
  color:#fff;
  position:relative;
  overflow:hidden;
  box-shadow: 0 30px 80px rgba(13, 27, 57, .18);
}
/* bintik halus seperti texture */
.cta-pill::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(rgba(255,255,255,.08) 1px, transparent 2px) 0 0/22px 22px,
    radial-gradient(rgba(255,255,255,.06) 1px, transparent 2px) 11px 11px/22px 22px;
  pointer-events:none;
  mix-blend-mode: screen;
}

.cta-left .cta-eyebrow{
  font-family: "Pacifico", cursive;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}
.cta-left .cta-title{
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 64px);
  line-height: .98;
  margin: 0 0 12px;
}
.cta-left .cta-sub{
  margin: 0 0 20px;
  color: rgba(255,255,255,.9);
  font-size: 16px;
}
.cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* Tombol utama (warna putih) */
.btn-hero-dark {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.btn-hero-dark:hover {
    background: transparent;
    border: 2px solid white !important;
    color: white;
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-hero-outline-dark {
    background: transparent;
    color: #fff;
    border: 2px solid #fff; /* border putih awal */
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero-outline-dark:hover {
    background: white;
    color: var(--primary-color);
    border: 2px solid white !important; /* pastikan border tetap ada */
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}


/* Input email + tombol panah bulat */
.cta-right{ text-align:right; }
.pill-input{
  display:flex; align-items:center; gap:12px;
  background:#fff; padding:10px 10px 10px 18px; border-radius:999px;
}
.pill-field{
  flex:1; border:0; outline:0; font-size:16px; color:#0b1220; background:transparent;
}
.pill-field::placeholder{ color:#94a3b8; }
.pill-btn{
  width:48px; height:48px; border-radius:999px; border:0; outline:0; cursor:pointer;
  background:#0b0f19; color:#fff; display:grid; place-items:center;
  transition: transform .15s ease, filter .15s ease;
}
.pill-btn:hover{ transform: translateY(-1px); filter: brightness(1.08); }
.pill-hint{ display:block; margin-top:8px; opacity:.85; }

/* Responsif */
@media (max-width: 992px){
  .cta-pill{ grid-template-columns: 1fr; border-radius:48px; padding:32px 24px; text-align:left; }
  .cta-right{ text-align:left; }
}
.table.table-sm th {
  background: #f8fafc;
  color: #35475f;
  font-weight: 600;
}
/* Hanya untuk kolom gambar hero ini */
.hero-column {
  display: flex;
  justify-content: center;
  align-items: flex-end;    /* gambar “nempel” ke bawah kolom */
  /* beri tinggi ruang supaya bisa turun; atur sesuai kebutuhan */
  min-height: 480px;
}

/* Pastikan gambar tidak melebar/menjebol layout */
.hero-column img {
  max-height: 500px;
  margin-bottom: 55px; /* geser gambar naik */
}


/* Kalau masih terasa terlalu atas/bawah, atur min-height saja */
@media (min-width: 992px) {
  .hero-column { min-height: 560px; } /* contoh tweak di layar besar */
}
