/* ===========================
   GLOBAL STYLE
   =========================== */
:root {
    --bg-body: #050816;
    --bg-elevated: #0b1020;
    --bg-elevated-soft: #10162b;
    --primary: #16a34a;
    --primary-soft: rgba(79, 70, 229, 0.15);
    --primary-strong: #6366f1;
    --accent: #22c55e;
    --danger: #ef4444;           /* 🔴 warna merah untuk tombol PDF */
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --border-soft: #1f2937;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
    --radius-xl: 1.5rem;
    --radius-lg: 1.1rem;
    --radius-md: 0.75rem;
    --transition: all 0.25s ease;
}

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

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
    color: var(--text-main);
    min-height: 100vh;
}

/* ===========================
   LAYOUT & CONTAINERS
   =========================== */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.75), transparent);
    border-bottom: 1px solid rgba(31, 41, 55, 0.7);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 1rem;
    background: radial-gradient(circle at 30% 0, #a855f7 0, #4f46e5 40%, #0ea5e9 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #f9fafb;
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.65);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.1rem;
    transition: var(--transition);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), #22c55e);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--text-main);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--text-main);
}

.nav-cta {
    margin-left: 0.5rem;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: rgba(15, 23, 42, 0.88);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #e5e7eb;
    transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.site-main {
    padding-bottom: 3rem;
}

/* ===========================
   SCHEDULE KEBERANGKATAN
   =========================== */
.hidden {
    display: none;
}

.availability-result {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
}

/* Kartu jadwal */
.schedule-card {
    background: rgba(15, 23, 42, 0.98);
    border-radius: 1rem;
    border: 1px solid rgba(55, 65, 81, 0.9);
    padding: 0.85rem 0.9rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    font-size: 0.8rem;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.55rem;
}

.schedule-operator {
    font-weight: 600;
}

.schedule-route {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.schedule-price {
    text-align: right;
}

.schedule-price span:first-child {
    font-weight: 600;
}

.schedule-price .per-seat {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.schedule-body {
    border-top: 1px dashed rgba(55, 65, 81, 0.9);
    padding-top: 0.55rem;
}

.schedule-time {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.time-main {
    font-weight: 600;
    font-size: 0.9rem;
}

.time-sub {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.time-duration {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.schedule-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.pill-group {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.pill {
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    font-size: 0.7rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
}

.pill-outline {
    background: transparent;
}

.schedule-wa {
    font-size: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.7);
    color: #bbf7d0;
    background: rgba(6, 95, 70, 0.4);
}

.schedule-wa:hover {
    background: rgba(5, 150, 105, 0.7);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    padding: 3.5rem 0 2.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 2.6vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.hero-text p {
    color: var(--text-muted);
    max-width: 32rem;
    font-size: 0.9rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 999px;
    padding: 0.15rem 0.75rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.55);
    color: #bbf7d0;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.25rem 0 1.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

/* Tombol aksi di form booking */
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* Tombol merah untuk Export PDF */
.btn-danger {
    background: linear-gradient(135deg, #b91c1c, var(--danger));
    color: #fee2e2;
    border-color: rgba(248, 113, 113, 0.7);
    box-shadow: var(--shadow-soft);
}

.btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 55px rgba(127, 29, 29, 0.9);
}

/* ===========================
   STRIP MOBIL BERJALAN
   =========================== */
.vehicle-strip {
    padding: 0.4rem 0 0.1rem;
    border-bottom: 1px solid rgba(31, 41, 55, 0.7);
    background: radial-gradient(circle at top,
        rgba(34, 197, 94, 0.10) 0,
        rgba(5, 10, 25, 0.98) 55%);
}

.vehicle-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.vehicle-track {
    display: flex;
    flex-wrap: nowrap;          /* ✅ jangan boleh turun ke baris baru */
    align-items: center;
    gap: 1.5rem;
    animation: vehicleMarquee 25s linear infinite;
}

.vehicle-track img {
    flex: 0 0 auto;             /* ✅ lebar sesuai konten, tidak melar */
    height: 70px;
    width: auto;
    border-radius: 0.75rem;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* Animasi geser pelan dari kanan ke kiri */
@keyframes vehicleMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .vehicle-track img {
        height: 52px;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #22c55e);
    color: white;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.9);
}

.btn-outline {
    border-color: rgba(148, 163, 184, 0.7);
    color: var(--text-main);
    background: rgba(15, 23, 42, 0.7);
}

.btn-outline:hover {
    border-color: rgba(148, 163, 184, 1);
    background: rgba(15, 23, 42, 0.95);
}

.btn-block {
    width: 100%;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.highlight-card {
    background: radial-gradient(circle at top, rgba(148, 163, 184, 0.1) 0, rgba(15, 23, 42, 0.9) 50%, rgba(15, 23, 42, 1) 100%);
    border-radius: 1rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(31, 41, 55, 0.85);
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 1.2rem;
    margin-top: 0.15rem;
}

.highlight-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.highlight-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-card {
    background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.22) 0, rgba(15, 23, 42, 0.98) 45%, #020617 100%);
    border-radius: 1.4rem;
    border: 1px solid rgba(55, 65, 81, 0.85);
    box-shadow: var(--shadow-soft);
    padding: 1.4rem 1.4rem 1.3rem;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -60%;
    opacity: 0.11;
    background:
        radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.2) 0, transparent 40%),
        radial-gradient(circle at 100% 0, rgba(56, 189, 248, 0.24) 0, transparent 45%);
    pointer-events: none;
}

.hero-card h2 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.hero-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.quick-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.7rem;
}

.quick-form label {
    display: grid;
    gap: 0.25rem;
    font-size: 0.8rem;
}

.quick-form input,
.quick-form select,
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: rgba(15, 23, 42, 0.92);
    color: var(--text-main);
    font-size: 0.8rem;
    outline: none;
    transition: var(--transition);
}

.quick-form input:focus,
.quick-form select:focus,
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--primary-strong);
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.6);
}

