/* ==========================================================================
   Bandar Djakarta Official Anti-Fraud Portal Design Style
   ========================================================================== */

:root {
    /* Color Palette */
    --primary-dark: #004F9F;
    --primary-light: #0082c8;
    --primary-gradient: linear-gradient(135deg, #0082c8, #004F9F);
    --accent-cyan: #00b4db;
    --accent-gradient: linear-gradient(135deg, #00b4db, #0083b0);
    --warning-red: #e53e3e;
    --warning-gradient: linear-gradient(135deg, #f87171, #e53e3e);
    --success-green: #22c55e;
    --success-gradient: linear-gradient(135deg, #4ade80, #22c55e);
    --bg-dark: #070c18;
    --bg-light: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.85);
    
    /* Text Colors */
    --text-dark: #0f172a;
    --text-light: #f8fafc;
    --text-muted: #64748b;
    --text-red: #e53e3e;
    --text-green: #15803d;
    
    /* Box Shadows & Borders */
    --card-shadow: 0 12px 36px rgba(0, 79, 159, 0.08);
    --card-shadow-hover: 0 20px 48px rgba(0, 79, 159, 0.16);
    --shadow-red: 0 10px 25px rgba(229, 62, 62, 0.2);
    --shadow-green: 0 10px 25px rgba(34, 197, 94, 0.2);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

/* Utilities / Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-red { color: var(--text-red) !important; }
.text-green { color: var(--text-green) !important; }
.text-primary { color: var(--primary-dark) !important; }
.hidden { display: none !important; }

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(229, 62, 62, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 62, 62, 0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes borderGlow {
    0% { border-color: rgba(0, 130, 200, 0.4); }
    50% { border-color: rgba(229, 62, 62, 0.6); }
    100% { border-color: rgba(0, 130, 200, 0.4); }
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.animate-slide-up-delay2 {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

.animate-scale-up {
    animation: scaleUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* --------------------------------------------------------------------------
   Announcement Bar
   -------------------------------------------------------------------------- */
.announcement-bar {
    background: var(--warning-gradient);
    color: var(--text-light);
    padding: 12px 15px;
    font-size: 0.875rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    max-width: 1200px;
}

.pulse-icon {
    width: 10px;
    height: 10px;
    background-color: var(--text-light);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 46px; /* Height of announcement-bar */
    z-index: 999;
    padding: 16px 0;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 79, 159, 0.15));
}

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

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-light);
    background-color: rgba(0, 130, 200, 0.06);
}

.nav-link.active {
    color: var(--primary-light);
    background-color: rgba(0, 130, 200, 0.08);
}

.nav-link.highlighted {
    color: white;
    background: var(--primary-gradient);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 79, 159, 0.2);
}

.nav-link.highlighted:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 79, 159, 0.3);
}

.btn-report-nav {
    text-decoration: none;
    background: var(--warning-gradient);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 30px;
    box-shadow: var(--shadow-red);
    transition: var(--transition-bounce);
}

.btn-report-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.35);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 80px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(0, 79, 159, 0.08) 0%, rgba(255, 255, 255, 1) 90%);
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

.hero-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 130, 200, 0.15);
    top: -50px;
    right: -100px;
}

.hero-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(229, 62, 62, 0.08);
    bottom: -50px;
    left: -100px;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.badge-alert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 62, 62, 0.12);
    color: var(--warning-red);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid rgba(229, 62, 62, 0.25);
    margin-bottom: 28px;
    letter-spacing: 1.2px;
}

.icon-warning {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -1.2px;
    line-height: 1.1;
}

