 /* Modal Styles */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 1050;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .modal.show {
            display: flex;
            opacity: 1;
        }

        .modal.fade.show {
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.7);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .modal-dialog {
            max-width: 600px;
            width: 90%;
            margin: 20px;
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }

        .modal.show .modal-dialog {
            transform: scale(1);
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            position: relative;
        }

        .modal-header {
            padding: 20px 30px 10px;
            border-bottom: none;
            position: relative;
        }

        .btn-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .btn-close:hover {
            background: #f8f9fa;
            color: #000;
            transform: rotate(90deg);
        }

        .btn-close::before {
            content: '×';
            font-size: 28px;
            line-height: 1;
        }

        .modal-body {
            padding: 20px 30px 30px;
        }

        .modal-body h5 {
            font-size: 28px;
            font-weight: bold;
            color: #333;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .thumbs_gif {
            width: 40px;
            height: 40px;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .col-md-12 {
            width: 100%;
            padding: 0 15px;
        }

        .mt-4 {
            margin-top: 1.5rem;
        }

        .mt-2 {
            margin-top: 0.5rem;
        }

        .input_box {
            position: relative;
            margin-bottom: 20px;
        }

        .input_box input {
            width: 100%;
            padding: 18px 20px 18px 50px;
            border: 2px solid #e0e6ed;
            border-radius: 15px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .input_box input:focus {
            outline: none;
            border-color: var(--primary-color);
            background: white;
            box-shadow: 0 0 20px rgba(0, 123, 255, 0.1);
        }

        .input_box i {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 16px;
        }

        .custom_form_check {
            margin-top: 20px;
        }

        .form-check-input {
            margin-right: 10px;
            transform: scale(1.2);
            accent-color: var(--primary-color);
        }

        .form-check-label {
            color: #666;
            line-height: 1.5;
        }

        .form-check-label a {
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
        }

        .form-check-label a:hover {
            text-decoration: underline;
        }

        .site_btn {
            width: 100%;
            background: linear-gradient(45deg, var(--primary-color), #0056b3);
            color: white;
            border: none;
            padding: 18px 30px;
            font-size: 18px;
            font-weight: bold;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .site_btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
        }

        .error_message {
            color: var(--danger-color);
            font-size: 14px;
            margin-bottom: 10px;
            min-height: 20px;
        }

        .modal_content_footer {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 25px 30px;
            text-align: center;
            border-top: 1px solid #e0e6ed;
        }

        .authorized {
            width: 80px;
            margin-bottom: 15px;
        }

        .contact_footer_link {
            display: inline-block;
            background: linear-gradient(45deg, #28a745, #20c997);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .contact_footer_link:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
            color: white;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .modal-dialog {
                width: 95%;
                margin: 10px;
            }

            .modal-body {
                padding: 15px 20px 20px;
            }

            .modal-body h5 {
                font-size: 24px;
            }

            .input_box input {
                padding: 15px 18px 15px 45px;
                font-size: 14px;
            }

            .site_btn {
                padding: 15px 25px;
                font-size: 16px;
            }

            .modal_content_footer {
                padding: 20px 15px;
            }
        }

        /* Success state */
        .success-message {
            background: linear-gradient(45deg, #d4edda, #c3e6cb);
            color: #155724;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 4px solid #28a745;
        }