 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar-custom {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(107, 159, 216, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s;
        }

        .navbar-custom.scrolled {
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(107, 159, 216, 0.15);
        }

        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 700;
            color: #6B9FD8;
            text-decoration: none;
        }

        .navbar-logo {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #6B9FD8 0%, #84B2DC 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .navbar-brand-text h4 {
            margin: 0;
            font-size: 18px;
            color: #2D3748;
        }

        .navbar-brand-text p {
            margin: 0;
            font-size: 11px;
            color: #718096;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
            list-style: none;
            margin: 0;
        }

        .nav-links a {
            color: #4A5568;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            font-size: 15px;
        }

        .nav-links a:hover {
            color: #6B9FD8;
        }

        .btn-login-nav {
            background: linear-gradient(135deg, #6B9FD8 0%, #84B2DC 100%);
            padding: 10px 24px;
            border-radius: 25px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-login-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(107, 159, 216, 0.3);
            color: white;
        }
        .lapor-section {
            position: relative;
            z-index: 1;
            background: #f5f6fa;
            padding: 80px 0;
            min-height: 100vh;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
            padding: 150px 0 80px 0;
            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 width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%236B9FD8" opacity="0.1"/></svg>');
            background-size: 50px 50px;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(107, 159, 216, 0.15);
            padding: 8px 20px;
            border-radius: 25px;
            color: #5A8FC4;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 25px;
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: 56px;
            font-weight: 800;
            color: #2D3748;
            margin-bottom: 25px;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-subtitle {
            font-size: 20px;
            color: #5A8FC4;
            margin-bottom: 40px;
            line-height: 1.6;
            animation: fadeInUp 1s ease-out;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            animation: fadeInUp 1.2s ease-out;
        }

        .btn-hero-primary {
            background: linear-gradient(135deg, #6B9FD8 0%, #84B2DC 100%);
            padding: 16px 36px;
            border-radius: 30px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(107, 159, 216, 0.4);
            color: white;
        }

        .btn-hero-secondary {
            background: white;
            padding: 16px 36px;
            border-radius: 30px;
            color: #6B9FD8;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            border: 2px solid #E5EDF5;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-hero-secondary:hover {
            border-color: #6B9FD8;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(107, 159, 216, 0.2);
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease-out;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(107, 159, 216, 0.3);
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: white;
        }

        .stat-box {
            text-align: center;
            padding: 30px;
            animation: fadeInUp 0.6s ease-out;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: #6B9FD8;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: #718096;
            font-weight: 500;
        }

        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: #F8FBFE;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            background: rgba(107, 159, 216, 0.15);
            padding: 8px 20px;
            border-radius: 25px;
            color: #5A8FC4;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .section-title h2 {
            font-size: 42px;
            font-weight: 800;
            color: #2D3748;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 18px;
            color: #718096;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(107, 159, 216, 0.08);
            transition: all 0.3s;
            height: 100%;
            border: 1px solid #EDF2F7;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(107, 159, 216, 0.15);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 25px;
        }

        .feature-card h4 {
            font-size: 22px;
            font-weight: 700;
            color: #2D3748;
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 15px;
            color: #718096;
            line-height: 1.7;
            margin: 0;
        }

        /* How It Works */
        .how-it-works {
            padding: 100px 0;
            background: white;
        }

        .step-card {
            text-align: center;
            padding: 30px;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #6B9FD8 0%, #84B2DC 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            font-weight: 700;
            margin: 0 auto 25px;
        }

        .step-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: #2D3748;
            margin-bottom: 15px;
        }

        .step-card p {
            font-size: 15px;
            color: #718096;
            line-height: 1.6;
        }

        /* Map Section */
        .map-section {
            padding: 100px 0;
            background: #F8FBFE;
        }

        .map-container {
            position: relative;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(107, 159, 216, 0.1);
            border: 1px solid #EDF2F7;
        }

        #map {
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
        }

        .map-legend {
            position: absolute;
            top: 50px;
            right: 50px;
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            z-index: 1000;
        }

        .map-legend h6 {
            font-weight: 700;
            color: #2D3748;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 14px;
            color: #4A5568;
        }

        .legend-icon {
            font-size: 20px;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #6B9FD8 0%, #84B2DC 100%);
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .btn-cta {
            background: white;
            padding: 18px 40px;
            border-radius: 30px;
            color: #6B9FD8;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            color: #6B9FD8;
        }

        /* Footer */
        .footer {
            background: #2D3748;
            color: white;
            padding: 60px 0 30px 0;
        }

        .footer h5 {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #4A5568;
            cursor: pointer;
        }


     

         /* Back Button */
        .back-button {
            position: fixed;
            top: 30px;
            left: 30px;
            background: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(107, 159, 216, 0.2);
            color: #6B9FD8;
            text-decoration: none;
            font-size: 20px;
            transition: all 0.3s;
            z-index: 1000;
        }

        .back-button:hover {
            transform: scale(1.1);
            background: #6B9FD8;
            color: white;
        }

        /* Header */
        .form-header {
            text-align: center;
            color: white;
            margin-bottom: 40px;
            animation: fadeInDown 0.6s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .header-logo {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .header-logo i {
            font-size: 40px;
            color: #6B9FD8;
        }

        .form-header h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .form-header p {
            font-size: 16px;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Form Container */
        .form-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .emergency-alert {
            background: linear-gradient(135deg, #FFB4B4 0%, #FFC7C7 100%);
            padding: 20px 25px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(255, 180, 180, 0.7);
            }
            50% {
                box-shadow: 0 0 0 15px rgba(255, 180, 180, 0);
            }
        }

        .emergency-alert i {
            font-size: 32px;
            color: #C85050;
        }

        .emergency-alert strong {
            color: #C85050;
            display: block;
            margin-bottom: 5px;
        }

        .emergency-alert p {
            margin: 0;
            color: #C85050;
            font-size: 14px;
        }

        .form-section-group {
            margin-bottom: 35px;
            padding-bottom: 35px;
            border-bottom: 2px solid #F8FBFE;
        }

        .form-section-group:last-of-type {
            border-bottom: none;
        }

        .form-section-title {
            font-size: 18px;
            font-weight: 700;
            color: #2D3748;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .form-section-title i {
            color: #6B9FD8;
        }

        .form-label {
            font-weight: 500;
            color: #4A5568;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-control, .form-select {
            border: 2px solid #E5EDF5;
            border-radius: 10px;
            padding: 12px 18px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: #6B9FD8;
            box-shadow: 0 0 0 0.2rem rgba(107, 159, 216, 0.1);
        }

        .upload-zone {
            border: 2px dashed #E5EDF5;
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: #F8FBFE;
        }

        .upload-zone:hover {
            border-color: #6B9FD8;
            background: #EDF5FF;
        }

        .upload-zone i {
            font-size: 48px;
            color: #6B9FD8;
            margin-bottom: 15px;
        }

        .upload-zone h6 {
            font-weight: 600;
            color: #2D3748;
            margin-bottom: 5px;
        }

        .upload-zone p {
            color: #718096;
            font-size: 14px;
            margin: 0;
        }

        .file-preview {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .preview-item {
            position: relative;
            width: 100px;
            height: 100px;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid #E5EDF5;
        }

        .preview-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .preview-remove {
            position: absolute;
            top: 5px;
            right: 5px;
            background: #FF6B6B;
            color: white;
            border: none;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-submit-form {
            background: linear-gradient(135deg, #6B9FD8 0%, #84B2DC 100%);
            padding: 16px 48px;
            border-radius: 30px;
            color: white;
            border: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s;
        }

        .btn-submit-form:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(107, 159, 216, 0.4);
        }

        .info-box {
            background: #E3F2FD;
            border-left: 4px solid #6B9FD8;
            padding: 15px 20px;
            border-radius: 8px;
            margin-top: 15px;
        }

        .info-box i {
            color: #6B9FD8;
            margin-right: 10px;
        }

        .info-box p {
            margin: 0;
            font-size: 14px;
            color: #4A5568;
        }

        /* Footer */
        .form-footer {
            text-align: center;
            color: white;
            margin-top: 40px;
            padding: 20px;
        }

        .form-footer p {
            margin: 5px 0;
            font-size: 14px;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .form-container {
                padding: 25px;
            }

            .form-header h2 {
                font-size: 24px;
            }

            .back-button {
                top: 20px;
                left: 20px;
            }
        }