.highlight-text {
    background: var(--warning-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.65;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: var(--transition-bounce);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 79, 159, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 79, 159, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid rgba(15, 23, 42, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background-color: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Glass Card - Hero Right Side */
.hero-visual-card {
    display: flex;
    justify-content: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 79, 159, 0.08);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 79, 159, 0.1);
    transition: var(--transition-smooth);
}

.security-shield-card {
    padding: 36px;
    width: 100%;
    max-width: 480px;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.card-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.danger {
    background-color: var(--warning-red);
    box-shadow: 0 0 10px var(--warning-red);
}

.comparison-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-box {
    padding: 22px;
    border-radius: var(--border-radius-md);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition-smooth);
}

.comparison-box.illegal {
    background: rgba(229, 62, 62, 0.06);
    border: 1px solid rgba(229, 62, 62, 0.15);
}

.comparison-box.legal {
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.circle-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.circle-badge.error { background: var(--warning-gradient); box-shadow: var(--shadow-red); }
.circle-badge.success { background: var(--success-gradient); box-shadow: var(--shadow-green); }

.badge-icon {
    width: 14px;
    height: 14px;
}

.comparison-box h3 {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 800;
}

.bank-details-mock {
    display: flex;
    flex-direction: column;
}

.bank-details-mock .bank-name {
    font-size: 0.95rem;
    font-weight: 700;
}

.bank-details-mock .acc-name {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 2px 0;
}

.bank-details-mock .acc-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.warning-tag {
    align-self: flex-start;
    background-color: var(--warning-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.safe-tag {
    align-self: flex-start;
    background-color: var(--success-green);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.comparison-divider::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(15, 23, 42, 0.08);
}

.vs-text {
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

/* --------------------------------------------------------------------------
   Section Structure & Modus Card
   -------------------------------------------------------------------------- */
.section {
    padding: 120px 0;
}

.section-header {
    max-width: 750px;
    margin: 0 auto 70px;
}

.sub-title {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-light);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.modus-card {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 42px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-bounce);
    border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
}

.modus-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 79, 159, 0.1);
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.card-icon-wrapper.red-theme {
    background: rgba(229, 62, 62, 0.1);
    color: var(--warning-red);
}

.card-icon {
    width: 32px;
    height: 32px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-bad-indicator {
    background: #fff5f5;
    border-left: 4px solid var(--warning-red);
    padding: 14px 16px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-size: 0.85rem;
    color: #991b1b;
    line-height: 1.5;
}

.card-bad-indicator strong {
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   Verification Checker Section (Widget)
   -------------------------------------------------------------------------- */
.verifikasi-section {
    background: radial-gradient(circle at right bottom, rgba(0, 130, 200, 0.05) 0%, rgba(255, 255, 255, 1) 70%);
}

.verifikasi-container {
    padding: 50px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.verifikasi-header {
    max-width: 800px;
    margin-bottom: 40px;
}

.badge-sec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 79, 159, 0.08);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.badge-icon-sec {
    width: 14px;
    height: 14px;
}

.verifikasi-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.verifikasi-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.checker-widget {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 79, 159, 0.04);
    border: 1px solid rgba(0, 79, 159, 0.05);
}

.checker-inputs {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr auto;
    gap: 20px;
    align-items: flex-end;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    border: 2px solid rgba(15, 23, 42, 0.1);
    background-color: #fafbfd;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--primary-light);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(0, 130, 200, 0.15);
}

.btn-verify-action {
    height: 52px;
    padding: 0 30px;
    border-radius: var(--border-radius-sm);
    position: relative;
    overflow: hidden;
}

/* Loader style */
.loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

/* Dynamic verify result box */
.verify-result-box {
    margin-top: 24px;
    padding: 24px;
    border-radius: var(--border-radius-md);
    animation: slideUp 0.4s ease-out forwards;
}

.verify-result-box.res-safe {
    background: rgba(34, 197, 94, 0.08);
    border: 2px solid rgba(34, 197, 94, 0.2);
    color: #14532d;
}

.verify-result-box.res-danger {
    background: rgba(229, 62, 62, 0.08);
    border: 2px solid rgba(229, 62, 62, 0.2);
    color: #7f1d1d;
    animation: borderGlow 2s infinite;
}

.result-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.result-title-row svg {
    width: 24px;
    height: 24px;
}

.result-title-row h3 {
    font-size: 1.15rem;
}

.result-body p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.result-body p strong {
    font-weight: 700;
}

.checker-footer {
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.icon-info {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 4px;
    color: var(--primary-light);
}

/* --------------------------------------------------------------------------
   Branch Contacts Directory
   -------------------------------------------------------------------------- */
.branch-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.branch-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 79, 159, 0.06);
    display: flex;
    flex-direction: column;
    transition: var(--transition-bounce);
}

.branch-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.branch-card.group-contact {
    grid-column: span 3;
    max-width: 100%;
    margin-bottom: 80px; /* increased breathing space below the group card */
    padding-bottom: 8px;
}

.group-contact-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.group-contact-actions {
    grid-template-columns: 1fr !important;
}

.group-contact-actions .btn-action-call {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .branch-card.group-contact {
        grid-column: span 2;
        margin-bottom: 56px;
    }
}

@media (max-width: 768px) {
    .branch-card.group-contact {
        grid-column: span 1;
        margin-bottom: 36px;
    }
}

@media (max-width: 768px) {
    .branch-card.group-contact {
        grid-column: span 1;
    }
}

.branch-header-bg {
    background: linear-gradient(135deg, #02204c 0%, #004F9F 100%);
    padding: 24px 30px;
    color: white;
    position: relative;
}

.branch-loc-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
    font-weight: 500;
    line-height: 1.4;
}

.branch-status {
    position: absolute;
    top: 15px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.dot-online {
    width: 6px;
    height: 6px;
    background-color: var(--success-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px var(--success-green);
}

.branch-header-bg h3 {
    font-size: 1.3rem;
    margin-top: 10px;
}

.branch-body {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding-bottom: 14px;
}

.contact-info-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-val {
    font-size: 0.98rem;
    color: var(--text-dark);
    font-weight: 600;
}

.info-val.text-green {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text-green);
}

.info-val.text-primary {
    font-size: 1.15rem;
    font-weight: 800;
}

.branch-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.btn-action-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 13px 8px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: var(--transition-bounce);
    border: none;
    cursor: pointer;
}

.btn-action-call.wa-green {
    background: var(--success-gradient);
    color: white;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.2);
}

.btn-action-call.wa-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.btn-action-call.tel-blue {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 79, 159, 0.2);
}

.btn-action-call.tel-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 79, 159, 0.3);
}