.form-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* ===========================
   GENERIC SECTIONS
   =========================== */
.section {
    padding: 2.5rem 0;
}

.section-alt {
    background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.12) 0, rgba(15, 23, 42, 0.96) 48%, #020617 100%);
}

.section-title {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.section-intro {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    max-width: 40rem;
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 1.4rem;
}

.card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(31, 41, 55, 0.9);
    padding: 1rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

/* ===== RAPIKAN TABEL RUTE ===== */
.data-table {
    table-layout: fixed;       /* lebar kolom dibagi rapi */
    margin-left: 20px;
}

.data-table th,
.data-table td {
    padding: 3px 8px;      /* jarak baris & kolom lebih rapat */
    text-align: left;
    vertical-align: middle;
}

/* Lebar kolom per posisi */
.data-table th:nth-child(1),
.data-table td:nth-child(1) {
    width: 28%;                /* Rute */
    text-align: left;
}

.data-table th:nth-child(2),
.data-table td:nth-child(2) {
    width: 18%;                /* Keberangkatan */
    text-align: left;
}

.data-table th:nth-child(3),
.data-table td:nth-child(3) {
    width: 18%;                /* Kota Tujuan / Jam Tiba */
    text-align: left;
}

.data-table th:nth-child(4),
.data-table td:nth-child(4) {
    width: 16%;                /* Harga */
    text-align: left;
}

.data-table th:nth-child(5),
.data-table td:nth-child(5) {
    width: 25%;                /* Fasilitas */
    text-align: left;
}

/* Biar teks fasilitas tidak terlalu mepet */
.data-table td:nth-child(5) {
    padding-left: 1rem;
    word-wrap: break-word;
}

/* Kotak panelnya */
.info-panel {
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.18) 0, rgba(15, 23, 42, 1) 55%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(55, 65, 81, 0.95);
    padding: 1.5rem 2rem;       /* jarak isi ke border */
    box-shadow: var(--shadow-soft);
}

/* SEMUA ul di dalam info-panel (termasuk contoh harga) */
.info-panel ul {
    margin: 0;
    padding-left: 0; /* biar kita kontrol dari .price-list */
}

/* Kalau mau jarak antar baris lebih enak */
.info-panel li {
    padding: 0;
    font-size: 0.9rem;
}

/* === LIST HARGA === */
.price-list {
    margin: 0;
    padding: 0;
    list-style: none; /* pakai bullet custom, bukan bawaan */
}

.price-list li {
    position: relative;
    display: flex;
    justify-content: space-between;  /* kota kiri, harga kanan */
    align-items: center;
    gap: 1.5rem;
    padding: 0.3rem 0;
    padding-left: 1.2rem;           /* ruang untuk bullet */
}

