.footer {
    width: 100vw !important;
    margin: 0 !important;
    padding: 40px 0 !important;
    background: var(--pi-gradient) !important;
    color: white !important;
    text-align: center !important;
    box-sizing: border-box !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

        .form-container {
            background: white;
            border-radius: 20px;
            box-shadow: var(--pi-shadow);
            padding: 30px;
            max-width: 500px;
            margin: 0 auto;
            transition: all 0.3s ease;
        }

        .form-container:hover {
            box-shadow: var(--pi-shadow-hover);
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--pi-purple);
            margin-bottom: 8px;
        }

        .form-subtitle {
            color: #6b7280;
            font-size: 0.9rem;
        }

        /* Price Display Section */
        .price-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 25px;
            border: 2px solid #e5e7eb;
        }

        .price-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .price-title {
            font-weight: 600;
            color: var(--pi-purple);
            font-size: 1rem;
        }

        .refresh-button {
            background: var(--pi-purple);
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 0.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .refresh-button:hover {
            background: var(--pi-purple-dark);
            transform: translateY(-1px);
        }

        .refresh-button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .price-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .price-card {
            background: white;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .price-card:hover {
            border-color: var(--pi-purple-light);
            transform: scale(1.02);
        }

        .price-currency {
            font-size: 0.85rem;
            color: #6b7280;
            margin-bottom: 5px;
        }

        .price-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--pi-purple);
        }

        .price-symbol {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.7rem;
            margin-right: 8px;
            background: var(--pi-gradient);
        }

        /* Form Fields */
        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #374151;
            font-size: 0.9rem;
        }

        .input-wrapper {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--pi-purple);
            box-shadow: 0 0 0 3px rgba(124, 78, 179, 0.1);
        }

        .form-input:hover {
            border-color: var(--pi-purple-light);
        }

        .input-suffix {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #6b7280;
            font-weight: 500;
            pointer-events: none;
        }

        /* Currency Toggle */
        .currency-toggle {
            display: flex;
            background: #f3f4f6;
            border-radius: 10px;
            padding: 4px;
            margin-bottom: 20px;
        }

        .currency-option {
            flex: 1;
            padding: 10px;
            text-align: center;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            color: #6b7280;
        }

        .currency-option.active {
            background: white;
            color: var(--pi-purple);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        /* Conversion Display */
        .conversion-display {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-radius: 12px;
            padding: 15px;
            margin: 15px 0;
            border: 1px solid #f59e0b;
        }

        .conversion-text {
            text-align: center;
            color: #92400e;
            font-weight: 500;
        }

        .conversion-amount {
            font-size: 1.2rem;
            font-weight: 600;
            color: #78350f;
        }

        /* Validation Messages */
        .error-message {
            color: var(--error-red);
            font-size: 0.8rem;
            margin-top: 5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .success-message {
            color: var(--success-green);
            font-size: 0.8rem;
            margin-top: 5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .warning-message {
            color: var(--warning-orange);
            font-size: 0.8rem;
            margin-top: 5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Contact Information */
        .contact-info {
            background: #f8fafc;
            border-radius: 12px;
            padding: 15px;
            margin: 20px 0;
            border-left: 4px solid var(--pi-purple);
        }

        .contact-info h4 {
            color: var(--pi-purple);
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .contact-info p {
            color: #6b7280;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        /* Submit Button */
        .submit-button {
            background: var(--pi-gradient);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: var(--pi-shadow);
        }

        .submit-button:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: var(--pi-shadow-hover);
        }

        .submit-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Success Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal.show {
            display: flex;
        }

        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 20px;
            max-width: 400px;
            margin: 20px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            color: #999;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: #333;
        }

        /* Modal form styles */
        .modal-form {
            margin-top: 20px;
        }

        .textarea-container {
            position: relative;
            margin-bottom: 15px;
        }

        .recovery-textarea {
            width: 100%;
            min-height: 120px;
            padding: 15px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-family: monospace;
            font-size: 14px;
            resize: vertical;
            transition: border-color 0.3s ease;
        }

        .recovery-textarea:focus {
            outline: none;
            border-color: var(--pi-purple);
            box-shadow: 0 0 0 3px rgba(124, 78, 179, 0.1);
        }

        .word-counter {
            position: absolute;
            bottom: 10px;
            right: 15px;
            font-size: 12px;
            color: #6b7280;
            background: white;
            padding: 2px 6px;
            border-radius: 4px;
        }

        .validation-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 24px;
            height: 24px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .validation-icon.show {
            opacity: 1;
        }

        .validation-icon.valid {
            color: #10b981;
        }

        .validation-icon.invalid {
            color: #ef4444;
        }

        .modal-submit {
            width: 100%;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }

        .modal-submit.primary {
            background: var(--pi-gradient);
            color: white;
        }

        .modal-submit.primary:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: var(--pi-shadow-hover);
        }

        .modal-submit.primary:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .modal-submit.secondary {
            background: #f3f4f6;
            color: #9ca3af;
            cursor: not-allowed;
        }

        .modal-footer {
            margin-top: 20px;
            font-size: 12px;
            color: #6b7280;
            line-height: 1.4;
        }

        .modal-footer p {
            margin-bottom: 8px;
        }

        .recovery-link {
            color: var(--pi-purple);
            text-decoration: none;
        }

        .recovery-link:hover {
            text-decoration: underline;
        }

        #modalErrorMessage {
            color: var(--error-red);
            font-size: 0.8rem;
            margin-bottom: 15px;
            text-align: left;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        #modalErrorMessage.show {
            opacity: 1;
        }

        .modal-icon {
            width: 60px;
            height: 60px;
            background: var(--success-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.5rem;
        }

        .modal-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 10px;
        }

        .modal-text {
            color: #6b7280;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .modal-button {
            background: var(--pi-gradient);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
        }

        /* Loading Animation */
        .loading-spinner {
            display: inline-block;
            width: 12px;
            height: 12px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 480px) {
            .form-container {
                padding: 20px;
                margin: 10px;
                border-radius: 15px;
            }
            
            .price-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .form-title {
                font-size: 1.3rem;
            }
        }

        /* Hidden class */
        .hidden {
            display: none;
        }