.btn-action-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Fraud Report Form Section
   -------------------------------------------------------------------------- */
.laporkan-section {
    background: #f1f5f9;
}

.report-form-container {
    padding: 60px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.report-form-container .section-header {
    margin-bottom: 40px;
}

.report-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.form-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.text-area {
    min-height: 120px;
    resize: vertical;
}

/* Custom File Upload */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-design {
    border: 2px dashed rgba(15, 23, 42, 0.15);
    background: #fafbfd;
    padding: 30px 20px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    transition: var(--transition-smooth);
}

.file-upload-wrapper:hover .file-upload-design {
    border-color: var(--primary-light);
    background: rgba(0, 130, 200, 0.02);
}

.icon-upload {
    width: 36px;
    height: 36px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.upload-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.upload-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.file-selected-name {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-green);
    font-weight: 600;
}

.btn-submit-report {
    background: var(--warning-gradient);
    color: white;
    box-shadow: var(--shadow-red);
    padding: 16px 40px;
}

.btn-submit-report:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(229, 62, 62, 0.4);
}

/* --------------------------------------------------------------------------
   Success Modal (Overlay & Card)
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 12, 24, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: var(--transition-smooth);
}

.modal-card {
    background: white;
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 100%;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
    animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal-icon-success {
    width: 70px;
    height: 70px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.icon-check {
    width: 36px;
    height: 36px;
}

.modal-card h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.modal-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.next-steps-list {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 20px;
    border-radius: var(--border-radius-md);
    text-align: left;
    margin-bottom: 24px;
}

.next-steps-list h4 {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.next-steps-list ul {
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.next-steps-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-card .btn {
    width: 100%;
}

/* --------------------------------------------------------------------------
   Footer Area
   -------------------------------------------------------------------------- */
.footer-area {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 100px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-warning-small {
    background: rgba(229, 62, 62, 0.1);
    border-left: 3px solid var(--warning-red);
    color: #f87171;
    font-size: 0.8rem;
    padding: 10px 14px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.footer-links h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-legal h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-legal p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    html { font-size: 15px; }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .badge-alert {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accounts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .branch-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-bounce);
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    .btn-report-nav {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    /* Grid system responsive */
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .checker-inputs {
        grid-template-columns: 1fr;
    }
    
    .branch-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: auto;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Layout paddings */
    .section {
        padding: 60px 0;
    }
    
    .verifikasi-container, .report-form-container {
        padding: 24px;
    }
    
    .report-form {
        padding: 20px;
    }
    
    .comparison-container {
        gap: 16px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
}