/* Bullet custom */
.price-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #e5e7eb;           /* warna bullet (putih keabu-abuan) */
}

/* ===========================
   CHECKLIST & INFO BOX
   =========================== */
.check-list {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0 0;
}

.check-list li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.75rem;
    color: var(--accent);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #bfdbfe;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

/* ===========================
   INFO BOX
   =========================== */
.info-box {
    max-width: 900px;   /* batasi lebar maksimal */
    margin-top: 1.5rem;
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(55, 65, 81, 0.9);
    padding: 1rem;
    box-shadow: var(--shadow-soft);
}

.info-box h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-box ul {
    margin-top: 0.25rem;
}

/* TOMBOL PROMO MAKAN GRATIS */
.pill-free {
    display: inline-block;
    background: #ff1e1e; /* merah solid */
    color: #ffffff;      /* teks putih */
    font-weight: 700;
    font-size: 0.9rem;   /* agak besar */
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.35); /* glow merah */
    border: none;
}

.pill-free:hover {
    background: #cc0000;
    box-shadow: 0 8px 22px rgba(255, 0, 0, 0.55);
    transform: translateY(-2px);
    transition: 0.25s ease-in-out;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    border-top: 1px solid rgba(31, 41, 55, 0.8);
    padding-top: 1.75rem;
    background: radial-gradient(circle at top, rgba(30, 64, 175, 0.22) 0, rgba(15, 23, 42, 1) 55%, #020617 100%);
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
    gap: 2rem;
    font-size: 0.8rem;
}

.footer-grid h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.footer-grid h4 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    margin-top: 1.5rem;
    padding: 0.9rem 0 1.1rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===========================
   FLOATING WHATSAPP BUTTON
   =========================== */
.wa-floating {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.28) 0, rgba(15, 23, 42, 0.98) 55%);
    border: 1px solid rgba(34, 197, 94, 0.7);
    text-decoration: none;
    color: #bbf7d0;
    font-size: 0.8rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
}

.wa-floating-icon {
    width: 36px;
    height: 36px;
    margin-right: 6px;
    max-width: 36px;
    max-height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}

.wa-floating:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.85);
}

.wa-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, #22c55e 0, #16a34a 45%, #15803d 100%);
    font-size: 1rem;
}

.wa-pulse {
    position: absolute;
    inset: auto;
    right: 0.9rem;
    bottom: 0.9rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid rgba(34, 197, 94, 0.35);
    transform: scale(1);
    opacity: 0.9;
    animation: waPulse 2s infinite;
    pointer-events: none;
}

.wa-label {
    font-weight: 500;
}

/* Animasi pulse */
@keyframes waPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.75;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(0.85);
        opacity: 0;
    }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
        gap: 1.8rem;
    }

    .hero-card {
        margin-top: 0.5rem;
    }

    .cards-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-column {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding-inline: 1.2rem;
    }

    .main-nav {
        position: absolute;
        top: 64px;
        right: 1rem;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(15, 23, 42, 0.98);
        border-radius: 1rem;
        padding: 0.65rem 0.9rem;
        min-width: 180px;
        border: 1px solid rgba(31, 41, 55, 0.9);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
    }

    .main-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-cta,
    .nav-cta.open {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero {
        padding-top: 2.3rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        order: -1;
    }

    .hero-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .two-column {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-highlights {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-text h1 {
        font-size: 1.7rem;
    }

    .wa-floating {
        right: 0.9rem;
        bottom: 0.9rem;
        padding-inline: 0.7rem;
    }

    .wa-floating-icon {
        width: 30px !important;
        height: 30px !important;
        max-width: 30px !important;
        max-height: 30px !important;
    }

    .wa-pulse {
        width: 40px;
        height: 40px;
    }

    .wa-label {
        display: none;
    }
}

/* ===========================
   TABLE RESPONSIVE
   =========================== */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .data-table {
        font-size: 0.8rem;
        min-width: 600px;
    }

    .data-table th,
    .data-table td {
        padding: 0.4rem 0.7rem;
        white-space: nowrap;
    }
}

/* ===========================
   LOGO IMG
   =========================== */
.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 1.1rem;
    background: radial-gradient(circle at 30% 0, #22c55e 0, #16a34a 40%, #0f766e 100%);
    padding: 4px;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.65);
}
